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

41514 строки
1.0 MiB

  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.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. }
  1698. }
  1699. //species
  1700. function getSpeciesInfo(speciesList) {
  1701. let result = new Set();
  1702. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1703. result.add(entry)
  1704. });
  1705. return Array.from(result);
  1706. };
  1707. function getSpeciesInfoHelper(species) {
  1708. if (!speciesData[species]) {
  1709. console.warn(species + " doesn't exist");
  1710. return [];
  1711. }
  1712. if (speciesData[species].parents) {
  1713. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1714. } else {
  1715. return [species];
  1716. }
  1717. }
  1718. characterMakers.push(() => makeCharacter(
  1719. {
  1720. name: "Fen",
  1721. species: ["crux"],
  1722. description: {
  1723. title: "Bio",
  1724. text: "Very furry. Sheds on everything."
  1725. },
  1726. tags: [
  1727. "anthro",
  1728. "goo"
  1729. ]
  1730. },
  1731. {
  1732. back: {
  1733. height: math.unit(2.2428, "meter"),
  1734. weight: math.unit(124.738, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/fen/back.svg",
  1738. },
  1739. info: {
  1740. description: {
  1741. mode: "append",
  1742. text: "\n\nHe is not currently looking at you."
  1743. }
  1744. }
  1745. },
  1746. full: {
  1747. height: math.unit(1.34, "meter"),
  1748. weight: math.unit(225, "kg"),
  1749. name: "Full",
  1750. image: {
  1751. source: "./media/characters/fen/full.svg"
  1752. },
  1753. info: {
  1754. description: {
  1755. mode: "append",
  1756. text: "\n\nMunch."
  1757. }
  1758. }
  1759. },
  1760. kneeling: {
  1761. height: math.unit(5.4, "feet"),
  1762. weight: math.unit(124.738, "kg"),
  1763. name: "Kneeling",
  1764. image: {
  1765. source: "./media/characters/fen/kneeling.svg",
  1766. extra: 563 / 507
  1767. }
  1768. },
  1769. goo: {
  1770. height: math.unit(2.8, "feet"),
  1771. weight: math.unit(125, "kg"),
  1772. capacity: math.unit(1, "people"),
  1773. name: "Goo",
  1774. image: {
  1775. source: "./media/characters/fen/goo.svg",
  1776. bottom: 116 / 613
  1777. }
  1778. },
  1779. lounging: {
  1780. height: math.unit(6.5, "feet"),
  1781. weight: math.unit(125, "kg"),
  1782. name: "Lounging",
  1783. image: {
  1784. source: "./media/characters/fen/lounging.svg"
  1785. }
  1786. },
  1787. },
  1788. [
  1789. {
  1790. name: "Normal",
  1791. height: math.unit(2.2428, "meter")
  1792. },
  1793. {
  1794. name: "Big",
  1795. height: math.unit(12, "feet")
  1796. },
  1797. {
  1798. name: "Minimacro",
  1799. height: math.unit(40, "feet"),
  1800. default: true,
  1801. info: {
  1802. description: {
  1803. mode: "append",
  1804. text: "\n\nTOO DAMN BIG"
  1805. }
  1806. }
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(100, "feet"),
  1811. info: {
  1812. description: {
  1813. mode: "append",
  1814. text: "\n\nTOO DAMN BIG"
  1815. }
  1816. }
  1817. },
  1818. {
  1819. name: "Macro+",
  1820. height: math.unit(300, "feet")
  1821. },
  1822. {
  1823. name: "Megamacro",
  1824. height: math.unit(2, "miles")
  1825. }
  1826. ]
  1827. ))
  1828. characterMakers.push(() => makeCharacter(
  1829. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1830. {
  1831. front: {
  1832. height: math.unit(183, "cm"),
  1833. weight: math.unit(80, "kg"),
  1834. name: "Front",
  1835. image: {
  1836. source: "./media/characters/sofia-fluttertail/front.svg",
  1837. bottom: 0.01,
  1838. extra: 2154 / 2081
  1839. }
  1840. },
  1841. frontAlt: {
  1842. height: math.unit(183, "cm"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Front (alt)",
  1845. image: {
  1846. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1847. }
  1848. },
  1849. back: {
  1850. height: math.unit(183, "cm"),
  1851. weight: math.unit(80, "kg"),
  1852. name: "Back",
  1853. image: {
  1854. source: "./media/characters/sofia-fluttertail/back.svg"
  1855. }
  1856. },
  1857. kneeling: {
  1858. height: math.unit(125, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Kneeling",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1863. extra: 1033 / 977,
  1864. bottom: 23.7 / 1057
  1865. }
  1866. },
  1867. maw: {
  1868. height: math.unit(183 / 5, "cm"),
  1869. name: "Maw",
  1870. image: {
  1871. source: "./media/characters/sofia-fluttertail/maw.svg"
  1872. }
  1873. },
  1874. mawcloseup: {
  1875. height: math.unit(183 / 5 * 0.41, "cm"),
  1876. name: "Maw (Closeup)",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1879. }
  1880. },
  1881. paws: {
  1882. height: math.unit(1.17, "feet"),
  1883. name: "Paws",
  1884. image: {
  1885. source: "./media/characters/sofia-fluttertail/paws.svg",
  1886. extra: 851 / 851,
  1887. bottom: 17 / 868
  1888. }
  1889. },
  1890. },
  1891. [
  1892. {
  1893. name: "Normal",
  1894. height: math.unit(1.83, "meter")
  1895. },
  1896. {
  1897. name: "Size Thief",
  1898. height: math.unit(18, "feet")
  1899. },
  1900. {
  1901. name: "50 Foot Collie",
  1902. height: math.unit(50, "feet")
  1903. },
  1904. {
  1905. name: "Macro",
  1906. height: math.unit(96, "feet"),
  1907. default: true
  1908. },
  1909. {
  1910. name: "Megamerger",
  1911. height: math.unit(650, "feet")
  1912. },
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1917. {
  1918. front: {
  1919. height: math.unit(7, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/march/front.svg",
  1924. extra: 1992/1851,
  1925. bottom: 39/2031
  1926. }
  1927. },
  1928. foot: {
  1929. height: math.unit(0.9, "feet"),
  1930. name: "Foot",
  1931. image: {
  1932. source: "./media/characters/march/foot.svg"
  1933. }
  1934. },
  1935. },
  1936. [
  1937. {
  1938. name: "Normal",
  1939. height: math.unit(7.9, "feet")
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(220, "meters")
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2.98, "km"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Gigamacro",
  1952. height: math.unit(15963, "km")
  1953. },
  1954. {
  1955. name: "Teramacro",
  1956. height: math.unit(2980000000, "km")
  1957. },
  1958. {
  1959. name: "Examacro",
  1960. height: math.unit(250, "parsecs")
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(60, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/noir/front.svg",
  1973. extra: 1,
  1974. bottom: 0.032
  1975. }
  1976. },
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(6.6, "feet")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(500, "feet")
  1986. },
  1987. {
  1988. name: "Megamacro",
  1989. height: math.unit(2.5, "km"),
  1990. default: true
  1991. },
  1992. {
  1993. name: "Gigamacro",
  1994. height: math.unit(22500, "km")
  1995. },
  1996. {
  1997. name: "Teramacro",
  1998. height: math.unit(2500000000, "km")
  1999. },
  2000. {
  2001. name: "Examacro",
  2002. height: math.unit(200, "parsecs")
  2003. },
  2004. ]
  2005. ))
  2006. characterMakers.push(() => makeCharacter(
  2007. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2008. {
  2009. front: {
  2010. height: math.unit(7, "feet"),
  2011. weight: math.unit(100, "kg"),
  2012. name: "Front",
  2013. image: {
  2014. source: "./media/characters/okuri/front.svg",
  2015. extra: 1,
  2016. bottom: 0.037
  2017. }
  2018. },
  2019. back: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Back",
  2023. image: {
  2024. source: "./media/characters/okuri/back.svg",
  2025. extra: 1,
  2026. bottom: 0.007
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Megamacro",
  2033. height: math.unit(100, "miles"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/manny/front.svg",
  2047. extra: 1,
  2048. bottom: 0.06
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(100, "kg"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/manny/back.svg",
  2057. extra: 1,
  2058. bottom: 0.014
  2059. }
  2060. },
  2061. },
  2062. [
  2063. {
  2064. name: "Normal",
  2065. height: math.unit(7, "feet"),
  2066. },
  2067. {
  2068. name: "Macro",
  2069. height: math.unit(78, "feet"),
  2070. default: true
  2071. },
  2072. {
  2073. name: "Macro+",
  2074. height: math.unit(300, "meters")
  2075. },
  2076. {
  2077. name: "Macro++",
  2078. height: math.unit(2400, "meters")
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(5167, "meters")
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(41769, "miles")
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/adake/front-1.svg"
  2099. }
  2100. },
  2101. frontAlt: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front (Alt)",
  2105. image: {
  2106. source: "./media/characters/adake/front-2.svg",
  2107. extra: 1,
  2108. bottom: 0.01
  2109. }
  2110. },
  2111. back: {
  2112. height: math.unit(7, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Back",
  2115. image: {
  2116. source: "./media/characters/adake/back.svg",
  2117. }
  2118. },
  2119. kneel: {
  2120. height: math.unit(5.385, "feet"),
  2121. weight: math.unit(100, "kg"),
  2122. name: "Kneeling",
  2123. image: {
  2124. source: "./media/characters/adake/kneel.svg",
  2125. bottom: 0.052
  2126. }
  2127. },
  2128. },
  2129. [
  2130. {
  2131. name: "Normal",
  2132. height: math.unit(7, "feet"),
  2133. },
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(78, "feet"),
  2137. default: true
  2138. },
  2139. {
  2140. name: "Macro+",
  2141. height: math.unit(300, "meters")
  2142. },
  2143. {
  2144. name: "Macro++",
  2145. height: math.unit(2400, "meters")
  2146. },
  2147. {
  2148. name: "Megamacro",
  2149. height: math.unit(5167, "meters")
  2150. },
  2151. {
  2152. name: "Gigamacro",
  2153. height: math.unit(41769, "miles")
  2154. },
  2155. ]
  2156. ))
  2157. characterMakers.push(() => makeCharacter(
  2158. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2159. {
  2160. front: {
  2161. height: math.unit(1.65, "meters"),
  2162. weight: math.unit(50, "kg"),
  2163. name: "Front",
  2164. image: {
  2165. source: "./media/characters/elijah/front.svg",
  2166. extra: 858 / 830,
  2167. bottom: 95.5 / 953.8559
  2168. }
  2169. },
  2170. back: {
  2171. height: math.unit(1.65, "meters"),
  2172. weight: math.unit(50, "kg"),
  2173. name: "Back",
  2174. image: {
  2175. source: "./media/characters/elijah/back.svg",
  2176. extra: 895 / 850,
  2177. bottom: 5.3 / 897.956
  2178. }
  2179. },
  2180. frontNsfw: {
  2181. height: math.unit(1.65, "meters"),
  2182. weight: math.unit(50, "kg"),
  2183. name: "Front (NSFW)",
  2184. image: {
  2185. source: "./media/characters/elijah/front-nsfw.svg",
  2186. extra: 858 / 830,
  2187. bottom: 95.5 / 953.8559
  2188. }
  2189. },
  2190. backNsfw: {
  2191. height: math.unit(1.65, "meters"),
  2192. weight: math.unit(50, "kg"),
  2193. name: "Back (NSFW)",
  2194. image: {
  2195. source: "./media/characters/elijah/back-nsfw.svg",
  2196. extra: 895 / 850,
  2197. bottom: 5.3 / 897.956
  2198. }
  2199. },
  2200. dick: {
  2201. height: math.unit(1, "feet"),
  2202. name: "Dick",
  2203. image: {
  2204. source: "./media/characters/elijah/dick.svg"
  2205. }
  2206. },
  2207. beakOpen: {
  2208. height: math.unit(1.25, "feet"),
  2209. name: "Beak (Open)",
  2210. image: {
  2211. source: "./media/characters/elijah/beak-open.svg"
  2212. }
  2213. },
  2214. beakShut: {
  2215. height: math.unit(1.25, "feet"),
  2216. name: "Beak (Shut)",
  2217. image: {
  2218. source: "./media/characters/elijah/beak-shut.svg"
  2219. }
  2220. },
  2221. footFlexing: {
  2222. height: math.unit(1.61, "feet"),
  2223. name: "Foot (Flexing)",
  2224. image: {
  2225. source: "./media/characters/elijah/foot-flexing.svg"
  2226. }
  2227. },
  2228. footStepping: {
  2229. height: math.unit(1.44, "feet"),
  2230. name: "Foot (Stepping)",
  2231. image: {
  2232. source: "./media/characters/elijah/foot-stepping.svg"
  2233. }
  2234. },
  2235. plantigradeLeg: {
  2236. height: math.unit(2.34, "feet"),
  2237. name: "Plantigrade Leg",
  2238. image: {
  2239. source: "./media/characters/elijah/plantigrade-leg.svg"
  2240. }
  2241. },
  2242. plantigradeFootLeft: {
  2243. height: math.unit(0.9, "feet"),
  2244. name: "Plantigrade Foot (Left)",
  2245. image: {
  2246. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2247. }
  2248. },
  2249. plantigradeFootRight: {
  2250. height: math.unit(0.9, "feet"),
  2251. name: "Plantigrade Foot (Right)",
  2252. image: {
  2253. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(1.65, "meters")
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(55, "meters"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro+",
  2269. height: math.unit(105, "meters")
  2270. },
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(11, "feet"),
  2278. weight: math.unit(320, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/rai/front.svg",
  2282. extra: 1802/1696,
  2283. bottom: 68/1870
  2284. }
  2285. },
  2286. frontDressed: {
  2287. height: math.unit(11, "feet"),
  2288. weight: math.unit(320, "kg"),
  2289. name: "Front (Dressed)",
  2290. image: {
  2291. source: "./media/characters/rai/front-dressed.svg",
  2292. extra: 1802/1696,
  2293. bottom: 68/1870
  2294. }
  2295. },
  2296. side: {
  2297. height: math.unit(11, "feet"),
  2298. weight: math.unit(320, "kg"),
  2299. name: "Side",
  2300. image: {
  2301. source: "./media/characters/rai/side.svg",
  2302. extra: 1789/1710,
  2303. bottom: 115/1904
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(11, "feet"),
  2308. weight: math.unit(320, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/rai/back.svg",
  2312. extra: 1770/1707,
  2313. bottom: 28/1798
  2314. }
  2315. },
  2316. feral: {
  2317. height: math.unit(11, "feet"),
  2318. weight: math.unit(640, "kg"),
  2319. name: "Feral",
  2320. image: {
  2321. source: "./media/characters/rai/feral.svg",
  2322. extra: 1035/642,
  2323. bottom: 86/1121
  2324. }
  2325. },
  2326. dragon: {
  2327. height: math.unit(23, "feet"),
  2328. weight: math.unit(50000, "lb"),
  2329. name: "Dragon",
  2330. image: {
  2331. source: "./media/characters/rai/dragon.svg",
  2332. extra: 2498 / 2030,
  2333. bottom: 85.2 / 2584
  2334. }
  2335. },
  2336. maw: {
  2337. height: math.unit(6 / 3.81416, "feet"),
  2338. name: "Maw",
  2339. image: {
  2340. source: "./media/characters/rai/maw.svg"
  2341. }
  2342. },
  2343. },
  2344. [
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(11, "feet")
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(302, "feet"),
  2352. default: true
  2353. },
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2358. {
  2359. frontDressed: {
  2360. height: math.unit(216, "feet"),
  2361. weight: math.unit(7000000, "lb"),
  2362. name: "Front (Dressed)",
  2363. image: {
  2364. source: "./media/characters/jazzy/front-dressed.svg",
  2365. extra: 2738 / 2651,
  2366. bottom: 41.8 / 2786
  2367. }
  2368. },
  2369. backDressed: {
  2370. height: math.unit(216, "feet"),
  2371. weight: math.unit(7000000, "lb"),
  2372. name: "Back (Dressed)",
  2373. image: {
  2374. source: "./media/characters/jazzy/back-dressed.svg",
  2375. extra: 2775 / 2673,
  2376. bottom: 36.8 / 2817
  2377. }
  2378. },
  2379. front: {
  2380. height: math.unit(216, "feet"),
  2381. weight: math.unit(7000000, "lb"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/jazzy/front.svg",
  2385. extra: 2738 / 2651,
  2386. bottom: 41.8 / 2786
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(216, "feet"),
  2391. weight: math.unit(7000000, "lb"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/jazzy/back.svg",
  2395. extra: 2775 / 2673,
  2396. bottom: 36.8 / 2817
  2397. }
  2398. },
  2399. maw: {
  2400. height: math.unit(20, "feet"),
  2401. name: "Maw",
  2402. image: {
  2403. source: "./media/characters/jazzy/maw.svg"
  2404. }
  2405. },
  2406. paws: {
  2407. height: math.unit(27.5, "feet"),
  2408. name: "Paws",
  2409. image: {
  2410. source: "./media/characters/jazzy/paws.svg"
  2411. }
  2412. },
  2413. eye: {
  2414. height: math.unit(4.4, "feet"),
  2415. name: "Eye",
  2416. image: {
  2417. source: "./media/characters/jazzy/eye.svg"
  2418. }
  2419. },
  2420. droneOffense: {
  2421. height: math.unit(9.5, "inches"),
  2422. name: "Drone (Offense)",
  2423. image: {
  2424. source: "./media/characters/jazzy/drone-offense.svg"
  2425. }
  2426. },
  2427. droneRecon: {
  2428. height: math.unit(9.5, "inches"),
  2429. name: "Drone (Recon)",
  2430. image: {
  2431. source: "./media/characters/jazzy/drone-recon.svg"
  2432. }
  2433. },
  2434. droneDefense: {
  2435. height: math.unit(9.5, "inches"),
  2436. name: "Drone (Defense)",
  2437. image: {
  2438. source: "./media/characters/jazzy/drone-defense.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(216, "feet"),
  2446. default: true
  2447. },
  2448. ]
  2449. ))
  2450. characterMakers.push(() => makeCharacter(
  2451. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2452. {
  2453. front: {
  2454. height: math.unit(9 + 6/12, "feet"),
  2455. weight: math.unit(700, "lb"),
  2456. name: "Front",
  2457. image: {
  2458. source: "./media/characters/flamm/front.svg",
  2459. extra: 1751/1632,
  2460. bottom: 46/1797
  2461. }
  2462. },
  2463. buff: {
  2464. height: math.unit(9 + 6/12, "feet"),
  2465. weight: math.unit(950, "lb"),
  2466. name: "Buff",
  2467. image: {
  2468. source: "./media/characters/flamm/buff.svg",
  2469. extra: 3018/2874,
  2470. bottom: 221/3239
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(9.5, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(200, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(5 + 3/12, "feet"),
  2491. weight: math.unit(60, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/zephiro/front.svg",
  2495. extra: 2309 / 2162,
  2496. bottom: 0.069
  2497. }
  2498. },
  2499. side: {
  2500. height: math.unit(5 + 3/12, "feet"),
  2501. weight: math.unit(60, "kg"),
  2502. name: "Side",
  2503. image: {
  2504. source: "./media/characters/zephiro/side.svg",
  2505. extra: 2403 / 2279,
  2506. bottom: 0.015
  2507. }
  2508. },
  2509. back: {
  2510. height: math.unit(5 + 3/12, "feet"),
  2511. weight: math.unit(60, "kg"),
  2512. name: "Back",
  2513. image: {
  2514. source: "./media/characters/zephiro/back.svg",
  2515. extra: 2373 / 2244,
  2516. bottom: 0.013
  2517. }
  2518. },
  2519. hand: {
  2520. height: math.unit(0.68, "feet"),
  2521. name: "Hand",
  2522. image: {
  2523. source: "./media/characters/zephiro/hand.svg"
  2524. }
  2525. },
  2526. paw: {
  2527. height: math.unit(1, "feet"),
  2528. name: "Paw",
  2529. image: {
  2530. source: "./media/characters/zephiro/paw.svg"
  2531. }
  2532. },
  2533. beans: {
  2534. height: math.unit(0.93, "feet"),
  2535. name: "Beans",
  2536. image: {
  2537. source: "./media/characters/zephiro/beans.svg"
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Micro",
  2544. height: math.unit(3, "inches")
  2545. },
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(5 + 3 / 12, "feet"),
  2549. default: true
  2550. },
  2551. {
  2552. name: "Macro",
  2553. height: math.unit(118, "feet")
  2554. },
  2555. ]
  2556. ))
  2557. characterMakers.push(() => makeCharacter(
  2558. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2559. {
  2560. front: {
  2561. height: math.unit(5, "feet"),
  2562. weight: math.unit(90, "kg"),
  2563. name: "Front",
  2564. image: {
  2565. source: "./media/characters/fory/front.svg",
  2566. extra: 2862 / 2674,
  2567. bottom: 180 / 3043.8
  2568. }
  2569. },
  2570. back: {
  2571. height: math.unit(5, "feet"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Back",
  2574. image: {
  2575. source: "./media/characters/fory/back.svg",
  2576. extra: 2962 / 2791,
  2577. bottom: 106 / 3071.8
  2578. }
  2579. },
  2580. foot: {
  2581. height: math.unit(2.14, "feet"),
  2582. name: "Foot",
  2583. image: {
  2584. source: "./media/characters/fory/foot.svg"
  2585. }
  2586. },
  2587. },
  2588. [
  2589. {
  2590. name: "Normal",
  2591. height: math.unit(5, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(50, "feet"),
  2596. default: true
  2597. },
  2598. {
  2599. name: "Megamacro",
  2600. height: math.unit(10, "miles")
  2601. },
  2602. {
  2603. name: "Gigamacro",
  2604. height: math.unit(5, "earths")
  2605. },
  2606. ]
  2607. ))
  2608. characterMakers.push(() => makeCharacter(
  2609. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2610. {
  2611. front: {
  2612. height: math.unit(7, "feet"),
  2613. weight: math.unit(90, "kg"),
  2614. name: "Front",
  2615. image: {
  2616. source: "./media/characters/kurrikage/front.svg",
  2617. extra: 1,
  2618. bottom: 0.035
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(7, "feet"),
  2623. weight: math.unit(90, "lb"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/kurrikage/back.svg"
  2627. }
  2628. },
  2629. paw: {
  2630. height: math.unit(1.5, "feet"),
  2631. name: "Paw",
  2632. image: {
  2633. source: "./media/characters/kurrikage/paw.svg"
  2634. }
  2635. },
  2636. staff: {
  2637. height: math.unit(6.7, "feet"),
  2638. name: "Staff",
  2639. image: {
  2640. source: "./media/characters/kurrikage/staff.svg"
  2641. }
  2642. },
  2643. peek: {
  2644. height: math.unit(1.05, "feet"),
  2645. name: "Peeking",
  2646. image: {
  2647. source: "./media/characters/kurrikage/peek.svg",
  2648. bottom: 0.08
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(500, "feet")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(20, "miles")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(6, "feet"),
  2677. weight: math.unit(75, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/shingo/front.svg",
  2681. extra: 706/681,
  2682. bottom: 11/717
  2683. }
  2684. },
  2685. frontAlt: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front (Alt)",
  2689. image: {
  2690. source: "./media/characters/shingo/front-alt.svg",
  2691. extra: 3511 / 3338,
  2692. bottom: 0.005
  2693. }
  2694. },
  2695. paw: {
  2696. height: math.unit(1, "feet"),
  2697. name: "Paw",
  2698. image: {
  2699. source: "./media/characters/shingo/paw.svg"
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Micro",
  2706. height: math.unit(4, "inches")
  2707. },
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(6, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(108, "feet")
  2716. },
  2717. {
  2718. name: "Macro+",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2725. {
  2726. side: {
  2727. height: math.unit(6, "feet"),
  2728. weight: math.unit(75, "kg"),
  2729. name: "Side",
  2730. image: {
  2731. source: "./media/characters/aigey/side.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(200, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(100, "miles")
  2744. },
  2745. ]
  2746. )
  2747. )
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(5 + 5 / 12, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/natasha/front.svg",
  2757. extra: 859 / 824,
  2758. bottom: 23 / 879.6
  2759. }
  2760. },
  2761. frontNsfw: {
  2762. height: math.unit(5 + 5 / 12, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Front (NSFW)",
  2765. image: {
  2766. source: "./media/characters/natasha/front-nsfw.svg",
  2767. extra: 859 / 824,
  2768. bottom: 23 / 879.6
  2769. }
  2770. },
  2771. frontErect: {
  2772. height: math.unit(5 + 5 / 12, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Front (Erect)",
  2775. image: {
  2776. source: "./media/characters/natasha/front-erect.svg",
  2777. extra: 859 / 824,
  2778. bottom: 23 / 879.6
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(5 + 5 / 12, "feet"),
  2783. weight: math.unit(75, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/natasha/back.svg",
  2787. extra: 887.9 / 852.6,
  2788. bottom: 9.7 / 896.4
  2789. }
  2790. },
  2791. backAlt: {
  2792. height: math.unit(5 + 5 / 12, "feet"),
  2793. weight: math.unit(75, "kg"),
  2794. name: "Back (Alt)",
  2795. image: {
  2796. source: "./media/characters/natasha/back-alt.svg",
  2797. extra: 1236.7 / 1192,
  2798. bottom: 22.3 / 1258.2
  2799. }
  2800. },
  2801. dick: {
  2802. height: math.unit(1.772, "feet"),
  2803. name: "Dick",
  2804. image: {
  2805. source: "./media/characters/natasha/dick.svg"
  2806. }
  2807. },
  2808. paw: {
  2809. height: math.unit(0.250, "meters"),
  2810. name: "Paw",
  2811. image: {
  2812. source: "./media/characters/natasha/paw.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(5 + 5 / 12, "feet")
  2820. },
  2821. {
  2822. name: "Large",
  2823. height: math.unit(12, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(100, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro+",
  2832. height: math.unit(260, "feet")
  2833. },
  2834. {
  2835. name: "Macro++",
  2836. height: math.unit(1, "mile")
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/malik/front.svg"
  2849. }
  2850. },
  2851. side: {
  2852. height: math.unit(6, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Side",
  2855. image: {
  2856. source: "./media/characters/malik/side.svg",
  2857. extra: 1.1539
  2858. }
  2859. },
  2860. back: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/malik/back.svg"
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(156, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro+",
  2877. height: math.unit(1188, "feet")
  2878. },
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/sefer/front.svg",
  2890. extra: 848 / 659,
  2891. bottom: 28.3 / 876.442
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/sefer/back.svg",
  2900. extra: 864 / 695,
  2901. bottom: 10 / 871
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(75, "kg"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/sefer/front-dressed.svg",
  2910. extra: 839 / 653,
  2911. bottom: 37.6 / 878
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(6, "feet"),
  2919. default: true
  2920. },
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2925. {
  2926. body: {
  2927. height: math.unit(2.2428, "meter"),
  2928. weight: math.unit(124.738, "kg"),
  2929. name: "Body",
  2930. image: {
  2931. extra: 1225 / 1050,
  2932. source: "./media/characters/north/front.svg"
  2933. }
  2934. }
  2935. },
  2936. [
  2937. {
  2938. name: "Micro",
  2939. height: math.unit(4, "inches")
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(63, "meters")
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(101, "miles"),
  2948. default: true
  2949. }
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2954. {
  2955. angled: {
  2956. height: math.unit(4, "meter"),
  2957. weight: math.unit(150, "kg"),
  2958. name: "Angled",
  2959. image: {
  2960. source: "./media/characters/talan/angled-sfw.svg",
  2961. bottom: 29 / 3734
  2962. }
  2963. },
  2964. angledNsfw: {
  2965. height: math.unit(4, "meter"),
  2966. weight: math.unit(150, "kg"),
  2967. name: "Angled (NSFW)",
  2968. image: {
  2969. source: "./media/characters/talan/angled-nsfw.svg",
  2970. bottom: 29 / 3734
  2971. }
  2972. },
  2973. frontNsfw: {
  2974. height: math.unit(4, "meter"),
  2975. weight: math.unit(150, "kg"),
  2976. name: "Front (NSFW)",
  2977. image: {
  2978. source: "./media/characters/talan/front-nsfw.svg",
  2979. bottom: 29 / 3734
  2980. }
  2981. },
  2982. sideNsfw: {
  2983. height: math.unit(4, "meter"),
  2984. weight: math.unit(150, "kg"),
  2985. name: "Side (NSFW)",
  2986. image: {
  2987. source: "./media/characters/talan/side-nsfw.svg",
  2988. bottom: 29 / 3734
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(4, "meter"),
  2993. weight: math.unit(150, "kg"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/talan/back.svg"
  2997. }
  2998. },
  2999. dickBottom: {
  3000. height: math.unit(0.621, "meter"),
  3001. name: "Dick (Bottom)",
  3002. image: {
  3003. source: "./media/characters/talan/dick-bottom.svg"
  3004. }
  3005. },
  3006. dickTop: {
  3007. height: math.unit(0.621, "meter"),
  3008. name: "Dick (Top)",
  3009. image: {
  3010. source: "./media/characters/talan/dick-top.svg"
  3011. }
  3012. },
  3013. dickSide: {
  3014. height: math.unit(0.305, "meter"),
  3015. name: "Dick (Side)",
  3016. image: {
  3017. source: "./media/characters/talan/dick-side.svg"
  3018. }
  3019. },
  3020. dickFront: {
  3021. height: math.unit(0.305, "meter"),
  3022. name: "Dick (Front)",
  3023. image: {
  3024. source: "./media/characters/talan/dick-front.svg"
  3025. }
  3026. },
  3027. },
  3028. [
  3029. {
  3030. name: "Normal",
  3031. height: math.unit(4, "meters")
  3032. },
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(100, "meters")
  3036. },
  3037. {
  3038. name: "Megamacro",
  3039. height: math.unit(2, "miles"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Gigamacro",
  3044. height: math.unit(5000, "miles")
  3045. },
  3046. {
  3047. name: "Teramacro",
  3048. height: math.unit(100, "parsecs")
  3049. }
  3050. ]
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3054. {
  3055. front: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/gael'rathus/front.svg"
  3061. }
  3062. },
  3063. frontAlt: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(90, "kg"),
  3066. name: "Front (alt)",
  3067. image: {
  3068. source: "./media/characters/gael'rathus/front-alt.svg"
  3069. }
  3070. },
  3071. frontAlt2: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front (alt 2)",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(9, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Large",
  3088. height: math.unit(25, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(0.25, "miles")
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(10, "miles")
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3102. {
  3103. side: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(140, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/sosha/side.svg",
  3109. bottom: 0.042
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. }
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3123. {
  3124. side: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(170, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/runnola/side.svg",
  3130. extra: 741 / 448,
  3131. bottom: 0.05
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Small",
  3138. height: math.unit(3, "feet")
  3139. },
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(5 + 5 / 12, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Big",
  3147. height: math.unit(10, "feet")
  3148. },
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(50, "kg"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/kurribird/front.svg",
  3160. bottom: 0.015
  3161. }
  3162. },
  3163. frontAlt: {
  3164. height: math.unit(1.5, "meter"),
  3165. weight: math.unit(50, "kg"),
  3166. name: "Front (Alt)",
  3167. image: {
  3168. source: "./media/characters/kurribird/front-alt.svg",
  3169. extra: 1.45
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Normal",
  3176. height: math.unit(7, "feet")
  3177. },
  3178. {
  3179. name: "Big",
  3180. height: math.unit(12, "feet"),
  3181. default: true
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(1500, "feet")
  3186. },
  3187. {
  3188. name: "Megamacro",
  3189. height: math.unit(2, "miles")
  3190. }
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(2, "meter"),
  3198. weight: math.unit(80, "kg"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/elbial/front.svg",
  3202. extra: 1643 / 1556,
  3203. bottom: 60.2 / 1696
  3204. }
  3205. },
  3206. side: {
  3207. height: math.unit(2, "meter"),
  3208. weight: math.unit(80, "kg"),
  3209. name: "Side",
  3210. image: {
  3211. source: "./media/characters/elbial/side.svg",
  3212. extra: 1630 / 1565,
  3213. bottom: 71.5 / 1697
  3214. }
  3215. },
  3216. back: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(80, "kg"),
  3219. name: "Back",
  3220. image: {
  3221. source: "./media/characters/elbial/back.svg",
  3222. extra: 1668 / 1595,
  3223. bottom: 5.6 / 1672
  3224. }
  3225. },
  3226. frontDressed: {
  3227. height: math.unit(2, "meter"),
  3228. weight: math.unit(80, "kg"),
  3229. name: "Front (Dressed)",
  3230. image: {
  3231. source: "./media/characters/elbial/front-dressed.svg",
  3232. extra: 1653 / 1584,
  3233. bottom: 57 / 1708
  3234. }
  3235. },
  3236. genitals: {
  3237. height: math.unit(2 / 3.367, "meter"),
  3238. name: "Genitals",
  3239. image: {
  3240. source: "./media/characters/elbial/genitals.svg"
  3241. }
  3242. },
  3243. },
  3244. [
  3245. {
  3246. name: "Large",
  3247. height: math.unit(100, "feet")
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(500, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Megamacro",
  3256. height: math.unit(10, "miles")
  3257. },
  3258. {
  3259. name: "Gigamacro",
  3260. height: math.unit(25000, "miles")
  3261. },
  3262. {
  3263. name: "Full-Size",
  3264. height: math.unit(8000000, "gigaparsecs")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(60, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/noah/front.svg"
  3277. }
  3278. },
  3279. talons: {
  3280. height: math.unit(0.315, "meter"),
  3281. name: "Talons",
  3282. image: {
  3283. source: "./media/characters/noah/talons.svg"
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Large",
  3290. height: math.unit(50, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(750, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(50, "miles")
  3300. },
  3301. {
  3302. name: "Gigamacro",
  3303. height: math.unit(100000, "miles")
  3304. },
  3305. {
  3306. name: "Full-Size",
  3307. height: math.unit(3000000000, "miles")
  3308. }
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/natalya/front.svg"
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(80, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/natalya/back.svg"
  3328. }
  3329. }
  3330. },
  3331. [
  3332. {
  3333. name: "Normal",
  3334. height: math.unit(150, "feet"),
  3335. default: true
  3336. },
  3337. {
  3338. name: "Megamacro",
  3339. height: math.unit(5, "miles")
  3340. },
  3341. {
  3342. name: "Full-Size",
  3343. height: math.unit(600, "kiloparsecs")
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(50, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/erestrebah/front.svg",
  3356. extra: 208 / 193,
  3357. bottom: 0.055
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(50, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/erestrebah/back.svg",
  3366. extra: 1.3
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(10, "feet")
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(50, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(300, "feet")
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(750, "feet")
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(3, "miles")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(80, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/jennifer/front.svg",
  3403. bottom: 0.11,
  3404. extra: 1.16
  3405. }
  3406. },
  3407. frontAlt: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(80, "kg"),
  3410. name: "Front (Alt)",
  3411. image: {
  3412. source: "./media/characters/jennifer/front-alt.svg"
  3413. }
  3414. }
  3415. },
  3416. [
  3417. {
  3418. name: "Canon Height",
  3419. height: math.unit(120, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Macro+",
  3424. height: math.unit(300, "feet")
  3425. },
  3426. {
  3427. name: "Megamacro",
  3428. height: math.unit(20000, "feet")
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kalista/front.svg",
  3441. extra: 1947 / 1700,
  3442. bottom: 76.6 / 1412.98
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(50, "kg"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/kalista/back.svg",
  3451. extra: 1366 / 1156,
  3452. bottom: 33.9 / 1362.78
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Uncomfortably Small",
  3459. height: math.unit(10, "feet")
  3460. },
  3461. {
  3462. name: "Small",
  3463. height: math.unit(30, "feet")
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(100, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro+",
  3472. height: math.unit(2000, "feet")
  3473. },
  3474. {
  3475. name: "True Form",
  3476. height: math.unit(8924, "miles")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(120, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/ggv/front.svg"
  3489. }
  3490. },
  3491. side: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(120, "kg"),
  3494. name: "Side",
  3495. image: {
  3496. source: "./media/characters/ggv/side.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Extremely Puny",
  3503. height: math.unit(9 + 5 / 12, "feet")
  3504. },
  3505. {
  3506. name: "Horribly Small",
  3507. height: math.unit(47.7, "miles"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Reasonably Sized",
  3512. height: math.unit(25000, "parsecs")
  3513. },
  3514. {
  3515. name: "Slightly Uncompressed",
  3516. height: math.unit(7.77e31, "parsecs")
  3517. },
  3518. {
  3519. name: "Omniversal",
  3520. height: math.unit(1e300, "meters")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(75, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/napalm/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(75, "lb"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/napalm/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Standard",
  3547. height: math.unit(55, "feet"),
  3548. default: true
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(7 + 5 / 6, "feet"),
  3557. weight: math.unit(325, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/asana/front.svg",
  3561. extra: 1133 / 1060,
  3562. bottom: 15.2 / 1148.6
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(7 + 5 / 6, "feet"),
  3567. weight: math.unit(325, "lb"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/asana/back.svg",
  3571. extra: 1114 / 1043,
  3572. bottom: 5 / 1120
  3573. }
  3574. },
  3575. dressedDark: {
  3576. height: math.unit(7 + 5 / 6, "feet"),
  3577. weight: math.unit(325, "lb"),
  3578. name: "Dressed (Dark)",
  3579. image: {
  3580. source: "./media/characters/asana/dressed-dark.svg",
  3581. extra: 1133 / 1060,
  3582. bottom: 15.2 / 1148.6
  3583. }
  3584. },
  3585. dressedLight: {
  3586. height: math.unit(7 + 5 / 6, "feet"),
  3587. weight: math.unit(325, "lb"),
  3588. name: "Dressed (Light)",
  3589. image: {
  3590. source: "./media/characters/asana/dressed-light.svg",
  3591. extra: 1133 / 1060,
  3592. bottom: 15.2 / 1148.6
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Standard",
  3599. height: math.unit(7 + 5 / 6, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(10, "meters")
  3605. },
  3606. {
  3607. name: "Macro",
  3608. height: math.unit(2500, "meters")
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(5e6, "meters")
  3613. },
  3614. {
  3615. name: "Examacro",
  3616. height: math.unit(5e12, "lightyears")
  3617. },
  3618. {
  3619. name: "Max Size",
  3620. height: math.unit(1e31, "lightyears")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(60, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/ebony/front.svg",
  3633. bottom: 0.03,
  3634. extra: 1045 / 810 + 0.03
  3635. }
  3636. },
  3637. side: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(60, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/ebony/side.svg",
  3643. bottom: 0.03,
  3644. extra: 1045 / 810 + 0.03
  3645. }
  3646. },
  3647. back: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(60, "kg"),
  3650. name: "Back",
  3651. image: {
  3652. source: "./media/characters/ebony/back.svg",
  3653. bottom: 0.01,
  3654. extra: 1045 / 810 + 0.01
  3655. }
  3656. },
  3657. },
  3658. [
  3659. // TODO check why I did this lol
  3660. {
  3661. name: "Standard",
  3662. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(200, "feet")
  3668. },
  3669. {
  3670. name: "Gigamacro",
  3671. height: math.unit(13000, "km")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(6, "feet"),
  3680. weight: math.unit(175, "lb"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/mountain/front.svg",
  3684. extra: 972 / 955,
  3685. bottom: 64 / 1036.6
  3686. }
  3687. },
  3688. back: {
  3689. height: math.unit(6, "feet"),
  3690. weight: math.unit(175, "lb"),
  3691. name: "Back",
  3692. image: {
  3693. source: "./media/characters/mountain/back.svg",
  3694. extra: 970 / 950,
  3695. bottom: 28.25 / 999
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Large",
  3702. height: math.unit(20, "meters")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(300, "meters")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(10000, "km"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Examacro",
  3715. height: math.unit(10e9, "lightyears")
  3716. }
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3721. {
  3722. front: {
  3723. height: math.unit(8, "feet"),
  3724. weight: math.unit(500, "lb"),
  3725. name: "Front",
  3726. image: {
  3727. source: "./media/characters/rick/front.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(8, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(5, "km")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(120, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/ona/front.svg"
  3752. }
  3753. },
  3754. frontAlt: {
  3755. height: math.unit(8, "feet"),
  3756. weight: math.unit(120, "lb"),
  3757. name: "Front (Alt)",
  3758. image: {
  3759. source: "./media/characters/ona/front-alt.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/ona/back.svg"
  3768. }
  3769. },
  3770. foot: {
  3771. height: math.unit(1.1, "feet"),
  3772. name: "Foot",
  3773. image: {
  3774. source: "./media/characters/ona/foot.svg"
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(70, "km"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(681818, "miles")
  3787. },
  3788. {
  3789. name: "Examacro",
  3790. height: math.unit(3800000, "lightyears")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(12, "feet"),
  3799. weight: math.unit(3000, "lb"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/mech/front.svg",
  3803. extra: 2900 / 2770,
  3804. bottom: 110 / 3010
  3805. }
  3806. },
  3807. back: {
  3808. height: math.unit(12, "feet"),
  3809. weight: math.unit(3000, "lb"),
  3810. name: "Back",
  3811. image: {
  3812. source: "./media/characters/mech/back.svg",
  3813. extra: 3011 / 2890,
  3814. bottom: 94 / 3105
  3815. }
  3816. },
  3817. maw: {
  3818. height: math.unit(3.07, "feet"),
  3819. name: "Maw",
  3820. image: {
  3821. source: "./media/characters/mech/maw.svg"
  3822. }
  3823. },
  3824. head: {
  3825. height: math.unit(2.82, "feet"),
  3826. name: "Head",
  3827. image: {
  3828. source: "./media/characters/mech/head.svg"
  3829. }
  3830. },
  3831. dick: {
  3832. height: math.unit(1.43, "feet"),
  3833. name: "Dick",
  3834. image: {
  3835. source: "./media/characters/mech/dick.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Normal",
  3842. height: math.unit(12, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(300, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro+",
  3851. height: math.unit(1500, "feet")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(1.3, "meter"),
  3860. weight: math.unit(30, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/gregory/front.svg",
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(1.3, "meter"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(20, "meter")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2.8, "meter"),
  3884. weight: math.unit(200, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/elory/front.svg",
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(2.8, "meter"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(38, "meter")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(470, "feet"),
  3908. weight: math.unit(924, "tons"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/angelpatamon/front.svg",
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(470, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Deity Size I",
  3923. height: math.unit(28651.2, "km")
  3924. },
  3925. {
  3926. name: "Deity Size II",
  3927. height: math.unit(171907.2, "km")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3933. {
  3934. side: {
  3935. height: math.unit(7.2, "meter"),
  3936. weight: math.unit(8.2, "tons"),
  3937. name: "Side",
  3938. image: {
  3939. source: "./media/characters/cryae/side.svg",
  3940. extra: 3500 / 1500
  3941. }
  3942. }
  3943. },
  3944. [
  3945. {
  3946. name: "Normal",
  3947. height: math.unit(7.2, "meter"),
  3948. default: true
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(175, "lb"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/xera/front.svg",
  3961. extra: 2377 / 1972,
  3962. bottom: 75.5 / 2452
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(175, "lb"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/xera/side.svg",
  3971. extra: 2345 / 2019,
  3972. bottom: 39.7 / 2384
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(175, "lb"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/xera/back.svg",
  3981. extra: 2095 / 1984,
  3982. bottom: 67 / 2166
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Small",
  3989. height: math.unit(10, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(500, "meters"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro+",
  3998. height: math.unit(10, "km")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(25000, "km")
  4003. },
  4004. {
  4005. name: "Teramacro",
  4006. height: math.unit(3e6, "km")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(175, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/nebula/front.svg",
  4019. extra: 2566 / 2362,
  4020. bottom: 81 / 2644
  4021. }
  4022. }
  4023. },
  4024. [
  4025. {
  4026. name: "Small",
  4027. height: math.unit(4.5, "meters")
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(1500, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(150, "km")
  4037. },
  4038. {
  4039. name: "Gigamacro",
  4040. height: math.unit(27000, "km")
  4041. }
  4042. ]
  4043. ))
  4044. characterMakers.push(() => makeCharacter(
  4045. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4046. {
  4047. front: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(225, "lb"),
  4050. name: "Front",
  4051. image: {
  4052. source: "./media/characters/abysgar/front.svg"
  4053. }
  4054. }
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(4.5, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(1250, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(125, "km")
  4069. },
  4070. {
  4071. name: "Gigamacro",
  4072. height: math.unit(26000, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(180, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/yakuz/front.svg"
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Small",
  4091. height: math.unit(5, "meters")
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(1500, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(200, "km")
  4101. },
  4102. {
  4103. name: "Gigamacro",
  4104. height: math.unit(100000, "km")
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/mirova/front.svg",
  4117. extra: 3334 / 3071,
  4118. bottom: 42 / 3375.6
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(5, "meters")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(900, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(135, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(20000, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4144. {
  4145. side: {
  4146. height: math.unit(28.35, "feet"),
  4147. weight: math.unit(99.75, "tons"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/asana-mech/side.svg",
  4151. extra: 923 / 699,
  4152. bottom: 50 / 975
  4153. }
  4154. },
  4155. chaingun: {
  4156. height: math.unit(7, "feet"),
  4157. weight: math.unit(2400, "lb"),
  4158. name: "Chaingun",
  4159. image: {
  4160. source: "./media/characters/asana-mech/chaingun.svg"
  4161. }
  4162. },
  4163. laser: {
  4164. height: math.unit(7.12, "feet"),
  4165. weight: math.unit(2000, "lb"),
  4166. name: "Laser",
  4167. image: {
  4168. source: "./media/characters/asana-mech/laser.svg"
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(28.35, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(2500, "feet")
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(25, "miles")
  4185. },
  4186. {
  4187. name: "Examacro",
  4188. height: math.unit(6e8, "lightyears")
  4189. },
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(5, "meters"),
  4197. weight: math.unit(1000, "kg"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/asche/front.svg",
  4201. extra: 1258 / 1190,
  4202. bottom: 47 / 1305
  4203. }
  4204. },
  4205. frontUnderwear: {
  4206. height: math.unit(5, "meters"),
  4207. weight: math.unit(1000, "kg"),
  4208. name: "Front (Underwear)",
  4209. image: {
  4210. source: "./media/characters/asche/front-underwear.svg",
  4211. extra: 1258 / 1190,
  4212. bottom: 47 / 1305
  4213. }
  4214. },
  4215. frontDressed: {
  4216. height: math.unit(5, "meters"),
  4217. weight: math.unit(1000, "kg"),
  4218. name: "Front (Dressed)",
  4219. image: {
  4220. source: "./media/characters/asche/front-dressed.svg",
  4221. extra: 1258 / 1190,
  4222. bottom: 47 / 1305
  4223. }
  4224. },
  4225. frontArmor: {
  4226. height: math.unit(5, "meters"),
  4227. weight: math.unit(1000, "kg"),
  4228. name: "Front (Armored)",
  4229. image: {
  4230. source: "./media/characters/asche/front-armored.svg",
  4231. extra: 1374 / 1308,
  4232. bottom: 23 / 1397
  4233. }
  4234. },
  4235. mp724: {
  4236. height: math.unit(0.96, "meters"),
  4237. weight: math.unit(38, "kg"),
  4238. name: "H&K MP724",
  4239. image: {
  4240. source: "./media/characters/asche/h&k-mp724.svg"
  4241. }
  4242. },
  4243. side: {
  4244. height: math.unit(5, "meters"),
  4245. weight: math.unit(1000, "kg"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/asche/side.svg",
  4249. extra: 1717 / 1609,
  4250. bottom: 0.005
  4251. }
  4252. },
  4253. back: {
  4254. height: math.unit(5, "meters"),
  4255. weight: math.unit(1000, "kg"),
  4256. name: "Back",
  4257. image: {
  4258. source: "./media/characters/asche/back.svg",
  4259. extra: 1570 / 1501
  4260. }
  4261. },
  4262. },
  4263. [
  4264. {
  4265. name: "DEFCON 5",
  4266. height: math.unit(5, "meters")
  4267. },
  4268. {
  4269. name: "DEFCON 4",
  4270. height: math.unit(500, "meters"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "DEFCON 3",
  4275. height: math.unit(5, "km")
  4276. },
  4277. {
  4278. name: "DEFCON 2",
  4279. height: math.unit(500, "km")
  4280. },
  4281. {
  4282. name: "DEFCON 1",
  4283. height: math.unit(500000, "km")
  4284. },
  4285. {
  4286. name: "DEFCON 0",
  4287. height: math.unit(3, "gigaparsecs")
  4288. },
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(2, "meters"),
  4296. weight: math.unit(76, "kg"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/gale/front.svg"
  4300. }
  4301. },
  4302. frontAlt1: {
  4303. height: math.unit(2, "meters"),
  4304. weight: math.unit(76, "kg"),
  4305. name: "Front (Alt 1)",
  4306. image: {
  4307. source: "./media/characters/gale/front-alt-1.svg"
  4308. }
  4309. },
  4310. frontAlt2: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front (Alt 2)",
  4314. image: {
  4315. source: "./media/characters/gale/front-alt-2.svg"
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Normal",
  4322. height: math.unit(7, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(150, "feet"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro+",
  4331. height: math.unit(300, "feet")
  4332. },
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(2, "meters"),
  4340. weight: math.unit(76, "kg"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/draylen/front.svg"
  4344. }
  4345. }
  4346. },
  4347. [
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(150, "feet"),
  4351. default: true
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(7 + 9 / 12, "feet"),
  4360. weight: math.unit(379, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/chez/front.svg"
  4364. }
  4365. },
  4366. side: {
  4367. height: math.unit(7 + 9 / 12, "feet"),
  4368. weight: math.unit(379, "lbs"),
  4369. name: "Side",
  4370. image: {
  4371. source: "./media/characters/chez/side.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(7 + 9 / 12, "feet"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "God King",
  4383. height: math.unit(9750000, "meters")
  4384. }
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4389. {
  4390. front: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(275, "lbs"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/kaylum/front.svg",
  4396. bottom: 0.01,
  4397. extra: 1166 / 1031
  4398. }
  4399. },
  4400. frontWingless: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(275, "lbs"),
  4403. name: "Front (Wingless)",
  4404. image: {
  4405. source: "./media/characters/kaylum/front-wingless.svg",
  4406. bottom: 0.01,
  4407. extra: 1117 / 1031
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(3.05, "meters")
  4415. },
  4416. {
  4417. name: "Master",
  4418. height: math.unit(5.5, "meters")
  4419. },
  4420. {
  4421. name: "Rampage",
  4422. height: math.unit(19, "meters")
  4423. },
  4424. {
  4425. name: "Macro Lite",
  4426. height: math.unit(37, "meters")
  4427. },
  4428. {
  4429. name: "Hyper Predator",
  4430. height: math.unit(61, "meters")
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(138, "meters"),
  4435. default: true
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(150, "lbs"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/geta/front.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Micro",
  4454. height: math.unit(3, "inches"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(5 + 5 / 12, "feet")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(300, "lbs"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/tyrnn/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Main Height",
  4478. height: math.unit(355, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Fave. Height",
  4483. height: math.unit(2400, "feet")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(300, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/appledectomy/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(2500, "feet")
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Gigamacro",
  4511. height: math.unit(5000, "miles")
  4512. },
  4513. {
  4514. name: "Teramacro",
  4515. height: math.unit(250000, "miles")
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(200, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/vulpes/front.svg",
  4528. extra: 573 / 543,
  4529. bottom: 0.033
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(200, "lbs"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/vulpes/side.svg",
  4538. extra: 577 / 549,
  4539. bottom: 11 / 588
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(200, "lbs"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/vulpes/back.svg",
  4548. extra: 573 / 549,
  4549. bottom: 20 / 593
  4550. }
  4551. },
  4552. feet: {
  4553. height: math.unit(1.276, "feet"),
  4554. name: "Feet",
  4555. image: {
  4556. source: "./media/characters/vulpes/feet.svg"
  4557. }
  4558. },
  4559. maw: {
  4560. height: math.unit(1.18, "feet"),
  4561. name: "Maw",
  4562. image: {
  4563. source: "./media/characters/vulpes/maw.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Micro",
  4570. height: math.unit(2, "inches")
  4571. },
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(6.3, "feet")
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(850, "feet")
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(7500, "feet"),
  4583. default: true
  4584. },
  4585. {
  4586. name: "Gigamacro",
  4587. height: math.unit(570000, "miles")
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(210, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/rain-fallen/front.svg"
  4600. }
  4601. },
  4602. side: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(210, "lbs"),
  4605. name: "Side",
  4606. image: {
  4607. source: "./media/characters/rain-fallen/side.svg"
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/back.svg"
  4616. }
  4617. },
  4618. feral: {
  4619. height: math.unit(9, "feet"),
  4620. weight: math.unit(700, "lbs"),
  4621. name: "Feral",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/feral.svg"
  4624. }
  4625. },
  4626. },
  4627. [
  4628. {
  4629. name: "Meddling with Mortals",
  4630. height: math.unit(8 + 8/12, "feet")
  4631. },
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(5, "meter")
  4635. },
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(150, "meter"),
  4639. default: true
  4640. },
  4641. {
  4642. name: "Megamacro",
  4643. height: math.unit(278e6, "meter")
  4644. },
  4645. {
  4646. name: "Gigamacro",
  4647. height: math.unit(2e9, "meter")
  4648. },
  4649. {
  4650. name: "Teramacro",
  4651. height: math.unit(8e12, "meter")
  4652. },
  4653. {
  4654. name: "Devourer",
  4655. height: math.unit(14, "zettameters")
  4656. },
  4657. {
  4658. name: "Scarlet King",
  4659. height: math.unit(18, "yottameters")
  4660. },
  4661. {
  4662. name: "Void",
  4663. height: math.unit(1e88, "yottameters")
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4669. {
  4670. standing: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Standing",
  4674. image: {
  4675. source: "./media/characters/zaakira/standing.svg",
  4676. extra: 1599/1504,
  4677. bottom: 39/1638
  4678. }
  4679. },
  4680. laying: {
  4681. height: math.unit(3, "feet"),
  4682. weight: math.unit(180, "lbs"),
  4683. name: "Laying",
  4684. image: {
  4685. source: "./media/characters/zaakira/laying.svg"
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(12, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(279, "feet"),
  4697. default: true
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4703. {
  4704. femSfw: {
  4705. height: math.unit(8, "feet"),
  4706. weight: math.unit(350, "lb"),
  4707. name: "Fem",
  4708. image: {
  4709. source: "./media/characters/sigvald/fem-sfw.svg",
  4710. extra: 182 / 164,
  4711. bottom: 8.7 / 190.5
  4712. }
  4713. },
  4714. femNsfw: {
  4715. height: math.unit(8, "feet"),
  4716. weight: math.unit(350, "lb"),
  4717. name: "Fem (NSFW)",
  4718. image: {
  4719. source: "./media/characters/sigvald/fem-nsfw.svg",
  4720. extra: 182 / 164,
  4721. bottom: 8.7 / 190.5
  4722. }
  4723. },
  4724. maleNsfw: {
  4725. height: math.unit(8, "feet"),
  4726. weight: math.unit(350, "lb"),
  4727. name: "Male (NSFW)",
  4728. image: {
  4729. source: "./media/characters/sigvald/male-nsfw.svg",
  4730. extra: 182 / 164,
  4731. bottom: 8.7 / 190.5
  4732. }
  4733. },
  4734. hermNsfw: {
  4735. height: math.unit(8, "feet"),
  4736. weight: math.unit(350, "lb"),
  4737. name: "Herm (NSFW)",
  4738. image: {
  4739. source: "./media/characters/sigvald/herm-nsfw.svg",
  4740. extra: 182 / 164,
  4741. bottom: 8.7 / 190.5
  4742. }
  4743. },
  4744. dick: {
  4745. height: math.unit(2.36, "feet"),
  4746. name: "Dick",
  4747. image: {
  4748. source: "./media/characters/sigvald/dick.svg"
  4749. }
  4750. },
  4751. eye: {
  4752. height: math.unit(0.31, "feet"),
  4753. name: "Eye",
  4754. image: {
  4755. source: "./media/characters/sigvald/eye.svg"
  4756. }
  4757. },
  4758. mouth: {
  4759. height: math.unit(0.92, "feet"),
  4760. name: "Mouth",
  4761. image: {
  4762. source: "./media/characters/sigvald/mouth.svg"
  4763. }
  4764. },
  4765. paws: {
  4766. height: math.unit(2.2, "feet"),
  4767. name: "Paws",
  4768. image: {
  4769. source: "./media/characters/sigvald/paws.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(8, "feet")
  4777. },
  4778. {
  4779. name: "Large",
  4780. height: math.unit(12, "feet")
  4781. },
  4782. {
  4783. name: "Larger",
  4784. height: math.unit(20, "feet")
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(150, "feet")
  4789. },
  4790. {
  4791. name: "Macro+",
  4792. height: math.unit(200, "feet"),
  4793. default: true
  4794. },
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4799. {
  4800. side: {
  4801. height: math.unit(12, "feet"),
  4802. weight: math.unit(2000, "kg"),
  4803. name: "Side",
  4804. image: {
  4805. source: "./media/characters/scott/side.svg",
  4806. extra: 754 / 724,
  4807. bottom: 0.069
  4808. }
  4809. },
  4810. upright: {
  4811. height: math.unit(12, "feet"),
  4812. weight: math.unit(2000, "kg"),
  4813. name: "Upright",
  4814. image: {
  4815. source: "./media/characters/scott/upright.svg",
  4816. extra: 3881 / 3722,
  4817. bottom: 0.05
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(12, "feet"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4831. {
  4832. side: {
  4833. height: math.unit(8, "meters"),
  4834. weight: math.unit(84755, "lbs"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/tobias/side.svg",
  4838. extra: 1474 / 1096,
  4839. bottom: 38.9 / 1513.1235
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(8, "meters"),
  4847. default: true
  4848. },
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4853. {
  4854. front: {
  4855. height: math.unit(5.5, "feet"),
  4856. weight: math.unit(400, "lbs"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/kieran/front.svg",
  4860. extra: 2694 / 2364,
  4861. bottom: 217 / 2908
  4862. }
  4863. },
  4864. side: {
  4865. height: math.unit(5.5, "feet"),
  4866. weight: math.unit(400, "lbs"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/kieran/side.svg",
  4870. extra: 875 / 777,
  4871. bottom: 84.6 / 959
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(5.5, "feet"),
  4879. default: true
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4885. {
  4886. side: {
  4887. height: math.unit(2, "meters"),
  4888. weight: math.unit(70, "kg"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/sanya/side.svg",
  4892. bottom: 0.02,
  4893. extra: 1.02
  4894. }
  4895. },
  4896. },
  4897. [
  4898. {
  4899. name: "Small",
  4900. height: math.unit(2, "meters")
  4901. },
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(3, "meters")
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(16, "meters"),
  4909. default: true
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(2, "meters"),
  4918. weight: math.unit(120, "kg"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/miranda/front.svg",
  4922. extra: 195 / 185,
  4923. bottom: 10.9 / 206.5
  4924. }
  4925. },
  4926. back: {
  4927. height: math.unit(2, "meters"),
  4928. weight: math.unit(120, "kg"),
  4929. name: "Back",
  4930. image: {
  4931. source: "./media/characters/miranda/back.svg",
  4932. extra: 201 / 193,
  4933. bottom: 2.3 / 203.7
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(10, "feet"),
  4941. default: true
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "James", species: ["deer"], tags: ["anthro"] },
  4947. {
  4948. side: {
  4949. height: math.unit(2, "meters"),
  4950. weight: math.unit(100, "kg"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/james/front.svg",
  4954. extra: 10 / 8.5
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(8.5, "feet"),
  4962. default: true
  4963. }
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4968. {
  4969. side: {
  4970. height: math.unit(9.5, "feet"),
  4971. weight: math.unit(2500, "lbs"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/heather/side.svg"
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(9.5, "feet"),
  4982. default: true
  4983. }
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4988. {
  4989. side: {
  4990. height: math.unit(6.5, "feet"),
  4991. weight: math.unit(400, "lbs"),
  4992. name: "Side",
  4993. image: {
  4994. source: "./media/characters/lukas/side.svg",
  4995. extra: 7.25 / 6.5
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(6.5, "feet"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5009. {
  5010. side: {
  5011. height: math.unit(5, "feet"),
  5012. weight: math.unit(3000, "lbs"),
  5013. name: "Side",
  5014. image: {
  5015. source: "./media/characters/louise/side.svg"
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(5, "feet"),
  5023. default: true
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5029. {
  5030. side: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(150, "lbs"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/ramona/side.svg"
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(5.3, "meters"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(20, "stories")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(50, "stories")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5057. {
  5058. standing: {
  5059. height: math.unit(5.75, "feet"),
  5060. weight: math.unit(160, "lbs"),
  5061. name: "Standing",
  5062. image: {
  5063. source: "./media/characters/deerpuff/standing.svg",
  5064. extra: 682 / 624
  5065. }
  5066. },
  5067. sitting: {
  5068. height: math.unit(5.75 / 1.79, "feet"),
  5069. weight: math.unit(160, "lbs"),
  5070. name: "Sitting",
  5071. image: {
  5072. source: "./media/characters/deerpuff/sitting.svg",
  5073. bottom: 44 / 400,
  5074. extra: 1
  5075. }
  5076. },
  5077. taurLaying: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(400, "lbs"),
  5080. name: "Taur (Laying)",
  5081. image: {
  5082. source: "./media/characters/deerpuff/taur-laying.svg"
  5083. }
  5084. },
  5085. },
  5086. [
  5087. {
  5088. name: "Puffball",
  5089. height: math.unit(6, "inches")
  5090. },
  5091. {
  5092. name: "Normalpuff",
  5093. height: math.unit(5.75, "feet")
  5094. },
  5095. {
  5096. name: "Macropuff",
  5097. height: math.unit(1500, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Megapuff",
  5102. height: math.unit(500, "miles")
  5103. },
  5104. {
  5105. name: "Gigapuff",
  5106. height: math.unit(250000, "miles")
  5107. },
  5108. {
  5109. name: "Omegapuff",
  5110. height: math.unit(1000, "lightyears")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5116. {
  5117. stomping: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(170, "lbs"),
  5120. name: "Stomping",
  5121. image: {
  5122. source: "./media/characters/vivian/stomping.svg"
  5123. }
  5124. },
  5125. sitting: {
  5126. height: math.unit(6 / 1.75, "feet"),
  5127. weight: math.unit(170, "lbs"),
  5128. name: "Sitting",
  5129. image: {
  5130. source: "./media/characters/vivian/sitting.svg",
  5131. bottom: 1 / 6.4,
  5132. extra: 1,
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(7, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(10, "stories")
  5145. },
  5146. {
  5147. name: "Macro+",
  5148. height: math.unit(30, "stories")
  5149. },
  5150. {
  5151. name: "Megamacro",
  5152. height: math.unit(10, "miles")
  5153. },
  5154. {
  5155. name: "Megamacro+",
  5156. height: math.unit(2750000, "meters")
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5162. {
  5163. front: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(160, "lbs"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/prince/front.svg",
  5169. extra: 3400 / 3000
  5170. }
  5171. },
  5172. jumping: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(160, "lbs"),
  5175. name: "Jumping",
  5176. image: {
  5177. source: "./media/characters/prince/jump.svg",
  5178. extra: 2555 / 2134
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(7.75, "feet"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Not cute",
  5190. height: math.unit(17, "feet")
  5191. },
  5192. {
  5193. name: "I said NOT",
  5194. height: math.unit(91, "feet")
  5195. },
  5196. {
  5197. name: "Please stop",
  5198. height: math.unit(560, "feet")
  5199. },
  5200. {
  5201. name: "What have you done",
  5202. height: math.unit(2200, "feet")
  5203. },
  5204. {
  5205. name: "Deer God",
  5206. height: math.unit(3.6, "miles")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5212. {
  5213. standing: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Standing",
  5217. image: {
  5218. source: "./media/characters/psymon/standing.svg",
  5219. extra: 1888 / 1810,
  5220. bottom: 0.05
  5221. }
  5222. },
  5223. slithering: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(300, "lbs"),
  5226. name: "Slithering",
  5227. image: {
  5228. source: "./media/characters/psymon/slithering.svg",
  5229. extra: 1330 / 1224
  5230. }
  5231. },
  5232. slitheringAlt: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(300, "lbs"),
  5235. name: "Slithering (Alt)",
  5236. image: {
  5237. source: "./media/characters/psymon/slithering-alt.svg",
  5238. extra: 1330 / 1224
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(11.25, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Large",
  5250. height: math.unit(27, "feet")
  5251. },
  5252. {
  5253. name: "Giant",
  5254. height: math.unit(87, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(365, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(3, "miles")
  5263. },
  5264. {
  5265. name: "World Serpent",
  5266. height: math.unit(8000, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/daimos/front.svg",
  5279. extra: 4160 / 3897,
  5280. bottom: 0.021
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(8, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Big Dog",
  5292. height: math.unit(22, "feet")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(127, "feet")
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(3600, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5306. {
  5307. side: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lbs"),
  5310. name: "Side",
  5311. image: {
  5312. source: "./media/characters/blake/side.svg",
  5313. extra: 1212 / 1120,
  5314. bottom: 0.05
  5315. }
  5316. },
  5317. crouched: {
  5318. height: math.unit(6 * 0.57, "feet"),
  5319. weight: math.unit(180, "lbs"),
  5320. name: "Crouched",
  5321. image: {
  5322. source: "./media/characters/blake/crouched.svg",
  5323. extra: 840 / 587,
  5324. bottom: 0.04
  5325. }
  5326. },
  5327. bent: {
  5328. height: math.unit(6 * 0.75, "feet"),
  5329. weight: math.unit(180, "lbs"),
  5330. name: "Bent",
  5331. image: {
  5332. source: "./media/characters/blake/bent.svg",
  5333. extra: 592 / 544,
  5334. bottom: 0.035
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(8 + 1 / 6, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Big Backside",
  5346. height: math.unit(37, "feet")
  5347. },
  5348. {
  5349. name: "Subway Shredder",
  5350. height: math.unit(72, "feet")
  5351. },
  5352. {
  5353. name: "City Carver",
  5354. height: math.unit(1675, "feet")
  5355. },
  5356. {
  5357. name: "Tectonic Tweaker",
  5358. height: math.unit(2300, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/guisetto/front.svg",
  5371. extra: 856 / 817,
  5372. bottom: 0.06
  5373. }
  5374. },
  5375. airborne: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Airborne",
  5379. image: {
  5380. source: "./media/characters/guisetto/airborne.svg",
  5381. extra: 584 / 525
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(10 + 11 / 12, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Large",
  5393. height: math.unit(35, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(475, "feet")
  5398. },
  5399. ]
  5400. ))
  5401. characterMakers.push(() => makeCharacter(
  5402. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5403. {
  5404. front: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(180, "lbs"),
  5407. name: "Front",
  5408. image: {
  5409. source: "./media/characters/luxor/front.svg",
  5410. extra: 2940 / 2152
  5411. }
  5412. },
  5413. back: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(180, "lbs"),
  5416. name: "Back",
  5417. image: {
  5418. source: "./media/characters/luxor/back.svg",
  5419. extra: 1083 / 960
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(5 + 5 / 6, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Lamp",
  5431. height: math.unit(50, "feet")
  5432. },
  5433. {
  5434. name: "Lämp",
  5435. height: math.unit(300, "feet")
  5436. },
  5437. {
  5438. name: "The sun is a lamp",
  5439. height: math.unit(250000, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(50, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/huoyan/front.svg"
  5452. }
  5453. },
  5454. side: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(180, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/huoyan/side.svg"
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Chef",
  5466. height: math.unit(9, "feet")
  5467. },
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(65, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(780, "feet")
  5476. },
  5477. {
  5478. name: "Flaming Mountain",
  5479. height: math.unit(4.8, "miles")
  5480. },
  5481. {
  5482. name: "Celestial",
  5483. height: math.unit(765000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5 + 3 / 4, "feet"),
  5492. weight: math.unit(120, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/tails/front.svg"
  5496. }
  5497. }
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(5 + 3 / 4, "feet"),
  5503. default: true
  5504. }
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(4, "feet"),
  5512. weight: math.unit(50, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/rainy/front.svg"
  5516. }
  5517. }
  5518. },
  5519. [
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(800, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(150, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/rainier/front.svg"
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(2, "mm"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(8 + 4/12, "feet"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/andy-renard/front.svg",
  5555. extra: 1839/1726,
  5556. bottom: 134/1973
  5557. }
  5558. },
  5559. back: {
  5560. height: math.unit(8 + 4/12, "feet"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/andy-renard/back.svg",
  5564. extra: 1838/1710,
  5565. bottom: 105/1943
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Tall",
  5572. height: math.unit(8 + 4/12, "feet")
  5573. },
  5574. {
  5575. name: "Mini Macro",
  5576. height: math.unit(15, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(100, "feet")
  5582. },
  5583. {
  5584. name: "Mega Macro",
  5585. height: math.unit(1000, "feet")
  5586. },
  5587. {
  5588. name: "Giga Macro",
  5589. height: math.unit(10, "miles")
  5590. },
  5591. {
  5592. name: "God Macro",
  5593. height: math.unit(1, "multiverse")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(210, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/cimmaron/front-sfw.svg",
  5606. extra: 701 / 676,
  5607. bottom: 0.046
  5608. }
  5609. },
  5610. back: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(210, "lbs"),
  5613. name: "Back",
  5614. image: {
  5615. source: "./media/characters/cimmaron/back-sfw.svg",
  5616. extra: 701 / 676,
  5617. bottom: 0.046
  5618. }
  5619. },
  5620. frontNsfw: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(210, "lbs"),
  5623. name: "Front (NSFW)",
  5624. image: {
  5625. source: "./media/characters/cimmaron/front-nsfw.svg",
  5626. extra: 701 / 676,
  5627. bottom: 0.046
  5628. }
  5629. },
  5630. backNsfw: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(210, "lbs"),
  5633. name: "Back (NSFW)",
  5634. image: {
  5635. source: "./media/characters/cimmaron/back-nsfw.svg",
  5636. extra: 701 / 676,
  5637. bottom: 0.046
  5638. }
  5639. },
  5640. dick: {
  5641. height: math.unit(1.714, "feet"),
  5642. name: "Dick",
  5643. image: {
  5644. source: "./media/characters/cimmaron/dick.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(6, "feet"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Macro Mayor",
  5656. height: math.unit(350, "meters")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(200, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/akari/front.svg",
  5669. extra: 962 / 901,
  5670. bottom: 0.04
  5671. }
  5672. }
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(5, "inches"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(7, "feet")
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(140, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/cynosura/front.svg",
  5695. extra: 896 / 847
  5696. }
  5697. },
  5698. back: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(140, "lbs"),
  5701. name: "Back",
  5702. image: {
  5703. source: "./media/characters/cynosura/back.svg",
  5704. extra: 1365 / 1250
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Micro",
  5711. height: math.unit(4, "inches")
  5712. },
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(5.75, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Tall",
  5720. height: math.unit(10, "feet")
  5721. },
  5722. {
  5723. name: "Big",
  5724. height: math.unit(20, "feet")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(50, "feet")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(13 + 2/12, "feet"),
  5737. weight: math.unit(800, "kg"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/gin/front.svg",
  5741. extra: 1312/1191,
  5742. bottom: 45/1357
  5743. }
  5744. },
  5745. mouth: {
  5746. height: math.unit(2.39 * 1.8, "feet"),
  5747. name: "Mouth",
  5748. image: {
  5749. source: "./media/characters/gin/mouth.svg"
  5750. }
  5751. },
  5752. hand: {
  5753. height: math.unit(1.57 * 2.19, "feet"),
  5754. name: "Hand",
  5755. image: {
  5756. source: "./media/characters/gin/hand.svg"
  5757. }
  5758. },
  5759. foot: {
  5760. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5761. name: "Foot",
  5762. image: {
  5763. source: "./media/characters/gin/foot.svg"
  5764. }
  5765. },
  5766. sole: {
  5767. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5768. name: "Sole",
  5769. image: {
  5770. source: "./media/characters/gin/sole.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Very Small",
  5777. height: math.unit(13 + 2 / 12, "feet")
  5778. },
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(600, "miles")
  5782. },
  5783. {
  5784. name: "Regular",
  5785. height: math.unit(20, "earths"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(2.2, "solarradii")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(1.2, "galaxies")
  5795. },
  5796. {
  5797. name: "Omegamacro",
  5798. height: math.unit(200, "universes")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6 + 1 / 6, "feet"),
  5807. weight: math.unit(178, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/guy/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(6 + 1 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Large",
  5822. height: math.unit(25 + 7 / 12, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(60 + 9 / 12, "feet")
  5827. },
  5828. {
  5829. name: "Macro+",
  5830. height: math.unit(246, "feet")
  5831. },
  5832. {
  5833. name: "Macro++",
  5834. height: math.unit(878, "feet")
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(9, "feet"),
  5843. weight: math.unit(800, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/tiberius/front.svg",
  5847. extra: 2295 / 2071
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(9, "feet"),
  5852. weight: math.unit(800, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/tiberius/back.svg",
  5856. extra: 2373 / 2160
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(9, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(600, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/surgo/front.svg",
  5877. extra: 3591 / 2227
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(600, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/surgo/back.svg",
  5886. extra: 3557 / 2228
  5887. }
  5888. },
  5889. laying: {
  5890. height: math.unit(6 * 0.85, "feet"),
  5891. weight: math.unit(600, "lbs"),
  5892. name: "Laying",
  5893. image: {
  5894. source: "./media/characters/surgo/laying.svg"
  5895. }
  5896. },
  5897. },
  5898. [
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(6, "feet"),
  5902. default: true
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5908. {
  5909. side: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(150, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/cibus/side.svg",
  5915. extra: 800 / 400
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(6, "feet"),
  5923. default: true
  5924. }
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(240, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/nibbles/front.svg"
  5936. }
  5937. },
  5938. side: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(240, "lbs"),
  5941. name: "Side",
  5942. image: {
  5943. source: "./media/characters/nibbles/side.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(9, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5 + 1 / 6, "feet"),
  5960. weight: math.unit(130, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/rikky/side.svg",
  5964. extra: 851 / 801
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(5 + 1 / 6, "feet")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(152, "feet"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Megamacro",
  5980. height: math.unit(7, "miles")
  5981. }
  5982. ]
  5983. ))
  5984. characterMakers.push(() => makeCharacter(
  5985. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5986. {
  5987. side: {
  5988. height: math.unit(370, "cm"),
  5989. weight: math.unit(350, "lbs"),
  5990. name: "Side",
  5991. image: {
  5992. source: "./media/characters/malfressa/side.svg"
  5993. }
  5994. },
  5995. walking: {
  5996. height: math.unit(370, "cm"),
  5997. weight: math.unit(350, "lbs"),
  5998. name: "Walking",
  5999. image: {
  6000. source: "./media/characters/malfressa/walking.svg"
  6001. }
  6002. },
  6003. feral: {
  6004. height: math.unit(2500, "cm"),
  6005. weight: math.unit(100000, "lbs"),
  6006. name: "Feral",
  6007. image: {
  6008. source: "./media/characters/malfressa/feral.svg",
  6009. extra: 2108 / 837,
  6010. bottom: 0.02
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(370, "cm")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(300, "meters"),
  6022. default: true
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(60, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/jaro/front.svg"
  6035. }
  6036. },
  6037. back: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(60, "kg"),
  6040. name: "Back",
  6041. image: {
  6042. source: "./media/characters/jaro/back.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(7, "inches")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(5.5, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Minimacro",
  6058. height: math.unit(20, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(200, "meters")
  6063. }
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(195, "lb"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/rogue/front.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(90, "feet"),
  6082. default: true
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(5 + 8 / 12, "feet"),
  6091. weight: math.unit(140, "lb"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/piper/front.svg",
  6095. extra: 3948/3655,
  6096. bottom: 0/3948
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Micro",
  6103. height: math.unit(2, "inches")
  6104. },
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 8 / 12, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(250, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(7, "miles")
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(220, "lb"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/gemini/front.svg"
  6129. }
  6130. },
  6131. back: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(220, "lb"),
  6134. name: "Back",
  6135. image: {
  6136. source: "./media/characters/gemini/back.svg"
  6137. }
  6138. },
  6139. kneeling: {
  6140. height: math.unit(6 / 1.5, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Kneeling",
  6143. image: {
  6144. source: "./media/characters/gemini/kneeling.svg",
  6145. bottom: 0.02
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(300, "meters"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Megamacro",
  6157. height: math.unit(6900, "meters")
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6163. {
  6164. anthro: {
  6165. height: math.unit(2.35, "meters"),
  6166. weight: math.unit(73, "kg"),
  6167. name: "Anthro",
  6168. image: {
  6169. source: "./media/characters/alicia/anthro.svg",
  6170. extra: 2571 / 2385,
  6171. bottom: 75 / 2648
  6172. }
  6173. },
  6174. paw: {
  6175. height: math.unit(1.32, "feet"),
  6176. name: "Paw",
  6177. image: {
  6178. source: "./media/characters/alicia/paw.svg"
  6179. }
  6180. },
  6181. feral: {
  6182. height: math.unit(1.69, "meters"),
  6183. weight: math.unit(73, "kg"),
  6184. name: "Feral",
  6185. image: {
  6186. source: "./media/characters/alicia/feral.svg",
  6187. extra: 2123 / 1715,
  6188. bottom: 222 / 2349
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(2.35, "meters")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(60, "meters"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Megamacro",
  6204. height: math.unit(10000, "kilometers")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(7, "feet"),
  6213. weight: math.unit(250, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/archy/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(1, "inch")
  6224. },
  6225. {
  6226. name: "Shorty",
  6227. height: math.unit(5, "feet")
  6228. },
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(7, "feet")
  6232. },
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(600, "meters"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(1, "mile")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(1.65, "meters"),
  6249. weight: math.unit(74, "kg"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/berri/front.svg",
  6253. extra: 857 / 837,
  6254. bottom: 18 / 877
  6255. }
  6256. },
  6257. bum: {
  6258. height: math.unit(1.46, "feet"),
  6259. name: "Bum",
  6260. image: {
  6261. source: "./media/characters/berri/bum.svg"
  6262. }
  6263. },
  6264. mouth: {
  6265. height: math.unit(0.44, "feet"),
  6266. name: "Mouth",
  6267. image: {
  6268. source: "./media/characters/berri/mouth.svg"
  6269. }
  6270. },
  6271. paw: {
  6272. height: math.unit(0.826, "feet"),
  6273. name: "Paw",
  6274. image: {
  6275. source: "./media/characters/berri/paw.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(1.65, "meters")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(60, "m"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Megamacro",
  6291. height: math.unit(9.213, "km")
  6292. },
  6293. {
  6294. name: "Planet Eater",
  6295. height: math.unit(489, "megameters")
  6296. },
  6297. {
  6298. name: "Teramacro",
  6299. height: math.unit(2471635000000, "meters")
  6300. },
  6301. {
  6302. name: "Examacro",
  6303. height: math.unit(8.0624e+26, "meters")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6309. {
  6310. front: {
  6311. height: math.unit(1.72, "meters"),
  6312. weight: math.unit(68, "kg"),
  6313. name: "Front",
  6314. image: {
  6315. source: "./media/characters/lexi/front.svg"
  6316. }
  6317. }
  6318. },
  6319. [
  6320. {
  6321. name: "Very Smol",
  6322. height: math.unit(10, "mm")
  6323. },
  6324. {
  6325. name: "Micro",
  6326. height: math.unit(6.8, "cm"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(1.72, "m")
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(1.69, "meters"),
  6340. weight: math.unit(68, "kg"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/martin/front.svg",
  6344. extra: 596 / 581
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(6.85, "cm"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(1.69, "m")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(1.69, "meters"),
  6365. weight: math.unit(68, "kg"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/juno/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(7, "cm")
  6376. },
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(1.89, "m")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(353, "meters"),
  6384. default: true
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(1.93, "meters"),
  6393. weight: math.unit(83, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/samantha/front.svg"
  6397. }
  6398. },
  6399. frontClothed: {
  6400. height: math.unit(1.93, "meters"),
  6401. weight: math.unit(83, "kg"),
  6402. name: "Front (Clothed)",
  6403. image: {
  6404. source: "./media/characters/samantha/front-clothed.svg"
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/samantha/back.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(1.93, "m")
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(74, "meters"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Macro+",
  6428. height: math.unit(223, "meters"),
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(8381, "meters"),
  6433. },
  6434. {
  6435. name: "Megamacro+",
  6436. height: math.unit(12000, "kilometers")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(1.92, "meters"),
  6445. weight: math.unit(80, "kg"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/dr-clay/front.svg"
  6449. }
  6450. },
  6451. frontClothed: {
  6452. height: math.unit(1.92, "meters"),
  6453. weight: math.unit(80, "kg"),
  6454. name: "Front (Clothed)",
  6455. image: {
  6456. source: "./media/characters/dr-clay/front-clothed.svg"
  6457. }
  6458. }
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(1.92, "m")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(214, "meters"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Macro+",
  6472. height: math.unit(12.237, "meters"),
  6473. },
  6474. {
  6475. name: "Megamacro",
  6476. height: math.unit(557, "megameters"),
  6477. },
  6478. {
  6479. name: "Unimaginable",
  6480. height: math.unit(120e9, "lightyears")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6486. {
  6487. front: {
  6488. height: math.unit(2, "meters"),
  6489. weight: math.unit(80, "kg"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Teramacro",
  6499. height: math.unit(500000, "lightyears"),
  6500. default: true
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6506. {
  6507. crux: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(150, "kg"),
  6510. name: "Crux",
  6511. image: {
  6512. source: "./media/characters/vemus/crux.svg",
  6513. extra: 1074/936,
  6514. bottom: 23/1097
  6515. }
  6516. },
  6517. skunkTanuki: {
  6518. height: math.unit(2, "meters"),
  6519. weight: math.unit(150, "kg"),
  6520. name: "Skunk-Tanuki",
  6521. image: {
  6522. source: "./media/characters/vemus/skunk-tanuki.svg",
  6523. extra: 926/893,
  6524. bottom: 20/946
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Normal",
  6531. height: math.unit(3.75, "meters"),
  6532. default: true
  6533. },
  6534. {
  6535. name: "Big",
  6536. height: math.unit(8, "meters")
  6537. },
  6538. {
  6539. name: "Macro",
  6540. height: math.unit(100, "meters")
  6541. },
  6542. {
  6543. name: "Macro+",
  6544. height: math.unit(1500, "meters")
  6545. },
  6546. {
  6547. name: "Stellar",
  6548. height: math.unit(14e8, "meters")
  6549. },
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(2, "meters"),
  6557. weight: math.unit(70, "kg"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/beherit/front.svg",
  6561. extra: 1408 / 1242
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Normal",
  6568. height: math.unit(6, "feet")
  6569. },
  6570. {
  6571. name: "Lorg",
  6572. height: math.unit(25, "feet"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Lorger",
  6577. height: math.unit(75, "feet")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(200, "meters")
  6582. },
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6587. {
  6588. front: {
  6589. height: math.unit(2, "meters"),
  6590. weight: math.unit(150, "kg"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/everett/front.svg",
  6594. extra: 2038 / 1737,
  6595. bottom: 0.03
  6596. }
  6597. },
  6598. paw: {
  6599. height: math.unit(2 / 3.6, "meters"),
  6600. name: "Paw",
  6601. image: {
  6602. source: "./media/characters/everett/paw.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(15, "feet"),
  6610. default: true
  6611. },
  6612. {
  6613. name: "Lorg",
  6614. height: math.unit(70, "feet"),
  6615. default: true
  6616. },
  6617. {
  6618. name: "Lorger",
  6619. height: math.unit(250, "feet")
  6620. },
  6621. {
  6622. name: "Macro",
  6623. height: math.unit(500, "meters")
  6624. },
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6629. {
  6630. front: {
  6631. height: math.unit(2, "meters"),
  6632. weight: math.unit(86, "kg"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/rose/front.svg",
  6636. extra: 1785/1636,
  6637. bottom: 30/1815
  6638. }
  6639. },
  6640. frontSporty: {
  6641. height: math.unit(2, "meters"),
  6642. weight: math.unit(86, "kg"),
  6643. name: "Front (Sporty)",
  6644. image: {
  6645. source: "./media/characters/rose/front-sporty.svg",
  6646. extra: 350/335,
  6647. bottom: 10/360
  6648. }
  6649. },
  6650. frontAlt: {
  6651. height: math.unit(1.6, "meters"),
  6652. weight: math.unit(86, "kg"),
  6653. name: "Front (Alt)",
  6654. image: {
  6655. source: "./media/characters/rose/front-alt.svg",
  6656. extra: 299/283,
  6657. bottom: 3/302
  6658. }
  6659. },
  6660. plush: {
  6661. height: math.unit(2, "meters"),
  6662. weight: math.unit(86/3, "kg"),
  6663. name: "Plush",
  6664. image: {
  6665. source: "./media/characters/rose/plush.svg",
  6666. extra: 361/337,
  6667. bottom: 11/372
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "True Micro",
  6674. height: math.unit(9, "cm")
  6675. },
  6676. {
  6677. name: "Micro",
  6678. height: math.unit(16, "cm")
  6679. },
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(1.85, "meters"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Mini-Macro",
  6687. height: math.unit(5, "meters")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(15, "meters")
  6692. },
  6693. {
  6694. name: "True Macro",
  6695. height: math.unit(40, "meters")
  6696. },
  6697. {
  6698. name: "City Scale",
  6699. height: math.unit(1, "km")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(2, "meters"),
  6708. weight: math.unit(350, "lbs"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/regal/front.svg"
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(2, "meters"),
  6716. weight: math.unit(350, "lbs"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/regal/back.svg"
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(350, "feet"),
  6727. default: true
  6728. }
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(4 + 11 / 12, "feet"),
  6736. weight: math.unit(100, "lbs"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/opal/front.svg"
  6740. }
  6741. },
  6742. frontAlt: {
  6743. height: math.unit(4 + 11 / 12, "feet"),
  6744. weight: math.unit(100, "lbs"),
  6745. name: "Front (Alt)",
  6746. image: {
  6747. source: "./media/characters/opal/front-alt.svg"
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Small",
  6754. height: math.unit(4 + 11 / 12, "feet")
  6755. },
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(20, "feet"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Macro",
  6763. height: math.unit(120, "feet")
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(80, "miles")
  6768. },
  6769. {
  6770. name: "True Size",
  6771. height: math.unit(100000, "lightyears")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(200, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/vector-wuff/front.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(2.8, "meters")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(450, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Megamacro",
  6799. height: math.unit(15, "kilometers")
  6800. }
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(256, "lbs"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/dannik/front.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(69.57, "meters"),
  6819. default: true
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(6, "feet"),
  6828. weight: math.unit(120, "lbs"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/azura-saharah/front.svg"
  6832. }
  6833. },
  6834. back: {
  6835. height: math.unit(6, "feet"),
  6836. weight: math.unit(120, "lbs"),
  6837. name: "Back",
  6838. image: {
  6839. source: "./media/characters/azura-saharah/back.svg"
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Macro",
  6846. height: math.unit(100, "feet"),
  6847. default: true
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6853. {
  6854. side: {
  6855. height: math.unit(5 + 4 / 12, "feet"),
  6856. weight: math.unit(163, "lbs"),
  6857. name: "Side",
  6858. image: {
  6859. source: "./media/characters/kennedy/side.svg"
  6860. }
  6861. }
  6862. },
  6863. [
  6864. {
  6865. name: "Standard Doggo",
  6866. height: math.unit(5 + 4 / 12, "feet")
  6867. },
  6868. {
  6869. name: "Big Doggo",
  6870. height: math.unit(25 + 3 / 12, "feet"),
  6871. default: true
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(90, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/odi-lunar/front.svg"
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Micro",
  6890. height: math.unit(3, "inches"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Normal",
  6895. height: math.unit(5.5, "feet")
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6901. {
  6902. back: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(220, "lbs"),
  6905. name: "Back",
  6906. image: {
  6907. source: "./media/characters/mandake/back.svg"
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(7, "feet"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Macro",
  6919. height: math.unit(78, "feet")
  6920. },
  6921. {
  6922. name: "Macro+",
  6923. height: math.unit(300, "meters")
  6924. },
  6925. {
  6926. name: "Macro++",
  6927. height: math.unit(2400, "feet")
  6928. },
  6929. {
  6930. name: "Megamacro",
  6931. height: math.unit(5167, "meters")
  6932. },
  6933. {
  6934. name: "Gigamacro",
  6935. height: math.unit(41769, "miles")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(120, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/yozey/front.svg"
  6948. }
  6949. },
  6950. frontAlt: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(120, "lbs"),
  6953. name: "Front (Alt)",
  6954. image: {
  6955. source: "./media/characters/yozey/front-alt.svg"
  6956. }
  6957. },
  6958. side: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(120, "lbs"),
  6961. name: "Side",
  6962. image: {
  6963. source: "./media/characters/yozey/side.svg"
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Micro",
  6970. height: math.unit(3, "inches"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(6, "feet")
  6976. }
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(103, "lbs"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/valeska-voss/front.svg"
  6988. }
  6989. }
  6990. },
  6991. [
  6992. {
  6993. name: "Mini-Sized Sub",
  6994. height: math.unit(3.1, "inches")
  6995. },
  6996. {
  6997. name: "Mid-Sized Sub",
  6998. height: math.unit(6.2, "inches")
  6999. },
  7000. {
  7001. name: "Full-Sized Sub",
  7002. height: math.unit(9.3, "inches")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(5 + 2 / 12, "foot"),
  7007. default: true
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(160, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/gene-zeta/front.svg",
  7020. extra: 3006 / 2826,
  7021. bottom: 182 / 3188
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Micro",
  7028. height: math.unit(6, "inches")
  7029. },
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(5 + 11 / 12, "foot"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(140, "feet")
  7038. },
  7039. {
  7040. name: "Supercharged",
  7041. height: math.unit(2500, "feet")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/razinox/front.svg",
  7054. extra: 1686 / 1548,
  7055. bottom: 28.2 / 1868
  7056. }
  7057. },
  7058. back: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(350, "lbs"),
  7061. name: "Back",
  7062. image: {
  7063. source: "./media/characters/razinox/back.svg",
  7064. extra: 1660 / 1590,
  7065. bottom: 15 / 1665
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(10 + 8 / 12, "foot")
  7073. },
  7074. {
  7075. name: "Minimacro",
  7076. height: math.unit(15, "foot")
  7077. },
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(60, "foot"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Megamacro",
  7085. height: math.unit(5, "miles")
  7086. },
  7087. {
  7088. name: "Gigamacro",
  7089. height: math.unit(6000, "miles")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(150, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/cobalt/front.svg"
  7102. }
  7103. }
  7104. },
  7105. [
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(8 + 1 / 12, "foot")
  7109. },
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(111, "foot"),
  7113. default: true
  7114. },
  7115. {
  7116. name: "Supracosmic",
  7117. height: math.unit(1e42, "feet")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(140, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/amanda/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(5, "inches"),
  7137. default: true
  7138. },
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(2.75, "meters"),
  7146. weight: math.unit(1200, "lb"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/teal/front.svg",
  7150. extra: 2463 / 2320,
  7151. bottom: 166 / 2629
  7152. }
  7153. },
  7154. back: {
  7155. height: math.unit(2.75, "meters"),
  7156. weight: math.unit(1200, "lb"),
  7157. name: "Back",
  7158. image: {
  7159. source: "./media/characters/teal/back.svg",
  7160. extra: 2580 / 2489,
  7161. bottom: 151 / 2731
  7162. }
  7163. },
  7164. sitting: {
  7165. height: math.unit(1.9, "meters"),
  7166. weight: math.unit(1200, "lb"),
  7167. name: "Sitting",
  7168. image: {
  7169. source: "./media/characters/teal/sitting.svg",
  7170. extra: 623 / 590,
  7171. bottom: 121 / 744
  7172. }
  7173. },
  7174. standing: {
  7175. height: math.unit(2.75, "meters"),
  7176. weight: math.unit(1200, "lb"),
  7177. name: "Standing",
  7178. image: {
  7179. source: "./media/characters/teal/standing.svg",
  7180. extra: 923 / 893,
  7181. bottom: 60 / 983
  7182. }
  7183. },
  7184. stretching: {
  7185. height: math.unit(3.65, "meters"),
  7186. weight: math.unit(1200, "lb"),
  7187. name: "Stretching",
  7188. image: {
  7189. source: "./media/characters/teal/stretching.svg",
  7190. extra: 1276 / 1244,
  7191. bottom: 0 / 1276
  7192. }
  7193. },
  7194. legged: {
  7195. height: math.unit(1.3, "meters"),
  7196. weight: math.unit(100, "lb"),
  7197. name: "Legged",
  7198. image: {
  7199. source: "./media/characters/teal/legged.svg",
  7200. extra: 462 / 437,
  7201. bottom: 24 / 486
  7202. }
  7203. },
  7204. naga: {
  7205. height: math.unit(5.4, "meters"),
  7206. weight: math.unit(4000, "lb"),
  7207. name: "Naga",
  7208. image: {
  7209. source: "./media/characters/teal/naga.svg",
  7210. extra: 1902 / 1858,
  7211. bottom: 0 / 1902
  7212. }
  7213. },
  7214. hand: {
  7215. height: math.unit(0.52, "meters"),
  7216. name: "Hand",
  7217. image: {
  7218. source: "./media/characters/teal/hand.svg"
  7219. }
  7220. },
  7221. maw: {
  7222. height: math.unit(0.43, "meters"),
  7223. name: "Maw",
  7224. image: {
  7225. source: "./media/characters/teal/maw.svg"
  7226. }
  7227. },
  7228. slit: {
  7229. height: math.unit(0.25, "meters"),
  7230. name: "Slit",
  7231. image: {
  7232. source: "./media/characters/teal/slit.svg"
  7233. }
  7234. },
  7235. },
  7236. [
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(2.75, "meters"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(300, "feet")
  7245. },
  7246. {
  7247. name: "Macro+",
  7248. height: math.unit(2000, "feet")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7254. {
  7255. frontCat: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(180, "lbs"),
  7258. name: "Front (Cat)",
  7259. image: {
  7260. source: "./media/characters/ravin-amulet/front-cat.svg"
  7261. }
  7262. },
  7263. frontCatAlt: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(180, "lbs"),
  7266. name: "Front (Alt, Cat)",
  7267. image: {
  7268. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7269. }
  7270. },
  7271. frontWerewolf: {
  7272. height: math.unit(6 * 1.2, "feet"),
  7273. weight: math.unit(225, "lbs"),
  7274. name: "Front (Werewolf)",
  7275. image: {
  7276. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7277. }
  7278. },
  7279. backWerewolf: {
  7280. height: math.unit(6 * 1.2, "feet"),
  7281. weight: math.unit(225, "lbs"),
  7282. name: "Back (Werewolf)",
  7283. image: {
  7284. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Nano",
  7291. height: math.unit(1, "micrometer")
  7292. },
  7293. {
  7294. name: "Micro",
  7295. height: math.unit(1, "inch")
  7296. },
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(6, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(60, "feet")
  7305. }
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(165, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/fluoresce/front.svg"
  7317. }
  7318. }
  7319. },
  7320. [
  7321. {
  7322. name: "Micro",
  7323. height: math.unit(6, "cm")
  7324. },
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(5 + 7 / 12, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(56, "feet")
  7333. },
  7334. {
  7335. name: "Megamacro",
  7336. height: math.unit(1.9, "miles")
  7337. },
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(9 + 6 / 12, "feet"),
  7345. weight: math.unit(523, "lbs"),
  7346. name: "Side",
  7347. image: {
  7348. source: "./media/characters/aurora/side.svg"
  7349. }
  7350. }
  7351. },
  7352. [
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(9 + 6 / 12, "feet")
  7356. },
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(96, "feet"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Macro+",
  7364. height: math.unit(243, "feet")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(194, "cm"),
  7373. weight: math.unit(90, "kg"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/ranek/front.svg"
  7377. }
  7378. },
  7379. side: {
  7380. height: math.unit(194, "cm"),
  7381. weight: math.unit(90, "kg"),
  7382. name: "Side",
  7383. image: {
  7384. source: "./media/characters/ranek/side.svg"
  7385. }
  7386. },
  7387. back: {
  7388. height: math.unit(194, "cm"),
  7389. weight: math.unit(90, "kg"),
  7390. name: "Back",
  7391. image: {
  7392. source: "./media/characters/ranek/back.svg"
  7393. }
  7394. },
  7395. feral: {
  7396. height: math.unit(30, "cm"),
  7397. weight: math.unit(1.6, "lbs"),
  7398. name: "Feral",
  7399. image: {
  7400. source: "./media/characters/ranek/feral.svg"
  7401. }
  7402. },
  7403. },
  7404. [
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(194, "cm"),
  7408. default: true
  7409. },
  7410. {
  7411. name: "Macro",
  7412. height: math.unit(100, "meters")
  7413. },
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7418. {
  7419. front: {
  7420. height: math.unit(5 + 6 / 12, "feet"),
  7421. weight: math.unit(153, "lbs"),
  7422. name: "Front",
  7423. image: {
  7424. source: "./media/characters/andrew-cooper/front.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Nano",
  7431. height: math.unit(1, "mm")
  7432. },
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(2, "inches")
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(5 + 6 / 12, "feet"),
  7440. default: true
  7441. }
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(180, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/akane-sato/front.svg",
  7453. extra: 1219 / 1140
  7454. }
  7455. },
  7456. back: {
  7457. height: math.unit(6, "feet"),
  7458. weight: math.unit(180, "lbs"),
  7459. name: "Back",
  7460. image: {
  7461. source: "./media/characters/akane-sato/back.svg",
  7462. extra: 1219 / 1170
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(2.5, "meters")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(250, "meters"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Megamacro",
  7478. height: math.unit(25, "km")
  7479. },
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(6, "feet"),
  7487. weight: math.unit(65, "kg"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/rook/front.svg",
  7491. extra: 960 / 950
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Normal",
  7498. height: math.unit(8.8, "feet")
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(88, "feet"),
  7503. default: true
  7504. },
  7505. {
  7506. name: "Megamacro",
  7507. height: math.unit(8, "miles")
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(12 + 2 / 12, "feet"),
  7516. weight: math.unit(808, "lbs"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/prodigy/front.svg"
  7520. }
  7521. }
  7522. },
  7523. [
  7524. {
  7525. name: "Normal",
  7526. height: math.unit(12 + 2 / 12, "feet"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Macro",
  7531. height: math.unit(143, "feet")
  7532. },
  7533. {
  7534. name: "Macro+",
  7535. height: math.unit(400, "feet")
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(6, "feet"),
  7544. weight: math.unit(225, "lbs"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/daniel/front.svg"
  7548. }
  7549. },
  7550. leaning: {
  7551. height: math.unit(6, "feet"),
  7552. weight: math.unit(225, "lbs"),
  7553. name: "Leaning",
  7554. image: {
  7555. source: "./media/characters/daniel/leaning.svg"
  7556. }
  7557. },
  7558. },
  7559. [
  7560. {
  7561. name: "Macro",
  7562. height: math.unit(1000, "feet"),
  7563. default: true
  7564. },
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7569. {
  7570. front: {
  7571. height: math.unit(6, "feet"),
  7572. weight: math.unit(88, "lbs"),
  7573. name: "Front",
  7574. image: {
  7575. source: "./media/characters/chiros/front.svg",
  7576. extra: 306 / 226
  7577. }
  7578. },
  7579. side: {
  7580. height: math.unit(6, "feet"),
  7581. weight: math.unit(88, "lbs"),
  7582. name: "Side",
  7583. image: {
  7584. source: "./media/characters/chiros/side.svg",
  7585. extra: 306 / 226
  7586. }
  7587. },
  7588. },
  7589. [
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(6, "cm"),
  7593. default: true
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7599. {
  7600. front: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(100, "lbs"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/selka/front.svg",
  7606. extra: 947 / 887
  7607. }
  7608. }
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(5, "cm"),
  7614. default: true
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(8 + 3 / 12, "feet"),
  7623. weight: math.unit(424, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/verin/front.svg",
  7627. extra: 1845 / 1550
  7628. }
  7629. },
  7630. frontArmored: {
  7631. height: math.unit(8 + 3 / 12, "feet"),
  7632. weight: math.unit(424, "lbs"),
  7633. name: "Front (Armored)",
  7634. image: {
  7635. source: "./media/characters/verin/front-armor.svg",
  7636. extra: 1845 / 1550,
  7637. bottom: 0.01
  7638. }
  7639. },
  7640. back: {
  7641. height: math.unit(8 + 3 / 12, "feet"),
  7642. weight: math.unit(424, "lbs"),
  7643. name: "Back",
  7644. image: {
  7645. source: "./media/characters/verin/back.svg",
  7646. bottom: 0.1,
  7647. extra: 1
  7648. }
  7649. },
  7650. foot: {
  7651. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7652. name: "Foot",
  7653. image: {
  7654. source: "./media/characters/verin/foot.svg"
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(8 + 3 / 12, "feet")
  7662. },
  7663. {
  7664. name: "Minimacro",
  7665. height: math.unit(21, "feet"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(626, "feet")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(2.718, "meters"),
  7679. weight: math.unit(150, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/sovrim-terraquian/front.svg"
  7683. }
  7684. },
  7685. back: {
  7686. height: math.unit(2.718, "meters"),
  7687. weight: math.unit(150, "lbs"),
  7688. name: "Back",
  7689. image: {
  7690. source: "./media/characters/sovrim-terraquian/back.svg"
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(2, "inches")
  7698. },
  7699. {
  7700. name: "Small",
  7701. height: math.unit(1, "meter")
  7702. },
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(Math.E, "meters"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(20, "meters")
  7711. },
  7712. {
  7713. name: "Macro+",
  7714. height: math.unit(400, "meters")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(7, "feet"),
  7723. weight: math.unit(489, "lbs"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/reece-silvermane/front.svg",
  7727. bottom: 0.02,
  7728. extra: 1
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(1.5, "miles"),
  7736. default: true
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(78, "kg"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/kane/front.svg",
  7749. extra: 978 / 899
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Normal",
  7756. height: math.unit(2.1, "m"),
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(1, "km"),
  7761. default: true
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(6, "feet"),
  7770. weight: math.unit(200, "kg"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/tegon/front.svg",
  7774. bottom: 0.01,
  7775. extra: 1
  7776. }
  7777. },
  7778. },
  7779. [
  7780. {
  7781. name: "Micro",
  7782. height: math.unit(1, "inch")
  7783. },
  7784. {
  7785. name: "Normal",
  7786. height: math.unit(6 + 3 / 12, "feet"),
  7787. default: true
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(300, "feet")
  7792. },
  7793. {
  7794. name: "Megamacro",
  7795. height: math.unit(69, "miles")
  7796. },
  7797. ]
  7798. ))
  7799. characterMakers.push(() => makeCharacter(
  7800. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7801. {
  7802. side: {
  7803. height: math.unit(6, "feet"),
  7804. weight: math.unit(2304, "lbs"),
  7805. name: "Side",
  7806. image: {
  7807. source: "./media/characters/arcturax/side.svg",
  7808. extra: 790 / 376,
  7809. bottom: 0.01
  7810. }
  7811. },
  7812. },
  7813. [
  7814. {
  7815. name: "Micro",
  7816. height: math.unit(2, "inch")
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(6, "feet")
  7821. },
  7822. {
  7823. name: "Macro",
  7824. height: math.unit(39, "feet"),
  7825. default: true
  7826. },
  7827. {
  7828. name: "Megamacro",
  7829. height: math.unit(7, "miles")
  7830. },
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7835. {
  7836. front: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(50, "lbs"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/sentri/front.svg",
  7842. extra: 1750 / 1570,
  7843. bottom: 0.025
  7844. }
  7845. },
  7846. frontAlt: {
  7847. height: math.unit(6, "feet"),
  7848. weight: math.unit(50, "lbs"),
  7849. name: "Front (Alt)",
  7850. image: {
  7851. source: "./media/characters/sentri/front-alt.svg",
  7852. extra: 1750 / 1570,
  7853. bottom: 0.025
  7854. }
  7855. },
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(15, "feet"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(2500, "feet")
  7866. }
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(5 + 8 / 12, "feet"),
  7874. weight: math.unit(130, "lbs"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/corvin/front.svg",
  7878. extra: 1803 / 1629
  7879. }
  7880. },
  7881. frontShirt: {
  7882. height: math.unit(5 + 8 / 12, "feet"),
  7883. weight: math.unit(130, "lbs"),
  7884. name: "Front (Shirt)",
  7885. image: {
  7886. source: "./media/characters/corvin/front-shirt.svg",
  7887. extra: 1803 / 1629
  7888. }
  7889. },
  7890. frontPoncho: {
  7891. height: math.unit(5 + 8 / 12, "feet"),
  7892. weight: math.unit(130, "lbs"),
  7893. name: "Front (Poncho)",
  7894. image: {
  7895. source: "./media/characters/corvin/front-poncho.svg",
  7896. extra: 1803 / 1629
  7897. }
  7898. },
  7899. side: {
  7900. height: math.unit(5 + 8 / 12, "feet"),
  7901. weight: math.unit(130, "lbs"),
  7902. name: "Side",
  7903. image: {
  7904. source: "./media/characters/corvin/side.svg",
  7905. extra: 1012 / 945
  7906. }
  7907. },
  7908. back: {
  7909. height: math.unit(5 + 8 / 12, "feet"),
  7910. weight: math.unit(130, "lbs"),
  7911. name: "Back",
  7912. image: {
  7913. source: "./media/characters/corvin/back.svg",
  7914. extra: 1803 / 1629
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Micro",
  7921. height: math.unit(3, "inches")
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(5 + 8 / 12, "feet")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(300, "feet"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(500, "miles")
  7935. }
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(135, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/q/front.svg",
  7947. extra: 854 / 752,
  7948. bottom: 0.005
  7949. }
  7950. },
  7951. back: {
  7952. height: math.unit(6, "feet"),
  7953. weight: math.unit(130, "lbs"),
  7954. name: "Back",
  7955. image: {
  7956. source: "./media/characters/q/back.svg",
  7957. extra: 854 / 752
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(90, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Extra Macro",
  7969. height: math.unit(300, "feet"),
  7970. },
  7971. {
  7972. name: "BIG WALF",
  7973. height: math.unit(750, "feet"),
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(150, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/carley/front.svg",
  7986. extra: 3927 / 3540,
  7987. bottom: 29.2 / 735
  7988. }
  7989. }
  7990. },
  7991. [
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(6 + 3 / 12, "feet")
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(185, "feet"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Megamacro",
  8003. height: math.unit(8, "miles"),
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(3, "feet"),
  8012. weight: math.unit(28, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/citrine/front.svg"
  8016. }
  8017. }
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(3, "feet"),
  8023. default: true
  8024. }
  8025. ]
  8026. ))
  8027. characterMakers.push(() => makeCharacter(
  8028. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8029. {
  8030. front: {
  8031. height: math.unit(14, "feet"),
  8032. weight: math.unit(1450, "kg"),
  8033. capacity: math.unit(15, "people"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/aura-starwind/front.svg",
  8037. extra: 1455 / 1335
  8038. }
  8039. },
  8040. side: {
  8041. height: math.unit(14, "feet"),
  8042. weight: math.unit(1450, "kg"),
  8043. capacity: math.unit(15, "people"),
  8044. name: "Side",
  8045. image: {
  8046. source: "./media/characters/aura-starwind/side.svg",
  8047. extra: 1654 / 1497
  8048. }
  8049. },
  8050. taur: {
  8051. height: math.unit(18, "feet"),
  8052. weight: math.unit(5500, "kg"),
  8053. capacity: math.unit(50, "people"),
  8054. name: "Taur",
  8055. image: {
  8056. source: "./media/characters/aura-starwind/taur.svg",
  8057. extra: 1760 / 1650
  8058. }
  8059. },
  8060. feral: {
  8061. height: math.unit(46, "feet"),
  8062. weight: math.unit(25000, "kg"),
  8063. capacity: math.unit(120, "people"),
  8064. name: "Feral",
  8065. image: {
  8066. source: "./media/characters/aura-starwind/feral.svg"
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Normal",
  8073. height: math.unit(14, "feet"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(50, "meters")
  8079. },
  8080. {
  8081. name: "Megamacro",
  8082. height: math.unit(5000, "meters")
  8083. },
  8084. {
  8085. name: "Gigamacro",
  8086. height: math.unit(100000, "kilometers")
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(2 + 7 / 12, "feet"),
  8095. weight: math.unit(32, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/rivet/front.svg",
  8099. extra: 1716 / 1658,
  8100. bottom: 0.03
  8101. }
  8102. },
  8103. foot: {
  8104. height: math.unit(0.551, "feet"),
  8105. name: "Rivet's Foot",
  8106. image: {
  8107. source: "./media/characters/rivet/foot.svg"
  8108. },
  8109. rename: true
  8110. }
  8111. },
  8112. [
  8113. {
  8114. name: "Micro",
  8115. height: math.unit(1.5, "inches"),
  8116. },
  8117. {
  8118. name: "Normal",
  8119. height: math.unit(2 + 7 / 12, "feet"),
  8120. default: true
  8121. },
  8122. {
  8123. name: "Macro",
  8124. height: math.unit(85, "feet")
  8125. },
  8126. {
  8127. name: "Megamacro",
  8128. height: math.unit(2.2, "km")
  8129. }
  8130. ]
  8131. ))
  8132. characterMakers.push(() => makeCharacter(
  8133. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8134. {
  8135. front: {
  8136. height: math.unit(5 + 9 / 12, "feet"),
  8137. weight: math.unit(150, "lbs"),
  8138. name: "Front",
  8139. image: {
  8140. source: "./media/characters/coffee/front.svg",
  8141. extra: 3666 / 3032,
  8142. bottom: 0.04
  8143. }
  8144. },
  8145. foot: {
  8146. height: math.unit(1.29, "feet"),
  8147. name: "Foot",
  8148. image: {
  8149. source: "./media/characters/coffee/foot.svg"
  8150. }
  8151. },
  8152. },
  8153. [
  8154. {
  8155. name: "Micro",
  8156. height: math.unit(2, "inches"),
  8157. },
  8158. {
  8159. name: "Normal",
  8160. height: math.unit(5 + 9 / 12, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(800, "feet")
  8166. },
  8167. {
  8168. name: "Megamacro",
  8169. height: math.unit(25, "miles")
  8170. }
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(6, "feet"),
  8178. weight: math.unit(200, "lbs"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/chari-gal/front.svg",
  8182. extra: 1568 / 1385,
  8183. bottom: 0.047
  8184. }
  8185. },
  8186. gigantamax: {
  8187. height: math.unit(6 * 16, "feet"),
  8188. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8189. name: "Gigantamax",
  8190. image: {
  8191. source: "./media/characters/chari-gal/gigantamax.svg",
  8192. extra: 1124 / 888,
  8193. bottom: 0.03
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(5 + 7 / 12, "feet")
  8201. },
  8202. {
  8203. name: "Macro",
  8204. height: math.unit(200, "feet"),
  8205. default: true
  8206. }
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(150, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/nova/front.svg",
  8218. extra: 5000 / 4722,
  8219. bottom: 0.02
  8220. }
  8221. }
  8222. },
  8223. [
  8224. {
  8225. name: "Micro-",
  8226. height: math.unit(0.8, "inches")
  8227. },
  8228. {
  8229. name: "Micro",
  8230. height: math.unit(2, "inches"),
  8231. default: true
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(3 + 1 / 12, "feet"),
  8240. weight: math.unit(21.7, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/argent/front.svg",
  8244. extra: 1471 / 1331,
  8245. bottom: 100.8 / 1575.5
  8246. }
  8247. }
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(2, "inches")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(3 + 1 / 12, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(120, "feet")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8267. {
  8268. lamp: {
  8269. height: math.unit(7 * 1559 / 989, "feet"),
  8270. name: "Magic Lamp",
  8271. image: {
  8272. source: "./media/characters/mira-al-cul/lamp.svg",
  8273. extra: 1617 / 1559
  8274. }
  8275. },
  8276. front: {
  8277. height: math.unit(7, "feet"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/mira-al-cul/front.svg",
  8281. extra: 1044 / 990
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Heavily Restricted",
  8288. height: math.unit(7 * 1559 / 989, "feet")
  8289. },
  8290. {
  8291. name: "Freshly Freed",
  8292. height: math.unit(50 * 1559 / 989, "feet")
  8293. },
  8294. {
  8295. name: "World Encompassing",
  8296. height: math.unit(10000 * 1559 / 989, "miles")
  8297. },
  8298. {
  8299. name: "Galactic",
  8300. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8301. },
  8302. {
  8303. name: "Palmed Universe",
  8304. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Multiversal Matriarch",
  8309. height: math.unit(8.87e10, "yottameters")
  8310. },
  8311. {
  8312. name: "Void Mother",
  8313. height: math.unit(3.14e110, "yottaparsecs")
  8314. },
  8315. {
  8316. name: "Toying with Transcendence",
  8317. height: math.unit(1e307, "meters")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8323. {
  8324. front: {
  8325. height: math.unit(17 + 1 / 12, "feet"),
  8326. weight: math.unit(476.2 * 5, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/kuro-shi-uchū/front.svg",
  8330. extra: 2329 / 1835,
  8331. bottom: 0.02
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Micro",
  8338. height: math.unit(2, "inches")
  8339. },
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(12, "meters")
  8343. },
  8344. {
  8345. name: "Planetary",
  8346. height: math.unit(0.00929, "AU"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Universal",
  8351. height: math.unit(20, "gigaparsecs")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(5 + 2 / 12, "feet"),
  8360. weight: math.unit(120, "lbs"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/katherine/front.svg",
  8364. extra: 2075 / 1969
  8365. }
  8366. },
  8367. dress: {
  8368. height: math.unit(5 + 2 / 12, "feet"),
  8369. weight: math.unit(120, "lbs"),
  8370. name: "Dress",
  8371. image: {
  8372. source: "./media/characters/katherine/dress.svg",
  8373. extra: 2258 / 2064
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Micro",
  8380. height: math.unit(1, "inches"),
  8381. default: true
  8382. },
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(5 + 2 / 12, "feet")
  8386. },
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(100, "meters")
  8390. },
  8391. {
  8392. name: "Megamacro",
  8393. height: math.unit(80, "miles")
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8399. {
  8400. front: {
  8401. height: math.unit(7 + 8 / 12, "feet"),
  8402. weight: math.unit(250, "lbs"),
  8403. name: "Front",
  8404. image: {
  8405. source: "./media/characters/yevis/front.svg",
  8406. extra: 1938 / 1755
  8407. }
  8408. }
  8409. },
  8410. [
  8411. {
  8412. name: "Mortal",
  8413. height: math.unit(7 + 8 / 12, "feet")
  8414. },
  8415. {
  8416. name: "Battle",
  8417. height: math.unit(25 + 11 / 12, "feet")
  8418. },
  8419. {
  8420. name: "Wrath",
  8421. height: math.unit(1654 + 11 / 12, "feet")
  8422. },
  8423. {
  8424. name: "Planet Destroyer",
  8425. height: math.unit(12000, "miles")
  8426. },
  8427. {
  8428. name: "Galaxy Conqueror",
  8429. height: math.unit(1.45, "zettameters"),
  8430. default: true
  8431. },
  8432. {
  8433. name: "Universal War",
  8434. height: math.unit(184, "gigaparsecs")
  8435. },
  8436. {
  8437. name: "Eternity War",
  8438. height: math.unit(1.98e55, "yottaparsecs")
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(5 + 8 / 12, "feet"),
  8447. weight: math.unit(63, "kg"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/xavier/front.svg",
  8451. extra: 944 / 883
  8452. }
  8453. },
  8454. frontStretch: {
  8455. height: math.unit(5 + 8 / 12, "feet"),
  8456. weight: math.unit(63, "kg"),
  8457. name: "Stretching",
  8458. image: {
  8459. source: "./media/characters/xavier/front-stretch.svg",
  8460. extra: 962 / 820
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(5 + 8 / 12, "feet")
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(100, "meters"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "McLargeHuge",
  8476. height: math.unit(10, "miles")
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(5 + 5 / 12, "feet"),
  8485. weight: math.unit(150, "lb"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/joshii/front.svg",
  8489. extra: 765 / 653,
  8490. bottom: 51 / 816
  8491. }
  8492. },
  8493. foot: {
  8494. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8495. name: "Foot",
  8496. image: {
  8497. source: "./media/characters/joshii/foot.svg"
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Micro",
  8504. height: math.unit(2, "inches"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(5 + 5 / 12, "feet")
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(785, "feet")
  8514. },
  8515. {
  8516. name: "Megamacro",
  8517. height: math.unit(24.5, "miles")
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(6, "feet"),
  8526. weight: math.unit(150, "lb"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/goddess-elizabeth/front.svg",
  8530. extra: 1800 / 1525,
  8531. bottom: 0.005
  8532. }
  8533. },
  8534. foot: {
  8535. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8536. name: "Foot",
  8537. image: {
  8538. source: "./media/characters/goddess-elizabeth/foot.svg"
  8539. }
  8540. },
  8541. mouth: {
  8542. height: math.unit(6, "feet"),
  8543. name: "Mouth",
  8544. image: {
  8545. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(12, "feet")
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(80, "miles"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(15000, "parsecs")
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(5 + 9 / 12, "feet"),
  8570. weight: math.unit(144, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/kara/front.svg"
  8574. }
  8575. },
  8576. feet: {
  8577. height: math.unit(6 / 6.765, "feet"),
  8578. name: "Kara's Feet",
  8579. rename: true,
  8580. image: {
  8581. source: "./media/characters/kara/feet.svg"
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(5 + 9 / 12, "feet")
  8589. },
  8590. {
  8591. name: "Macro",
  8592. height: math.unit(174, "feet"),
  8593. default: true
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(18, "feet"),
  8602. weight: math.unit(4050, "lb"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/tyrone/front.svg",
  8606. extra: 2405 / 2270,
  8607. bottom: 182 / 2587
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(18, "feet"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(300, "feet")
  8620. },
  8621. {
  8622. name: "Megamacro",
  8623. height: math.unit(15, "km")
  8624. },
  8625. {
  8626. name: "Gigamacro",
  8627. height: math.unit(500, "km")
  8628. },
  8629. {
  8630. name: "Teramacro",
  8631. height: math.unit(0.5, "gigameters")
  8632. },
  8633. {
  8634. name: "Omnimacro",
  8635. height: math.unit(1e252, "yottauniverse")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(7 + 8 / 12, "feet"),
  8644. weight: math.unit(120, "lb"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/danny/front.svg",
  8648. extra: 1490 / 1350
  8649. }
  8650. },
  8651. back: {
  8652. height: math.unit(7 + 8 / 12, "feet"),
  8653. weight: math.unit(120, "lb"),
  8654. name: "Back",
  8655. image: {
  8656. source: "./media/characters/danny/back.svg",
  8657. extra: 1490 / 1350
  8658. }
  8659. },
  8660. },
  8661. [
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(7 + 8 / 12, "feet"),
  8665. default: true
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(3.5, "inches"),
  8674. weight: math.unit(19, "grams"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/mallow/front.svg",
  8678. extra: 471 / 431
  8679. }
  8680. },
  8681. back: {
  8682. height: math.unit(3.5, "inches"),
  8683. weight: math.unit(19, "grams"),
  8684. name: "Back",
  8685. image: {
  8686. source: "./media/characters/mallow/back.svg",
  8687. extra: 471 / 431
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(3.5, "inches"),
  8695. default: true
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(9, "feet"),
  8704. weight: math.unit(230, "kg"),
  8705. name: "Front",
  8706. image: {
  8707. source: "./media/characters/starry-aqua/front.svg"
  8708. }
  8709. },
  8710. back: {
  8711. height: math.unit(9, "feet"),
  8712. weight: math.unit(230, "kg"),
  8713. name: "Back",
  8714. image: {
  8715. source: "./media/characters/starry-aqua/back.svg"
  8716. }
  8717. },
  8718. hand: {
  8719. height: math.unit(9 * 0.1168, "feet"),
  8720. name: "Hand",
  8721. image: {
  8722. source: "./media/characters/starry-aqua/hand.svg"
  8723. }
  8724. },
  8725. foot: {
  8726. height: math.unit(9 * 0.18, "feet"),
  8727. name: "Foot",
  8728. image: {
  8729. source: "./media/characters/starry-aqua/foot.svg"
  8730. }
  8731. }
  8732. },
  8733. [
  8734. {
  8735. name: "Micro",
  8736. height: math.unit(3, "inches")
  8737. },
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(9, "feet")
  8741. },
  8742. {
  8743. name: "Macro",
  8744. height: math.unit(300, "feet"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Megamacro",
  8749. height: math.unit(3200, "feet")
  8750. }
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(6, "feet"),
  8758. weight: math.unit(230, "lb"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/luka/front.svg",
  8762. extra: 1,
  8763. bottom: 0.025
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(12 + 8 / 12, "feet"),
  8771. default: true
  8772. },
  8773. {
  8774. name: "Minimacro",
  8775. height: math.unit(20, "feet")
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(250, "feet")
  8780. },
  8781. {
  8782. name: "Megamacro",
  8783. height: math.unit(5, "miles")
  8784. },
  8785. {
  8786. name: "Gigamacro",
  8787. height: math.unit(8000, "miles")
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(6, "feet"),
  8796. weight: math.unit(150, "lb"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/natalie-nightring/front.svg",
  8800. extra: 1,
  8801. bottom: 0.06
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Uh Oh",
  8808. height: math.unit(0.1, "mm")
  8809. },
  8810. {
  8811. name: "Small",
  8812. height: math.unit(3, "inches")
  8813. },
  8814. {
  8815. name: "Human Scale",
  8816. height: math.unit(6, "feet")
  8817. },
  8818. {
  8819. name: "Librarian",
  8820. height: math.unit(50, "feet"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Immense",
  8825. height: math.unit(200, "miles")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(180, "lbs"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/danni-rosie/front.svg",
  8838. extra: 1260 / 1128,
  8839. bottom: 0.022
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(2, "inches"),
  8847. default: true
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(220, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/samantha-kruse/front.svg",
  8860. extra: (985 / 935),
  8861. bottom: 0.03
  8862. }
  8863. },
  8864. frontUndressed: {
  8865. height: math.unit(5 + 9 / 12, "feet"),
  8866. weight: math.unit(220, "lb"),
  8867. name: "Front (Undressed)",
  8868. image: {
  8869. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8870. extra: (973 / 923),
  8871. bottom: 0.025
  8872. }
  8873. },
  8874. fat: {
  8875. height: math.unit(5 + 9 / 12, "feet"),
  8876. weight: math.unit(900, "lb"),
  8877. name: "Front (Fat)",
  8878. image: {
  8879. source: "./media/characters/samantha-kruse/fat.svg",
  8880. extra: 2688 / 2561
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(5 + 9 / 12, "feet"),
  8888. default: true
  8889. }
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8894. {
  8895. back: {
  8896. height: math.unit(5 + 4 / 12, "feet"),
  8897. weight: math.unit(4963, "lb"),
  8898. name: "Back",
  8899. image: {
  8900. source: "./media/characters/amelia-rosie/back.svg",
  8901. extra: 1113 / 963,
  8902. bottom: 0.01
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Level 0",
  8909. height: math.unit(5 + 4 / 12, "feet")
  8910. },
  8911. {
  8912. name: "Level 1",
  8913. height: math.unit(164597, "feet"),
  8914. default: true
  8915. },
  8916. {
  8917. name: "Level 2",
  8918. height: math.unit(956243, "miles")
  8919. },
  8920. {
  8921. name: "Level 3",
  8922. height: math.unit(29421709423, "miles")
  8923. },
  8924. {
  8925. name: "Level 4",
  8926. height: math.unit(154, "lightyears")
  8927. },
  8928. {
  8929. name: "Level 5",
  8930. height: math.unit(4738272, "lightyears")
  8931. },
  8932. {
  8933. name: "Level 6",
  8934. height: math.unit(145787152896, "lightyears")
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(5 + 11 / 12, "feet"),
  8943. weight: math.unit(65, "kg"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/rook-kitara/front.svg",
  8947. extra: 1347 / 1274,
  8948. bottom: 0.005
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Totally Unfair",
  8955. height: math.unit(1.8, "mm")
  8956. },
  8957. {
  8958. name: "Lap Rookie",
  8959. height: math.unit(1.4, "feet")
  8960. },
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(5 + 11 / 12, "feet"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "How Did This Happen",
  8968. height: math.unit(80, "miles")
  8969. }
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8974. {
  8975. front: {
  8976. height: math.unit(7, "feet"),
  8977. weight: math.unit(300, "lb"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/pisces/front.svg",
  8981. extra: 2255 / 2115,
  8982. bottom: 0.03
  8983. }
  8984. },
  8985. back: {
  8986. height: math.unit(7, "feet"),
  8987. weight: math.unit(300, "lb"),
  8988. name: "Back",
  8989. image: {
  8990. source: "./media/characters/pisces/back.svg",
  8991. extra: 2146 / 2055,
  8992. bottom: 0.04
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(7, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Swimming Pool",
  9004. height: math.unit(12.2, "meters")
  9005. },
  9006. {
  9007. name: "Olympic Swimming Pool",
  9008. height: math.unit(56.3, "meters")
  9009. },
  9010. {
  9011. name: "Lake Superior",
  9012. height: math.unit(93900, "meters")
  9013. },
  9014. {
  9015. name: "Mediterranean Sea",
  9016. height: math.unit(644457, "meters")
  9017. },
  9018. {
  9019. name: "World's Oceans",
  9020. height: math.unit(4567491, "meters")
  9021. },
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(2.3, "meters"),
  9029. weight: math.unit(120, "kg"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/zelas/front.svg"
  9033. }
  9034. },
  9035. side: {
  9036. height: math.unit(2.3, "meters"),
  9037. weight: math.unit(120, "kg"),
  9038. name: "Side",
  9039. image: {
  9040. source: "./media/characters/zelas/side.svg"
  9041. }
  9042. },
  9043. back: {
  9044. height: math.unit(2.3, "meters"),
  9045. weight: math.unit(120, "kg"),
  9046. name: "Back",
  9047. image: {
  9048. source: "./media/characters/zelas/back.svg"
  9049. }
  9050. },
  9051. foot: {
  9052. height: math.unit(1.116, "feet"),
  9053. name: "Foot",
  9054. image: {
  9055. source: "./media/characters/zelas/foot.svg"
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(2.3, "meters")
  9063. },
  9064. {
  9065. name: "Macro",
  9066. height: math.unit(30, "meters"),
  9067. default: true
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(1, "inch"),
  9076. weight: math.unit(0.21, "grams"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/talbot/front.svg",
  9080. extra: 594 / 544
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Micro",
  9087. height: math.unit(1, "inch"),
  9088. default: true
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9094. {
  9095. front: {
  9096. height: math.unit(3 + 3 / 12, "feet"),
  9097. weight: math.unit(51.8, "lb"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/fliss/front.svg",
  9101. extra: 840 / 640
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Teeny Tiny",
  9108. height: math.unit(1, "mm")
  9109. },
  9110. {
  9111. name: "Small",
  9112. height: math.unit(1, "inch"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Standard Sylveon",
  9117. height: math.unit(3 + 3 / 12, "feet")
  9118. },
  9119. {
  9120. name: "Large Nuisance",
  9121. height: math.unit(33, "feet")
  9122. },
  9123. {
  9124. name: "City Filler",
  9125. height: math.unit(3000, "feet")
  9126. },
  9127. {
  9128. name: "New Horizon",
  9129. height: math.unit(6000, "miles")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(5, "cm"),
  9138. weight: math.unit(1.94, "g"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/fleta/front.svg",
  9142. extra: 835 / 803
  9143. }
  9144. },
  9145. back: {
  9146. height: math.unit(5, "cm"),
  9147. weight: math.unit(1.94, "g"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/fleta/back.svg",
  9151. extra: 835 / 803
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Micro",
  9158. height: math.unit(5, "cm"),
  9159. default: true
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(225, "lb"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/dominic/front.svg",
  9172. extra: 1770 / 1620,
  9173. bottom: 0.025
  9174. }
  9175. },
  9176. back: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(225, "lb"),
  9179. name: "Back",
  9180. image: {
  9181. source: "./media/characters/dominic/back.svg",
  9182. extra: 1745 / 1620,
  9183. bottom: 0.065
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Nano",
  9190. height: math.unit(0.1, "mm")
  9191. },
  9192. {
  9193. name: "Micro-",
  9194. height: math.unit(1, "mm")
  9195. },
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(4, "inches")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(6 + 4 / 12, "feet"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(115, "feet")
  9208. },
  9209. {
  9210. name: "Macro+",
  9211. height: math.unit(955, "feet")
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(8990, "feet")
  9216. },
  9217. {
  9218. name: "Gigmacro",
  9219. height: math.unit(9310, "miles")
  9220. },
  9221. {
  9222. name: "Teramacro",
  9223. height: math.unit(1567005010, "miles")
  9224. },
  9225. {
  9226. name: "Examacro",
  9227. height: math.unit(1425, "parsecs")
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(400, "feet"),
  9236. weight: math.unit(44444444, "lb"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/major-colonel/front.svg"
  9240. }
  9241. },
  9242. back: {
  9243. height: math.unit(400, "feet"),
  9244. weight: math.unit(44444444, "lb"),
  9245. name: "Back",
  9246. image: {
  9247. source: "./media/characters/major-colonel/back.svg"
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Macro",
  9254. height: math.unit(400, "feet"),
  9255. default: true
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9261. {
  9262. catFront: {
  9263. height: math.unit(6, "feet"),
  9264. weight: math.unit(120, "lb"),
  9265. name: "Front (Cat Side)",
  9266. image: {
  9267. source: "./media/characters/axel-lycan/cat-front.svg",
  9268. extra: 430 / 402,
  9269. bottom: 43 / 472.35
  9270. }
  9271. },
  9272. catBack: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(120, "lb"),
  9275. name: "Back (Cat Side)",
  9276. image: {
  9277. source: "./media/characters/axel-lycan/cat-back.svg",
  9278. extra: 447 / 419,
  9279. bottom: 23.3 / 469
  9280. }
  9281. },
  9282. wolfFront: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(120, "lb"),
  9285. name: "Front (Wolf Side)",
  9286. image: {
  9287. source: "./media/characters/axel-lycan/wolf-front.svg",
  9288. extra: 485 / 456,
  9289. bottom: 19 / 504
  9290. }
  9291. },
  9292. wolfBack: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(120, "lb"),
  9295. name: "Back (Wolf Side)",
  9296. image: {
  9297. source: "./media/characters/axel-lycan/wolf-back.svg",
  9298. extra: 475 / 438,
  9299. bottom: 39.2 / 514
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Macro",
  9306. height: math.unit(1, "km"),
  9307. default: true
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(5 + 9 / 12, "feet"),
  9316. weight: math.unit(175, "lb"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/vanrel-hyena/front.svg",
  9320. extra: 1086 / 1010,
  9321. bottom: 0.04
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(5 + 9 / 12, "feet"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(6, "feet"),
  9338. weight: math.unit(103, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/abbott-absol/front.svg",
  9342. extra: 2010 / 1842
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Megamicro",
  9349. height: math.unit(0.1, "mm")
  9350. },
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(1, "inch")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(6, "feet"),
  9358. default: true
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(6, "feet"),
  9367. weight: math.unit(264, "lb"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/hector/front.svg",
  9371. extra: 2280 / 2130,
  9372. bottom: 0.07
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(12.25, "foot"),
  9380. default: true
  9381. },
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(160, "feet")
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(6, "feet"),
  9393. weight: math.unit(150, "lb"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/sal/front.svg",
  9397. extra: 1846 / 1699,
  9398. bottom: 0.04
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Megamacro",
  9405. height: math.unit(10, "miles"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9412. {
  9413. front: {
  9414. height: math.unit(3, "meters"),
  9415. weight: math.unit(450, "kg"),
  9416. name: "front",
  9417. image: {
  9418. source: "./media/characters/ranger/front.svg",
  9419. extra: 2401 / 2243,
  9420. bottom: 0.05
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(3, "meters"),
  9428. default: true
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(14, "feet"),
  9437. weight: math.unit(800, "kg"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/theresa/front.svg",
  9441. extra: 3575 / 3346,
  9442. bottom: 0.03
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(14, "feet"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(3, "kg"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/ine/front.svg",
  9463. extra: 678 / 539,
  9464. bottom: 0.023
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Normal",
  9471. height: math.unit(2.265, "feet"),
  9472. default: true
  9473. },
  9474. ]
  9475. ))
  9476. characterMakers.push(() => makeCharacter(
  9477. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9478. {
  9479. front: {
  9480. height: math.unit(5, "feet"),
  9481. weight: math.unit(30, "kg"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/vial/front.svg",
  9485. extra: 1365 / 1277,
  9486. bottom: 0.04
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(5, "feet"),
  9494. default: true
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9500. {
  9501. side: {
  9502. height: math.unit(3.4, "meters"),
  9503. weight: math.unit(1000, "lb"),
  9504. name: "Side",
  9505. image: {
  9506. source: "./media/characters/rovoska/side.svg",
  9507. extra: 4403 / 1515
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(3.4, "meters"),
  9515. default: true
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(8, "feet"),
  9524. weight: math.unit(315, "lb"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/gunner-rotthbauer/front.svg"
  9528. }
  9529. },
  9530. back: {
  9531. height: math.unit(8, "feet"),
  9532. weight: math.unit(315, "lb"),
  9533. name: "Back",
  9534. image: {
  9535. source: "./media/characters/gunner-rotthbauer/back.svg"
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(3.5, "inches")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(8, "feet"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Macro",
  9551. height: math.unit(250, "feet")
  9552. },
  9553. {
  9554. name: "Megamacro",
  9555. height: math.unit(1, "AU")
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(5 + 5 / 12, "feet"),
  9564. weight: math.unit(140, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/allatia/front.svg",
  9568. extra: 1227 / 1180,
  9569. bottom: 0.027
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(5 + 5 / 12, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(250, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Megamacro",
  9585. height: math.unit(8, "miles")
  9586. }
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9591. {
  9592. front: {
  9593. height: math.unit(6, "feet"),
  9594. weight: math.unit(120, "lb"),
  9595. name: "Front",
  9596. image: {
  9597. source: "./media/characters/tene/front.svg",
  9598. extra: 1728 / 1578,
  9599. bottom: 0.022
  9600. }
  9601. },
  9602. stomping: {
  9603. height: math.unit(2.025, "meters"),
  9604. weight: math.unit(120, "lb"),
  9605. name: "Stomping",
  9606. image: {
  9607. source: "./media/characters/tene/stomping.svg",
  9608. extra: 938 / 873,
  9609. bottom: 0.01
  9610. }
  9611. },
  9612. sitting: {
  9613. height: math.unit(1, "meter"),
  9614. weight: math.unit(120, "lb"),
  9615. name: "Sitting",
  9616. image: {
  9617. source: "./media/characters/tene/sitting.svg",
  9618. extra: 437 / 415,
  9619. bottom: 0.1
  9620. }
  9621. },
  9622. feral: {
  9623. height: math.unit(3.9, "feet"),
  9624. weight: math.unit(250, "lb"),
  9625. name: "Feral",
  9626. image: {
  9627. source: "./media/characters/tene/feral.svg",
  9628. extra: 717 / 458,
  9629. bottom: 0.179
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(6, "feet")
  9637. },
  9638. {
  9639. name: "Macro",
  9640. height: math.unit(300, "feet"),
  9641. default: true
  9642. },
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(5, "miles")
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9651. {
  9652. side: {
  9653. height: math.unit(6, "feet"),
  9654. name: "Side",
  9655. image: {
  9656. source: "./media/characters/evander/side.svg",
  9657. extra: 877 / 477
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(0.83, "meters"),
  9665. default: true
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(12, "feet"),
  9674. weight: math.unit(1000, "lb"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9678. extra: 1762 / 1611
  9679. }
  9680. },
  9681. back: {
  9682. height: math.unit(12, "feet"),
  9683. weight: math.unit(1000, "lb"),
  9684. name: "Back",
  9685. image: {
  9686. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9687. extra: 1762 / 1611
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(12, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Kaiju",
  9699. height: math.unit(150, "feet")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(150, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/zero-alurus/front.svg"
  9712. }
  9713. },
  9714. back: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(150, "lb"),
  9717. name: "Back",
  9718. image: {
  9719. source: "./media/characters/zero-alurus/back.svg"
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(5 + 10 / 12, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(60, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Macro+",
  9735. height: math.unit(450, "feet")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(200, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/mega-shi/front.svg",
  9748. extra: 1279 / 1250,
  9749. bottom: 0.02
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(200, "lb"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/mega-shi/back.svg",
  9758. extra: 1279 / 1250,
  9759. bottom: 0.02
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(16 + 6 / 12, "feet")
  9767. },
  9768. {
  9769. name: "Third Dimension",
  9770. height: math.unit(40, "meters")
  9771. },
  9772. {
  9773. name: "Normal",
  9774. height: math.unit(660, "feet"),
  9775. default: true
  9776. },
  9777. {
  9778. name: "Megamacro",
  9779. height: math.unit(10, "miles")
  9780. },
  9781. {
  9782. name: "Planetary Launch",
  9783. height: math.unit(500, "miles")
  9784. },
  9785. {
  9786. name: "Interstellar",
  9787. height: math.unit(1e9, "miles")
  9788. },
  9789. {
  9790. name: "Leaving the Universe",
  9791. height: math.unit(1, "gigaparsec")
  9792. },
  9793. {
  9794. name: "Travelling Universes",
  9795. height: math.unit(30e15, "parsecs")
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(150, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/odyssey/front.svg",
  9808. extra: 1782 / 1582,
  9809. bottom: 0.01
  9810. }
  9811. },
  9812. side: {
  9813. height: math.unit(5.7, "feet"),
  9814. weight: math.unit(140, "lb"),
  9815. name: "Side",
  9816. image: {
  9817. source: "./media/characters/odyssey/side.svg",
  9818. extra: 6462 / 5700
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(5 + 4 / 12, "feet")
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(1, "km")
  9830. },
  9831. {
  9832. name: "Megamacro",
  9833. height: math.unit(3000, "km")
  9834. },
  9835. {
  9836. name: "Gigamacro",
  9837. height: math.unit(1, "AU"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Omniversal",
  9842. height: math.unit(100e14, "lightyears")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(300, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/mekuto/front.svg",
  9855. extra: 921 / 832,
  9856. bottom: 0.03
  9857. }
  9858. },
  9859. hand: {
  9860. height: math.unit(6 / 10.24, "feet"),
  9861. name: "Hand",
  9862. image: {
  9863. source: "./media/characters/mekuto/hand.svg"
  9864. }
  9865. },
  9866. foot: {
  9867. height: math.unit(6 / 5.05, "feet"),
  9868. name: "Foot",
  9869. image: {
  9870. source: "./media/characters/mekuto/foot.svg"
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Minimicro",
  9877. height: math.unit(0.2, "inches")
  9878. },
  9879. {
  9880. name: "Micro",
  9881. height: math.unit(1.5, "inches")
  9882. },
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(5 + 11 / 12, "feet"),
  9886. default: true
  9887. },
  9888. {
  9889. name: "Minimacro",
  9890. height: math.unit(17 + 9 / 12, "feet")
  9891. },
  9892. {
  9893. name: "Macro",
  9894. height: math.unit(177.5, "feet")
  9895. },
  9896. {
  9897. name: "Megamacro",
  9898. height: math.unit(152, "miles")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(6.5, "inches"),
  9907. weight: math.unit(13, "oz"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/dafydd-tomos/front.svg",
  9911. extra: 2990 / 2603,
  9912. bottom: 0.03
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(6.5, "inches"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "lb"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/splinter/front.svg",
  9933. extra: 2990 / 2882,
  9934. bottom: 0.04
  9935. }
  9936. },
  9937. back: {
  9938. height: math.unit(6, "feet"),
  9939. weight: math.unit(150, "lb"),
  9940. name: "Back",
  9941. image: {
  9942. source: "./media/characters/splinter/back.svg",
  9943. extra: 2990 / 2882,
  9944. bottom: 0.04
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(6, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(230, "meters"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(4 + 10 / 12, "feet"),
  9965. weight: math.unit(480, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/snow-gabumon/front.svg",
  9969. extra: 1140 / 963,
  9970. bottom: 0.058
  9971. }
  9972. },
  9973. back: {
  9974. height: math.unit(4 + 10 / 12, "feet"),
  9975. weight: math.unit(480, "lb"),
  9976. name: "Back",
  9977. image: {
  9978. source: "./media/characters/snow-gabumon/back.svg",
  9979. extra: 1115 / 962,
  9980. bottom: 0.041
  9981. }
  9982. },
  9983. frontUndresed: {
  9984. height: math.unit(4 + 10 / 12, "feet"),
  9985. weight: math.unit(480, "lb"),
  9986. name: "Front (Undressed)",
  9987. image: {
  9988. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9989. extra: 1061 / 960,
  9990. bottom: 0.045
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Micro",
  9997. height: math.unit(1, "inch")
  9998. },
  9999. {
  10000. name: "Normal",
  10001. height: math.unit(4 + 10 / 12, "feet"),
  10002. default: true
  10003. },
  10004. {
  10005. name: "Macro",
  10006. height: math.unit(200, "feet")
  10007. },
  10008. {
  10009. name: "Megamacro",
  10010. height: math.unit(120, "miles")
  10011. },
  10012. {
  10013. name: "Gigamacro",
  10014. height: math.unit(9800, "miles")
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10020. {
  10021. front: {
  10022. height: math.unit(1.7, "meters"),
  10023. weight: math.unit(140, "lb"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/moody/front.svg",
  10027. extra: 3226 / 3007,
  10028. bottom: 0.087
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(1, "mm")
  10036. },
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(1.7, "meters"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Macro",
  10044. height: math.unit(80, "meters")
  10045. },
  10046. {
  10047. name: "Macro+",
  10048. height: math.unit(500, "meters")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(150, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/zyas/front.svg",
  10061. extra: 1180 / 1120,
  10062. bottom: 0.045
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(10, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(500, "feet")
  10075. },
  10076. {
  10077. name: "Megamacro",
  10078. height: math.unit(5, "miles")
  10079. },
  10080. {
  10081. name: "Teramacro",
  10082. height: math.unit(150000, "miles")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/cuon/front.svg",
  10095. extra: 1390 / 1320,
  10096. bottom: 0.008
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Micro",
  10103. height: math.unit(3, "inches")
  10104. },
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(18 + 9 / 12, "feet"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Macro",
  10112. height: math.unit(360, "feet")
  10113. },
  10114. {
  10115. name: "Megamacro",
  10116. height: math.unit(360, "miles")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10122. {
  10123. front: {
  10124. height: math.unit(2.4, "meters"),
  10125. weight: math.unit(70, "kg"),
  10126. name: "Front",
  10127. image: {
  10128. source: "./media/characters/nyanuxk/front.svg",
  10129. extra: 1172 / 1084,
  10130. bottom: 0.065
  10131. }
  10132. },
  10133. side: {
  10134. height: math.unit(2.4, "meters"),
  10135. weight: math.unit(70, "kg"),
  10136. name: "Side",
  10137. image: {
  10138. source: "./media/characters/nyanuxk/side.svg",
  10139. extra: 1190 / 1132,
  10140. bottom: 0.007
  10141. }
  10142. },
  10143. back: {
  10144. height: math.unit(2.4, "meters"),
  10145. weight: math.unit(70, "kg"),
  10146. name: "Back",
  10147. image: {
  10148. source: "./media/characters/nyanuxk/back.svg",
  10149. extra: 1200 / 1141,
  10150. bottom: 0.015
  10151. }
  10152. },
  10153. foot: {
  10154. height: math.unit(0.52, "meters"),
  10155. name: "Foot",
  10156. image: {
  10157. source: "./media/characters/nyanuxk/foot.svg"
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(2, "cm")
  10165. },
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(2.4, "meters"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Smaller Macro",
  10173. height: math.unit(120, "meters")
  10174. },
  10175. {
  10176. name: "Bigger Macro",
  10177. height: math.unit(1.2, "km")
  10178. },
  10179. {
  10180. name: "Megamacro",
  10181. height: math.unit(15, "kilometers")
  10182. },
  10183. {
  10184. name: "Gigamacro",
  10185. height: math.unit(2000, "km")
  10186. },
  10187. {
  10188. name: "Teramacro",
  10189. height: math.unit(500000, "km")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10195. {
  10196. side: {
  10197. height: math.unit(6, "feet"),
  10198. name: "Side",
  10199. image: {
  10200. source: "./media/characters/ailbhe/side.svg",
  10201. extra: 757 / 464,
  10202. bottom: 0.041
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(1.07, "meters"),
  10210. default: true
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(120, "kg"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/zevulfius/front.svg",
  10223. extra: 965 / 903
  10224. }
  10225. },
  10226. side: {
  10227. height: math.unit(6, "feet"),
  10228. weight: math.unit(120, "kg"),
  10229. name: "Side",
  10230. image: {
  10231. source: "./media/characters/zevulfius/side.svg",
  10232. extra: 939 / 900
  10233. }
  10234. },
  10235. back: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(120, "kg"),
  10238. name: "Back",
  10239. image: {
  10240. source: "./media/characters/zevulfius/back.svg",
  10241. extra: 918 / 854,
  10242. bottom: 0.005
  10243. }
  10244. },
  10245. foot: {
  10246. height: math.unit(6 / 3.72, "feet"),
  10247. name: "Foot",
  10248. image: {
  10249. source: "./media/characters/zevulfius/foot.svg"
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(750, "meters")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(20, "km"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Gigamacro",
  10265. height: math.unit(2000, "km")
  10266. },
  10267. {
  10268. name: "Teramacro",
  10269. height: math.unit(250000, "km")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(100, "feet"),
  10278. weight: math.unit(350, "kg"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/rikes/front.svg",
  10282. extra: 1565 / 1483,
  10283. bottom: 0.017
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Macro",
  10290. height: math.unit(100, "feet"),
  10291. default: true
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10297. {
  10298. anthro: {
  10299. height: math.unit(8, "feet"),
  10300. weight: math.unit(120, "kg"),
  10301. name: "Anthro",
  10302. image: {
  10303. source: "./media/characters/adam-silver-mane/anthro.svg",
  10304. extra: 5743 / 5339,
  10305. bottom: 0.07
  10306. }
  10307. },
  10308. taur: {
  10309. height: math.unit(16, "feet"),
  10310. weight: math.unit(1500, "kg"),
  10311. name: "Taur",
  10312. image: {
  10313. source: "./media/characters/adam-silver-mane/taur.svg",
  10314. extra: 1713 / 1571,
  10315. bottom: 0.01
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Normal",
  10322. height: math.unit(8, "feet")
  10323. },
  10324. {
  10325. name: "Minimacro",
  10326. height: math.unit(80, "feet")
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(800, "feet"),
  10331. default: true
  10332. },
  10333. {
  10334. name: "Megamacro",
  10335. height: math.unit(8000, "feet")
  10336. },
  10337. {
  10338. name: "Gigamacro",
  10339. height: math.unit(800, "miles")
  10340. },
  10341. {
  10342. name: "Teramacro",
  10343. height: math.unit(80000, "miles")
  10344. },
  10345. {
  10346. name: "Celestial",
  10347. height: math.unit(8e6, "miles")
  10348. },
  10349. {
  10350. name: "Star Dragon",
  10351. height: math.unit(800000, "parsecs")
  10352. },
  10353. {
  10354. name: "Godly",
  10355. height: math.unit(800, "teraparsecs")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/ky'owin/front.svg",
  10368. extra: 3888 / 3068,
  10369. bottom: 0.015
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(6 + 8 / 12, "feet")
  10377. },
  10378. {
  10379. name: "Large",
  10380. height: math.unit(68, "feet")
  10381. },
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(132, "feet")
  10385. },
  10386. {
  10387. name: "Macro+",
  10388. height: math.unit(340, "feet")
  10389. },
  10390. {
  10391. name: "Macro++",
  10392. height: math.unit(680, "feet"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(1, "mile")
  10398. },
  10399. {
  10400. name: "Megamacro+",
  10401. height: math.unit(10, "miles")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(4, "feet"),
  10410. weight: math.unit(50, "lb"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/mal/front.svg",
  10414. extra: 785 / 724,
  10415. bottom: 0.07
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Micro",
  10422. height: math.unit(4, "inches")
  10423. },
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(4, "feet"),
  10427. default: true
  10428. },
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(200, "feet")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(150, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/jordan-deware/front.svg",
  10444. extra: 1191 / 1012
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Nano",
  10451. height: math.unit(0.01, "mm")
  10452. },
  10453. {
  10454. name: "Minimicro",
  10455. height: math.unit(1, "mm")
  10456. },
  10457. {
  10458. name: "Micro",
  10459. height: math.unit(0.5, "inches")
  10460. },
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(4, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Minimacro",
  10468. height: math.unit(40, "meters")
  10469. },
  10470. {
  10471. name: "Small Macro",
  10472. height: math.unit(400, "meters")
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(4, "miles")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(40, "miles")
  10481. },
  10482. {
  10483. name: "Megamacro+",
  10484. height: math.unit(400, "miles")
  10485. },
  10486. {
  10487. name: "Gigamacro",
  10488. height: math.unit(400000, "miles")
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10494. {
  10495. side: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(150, "lb"),
  10498. name: "Side",
  10499. image: {
  10500. source: "./media/characters/kimiko/side.svg",
  10501. extra: 600 / 358
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Normal",
  10508. height: math.unit(15, "feet"),
  10509. default: true
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(220, "feet")
  10514. },
  10515. {
  10516. name: "Macro+",
  10517. height: math.unit(1450, "feet")
  10518. },
  10519. {
  10520. name: "Megamacro",
  10521. height: math.unit(11500, "feet")
  10522. },
  10523. {
  10524. name: "Gigamacro",
  10525. height: math.unit(9500, "miles")
  10526. },
  10527. {
  10528. name: "Teramacro",
  10529. height: math.unit(2208005005, "miles")
  10530. },
  10531. {
  10532. name: "Examacro",
  10533. height: math.unit(2750, "parsecs")
  10534. },
  10535. {
  10536. name: "Zettamacro",
  10537. height: math.unit(101500, "parsecs")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(6, "feet"),
  10546. weight: math.unit(70, "kg"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/andrew-sleepy/front.svg"
  10550. }
  10551. },
  10552. side: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(70, "kg"),
  10555. name: "Side",
  10556. image: {
  10557. source: "./media/characters/andrew-sleepy/side.svg"
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Micro",
  10564. height: math.unit(1, "mm"),
  10565. default: true
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(150, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/judio/front.svg",
  10578. extra: 1258 / 1110
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(5 + 6 / 12, "feet")
  10586. },
  10587. {
  10588. name: "Macro",
  10589. height: math.unit(1000, "feet"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(10, "miles")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(68, "kg"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/nomaxice/front.svg",
  10607. extra: 1498 / 1073,
  10608. bottom: 0.075
  10609. }
  10610. },
  10611. foot: {
  10612. height: math.unit(1.1, "feet"),
  10613. name: "Foot",
  10614. image: {
  10615. source: "./media/characters/nomaxice/foot.svg"
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Micro",
  10622. height: math.unit(8, "cm")
  10623. },
  10624. {
  10625. name: "Norm",
  10626. height: math.unit(1.82, "m")
  10627. },
  10628. {
  10629. name: "Norm+",
  10630. height: math.unit(8.8, "feet")
  10631. },
  10632. {
  10633. name: "Big",
  10634. height: math.unit(8, "meters"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(18, "meters")
  10640. },
  10641. {
  10642. name: "Macro+",
  10643. height: math.unit(88, "meters")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(12, "feet"),
  10652. weight: math.unit(1.5, "tons"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/dydros/front.svg",
  10656. extra: 863 / 800,
  10657. bottom: 0.015
  10658. }
  10659. },
  10660. back: {
  10661. height: math.unit(12, "feet"),
  10662. weight: math.unit(1.5, "tons"),
  10663. name: "Back",
  10664. image: {
  10665. source: "./media/characters/dydros/back.svg",
  10666. extra: 900 / 843,
  10667. bottom: 0.005
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Normal",
  10674. height: math.unit(12, "feet"),
  10675. default: true
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10681. {
  10682. front: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(100, "kg"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/riggi/front.svg",
  10688. extra: 5787 / 5303
  10689. }
  10690. },
  10691. hyper: {
  10692. height: math.unit(6 * 5 / 3, "feet"),
  10693. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10694. name: "Hyper",
  10695. image: {
  10696. source: "./media/characters/riggi/hyper.svg",
  10697. extra: 3595 / 3485
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Small Macro",
  10704. height: math.unit(50, "feet")
  10705. },
  10706. {
  10707. name: "Default",
  10708. height: math.unit(200, "feet"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Loom",
  10713. height: math.unit(10000, "feet")
  10714. },
  10715. {
  10716. name: "Cruising Altitude",
  10717. height: math.unit(30000, "feet")
  10718. },
  10719. {
  10720. name: "Megamacro",
  10721. height: math.unit(100, "miles")
  10722. },
  10723. {
  10724. name: "Continent Sized",
  10725. height: math.unit(2800, "miles")
  10726. },
  10727. {
  10728. name: "Earth Sized",
  10729. height: math.unit(8000, "miles")
  10730. },
  10731. ]
  10732. ))
  10733. characterMakers.push(() => makeCharacter(
  10734. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10735. {
  10736. front: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(250, "lb"),
  10739. name: "Front",
  10740. image: {
  10741. source: "./media/characters/alexi/front.svg",
  10742. extra: 3483 / 3291,
  10743. bottom: 0.04
  10744. }
  10745. },
  10746. back: {
  10747. height: math.unit(6, "feet"),
  10748. weight: math.unit(250, "lb"),
  10749. name: "Back",
  10750. image: {
  10751. source: "./media/characters/alexi/back.svg",
  10752. extra: 3533 / 3356,
  10753. bottom: 0.021
  10754. }
  10755. },
  10756. frontTransforming: {
  10757. height: math.unit(8.58, "feet"),
  10758. weight: math.unit(1300, "lb"),
  10759. name: "Transforming",
  10760. image: {
  10761. source: "./media/characters/alexi/front-transforming.svg",
  10762. extra: 437 / 409,
  10763. bottom: 19 / 458.66
  10764. }
  10765. },
  10766. frontTransformed: {
  10767. height: math.unit(12.5, "feet"),
  10768. weight: math.unit(4000, "lb"),
  10769. name: "Transformed",
  10770. image: {
  10771. source: "./media/characters/alexi/front-transformed.svg",
  10772. extra: 639 / 614,
  10773. bottom: 30.55 / 671
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(14, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Minimacro",
  10785. height: math.unit(30, "meters")
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(500, "meters")
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(9000, "km")
  10794. },
  10795. {
  10796. name: "Teramacro",
  10797. height: math.unit(384000, "km")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/kayroo/front.svg",
  10810. extra: 1153 / 1038,
  10811. bottom: 0.06
  10812. }
  10813. },
  10814. foot: {
  10815. height: math.unit(6, "feet"),
  10816. weight: math.unit(150, "lb"),
  10817. name: "Foot",
  10818. image: {
  10819. source: "./media/characters/kayroo/foot.svg"
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(8, "feet"),
  10827. default: true
  10828. },
  10829. {
  10830. name: "Minimacro",
  10831. height: math.unit(250, "feet")
  10832. },
  10833. {
  10834. name: "Macro",
  10835. height: math.unit(2800, "feet")
  10836. },
  10837. {
  10838. name: "Megamacro",
  10839. height: math.unit(5200, "feet")
  10840. },
  10841. {
  10842. name: "Gigamacro",
  10843. height: math.unit(27000, "feet")
  10844. },
  10845. {
  10846. name: "Omega",
  10847. height: math.unit(45000, "feet")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(18, "feet"),
  10856. weight: math.unit(5800, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/rhys/front.svg",
  10860. extra: 3386 / 3090,
  10861. bottom: 0.07
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(18, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Working Size",
  10873. height: math.unit(200, "feet")
  10874. },
  10875. {
  10876. name: "Demolition Size",
  10877. height: math.unit(2000, "feet")
  10878. },
  10879. {
  10880. name: "Maximum Licensed Size",
  10881. height: math.unit(5, "miles")
  10882. },
  10883. {
  10884. name: "Maximum Observed Size",
  10885. height: math.unit(10, "yottameters")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(250, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/toto/front.svg",
  10898. extra: 527 / 479,
  10899. bottom: 0.05
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(3, "feet")
  10907. },
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(10, "feet")
  10911. },
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(150, "feet"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(1200, "feet")
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "King", species: ["lion"], tags: ["anthro"] },
  10925. {
  10926. back: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Back",
  10930. image: {
  10931. source: "./media/characters/king/back.svg"
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Micro",
  10938. height: math.unit(2, "inches")
  10939. },
  10940. {
  10941. name: "Normal",
  10942. height: math.unit(8, "feet")
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(200, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Megamacro",
  10951. height: math.unit(50, "miles")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10957. {
  10958. anthro: {
  10959. height: math.unit(6 + 5 / 12, "feet"),
  10960. weight: math.unit(280, "lb"),
  10961. name: "Anthro",
  10962. image: {
  10963. source: "./media/characters/cordite/anthro.svg",
  10964. extra: 1986 / 1905,
  10965. bottom: 0.025
  10966. }
  10967. },
  10968. feral: {
  10969. height: math.unit(2, "feet"),
  10970. weight: math.unit(90, "lb"),
  10971. name: "Feral",
  10972. image: {
  10973. source: "./media/characters/cordite/feral.svg",
  10974. extra: 1260 / 755,
  10975. bottom: 0.05
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(6 + 5 / 12, "feet"),
  10983. default: true
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10989. {
  10990. front: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(150, "lb"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/pianostrong/front.svg",
  10996. extra: 6577 / 6254,
  10997. bottom: 0.02
  10998. }
  10999. },
  11000. side: {
  11001. height: math.unit(6, "feet"),
  11002. weight: math.unit(150, "lb"),
  11003. name: "Side",
  11004. image: {
  11005. source: "./media/characters/pianostrong/side.svg",
  11006. extra: 6106 / 5730
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(150, "lb"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/pianostrong/back.svg",
  11015. extra: 6085 / 5733,
  11016. bottom: 0.01
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Macro",
  11023. height: math.unit(100, "feet")
  11024. },
  11025. {
  11026. name: "Macro+",
  11027. height: math.unit(300, "feet"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Macro++",
  11032. height: math.unit(1000, "feet")
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11038. {
  11039. front: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(150, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/kona/front.svg",
  11045. extra: 2960 / 2629,
  11046. bottom: 0.005
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Normal",
  11053. height: math.unit(11 + 8 / 12, "feet")
  11054. },
  11055. {
  11056. name: "Macro",
  11057. height: math.unit(850, "feet"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro+",
  11062. height: math.unit(1.5, "km"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Megamacro",
  11067. height: math.unit(80, "miles")
  11068. },
  11069. {
  11070. name: "Gigamacro",
  11071. height: math.unit(3500, "miles")
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11077. {
  11078. side: {
  11079. height: math.unit(1.9, "meters"),
  11080. weight: math.unit(326, "kg"),
  11081. name: "Side",
  11082. image: {
  11083. source: "./media/characters/levi/side.svg",
  11084. extra: 1704 / 1334,
  11085. bottom: 0.02
  11086. }
  11087. },
  11088. },
  11089. [
  11090. {
  11091. name: "Normal",
  11092. height: math.unit(1.9, "meters"),
  11093. default: true
  11094. },
  11095. {
  11096. name: "Macro",
  11097. height: math.unit(20, "meters")
  11098. },
  11099. {
  11100. name: "Macro+",
  11101. height: math.unit(200, "meters")
  11102. },
  11103. {
  11104. name: "Megamacro",
  11105. height: math.unit(2, "km")
  11106. },
  11107. {
  11108. name: "Megamacro+",
  11109. height: math.unit(20, "km")
  11110. },
  11111. {
  11112. name: "Gigamacro",
  11113. height: math.unit(2500, "km")
  11114. },
  11115. {
  11116. name: "Gigamacro+",
  11117. height: math.unit(120000, "km")
  11118. },
  11119. {
  11120. name: "Teramacro",
  11121. height: math.unit(7.77e6, "km")
  11122. },
  11123. ]
  11124. ))
  11125. characterMakers.push(() => makeCharacter(
  11126. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11127. {
  11128. front: {
  11129. height: math.unit(6 + 4 / 12, "feet"),
  11130. weight: math.unit(188, "lb"),
  11131. name: "Front",
  11132. image: {
  11133. source: "./media/characters/bmc/front.svg",
  11134. extra: 1067 / 1022,
  11135. bottom: 0.047
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Human-sized",
  11142. height: math.unit(6 + 4 / 12, "feet")
  11143. },
  11144. {
  11145. name: "Small",
  11146. height: math.unit(250, "feet")
  11147. },
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(1250, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Good Day",
  11155. height: math.unit(88, "miles")
  11156. },
  11157. {
  11158. name: "Largest Measured Size",
  11159. height: math.unit(11.2e6, "lightyears")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(20, "feet"),
  11168. weight: math.unit(2016, "kg"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/sven-the-kaiju/front.svg",
  11172. extra: 1277/1250,
  11173. bottom: 35/1312
  11174. }
  11175. },
  11176. mouth: {
  11177. height: math.unit(1.85, "feet"),
  11178. name: "Mouth",
  11179. image: {
  11180. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Fairy",
  11187. height: math.unit(6, "inches")
  11188. },
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(20, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Rampage",
  11196. height: math.unit(200, "feet")
  11197. },
  11198. {
  11199. name: "Archfey Forest Guardian",
  11200. height: math.unit(1, "mile")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(4, "meters"),
  11209. weight: math.unit(2, "tons"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/marik/front.svg",
  11213. extra: 1057 / 1003,
  11214. bottom: 0.08
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(4, "meters"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Macro",
  11226. height: math.unit(20, "meters")
  11227. },
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(50, "km")
  11231. },
  11232. {
  11233. name: "Gigamacro",
  11234. height: math.unit(100, "km")
  11235. },
  11236. {
  11237. name: "Alpha Macro",
  11238. height: math.unit(7.88e7, "yottameters")
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(110, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/mel/front.svg",
  11251. extra: 736 / 617,
  11252. bottom: 0.017
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Pico",
  11259. height: math.unit(3, "pm")
  11260. },
  11261. {
  11262. name: "Nano",
  11263. height: math.unit(3, "nm")
  11264. },
  11265. {
  11266. name: "Micro",
  11267. height: math.unit(0.3, "mm"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Micro+",
  11272. height: math.unit(3, "mm")
  11273. },
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(5 + 10.5 / 12, "feet")
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11282. {
  11283. kaiju: {
  11284. height: math.unit(1.75, "meters"),
  11285. weight: math.unit(55, "kg"),
  11286. name: "Kaiju",
  11287. image: {
  11288. source: "./media/characters/lykonous/kaiju.svg",
  11289. extra: 1055 / 946,
  11290. bottom: 0.135
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(2.5, "meters"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Kaiju Dragon",
  11302. height: math.unit(60, "meters")
  11303. },
  11304. {
  11305. name: "Mega Kaiju",
  11306. height: math.unit(120, "km")
  11307. },
  11308. {
  11309. name: "Giga Kaiju",
  11310. height: math.unit(200, "megameters")
  11311. },
  11312. {
  11313. name: "Terra Kaiju",
  11314. height: math.unit(400, "gigameters")
  11315. },
  11316. {
  11317. name: "Kaiju Dragon God",
  11318. height: math.unit(13000, "exaparsecs")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(150, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/blü/front.svg",
  11331. extra: 1883 / 1564,
  11332. bottom: 0.031
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(13, "feet"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Big Boi",
  11344. height: math.unit(150, "meters")
  11345. },
  11346. {
  11347. name: "Mini Stomper",
  11348. height: math.unit(300, "meters")
  11349. },
  11350. {
  11351. name: "Macro",
  11352. height: math.unit(1000, "meters")
  11353. },
  11354. {
  11355. name: "Megamacro",
  11356. height: math.unit(11000, "meters")
  11357. },
  11358. {
  11359. name: "Gigamacro",
  11360. height: math.unit(11000, "km")
  11361. },
  11362. {
  11363. name: "Teramacro",
  11364. height: math.unit(420000, "km")
  11365. },
  11366. {
  11367. name: "Examacro",
  11368. height: math.unit(120, "parsecs")
  11369. },
  11370. {
  11371. name: "God Tho",
  11372. height: math.unit(98000000000, "parsecs")
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11378. {
  11379. taurFront: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(200, "lb"),
  11382. name: "Taur (Front)",
  11383. image: {
  11384. source: "./media/characters/scales/taur-front.svg",
  11385. extra: 1,
  11386. bottom: 0.05
  11387. }
  11388. },
  11389. taurBack: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(200, "lb"),
  11392. name: "Taur (Back)",
  11393. image: {
  11394. source: "./media/characters/scales/taur-back.svg",
  11395. extra: 1,
  11396. bottom: 0.08
  11397. }
  11398. },
  11399. anthro: {
  11400. height: math.unit(6 * 7 / 12, "feet"),
  11401. weight: math.unit(100, "lb"),
  11402. name: "Anthro",
  11403. image: {
  11404. source: "./media/characters/scales/anthro.svg",
  11405. extra: 1,
  11406. bottom: 0.06
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(12, "feet"),
  11414. default: true
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11420. {
  11421. front: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Front",
  11425. image: {
  11426. source: "./media/characters/koragos/front.svg",
  11427. extra: 841 / 794,
  11428. bottom: 0.035
  11429. }
  11430. },
  11431. back: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(150, "lb"),
  11434. name: "Back",
  11435. image: {
  11436. source: "./media/characters/koragos/back.svg",
  11437. extra: 841 / 810,
  11438. bottom: 0.022
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(6 + 11 / 12, "feet"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(490, "feet")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(10, "miles")
  11455. },
  11456. {
  11457. name: "Gigamacro",
  11458. height: math.unit(50, "miles")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(6, "feet"),
  11467. weight: math.unit(250, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/xylrem/front.svg",
  11471. extra: 3323 / 3050,
  11472. bottom: 0.065
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Micro",
  11479. height: math.unit(4, "feet")
  11480. },
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(16, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(2720, "feet")
  11489. },
  11490. {
  11491. name: "Megamacro",
  11492. height: math.unit(25000, "miles")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(8, "feet"),
  11501. weight: math.unit(250, "kg"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/ikideru/front.svg",
  11505. extra: 930 / 870,
  11506. bottom: 0.087
  11507. }
  11508. },
  11509. back: {
  11510. height: math.unit(8, "feet"),
  11511. weight: math.unit(250, "kg"),
  11512. name: "Back",
  11513. image: {
  11514. source: "./media/characters/ikideru/back.svg",
  11515. extra: 919 / 852,
  11516. bottom: 0.055
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Rare",
  11523. height: math.unit(8, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Playful Loom",
  11528. height: math.unit(80, "feet")
  11529. },
  11530. {
  11531. name: "City Leaner",
  11532. height: math.unit(230, "feet")
  11533. },
  11534. {
  11535. name: "Megamacro",
  11536. height: math.unit(2500, "feet")
  11537. },
  11538. {
  11539. name: "Gigamacro",
  11540. height: math.unit(26400, "feet")
  11541. },
  11542. {
  11543. name: "Tectonic Shifter",
  11544. height: math.unit(1.7, "megameters")
  11545. },
  11546. {
  11547. name: "Planet Carer",
  11548. height: math.unit(21, "megameters")
  11549. },
  11550. {
  11551. name: "God",
  11552. height: math.unit(11157.22, "parsecs")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(6, "feet"),
  11561. weight: math.unit(120, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/neo/front.svg"
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Micro",
  11571. height: math.unit(2, "inches"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Human Size",
  11576. height: math.unit(5 + 8 / 12, "feet")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(13 + 10 / 12, "feet"),
  11585. weight: math.unit(5320, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/chauncey-chantz/front.svg",
  11589. extra: 1587 / 1435,
  11590. bottom: 0.02
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(13 + 10 / 12, "feet"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(45, "feet")
  11603. },
  11604. {
  11605. name: "Megamacro",
  11606. height: math.unit(250, "miles")
  11607. },
  11608. {
  11609. name: "Planetary",
  11610. height: math.unit(10000, "miles")
  11611. },
  11612. {
  11613. name: "Galactic",
  11614. height: math.unit(40000, "parsecs")
  11615. },
  11616. {
  11617. name: "Universal",
  11618. height: math.unit(1, "yottameter")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11624. {
  11625. front: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(150, "lb"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/epifox/front.svg",
  11631. extra: 1,
  11632. bottom: 0.075
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(6, "inches")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(12, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(3810, "feet")
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(500, "miles")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(1.8796, "m"),
  11661. weight: math.unit(230, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/colin-t/front.svg",
  11665. extra: 1272 / 1193,
  11666. bottom: 0.07
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Micro",
  11673. height: math.unit(0.571, "meters")
  11674. },
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(1.8796, "meters"),
  11678. default: true
  11679. },
  11680. {
  11681. name: "Tall",
  11682. height: math.unit(4, "meters")
  11683. },
  11684. {
  11685. name: "Macro",
  11686. height: math.unit(67.241, "meters")
  11687. },
  11688. {
  11689. name: "Megamacro",
  11690. height: math.unit(371.856, "meters")
  11691. },
  11692. {
  11693. name: "Planetary",
  11694. height: math.unit(12631.5689, "km")
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(1.85, "meters"),
  11703. weight: math.unit(80, "kg"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/matvei/front.svg",
  11707. extra: 614 / 594,
  11708. bottom: 0.01
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(1.85, "meters"),
  11716. default: true
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(5 + 9 / 12, "feet"),
  11725. weight: math.unit(70, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/quincy/front.svg",
  11729. extra: 3041 / 2751
  11730. }
  11731. },
  11732. back: {
  11733. height: math.unit(5 + 9 / 12, "feet"),
  11734. weight: math.unit(70, "lb"),
  11735. name: "Back",
  11736. image: {
  11737. source: "./media/characters/quincy/back.svg",
  11738. extra: 3041 / 2751
  11739. }
  11740. },
  11741. flying: {
  11742. height: math.unit(5 + 4 / 12, "feet"),
  11743. weight: math.unit(70, "lb"),
  11744. name: "Flying",
  11745. image: {
  11746. source: "./media/characters/quincy/flying.svg",
  11747. extra: 1044 / 930
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Micro",
  11754. height: math.unit(3, "cm")
  11755. },
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(5 + 9 / 12, "feet")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(200, "meters"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(1000, "meters")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(4 + 7 / 12, "feet"),
  11776. weight: math.unit(50, "lb"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/vanrel/front.svg",
  11780. extra: 1,
  11781. bottom: 0.02
  11782. }
  11783. },
  11784. frontAlt: {
  11785. height: math.unit(4 + 7 / 12, "feet"),
  11786. weight: math.unit(50, "lb"),
  11787. name: "Front-alt",
  11788. image: {
  11789. source: "./media/characters/vanrel/front-alt.svg",
  11790. extra: 1,
  11791. bottom: 15 / 1511
  11792. }
  11793. },
  11794. elemental: {
  11795. height: math.unit(3, "feet"),
  11796. weight: math.unit(50, "lb"),
  11797. name: "Elemental",
  11798. image: {
  11799. source: "./media/characters/vanrel/elemental.svg",
  11800. extra: 192.3 / 162.8,
  11801. bottom: 1.79 / 194.17
  11802. }
  11803. },
  11804. side: {
  11805. height: math.unit(4 + 7 / 12, "feet"),
  11806. weight: math.unit(50, "lb"),
  11807. name: "Side",
  11808. image: {
  11809. source: "./media/characters/vanrel/side.svg",
  11810. extra: 1,
  11811. bottom: 0.025
  11812. }
  11813. },
  11814. tome: {
  11815. height: math.unit(1.35, "feet"),
  11816. weight: math.unit(10, "lb"),
  11817. name: "Vanrel's Tome",
  11818. rename: true,
  11819. image: {
  11820. source: "./media/characters/vanrel/tome.svg"
  11821. }
  11822. },
  11823. beans: {
  11824. height: math.unit(0.89, "feet"),
  11825. name: "Beans",
  11826. image: {
  11827. source: "./media/characters/vanrel/beans.svg"
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(4 + 7 / 12, "feet"),
  11835. default: true
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(7 + 5 / 12, "feet"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/kuiper-vanrel/front.svg",
  11847. extra: 1219/1169,
  11848. bottom: 69/1288
  11849. }
  11850. },
  11851. back: {
  11852. height: math.unit(7 + 5 / 12, "feet"),
  11853. name: "Back",
  11854. image: {
  11855. source: "./media/characters/kuiper-vanrel/back.svg",
  11856. extra: 1236/1193,
  11857. bottom: 27/1263
  11858. }
  11859. },
  11860. foot: {
  11861. height: math.unit(0.55, "meters"),
  11862. name: "Foot",
  11863. image: {
  11864. source: "./media/characters/kuiper-vanrel/foot.svg",
  11865. }
  11866. },
  11867. battle: {
  11868. height: math.unit(6.824, "feet"),
  11869. name: "Battle",
  11870. image: {
  11871. source: "./media/characters/kuiper-vanrel/battle.svg",
  11872. extra: 1466 / 1327,
  11873. bottom: 29 / 1492.5
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(7 + 5 / 12, "feet"),
  11881. default: true
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(8 + 5 / 12, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/keset-vanrel/front.svg",
  11894. extra: 1150 / 1084,
  11895. bottom: 0.05
  11896. }
  11897. },
  11898. hand: {
  11899. height: math.unit(0.6, "meters"),
  11900. name: "Hand",
  11901. image: {
  11902. source: "./media/characters/keset-vanrel/hand.svg"
  11903. }
  11904. },
  11905. foot: {
  11906. height: math.unit(0.94978, "meters"),
  11907. name: "Foot",
  11908. image: {
  11909. source: "./media/characters/keset-vanrel/foot.svg"
  11910. }
  11911. },
  11912. battle: {
  11913. height: math.unit(7.408, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Battle",
  11916. image: {
  11917. source: "./media/characters/keset-vanrel/battle.svg",
  11918. extra: 1890 / 1386,
  11919. bottom: 73.28 / 1970
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(8 + 5 / 12, "feet"),
  11927. default: true
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(150, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/neos/front.svg",
  11940. extra: 1696 / 992,
  11941. bottom: 0.14
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Normal",
  11948. height: math.unit(54, "cm"),
  11949. default: true
  11950. },
  11951. {
  11952. name: "Macro",
  11953. height: math.unit(100, "m")
  11954. },
  11955. {
  11956. name: "Megamacro",
  11957. height: math.unit(10, "km")
  11958. },
  11959. {
  11960. name: "Megamacro+",
  11961. height: math.unit(100, "km")
  11962. },
  11963. {
  11964. name: "Gigamacro",
  11965. height: math.unit(100, "Mm")
  11966. },
  11967. {
  11968. name: "Teramacro",
  11969. height: math.unit(100, "Gm")
  11970. },
  11971. {
  11972. name: "Examacro",
  11973. height: math.unit(100, "Em")
  11974. },
  11975. {
  11976. name: "Godly",
  11977. height: math.unit(10000, "Ym")
  11978. },
  11979. {
  11980. name: "Beyond Godly",
  11981. height: math.unit(25, "multiverses")
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11987. {
  11988. feminine: {
  11989. height: math.unit(5, "feet"),
  11990. weight: math.unit(100, "lb"),
  11991. name: "Feminine",
  11992. image: {
  11993. source: "./media/characters/sammy-mouse/feminine.svg",
  11994. extra: 2526 / 2425,
  11995. bottom: 0.123
  11996. }
  11997. },
  11998. masculine: {
  11999. height: math.unit(5, "feet"),
  12000. weight: math.unit(100, "lb"),
  12001. name: "Masculine",
  12002. image: {
  12003. source: "./media/characters/sammy-mouse/masculine.svg",
  12004. extra: 2526 / 2425,
  12005. bottom: 0.123
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Micro",
  12012. height: math.unit(5, "inches")
  12013. },
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(5, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(60, "feet")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(4, "feet"),
  12030. weight: math.unit(50, "lb"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/kole/front.svg",
  12034. extra: 1423 / 1303,
  12035. bottom: 0.025
  12036. }
  12037. },
  12038. back: {
  12039. height: math.unit(4, "feet"),
  12040. weight: math.unit(50, "lb"),
  12041. name: "Back",
  12042. image: {
  12043. source: "./media/characters/kole/back.svg",
  12044. extra: 1426 / 1280,
  12045. bottom: 0.02
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(4, "feet"),
  12053. default: true
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(2 + 6 / 12, "feet"),
  12062. weight: math.unit(20, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/rufran/front.svg",
  12066. extra: 2041 / 1839,
  12067. bottom: 0.055
  12068. }
  12069. },
  12070. back: {
  12071. height: math.unit(2 + 6 / 12, "feet"),
  12072. weight: math.unit(20, "lb"),
  12073. name: "Back",
  12074. image: {
  12075. source: "./media/characters/rufran/back.svg",
  12076. extra: 2054 / 1839,
  12077. bottom: 0.01
  12078. }
  12079. },
  12080. hand: {
  12081. height: math.unit(0.2166, "meters"),
  12082. name: "Hand",
  12083. image: {
  12084. source: "./media/characters/rufran/hand.svg"
  12085. }
  12086. },
  12087. foot: {
  12088. height: math.unit(0.185, "meters"),
  12089. name: "Foot",
  12090. image: {
  12091. source: "./media/characters/rufran/foot.svg"
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Micro",
  12098. height: math.unit(1, "inch")
  12099. },
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(2 + 6 / 12, "feet"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Big",
  12107. height: math.unit(60, "feet")
  12108. },
  12109. {
  12110. name: "Macro",
  12111. height: math.unit(325, "feet")
  12112. },
  12113. ]
  12114. ))
  12115. characterMakers.push(() => makeCharacter(
  12116. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12117. {
  12118. front: {
  12119. height: math.unit(0.3, "meters"),
  12120. weight: math.unit(3.5, "kg"),
  12121. name: "Front",
  12122. image: {
  12123. source: "./media/characters/chip/front.svg",
  12124. extra: 748 / 674
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Micro",
  12131. height: math.unit(1, "inch"),
  12132. default: true
  12133. },
  12134. ]
  12135. ))
  12136. characterMakers.push(() => makeCharacter(
  12137. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12138. {
  12139. side: {
  12140. height: math.unit(2.3, "meters"),
  12141. weight: math.unit(3500, "lb"),
  12142. name: "Side",
  12143. image: {
  12144. source: "./media/characters/torvid/side.svg",
  12145. extra: 1972 / 722,
  12146. bottom: 0.035
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Normal",
  12153. height: math.unit(2.3, "meters"),
  12154. default: true
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(2, "meters"),
  12163. weight: math.unit(150.5, "kg"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/susan/front.svg",
  12167. extra: 693 / 635,
  12168. bottom: 0.05
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Megamacro",
  12175. height: math.unit(505, "miles"),
  12176. default: true
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(150, "lb"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/raindrops/front.svg",
  12189. extra: 2655 / 2461,
  12190. bottom: 49 / 2705
  12191. }
  12192. },
  12193. back: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Back",
  12197. image: {
  12198. source: "./media/characters/raindrops/back.svg",
  12199. extra: 2574 / 2400,
  12200. bottom: 65 / 2634
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(6, "inches")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(6 + 2 / 12, "feet")
  12212. },
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(131, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(15, "miles")
  12221. },
  12222. {
  12223. name: "Gigamacro",
  12224. height: math.unit(4000, "miles")
  12225. },
  12226. {
  12227. name: "Teramacro",
  12228. height: math.unit(315000, "miles")
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(2.794, "meters"),
  12237. weight: math.unit(325, "kg"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/tezwa/front.svg",
  12241. extra: 2083 / 1906,
  12242. bottom: 0.031
  12243. }
  12244. },
  12245. foot: {
  12246. height: math.unit(0.687, "meters"),
  12247. name: "Foot",
  12248. image: {
  12249. source: "./media/characters/tezwa/foot.svg"
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Normal",
  12256. height: math.unit(9 + 2 / 12, "feet"),
  12257. default: true
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12263. {
  12264. front: {
  12265. height: math.unit(58, "feet"),
  12266. weight: math.unit(89000, "lb"),
  12267. name: "Front",
  12268. image: {
  12269. source: "./media/characters/typhus/front.svg",
  12270. extra: 816 / 800,
  12271. bottom: 0.065
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(58, "feet"),
  12279. default: true
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12285. {
  12286. front: {
  12287. height: math.unit(12, "feet"),
  12288. weight: math.unit(6, "tonnes"),
  12289. name: "Front",
  12290. image: {
  12291. source: "./media/characters/lyra-von-wulf/front.svg",
  12292. extra: 1,
  12293. bottom: 0.10
  12294. }
  12295. },
  12296. frontMecha: {
  12297. height: math.unit(12, "feet"),
  12298. weight: math.unit(12, "tonnes"),
  12299. name: "Front (Mecha)",
  12300. image: {
  12301. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12302. extra: 1,
  12303. bottom: 0.042
  12304. }
  12305. },
  12306. maw: {
  12307. height: math.unit(2.2, "feet"),
  12308. name: "Maw",
  12309. image: {
  12310. source: "./media/characters/lyra-von-wulf/maw.svg"
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(12, "feet"),
  12318. default: true
  12319. },
  12320. {
  12321. name: "Classic",
  12322. height: math.unit(50, "feet")
  12323. },
  12324. {
  12325. name: "Macro",
  12326. height: math.unit(500, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro",
  12330. height: math.unit(1, "mile")
  12331. },
  12332. {
  12333. name: "Gigamacro",
  12334. height: math.unit(400, "miles")
  12335. },
  12336. {
  12337. name: "Teramacro",
  12338. height: math.unit(22000, "miles")
  12339. },
  12340. {
  12341. name: "Solarmacro",
  12342. height: math.unit(8600000, "miles")
  12343. },
  12344. {
  12345. name: "Galactic",
  12346. height: math.unit(1057000, "lightyears")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12352. {
  12353. front: {
  12354. height: math.unit(6 + 10 / 12, "feet"),
  12355. weight: math.unit(150, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/dixon/front.svg",
  12359. extra: 3361 / 3209,
  12360. bottom: 0.01
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(6 + 10 / 12, "feet"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Big",
  12372. height: math.unit(12, "meters")
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(500, "meters")
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(2, "km")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(185, "cm"),
  12389. weight: math.unit(68, "kg"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/kauko/front.svg",
  12393. extra: 1455 / 1421,
  12394. bottom: 0.03
  12395. }
  12396. },
  12397. back: {
  12398. height: math.unit(185, "cm"),
  12399. weight: math.unit(68, "kg"),
  12400. name: "Back",
  12401. image: {
  12402. source: "./media/characters/kauko/back.svg",
  12403. extra: 1455 / 1421,
  12404. bottom: 0.004
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(185, "cm"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "kg"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/varg/front.svg",
  12425. extra: 1108 / 1018,
  12426. bottom: 0.0375
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(5, "meters")
  12434. },
  12435. {
  12436. name: "Macro",
  12437. height: math.unit(200, "meters")
  12438. },
  12439. {
  12440. name: "Megamacro",
  12441. height: math.unit(20, "kilometers")
  12442. },
  12443. {
  12444. name: "True Size",
  12445. height: math.unit(211, "km"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Gigamacro",
  12450. height: math.unit(1000, "km")
  12451. },
  12452. {
  12453. name: "Gigamacro+",
  12454. height: math.unit(8000, "km")
  12455. },
  12456. {
  12457. name: "Teramacro",
  12458. height: math.unit(1000000, "km")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(7 + 7 / 12, "feet"),
  12467. weight: math.unit(267, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/dayza/front.svg",
  12471. extra: 1262 / 1200,
  12472. bottom: 0.035
  12473. }
  12474. },
  12475. side: {
  12476. height: math.unit(7 + 7 / 12, "feet"),
  12477. weight: math.unit(267, "lb"),
  12478. name: "Side",
  12479. image: {
  12480. source: "./media/characters/dayza/side.svg",
  12481. extra: 1295 / 1245,
  12482. bottom: 0.05
  12483. }
  12484. },
  12485. back: {
  12486. height: math.unit(7 + 7 / 12, "feet"),
  12487. weight: math.unit(267, "lb"),
  12488. name: "Back",
  12489. image: {
  12490. source: "./media/characters/dayza/back.svg",
  12491. extra: 1241 / 1170
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Normal",
  12498. height: math.unit(7 + 7 / 12, "feet"),
  12499. default: true
  12500. },
  12501. {
  12502. name: "Macro",
  12503. height: math.unit(155, "feet")
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12509. {
  12510. front: {
  12511. height: math.unit(6 + 5 / 12, "feet"),
  12512. weight: math.unit(160, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/xanthos/front.svg",
  12516. extra: 1,
  12517. bottom: 0.04
  12518. }
  12519. },
  12520. back: {
  12521. height: math.unit(6 + 5 / 12, "feet"),
  12522. weight: math.unit(160, "lb"),
  12523. name: "Back",
  12524. image: {
  12525. source: "./media/characters/xanthos/back.svg",
  12526. extra: 1,
  12527. bottom: 0.03
  12528. }
  12529. },
  12530. hand: {
  12531. height: math.unit(0.928, "feet"),
  12532. name: "Hand",
  12533. image: {
  12534. source: "./media/characters/xanthos/hand.svg"
  12535. }
  12536. },
  12537. foot: {
  12538. height: math.unit(1.286, "feet"),
  12539. name: "Foot",
  12540. image: {
  12541. source: "./media/characters/xanthos/foot.svg"
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Normal",
  12548. height: math.unit(6 + 5 / 12, "feet"),
  12549. default: true
  12550. },
  12551. {
  12552. name: "Normal+",
  12553. height: math.unit(6, "meters")
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(40, "feet")
  12558. },
  12559. {
  12560. name: "Macro+",
  12561. height: math.unit(200, "meters")
  12562. },
  12563. {
  12564. name: "Megamacro",
  12565. height: math.unit(20, "km")
  12566. },
  12567. {
  12568. name: "Megamacro+",
  12569. height: math.unit(100, "km")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(6 + 3 / 12, "feet"),
  12578. weight: math.unit(215, "lb"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/grynn/front.svg",
  12582. extra: 4627 / 4209,
  12583. bottom: 0.047
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(6, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(6 + 3 / 12, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Big",
  12599. height: math.unit(104, "feet")
  12600. },
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(944, "feet")
  12604. },
  12605. {
  12606. name: "Macro+",
  12607. height: math.unit(9480, "feet")
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(78752, "feet")
  12612. },
  12613. {
  12614. name: "Megamacro+",
  12615. height: math.unit(630128, "feet")
  12616. },
  12617. {
  12618. name: "Megamacro++",
  12619. height: math.unit(3150695, "feet")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(7 + 5 / 12, "feet"),
  12628. weight: math.unit(450, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/mocha-aura/front.svg",
  12632. extra: 1907 / 1817,
  12633. bottom: 0.04
  12634. }
  12635. },
  12636. back: {
  12637. height: math.unit(7 + 5 / 12, "feet"),
  12638. weight: math.unit(450, "lb"),
  12639. name: "Back",
  12640. image: {
  12641. source: "./media/characters/mocha-aura/back.svg",
  12642. extra: 1900 / 1825,
  12643. bottom: 0.045
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Nano",
  12650. height: math.unit(1, "nm")
  12651. },
  12652. {
  12653. name: "Megamicro",
  12654. height: math.unit(1, "mm")
  12655. },
  12656. {
  12657. name: "Micro",
  12658. height: math.unit(3, "inches")
  12659. },
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(7 + 5 / 12, "feet"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Macro",
  12667. height: math.unit(30, "feet")
  12668. },
  12669. {
  12670. name: "Megamacro",
  12671. height: math.unit(3500, "feet")
  12672. },
  12673. {
  12674. name: "Teramacro",
  12675. height: math.unit(500000, "miles")
  12676. },
  12677. {
  12678. name: "Petamacro",
  12679. height: math.unit(50000000000000000, "parsecs")
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(6, "feet"),
  12688. weight: math.unit(150, "lb"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/ilisha-devya/front.svg",
  12692. extra: 1,
  12693. bottom: 0.175
  12694. }
  12695. },
  12696. back: {
  12697. height: math.unit(6, "feet"),
  12698. weight: math.unit(150, "lb"),
  12699. name: "Back",
  12700. image: {
  12701. source: "./media/characters/ilisha-devya/back.svg",
  12702. extra: 1,
  12703. bottom: 0.015
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Macro",
  12710. height: math.unit(500, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Megamacro",
  12715. height: math.unit(10, "miles")
  12716. },
  12717. {
  12718. name: "Gigamacro",
  12719. height: math.unit(100000, "miles")
  12720. },
  12721. {
  12722. name: "Examacro",
  12723. height: math.unit(1e9, "lightyears")
  12724. },
  12725. {
  12726. name: "Omniversal",
  12727. height: math.unit(1e33, "lightyears")
  12728. },
  12729. {
  12730. name: "Beyond Infinite",
  12731. height: math.unit(1e100, "lightyears")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12737. {
  12738. Side: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(150, "lb"),
  12741. name: "Side",
  12742. image: {
  12743. source: "./media/characters/mira/side.svg",
  12744. extra: 900 / 799,
  12745. bottom: 0.02
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Human Size",
  12752. height: math.unit(6, "feet")
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(100, "feet"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Megamacro",
  12761. height: math.unit(10, "miles")
  12762. },
  12763. {
  12764. name: "Gigamacro",
  12765. height: math.unit(25000, "miles")
  12766. },
  12767. {
  12768. name: "Teramacro",
  12769. height: math.unit(300, "AU")
  12770. },
  12771. {
  12772. name: "Full Size",
  12773. height: math.unit(4.5e10, "lightyears")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/holly/front.svg",
  12786. extra: 639 / 606
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(150, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/holly/back.svg",
  12795. extra: 623 / 598
  12796. }
  12797. },
  12798. frontWorking: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(150, "lb"),
  12801. name: "Front (Working)",
  12802. image: {
  12803. source: "./media/characters/holly/front-working.svg",
  12804. extra: 607 / 577,
  12805. bottom: 0.048
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(12 + 3 / 12, "feet"),
  12813. default: true
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Porter", species: ["bernese-mountain-dog"], 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/porter/front.svg",
  12826. extra: 1,
  12827. bottom: 0.01
  12828. }
  12829. },
  12830. frontRobes: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Front (Robes)",
  12834. image: {
  12835. source: "./media/characters/porter/front-robes.svg",
  12836. extra: 1.01,
  12837. bottom: 0.01
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Normal",
  12844. height: math.unit(11 + 9 / 12, "feet"),
  12845. default: true
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12851. {
  12852. legendary: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Legendary",
  12856. image: {
  12857. source: "./media/characters/lucy/legendary.svg",
  12858. extra: 1355 / 1100,
  12859. bottom: 0.045
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Legendary",
  12866. height: math.unit(86882 * 2, "miles"),
  12867. default: true
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "lb"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/drusilla/front.svg",
  12880. extra: 678 / 635,
  12881. bottom: 0.03
  12882. }
  12883. },
  12884. back: {
  12885. height: math.unit(6, "feet"),
  12886. weight: math.unit(150, "lb"),
  12887. name: "Back",
  12888. image: {
  12889. source: "./media/characters/drusilla/back.svg",
  12890. extra: 678 / 635,
  12891. bottom: 0.005
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Macro",
  12898. height: math.unit(100, "feet")
  12899. },
  12900. {
  12901. name: "Canon Height",
  12902. height: math.unit(2000, "feet"),
  12903. default: true
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(180, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/renard-thatch/front.svg",
  12916. extra: 2411 / 2275,
  12917. bottom: 0.01
  12918. }
  12919. },
  12920. frontPosing: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(180, "lb"),
  12923. name: "Front (Posing)",
  12924. image: {
  12925. source: "./media/characters/renard-thatch/front-posing.svg",
  12926. extra: 2381 / 2261,
  12927. bottom: 0.01
  12928. }
  12929. },
  12930. back: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(180, "lb"),
  12933. name: "Back",
  12934. image: {
  12935. source: "./media/characters/renard-thatch/back.svg",
  12936. extra: 2428 / 2288
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Micro",
  12943. height: math.unit(3, "inches")
  12944. },
  12945. {
  12946. name: "Default",
  12947. height: math.unit(6, "feet"),
  12948. default: true
  12949. },
  12950. {
  12951. name: "Macro",
  12952. height: math.unit(75, "feet")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(1450, "feet"),
  12961. weight: math.unit(1.21e6, "tons"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/sekvra/front.svg",
  12965. extra: 1,
  12966. bottom: 0.03
  12967. }
  12968. },
  12969. frontClothed: {
  12970. height: math.unit(1450, "feet"),
  12971. weight: math.unit(1.21e6, "tons"),
  12972. name: "Front (Clothed)",
  12973. image: {
  12974. source: "./media/characters/sekvra/front-clothed.svg",
  12975. extra: 1,
  12976. bottom: 0.03
  12977. }
  12978. },
  12979. side: {
  12980. height: math.unit(1450, "feet"),
  12981. weight: math.unit(1.21e6, "tons"),
  12982. name: "Side",
  12983. image: {
  12984. source: "./media/characters/sekvra/side.svg",
  12985. extra: 1,
  12986. bottom: 0.025
  12987. }
  12988. },
  12989. back: {
  12990. height: math.unit(1450, "feet"),
  12991. weight: math.unit(1.21e6, "tons"),
  12992. name: "Back",
  12993. image: {
  12994. source: "./media/characters/sekvra/back.svg",
  12995. extra: 1,
  12996. bottom: 0.005
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(1450, "feet"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Megamacro",
  13008. height: math.unit(15000, "feet")
  13009. },
  13010. ]
  13011. ))
  13012. characterMakers.push(() => makeCharacter(
  13013. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13014. {
  13015. front: {
  13016. height: math.unit(6, "feet"),
  13017. weight: math.unit(150, "lb"),
  13018. name: "Front",
  13019. image: {
  13020. source: "./media/characters/carmine/front.svg",
  13021. extra: 1,
  13022. bottom: 0.035
  13023. }
  13024. },
  13025. frontArmor: {
  13026. height: math.unit(6, "feet"),
  13027. weight: math.unit(150, "lb"),
  13028. name: "Front (Armor)",
  13029. image: {
  13030. source: "./media/characters/carmine/front-armor.svg",
  13031. extra: 1,
  13032. bottom: 0.035
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Large",
  13039. height: math.unit(1, "mile")
  13040. },
  13041. {
  13042. name: "Huge",
  13043. height: math.unit(40, "miles"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Colossal",
  13048. height: math.unit(2500, "miles")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/elyssia/front.svg",
  13061. extra: 2201 / 2035,
  13062. bottom: 0.05
  13063. }
  13064. },
  13065. frontClothed: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(150, "lb"),
  13068. name: "Front (Clothed)",
  13069. image: {
  13070. source: "./media/characters/elyssia/front-clothed.svg",
  13071. extra: 2201 / 2035,
  13072. bottom: 0.05
  13073. }
  13074. },
  13075. back: {
  13076. height: math.unit(6, "feet"),
  13077. weight: math.unit(150, "lb"),
  13078. name: "Back",
  13079. image: {
  13080. source: "./media/characters/elyssia/back.svg",
  13081. extra: 2201 / 2035,
  13082. bottom: 0.013
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Smaller",
  13089. height: math.unit(150, "feet")
  13090. },
  13091. {
  13092. name: "Standard",
  13093. height: math.unit(1400, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Distracted",
  13098. height: math.unit(15000, "feet")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(7 + 4 / 12, "feet"),
  13107. weight: math.unit(500, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/geno-maxwell/front.svg",
  13111. extra: 2207 / 2040,
  13112. bottom: 0.015
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Micro",
  13119. height: math.unit(3, "inches")
  13120. },
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(7 + 4 / 12, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Macro",
  13128. height: math.unit(220, "feet")
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(11, "miles")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(7 + 4 / 12, "feet"),
  13141. weight: math.unit(500, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/regena-maxwell/front.svg",
  13145. extra: 3115 / 2770,
  13146. bottom: 0.02
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(7 + 4 / 12, "feet"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Macro",
  13158. height: math.unit(220, "feet")
  13159. },
  13160. {
  13161. name: "Megamacro",
  13162. height: math.unit(11, "miles")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13168. {
  13169. front: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13175. extra: 860 / 690,
  13176. bottom: 0.03
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(1.7, "meters"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(150, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/quilly/front.svg",
  13197. extra: 890 / 776
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Gigamacro",
  13204. height: math.unit(404090, "miles"),
  13205. default: true
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(7 + 8 / 12, "feet"),
  13214. weight: math.unit(350, "lb"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/tempest/front.svg",
  13218. extra: 1175 / 1086,
  13219. bottom: 0.02
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(7 + 8 / 12, "feet"),
  13227. default: true
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13233. {
  13234. side: {
  13235. height: math.unit(4 + 5 / 12, "feet"),
  13236. weight: math.unit(80, "lb"),
  13237. name: "Side",
  13238. image: {
  13239. source: "./media/characters/rodger/side.svg",
  13240. extra: 1235 / 1118
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Micro",
  13247. height: math.unit(1, "inch")
  13248. },
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(4 + 5 / 12, "feet"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(120, "feet")
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13262. {
  13263. front: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(150, "lb"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/danyel/front.svg",
  13269. extra: 1185 / 1123,
  13270. bottom: 0.05
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Shrunken",
  13277. height: math.unit(0.5, "mm")
  13278. },
  13279. {
  13280. name: "Micro",
  13281. height: math.unit(1, "mm"),
  13282. default: true
  13283. },
  13284. {
  13285. name: "Upsized",
  13286. height: math.unit(5 + 5 / 12, "feet")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(5 + 6 / 12, "feet"),
  13295. weight: math.unit(200, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/vivian-bijoux/front.svg",
  13299. extra: 1,
  13300. bottom: 0.072
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(5 + 6 / 12, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Bad Dream",
  13312. height: math.unit(500, "feet")
  13313. },
  13314. {
  13315. name: "Nightmare",
  13316. height: math.unit(500, "miles")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6 + 1 / 12, "feet"),
  13325. weight: math.unit(260, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/zeta/front.svg",
  13329. extra: 1968 / 1889,
  13330. bottom: 0.06
  13331. }
  13332. },
  13333. back: {
  13334. height: math.unit(6 + 1 / 12, "feet"),
  13335. weight: math.unit(260, "lb"),
  13336. name: "Back",
  13337. image: {
  13338. source: "./media/characters/zeta/back.svg",
  13339. extra: 1944 / 1858,
  13340. bottom: 0.03
  13341. }
  13342. },
  13343. hand: {
  13344. height: math.unit(1.112, "feet"),
  13345. name: "Hand",
  13346. image: {
  13347. source: "./media/characters/zeta/hand.svg"
  13348. }
  13349. },
  13350. foot: {
  13351. height: math.unit(1.48, "feet"),
  13352. name: "Foot",
  13353. image: {
  13354. source: "./media/characters/zeta/foot.svg"
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Micro",
  13361. height: math.unit(6, "inches")
  13362. },
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(6 + 1 / 12, "feet"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Macro",
  13370. height: math.unit(20, "feet")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/jamie-larsen/front.svg",
  13383. extra: 962 / 933,
  13384. bottom: 0.02
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(150, "lb"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/jamie-larsen/back.svg",
  13393. extra: 997 / 946
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(28 + 7 / 12, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Macro+",
  13405. height: math.unit(180, "feet")
  13406. },
  13407. {
  13408. name: "Megamacro",
  13409. height: math.unit(10, "miles")
  13410. },
  13411. {
  13412. name: "Gigamacro",
  13413. height: math.unit(200000, "miles")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(120, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/vance/front.svg",
  13426. extra: 1980 / 1890,
  13427. bottom: 0.09
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(120, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/vance/back.svg",
  13436. extra: 2081 / 1994,
  13437. bottom: 0.014
  13438. }
  13439. },
  13440. hand: {
  13441. height: math.unit(0.88, "feet"),
  13442. name: "Hand",
  13443. image: {
  13444. source: "./media/characters/vance/hand.svg"
  13445. }
  13446. },
  13447. foot: {
  13448. height: math.unit(0.64, "feet"),
  13449. name: "Foot",
  13450. image: {
  13451. source: "./media/characters/vance/foot.svg"
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Small",
  13458. height: math.unit(90, "feet"),
  13459. default: true
  13460. },
  13461. {
  13462. name: "Macro",
  13463. height: math.unit(100, "meters")
  13464. },
  13465. {
  13466. name: "Megamacro",
  13467. height: math.unit(15, "miles")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(6, "feet"),
  13476. weight: math.unit(180, "lb"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/xochitl/front.svg",
  13480. extra: 2297 / 2261,
  13481. bottom: 0.065
  13482. }
  13483. },
  13484. back: {
  13485. height: math.unit(6, "feet"),
  13486. weight: math.unit(180, "lb"),
  13487. name: "Back",
  13488. image: {
  13489. source: "./media/characters/xochitl/back.svg",
  13490. extra: 2386 / 2354,
  13491. bottom: 0.01
  13492. }
  13493. },
  13494. foot: {
  13495. height: math.unit(6 / 5 * 1.15, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Foot",
  13498. image: {
  13499. source: "./media/characters/xochitl/foot.svg"
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(80, "feet")
  13507. },
  13508. {
  13509. name: "Macro+",
  13510. height: math.unit(400, "feet"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Gigamacro",
  13515. height: math.unit(80000, "miles")
  13516. },
  13517. {
  13518. name: "Gigamacro+",
  13519. height: math.unit(400000, "miles")
  13520. },
  13521. {
  13522. name: "Teramacro",
  13523. height: math.unit(300, "AU")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/vincent/front.svg",
  13536. extra: 1130 / 1080,
  13537. bottom: 0.055
  13538. }
  13539. },
  13540. beak: {
  13541. height: math.unit(6 * 0.1, "feet"),
  13542. name: "Beak",
  13543. image: {
  13544. source: "./media/characters/vincent/beak.svg"
  13545. }
  13546. },
  13547. hand: {
  13548. height: math.unit(6 * 0.85, "feet"),
  13549. weight: math.unit(150, "lb"),
  13550. name: "Hand",
  13551. image: {
  13552. source: "./media/characters/vincent/hand.svg"
  13553. }
  13554. },
  13555. foot: {
  13556. height: math.unit(6 * 0.19, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Foot",
  13559. image: {
  13560. source: "./media/characters/vincent/foot.svg"
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Base",
  13567. height: math.unit(6 + 5 / 12, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(300, "feet")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(2, "miles")
  13577. },
  13578. {
  13579. name: "Gigamacro",
  13580. height: math.unit(1000, "miles")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(2, "meters"),
  13589. weight: math.unit(500, "kg"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/coatl/front.svg",
  13593. extra: 3948 / 3500,
  13594. bottom: 0.082
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Normal",
  13601. height: math.unit(4, "meters")
  13602. },
  13603. {
  13604. name: "Macro",
  13605. height: math.unit(100, "meters"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Macro+",
  13610. height: math.unit(300, "meters")
  13611. },
  13612. {
  13613. name: "Megamacro",
  13614. height: math.unit(3, "gigameters")
  13615. },
  13616. {
  13617. name: "Megamacro+",
  13618. height: math.unit(300, "terameters")
  13619. },
  13620. {
  13621. name: "Megamacro++",
  13622. height: math.unit(3, "lightyears")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(50, "kg"),
  13632. name: "front",
  13633. image: {
  13634. source: "./media/characters/shiroryu/front.svg",
  13635. extra: 1990 / 1935
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Mortal Mingling",
  13642. height: math.unit(3, "meters")
  13643. },
  13644. {
  13645. name: "Kaiju-ish",
  13646. height: math.unit(250, "meters")
  13647. },
  13648. {
  13649. name: "Somewhat Godly",
  13650. height: math.unit(400, "km"),
  13651. default: true
  13652. },
  13653. {
  13654. name: "Planetary",
  13655. height: math.unit(300, "megameters")
  13656. },
  13657. {
  13658. name: "Galaxy-dwarfing",
  13659. height: math.unit(450, "kiloparsecs")
  13660. },
  13661. {
  13662. name: "Universe Eater",
  13663. height: math.unit(150, "gigaparsecs")
  13664. },
  13665. {
  13666. name: "Almost Immeasurable",
  13667. height: math.unit(1.3e266, "yottaparsecs")
  13668. },
  13669. ]
  13670. ))
  13671. characterMakers.push(() => makeCharacter(
  13672. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13673. {
  13674. front: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(150, "lb"),
  13677. name: "Front",
  13678. image: {
  13679. source: "./media/characters/umeko/front.svg",
  13680. extra: 1,
  13681. bottom: 0.019
  13682. }
  13683. },
  13684. frontArmored: {
  13685. height: math.unit(6, "feet"),
  13686. weight: math.unit(150, "lb"),
  13687. name: "Front (Armored)",
  13688. image: {
  13689. source: "./media/characters/umeko/front-armored.svg",
  13690. extra: 1,
  13691. bottom: 0.021
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Macro",
  13698. height: math.unit(220, "feet"),
  13699. default: true
  13700. },
  13701. {
  13702. name: "Guardian Dragon",
  13703. height: math.unit(50, "miles")
  13704. },
  13705. {
  13706. name: "Cosmic",
  13707. height: math.unit(800000, "miles")
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(6, "feet"),
  13716. weight: math.unit(150, "lb"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/cassidy/front.svg",
  13720. extra: 1,
  13721. bottom: 0.043
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Canon Height",
  13728. height: math.unit(120, "feet"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Macro+",
  13733. height: math.unit(400, "feet")
  13734. },
  13735. {
  13736. name: "Macro++",
  13737. height: math.unit(4000, "feet")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(3, "miles")
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(6, "feet"),
  13750. weight: math.unit(150, "lb"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/isaac/front.svg",
  13754. extra: 896 / 815,
  13755. bottom: 0.11
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "Human Size",
  13762. height: math.unit(8, "feet"),
  13763. default: true
  13764. },
  13765. {
  13766. name: "Macro",
  13767. height: math.unit(400, "feet")
  13768. },
  13769. {
  13770. name: "Megamacro",
  13771. height: math.unit(50, "miles")
  13772. },
  13773. {
  13774. name: "Canon Height",
  13775. height: math.unit(200, "AU")
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(72, "kg"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/sleekit/front.svg",
  13788. extra: 4693 / 4487,
  13789. bottom: 0.012
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Minimum Height",
  13796. height: math.unit(10, "meters")
  13797. },
  13798. {
  13799. name: "Smaller",
  13800. height: math.unit(25, "meters")
  13801. },
  13802. {
  13803. name: "Larger",
  13804. height: math.unit(38, "meters"),
  13805. default: true
  13806. },
  13807. {
  13808. name: "Maximum height",
  13809. height: math.unit(100, "meters")
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/nillia/front.svg",
  13822. extra: 2195 / 2037,
  13823. bottom: 0.005
  13824. }
  13825. },
  13826. back: {
  13827. height: math.unit(6, "feet"),
  13828. weight: math.unit(150, "lb"),
  13829. name: "Back",
  13830. image: {
  13831. source: "./media/characters/nillia/back.svg",
  13832. extra: 2195 / 2037,
  13833. bottom: 0.005
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Canon Height",
  13840. height: math.unit(489, "feet"),
  13841. default: true
  13842. }
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13847. {
  13848. front: {
  13849. height: math.unit(6, "feet"),
  13850. weight: math.unit(150, "lb"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/mesmyriza/front.svg",
  13854. extra: 2067 / 1784,
  13855. bottom: 0.035
  13856. }
  13857. },
  13858. foot: {
  13859. height: math.unit(6 / (250 / 35), "feet"),
  13860. name: "Foot",
  13861. image: {
  13862. source: "./media/characters/mesmyriza/foot.svg"
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(457, "meters"),
  13870. default: true
  13871. },
  13872. {
  13873. name: "Megamacro",
  13874. height: math.unit(8, "megameters")
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(250, "lb"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/saudade/front.svg",
  13887. extra: 1172 / 1139,
  13888. bottom: 0.035
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Micro",
  13895. height: math.unit(3, "inches")
  13896. },
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(6, "feet"),
  13900. default: true
  13901. },
  13902. {
  13903. name: "Macro",
  13904. height: math.unit(50, "feet")
  13905. },
  13906. {
  13907. name: "Megamacro",
  13908. height: math.unit(2800, "feet")
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(5 + 4 / 12, "feet"),
  13917. weight: math.unit(100, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/keireer/front.svg",
  13921. extra: 716 / 666,
  13922. bottom: 0.05
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(5 + 4 / 12, "feet"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(90, "kg"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/mirja/front.svg",
  13943. extra: 1789 / 1683,
  13944. bottom: 0.05
  13945. }
  13946. },
  13947. frontDressed: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(90, "lb"),
  13950. name: "Front (Dressed)",
  13951. image: {
  13952. source: "./media/characters/mirja/front-dressed.svg",
  13953. extra: 1789 / 1683,
  13954. bottom: 0.05
  13955. }
  13956. },
  13957. back: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(90, "lb"),
  13960. name: "Back",
  13961. image: {
  13962. source: "./media/characters/mirja/back.svg",
  13963. extra: 953 / 917,
  13964. bottom: 0.017
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "\"Incognito\"",
  13971. height: math.unit(3, "meters")
  13972. },
  13973. {
  13974. name: "Strolling Size",
  13975. height: math.unit(15, "km")
  13976. },
  13977. {
  13978. name: "Larger Strolling Size",
  13979. height: math.unit(400, "km")
  13980. },
  13981. {
  13982. name: "Preferred Size",
  13983. height: math.unit(5000, "km")
  13984. },
  13985. {
  13986. name: "True Size",
  13987. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(15, "feet"),
  13997. weight: math.unit(880, "kg"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/nightraver/front.svg",
  14001. extra: 2444 / 2160,
  14002. bottom: 0.027
  14003. }
  14004. },
  14005. back: {
  14006. height: math.unit(15, "feet"),
  14007. weight: math.unit(880, "kg"),
  14008. name: "Back",
  14009. image: {
  14010. source: "./media/characters/nightraver/back.svg",
  14011. extra: 2309 / 2180,
  14012. bottom: 0.005
  14013. }
  14014. },
  14015. sole: {
  14016. height: math.unit(2.878, "feet"),
  14017. name: "Sole",
  14018. image: {
  14019. source: "./media/characters/nightraver/sole.svg"
  14020. }
  14021. },
  14022. foot: {
  14023. height: math.unit(2.285, "feet"),
  14024. name: "Foot",
  14025. image: {
  14026. source: "./media/characters/nightraver/foot.svg"
  14027. }
  14028. },
  14029. maw: {
  14030. height: math.unit(2.67, "feet"),
  14031. name: "Maw",
  14032. image: {
  14033. source: "./media/characters/nightraver/maw.svg"
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(1, "cm")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(15, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(300, "feet")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(300, "miles")
  14054. },
  14055. {
  14056. name: "Gigamacro",
  14057. height: math.unit(10000, "miles")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14063. {
  14064. side: {
  14065. height: math.unit(2, "inches"),
  14066. weight: math.unit(5, "grams"),
  14067. name: "Side",
  14068. image: {
  14069. source: "./media/characters/arc/side.svg"
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Micro",
  14076. height: math.unit(2, "inches"),
  14077. default: true
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(1.1938, "meters"),
  14086. weight: math.unit(54, "kg"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/nebula-shahar/front.svg",
  14090. extra: 1642 / 1436,
  14091. bottom: 0.06
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Megamicro",
  14098. height: math.unit(0.3, "mm")
  14099. },
  14100. {
  14101. name: "Micro",
  14102. height: math.unit(3, "cm")
  14103. },
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(138, "cm"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(30, "m")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(5.24, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/shayla/front.svg",
  14124. extra: 1512 / 1414,
  14125. bottom: 0.01
  14126. }
  14127. },
  14128. back: {
  14129. height: math.unit(5.24, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Back",
  14132. image: {
  14133. source: "./media/characters/shayla/back.svg",
  14134. extra: 1512 / 1414
  14135. }
  14136. },
  14137. hand: {
  14138. height: math.unit(0.7781496062992126, "feet"),
  14139. name: "Hand",
  14140. image: {
  14141. source: "./media/characters/shayla/hand.svg"
  14142. }
  14143. },
  14144. foot: {
  14145. height: math.unit(1.4206036745406823, "feet"),
  14146. name: "Foot",
  14147. image: {
  14148. source: "./media/characters/shayla/foot.svg"
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Micro",
  14155. height: math.unit(0.32, "feet")
  14156. },
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(5.24, "feet"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Macro",
  14164. height: math.unit(492.12, "feet")
  14165. },
  14166. {
  14167. name: "Megamacro",
  14168. height: math.unit(186.41, "miles")
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(2.2, "m"),
  14177. weight: math.unit(120, "kg"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/pia-jr/front.svg",
  14181. extra: 1000 / 970,
  14182. bottom: 0.035
  14183. }
  14184. },
  14185. hand: {
  14186. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14187. name: "Hand",
  14188. image: {
  14189. source: "./media/characters/pia-jr/hand.svg"
  14190. }
  14191. },
  14192. paw: {
  14193. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14194. name: "Paw",
  14195. image: {
  14196. source: "./media/characters/pia-jr/paw.svg"
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Micro",
  14203. height: math.unit(1.2, "cm")
  14204. },
  14205. {
  14206. name: "Normal",
  14207. height: math.unit(2.2, "m"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(180, "m")
  14213. },
  14214. {
  14215. name: "Megamacro",
  14216. height: math.unit(420, "km")
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(2, "m"),
  14225. weight: math.unit(115, "kg"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/pia-sr/front.svg",
  14229. extra: 760 / 730,
  14230. bottom: 0.015
  14231. }
  14232. },
  14233. back: {
  14234. height: math.unit(2, "m"),
  14235. weight: math.unit(115, "kg"),
  14236. name: "Back",
  14237. image: {
  14238. source: "./media/characters/pia-sr/back.svg",
  14239. extra: 760 / 730,
  14240. bottom: 0.01
  14241. }
  14242. },
  14243. hand: {
  14244. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14245. name: "Hand",
  14246. image: {
  14247. source: "./media/characters/pia-sr/hand.svg"
  14248. }
  14249. },
  14250. foot: {
  14251. height: math.unit(1.83, "feet"),
  14252. name: "Foot",
  14253. image: {
  14254. source: "./media/characters/pia-sr/foot.svg"
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Micro",
  14261. height: math.unit(88, "mm")
  14262. },
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(2, "m"),
  14266. default: true
  14267. },
  14268. {
  14269. name: "Macro",
  14270. height: math.unit(200, "m")
  14271. },
  14272. {
  14273. name: "Megamacro",
  14274. height: math.unit(420, "km")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(8 + 2 / 12, "feet"),
  14283. weight: math.unit(300, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/kibibyte/front.svg",
  14287. extra: 2221 / 2098,
  14288. bottom: 0.04
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(8 + 2 / 12, "feet"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Socialable Macro",
  14300. height: math.unit(50, "feet")
  14301. },
  14302. {
  14303. name: "Macro",
  14304. height: math.unit(300, "feet")
  14305. },
  14306. {
  14307. name: "Megamacro",
  14308. height: math.unit(500, "miles")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(150, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/felix/front.svg",
  14321. extra: 762 / 722,
  14322. bottom: 0.02
  14323. }
  14324. },
  14325. frontClothed: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Front (Clothed)",
  14329. image: {
  14330. source: "./media/characters/felix/front-clothed.svg",
  14331. extra: 762 / 722,
  14332. bottom: 0.02
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(6 + 8 / 12, "feet"),
  14340. default: true
  14341. },
  14342. {
  14343. name: "Macro",
  14344. height: math.unit(2600, "feet")
  14345. },
  14346. {
  14347. name: "Megamacro",
  14348. height: math.unit(450, "miles")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6 + 1 / 12, "feet"),
  14357. weight: math.unit(250, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/tobo/front.svg",
  14361. extra: 608 / 586,
  14362. bottom: 0.023
  14363. }
  14364. },
  14365. back: {
  14366. height: math.unit(6 + 1 / 12, "feet"),
  14367. weight: math.unit(250, "lb"),
  14368. name: "Back",
  14369. image: {
  14370. source: "./media/characters/tobo/back.svg",
  14371. extra: 608 / 586
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Nano",
  14378. height: math.unit(2, "nm")
  14379. },
  14380. {
  14381. name: "Megamicro",
  14382. height: math.unit(0.1, "mm")
  14383. },
  14384. {
  14385. name: "Micro",
  14386. height: math.unit(1, "inch"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Human-sized",
  14391. height: math.unit(6 + 1 / 12, "feet")
  14392. },
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(250, "feet")
  14396. },
  14397. {
  14398. name: "Megamacro",
  14399. height: math.unit(75, "miles")
  14400. },
  14401. {
  14402. name: "Texas-sized",
  14403. height: math.unit(750, "miles")
  14404. },
  14405. {
  14406. name: "Teramacro",
  14407. height: math.unit(50000, "miles")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(6, "feet"),
  14416. weight: math.unit(269, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/danny-kapowsky/front.svg",
  14420. extra: 766 / 736,
  14421. bottom: 0.044
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(269, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/danny-kapowsky/back.svg",
  14430. extra: 797 / 760,
  14431. bottom: 0.025
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Macro",
  14438. height: math.unit(150, "feet"),
  14439. default: true
  14440. },
  14441. {
  14442. name: "Macro+",
  14443. height: math.unit(200, "feet")
  14444. },
  14445. {
  14446. name: "Macro++",
  14447. height: math.unit(300, "feet")
  14448. },
  14449. {
  14450. name: "Macro+++",
  14451. height: math.unit(400, "feet")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14457. {
  14458. side: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(170, "lb"),
  14461. name: "Side",
  14462. image: {
  14463. source: "./media/characters/finn/side.svg",
  14464. extra: 1953 / 1807,
  14465. bottom: 0.057
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Megamacro",
  14472. height: math.unit(14445, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(5 + 6 / 12, "feet"),
  14482. weight: math.unit(125, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/roy/front.svg",
  14486. extra: 1,
  14487. bottom: 0.11
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(3, "inches"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(5 + 6 / 12, "feet")
  14500. },
  14501. {
  14502. name: "Lesser Macro",
  14503. height: math.unit(60, "feet")
  14504. },
  14505. {
  14506. name: "Greater Macro",
  14507. height: math.unit(120, "feet")
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(6, "feet"),
  14516. weight: math.unit(100, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/aevsivs/front.svg",
  14520. extra: 1,
  14521. bottom: 0.03
  14522. }
  14523. },
  14524. back: {
  14525. height: math.unit(6, "feet"),
  14526. weight: math.unit(100, "lb"),
  14527. name: "Back",
  14528. image: {
  14529. source: "./media/characters/aevsivs/back.svg"
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Micro",
  14536. height: math.unit(2, "inches"),
  14537. default: true
  14538. },
  14539. {
  14540. name: "Normal",
  14541. height: math.unit(5, "feet")
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(5 + 7 / 12, "feet"),
  14550. weight: math.unit(159, "lb"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/hildegard/front.svg",
  14554. extra: 289 / 269,
  14555. bottom: 7.63 / 297.8
  14556. }
  14557. },
  14558. back: {
  14559. height: math.unit(5 + 7 / 12, "feet"),
  14560. weight: math.unit(159, "lb"),
  14561. name: "Back",
  14562. image: {
  14563. source: "./media/characters/hildegard/back.svg",
  14564. extra: 280 / 260,
  14565. bottom: 2.3 / 282
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(5 + 7 / 12, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14579. {
  14580. bernard: {
  14581. height: math.unit(2 + 7 / 12, "feet"),
  14582. weight: math.unit(66, "lb"),
  14583. name: "Bernard",
  14584. rename: true,
  14585. image: {
  14586. source: "./media/characters/bernard-wilder/bernard.svg",
  14587. extra: 192 / 128,
  14588. bottom: 0.05
  14589. }
  14590. },
  14591. wilder: {
  14592. height: math.unit(5 + 8 / 12, "feet"),
  14593. weight: math.unit(143, "lb"),
  14594. name: "Wilder",
  14595. rename: true,
  14596. image: {
  14597. source: "./media/characters/bernard-wilder/wilder.svg",
  14598. extra: 361 / 312,
  14599. bottom: 0.02
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(2 + 7 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14613. {
  14614. anthro: {
  14615. height: math.unit(6 + 1 / 12, "feet"),
  14616. weight: math.unit(155, "lb"),
  14617. name: "Anthro",
  14618. image: {
  14619. source: "./media/characters/hearth/anthro.svg",
  14620. extra: 260 / 250,
  14621. bottom: 0.02
  14622. }
  14623. },
  14624. feral: {
  14625. height: math.unit(3.78, "feet"),
  14626. weight: math.unit(35, "kg"),
  14627. name: "Feral",
  14628. image: {
  14629. source: "./media/characters/hearth/feral.svg",
  14630. extra: 153 / 135,
  14631. bottom: 0.03
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(6 + 1 / 12, "feet"),
  14639. default: true
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(6, "feet"),
  14648. weight: math.unit(182, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/ingrid/front.svg",
  14652. extra: 294 / 268,
  14653. bottom: 0.027
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Normal",
  14660. height: math.unit(6, "feet"),
  14661. default: true
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14667. {
  14668. eevee: {
  14669. height: math.unit(2 + 10 / 12, "feet"),
  14670. weight: math.unit(86, "lb"),
  14671. name: "Malgam",
  14672. image: {
  14673. source: "./media/characters/malgam/eevee.svg",
  14674. extra: 218 / 180,
  14675. bottom: 0.2
  14676. }
  14677. },
  14678. sylveon: {
  14679. height: math.unit(4, "feet"),
  14680. weight: math.unit(101, "lb"),
  14681. name: "Future Malgam",
  14682. rename: true,
  14683. image: {
  14684. source: "./media/characters/malgam/sylveon.svg",
  14685. extra: 371 / 325,
  14686. bottom: 0.015
  14687. }
  14688. },
  14689. gigantamax: {
  14690. height: math.unit(50, "feet"),
  14691. name: "Gigantamax Malgam",
  14692. rename: true,
  14693. image: {
  14694. source: "./media/characters/malgam/gigantamax.svg"
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(2 + 10 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(5 + 11 / 12, "feet"),
  14711. weight: math.unit(188, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/fleur/front.svg",
  14715. extra: 309 / 283,
  14716. bottom: 0.007
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(5 + 11 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(5 + 4 / 12, "feet"),
  14733. weight: math.unit(122, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/jude/front.svg",
  14737. extra: 288 / 273,
  14738. bottom: 0.03
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(5 + 4 / 12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(5 + 11 / 12, "feet"),
  14755. weight: math.unit(190, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/seara/front.svg",
  14759. extra: 1,
  14760. bottom: 0.05
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 11 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(16 + 5 / 12, "feet"),
  14777. weight: math.unit(524, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/caspian/front.svg",
  14781. extra: 1,
  14782. bottom: 0.04
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(16 + 5 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(5 + 7 / 12, "feet"),
  14799. weight: math.unit(170, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/mika/front.svg",
  14803. extra: 1,
  14804. bottom: 0.016
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(5 + 7 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(6 + 2 / 12, "feet"),
  14821. weight: math.unit(268, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/sol/front.svg",
  14825. extra: 247 / 231,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(6 + 2 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14840. {
  14841. buizel: {
  14842. height: math.unit(2 + 5 / 12, "feet"),
  14843. weight: math.unit(87, "lb"),
  14844. name: "Buizel",
  14845. image: {
  14846. source: "./media/characters/umiko/buizel.svg",
  14847. extra: 172 / 157,
  14848. bottom: 0.01
  14849. }
  14850. },
  14851. floatzel: {
  14852. height: math.unit(5 + 9 / 12, "feet"),
  14853. weight: math.unit(250, "lb"),
  14854. name: "Floatzel",
  14855. image: {
  14856. source: "./media/characters/umiko/floatzel.svg",
  14857. extra: 262 / 248
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(2 + 5 / 12, "feet"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(6 + 2 / 12, "feet"),
  14874. weight: math.unit(146, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/iliac/front.svg",
  14878. extra: 389 / 365,
  14879. bottom: 0.035
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(6 + 2 / 12, "feet"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(6, "feet"),
  14896. weight: math.unit(170, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/topaz/front.svg",
  14900. extra: 317 / 303,
  14901. bottom: 0.055
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(6, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(5 + 11 / 12, "feet"),
  14918. weight: math.unit(144, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/gabriel/front.svg",
  14922. extra: 285 / 262,
  14923. bottom: 0.004
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(5 + 11 / 12, "feet"),
  14931. default: true
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14937. {
  14938. side: {
  14939. height: math.unit(6 + 5 / 12, "feet"),
  14940. weight: math.unit(300, "lb"),
  14941. name: "Side",
  14942. image: {
  14943. source: "./media/characters/tempest-suicune/side.svg",
  14944. extra: 195 / 154,
  14945. bottom: 0.04
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(6 + 5 / 12, "feet"),
  14953. default: true
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(7 + 2 / 12, "feet"),
  14962. weight: math.unit(322, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/vulcan/front.svg",
  14966. extra: 154 / 147,
  14967. bottom: 0.04
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(7 + 2 / 12, "feet"),
  14975. default: true
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(5 + 10 / 12, "feet"),
  14984. weight: math.unit(264, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/gault/front.svg",
  14988. extra: 161 / 140,
  14989. bottom: 0.028
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(5 + 10 / 12, "feet"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(6, "feet"),
  15006. weight: math.unit(150, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/shard/front.svg",
  15010. extra: 273 / 238,
  15011. bottom: 0.02
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(3 + 6 / 12, "feet"),
  15019. default: true
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(5 + 11 / 12, "feet"),
  15028. weight: math.unit(146, "lb"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/ashe/front.svg",
  15032. extra: 400 / 373,
  15033. bottom: 0.01
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(5 + 11 / 12, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(5 + 5 / 12, "feet"),
  15050. weight: math.unit(135, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/beatrix/front.svg",
  15054. extra: 392 / 379,
  15055. bottom: 0.01
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(6, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6, "feet"),
  15072. weight: math.unit(150, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/ignatius/front.svg",
  15076. extra: 245 / 222,
  15077. bottom: 0.01
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(5 + 5 / 12, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6 + 2 / 12, "feet"),
  15094. weight: math.unit(138, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/mei-li/front.svg",
  15098. extra: 237 / 229,
  15099. bottom: 0.03
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(6 + 2 / 12, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(2 + 4 / 12, "feet"),
  15116. weight: math.unit(62, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/puru/front.svg",
  15120. extra: 206 / 149,
  15121. bottom: 0.06
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(2 + 4 / 12, "feet"),
  15129. default: true
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15135. {
  15136. anthro: {
  15137. height: math.unit(5 + 8/12, "feet"),
  15138. weight: math.unit(200, "lb"),
  15139. energyNeed: math.unit(2000, "kcal"),
  15140. name: "Anthro",
  15141. image: {
  15142. source: "./media/characters/kee/anthro.svg",
  15143. extra: 3251/3184,
  15144. bottom: 250/3501
  15145. }
  15146. },
  15147. taur: {
  15148. height: math.unit(11, "feet"),
  15149. weight: math.unit(500, "lb"),
  15150. energyNeed: math.unit(5000, "kcal"),
  15151. name: "Taur",
  15152. image: {
  15153. source: "./media/characters/kee/taur.svg",
  15154. extra: 1362/1320,
  15155. bottom: 83/1445
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Normal",
  15162. height: math.unit(5 + 8/12, "feet"),
  15163. default: true
  15164. },
  15165. {
  15166. name: "Macro",
  15167. height: math.unit(35, "feet")
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15173. {
  15174. anthro: {
  15175. height: math.unit(7, "feet"),
  15176. weight: math.unit(190, "lb"),
  15177. name: "Anthro",
  15178. image: {
  15179. source: "./media/characters/cobalt-dracha/anthro.svg",
  15180. extra: 231 / 225,
  15181. bottom: 0.04
  15182. }
  15183. },
  15184. feral: {
  15185. height: math.unit(9 + 7 / 12, "feet"),
  15186. weight: math.unit(294, "lb"),
  15187. name: "Feral",
  15188. image: {
  15189. source: "./media/characters/cobalt-dracha/feral.svg",
  15190. extra: 692 / 633,
  15191. bottom: 0.05
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(7, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15205. {
  15206. fallen: {
  15207. height: math.unit(11 + 8 / 12, "feet"),
  15208. weight: math.unit(485, "lb"),
  15209. name: "Java (Fallen)",
  15210. rename: true,
  15211. image: {
  15212. source: "./media/characters/java/fallen.svg",
  15213. extra: 226 / 208,
  15214. bottom: 0.005
  15215. }
  15216. },
  15217. godkin: {
  15218. height: math.unit(10 + 6 / 12, "feet"),
  15219. weight: math.unit(328, "lb"),
  15220. name: "Java (Godkin)",
  15221. rename: true,
  15222. image: {
  15223. source: "./media/characters/java/godkin.svg",
  15224. extra: 270 / 262,
  15225. bottom: 0.02
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(11 + 8 / 12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(7 + 8 / 12, "feet"),
  15242. weight: math.unit(320, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/skoll/front.svg",
  15246. extra: 232 / 220,
  15247. bottom: 0.02
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(7 + 8 / 12, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(5 + 9 / 12, "feet"),
  15264. weight: math.unit(170, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/purna/front.svg",
  15268. extra: 239 / 229,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 9 / 12, "feet"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(5 + 9 / 12, "feet"),
  15286. weight: math.unit(142, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/kuva/front.svg",
  15290. extra: 281 / 271,
  15291. bottom: 0.006
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(5 + 9 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15305. {
  15306. anthro: {
  15307. height: math.unit(9 + 2 / 12, "feet"),
  15308. weight: math.unit(270, "lb"),
  15309. name: "Anthro",
  15310. image: {
  15311. source: "./media/characters/embra/anthro.svg",
  15312. extra: 200 / 187,
  15313. bottom: 0.02
  15314. }
  15315. },
  15316. feral: {
  15317. height: math.unit(18 + 8 / 12, "feet"),
  15318. weight: math.unit(576, "lb"),
  15319. name: "Feral",
  15320. image: {
  15321. source: "./media/characters/embra/feral.svg",
  15322. extra: 152 / 137,
  15323. bottom: 0.037
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(9 + 2 / 12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15337. {
  15338. anthro: {
  15339. height: math.unit(10 + 9 / 12, "feet"),
  15340. weight: math.unit(224, "lb"),
  15341. name: "Anthro",
  15342. image: {
  15343. source: "./media/characters/grottos/anthro.svg",
  15344. extra: 350 / 332,
  15345. bottom: 0.045
  15346. }
  15347. },
  15348. feral: {
  15349. height: math.unit(20 + 7 / 12, "feet"),
  15350. weight: math.unit(629, "lb"),
  15351. name: "Feral",
  15352. image: {
  15353. source: "./media/characters/grottos/feral.svg",
  15354. extra: 207 / 190,
  15355. bottom: 0.05
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(10 + 9 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15369. {
  15370. anthro: {
  15371. height: math.unit(9 + 6 / 12, "feet"),
  15372. weight: math.unit(298, "lb"),
  15373. name: "Anthro",
  15374. image: {
  15375. source: "./media/characters/frifna/anthro.svg",
  15376. extra: 282 / 269,
  15377. bottom: 0.015
  15378. }
  15379. },
  15380. feral: {
  15381. height: math.unit(16 + 2 / 12, "feet"),
  15382. weight: math.unit(624, "lb"),
  15383. name: "Feral",
  15384. image: {
  15385. source: "./media/characters/frifna/feral.svg"
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Normal",
  15392. height: math.unit(9 + 6 / 12, "feet"),
  15393. default: true
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(6 + 2 / 12, "feet"),
  15402. weight: math.unit(168, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/elise/front.svg",
  15406. extra: 276 / 271
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(6 + 2 / 12, "feet"),
  15414. default: true
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(5 + 10 / 12, "feet"),
  15423. weight: math.unit(210, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/glade/front.svg",
  15427. extra: 258 / 247,
  15428. bottom: 0.008
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(5 + 10 / 12, "feet"),
  15436. default: true
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15442. {
  15443. front: {
  15444. height: math.unit(5 + 10 / 12, "feet"),
  15445. weight: math.unit(129, "lb"),
  15446. name: "Front",
  15447. image: {
  15448. source: "./media/characters/rina/front.svg",
  15449. extra: 266 / 255,
  15450. bottom: 0.005
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(5 + 10 / 12, "feet"),
  15458. default: true
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(6 + 1 / 12, "feet"),
  15467. weight: math.unit(192, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/veronica/front.svg",
  15471. extra: 319 / 309,
  15472. bottom: 0.005
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(6 + 1 / 12, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(9 + 3 / 12, "feet"),
  15489. weight: math.unit(1100, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/braxton/front.svg",
  15493. extra: 1057 / 984,
  15494. bottom: 0.05
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(9 + 3 / 12, "feet")
  15502. },
  15503. {
  15504. name: "Giant",
  15505. height: math.unit(300, "feet"),
  15506. default: true
  15507. },
  15508. {
  15509. name: "Macro",
  15510. height: math.unit(700, "feet")
  15511. },
  15512. {
  15513. name: "Megamacro",
  15514. height: math.unit(6000, "feet")
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6 + 7 / 12, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/blue-feyonics/front.svg",
  15527. extra: 1403 / 1306,
  15528. bottom: 0.047
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(6 + 7 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(1.8, "meters"),
  15545. weight: math.unit(60, "kg"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/maxwell/front.svg",
  15549. extra: 2060 / 1873
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Micro",
  15556. height: math.unit(1, "mm")
  15557. },
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(1.8, "meter"),
  15561. default: true
  15562. },
  15563. {
  15564. name: "Macro",
  15565. height: math.unit(30, "meters")
  15566. },
  15567. {
  15568. name: "Megamacro",
  15569. height: math.unit(10, "km")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/jack/front.svg",
  15582. extra: 1754 / 1640,
  15583. bottom: 0.01
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(80000, "feet"),
  15591. default: true
  15592. },
  15593. {
  15594. name: "Max size",
  15595. height: math.unit(10, "lightyears")
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15601. {
  15602. urban: {
  15603. height: math.unit(5, "feet"),
  15604. weight: math.unit(240, "lb"),
  15605. name: "Urban",
  15606. image: {
  15607. source: "./media/characters/cafat/urban.svg",
  15608. extra: 1223/1126,
  15609. bottom: 205/1428
  15610. }
  15611. },
  15612. summer: {
  15613. height: math.unit(5, "feet"),
  15614. weight: math.unit(240, "lb"),
  15615. name: "Summer",
  15616. image: {
  15617. source: "./media/characters/cafat/summer.svg",
  15618. extra: 1223/1126,
  15619. bottom: 205/1428
  15620. }
  15621. },
  15622. winter: {
  15623. height: math.unit(5, "feet"),
  15624. weight: math.unit(240, "lb"),
  15625. name: "Winter",
  15626. image: {
  15627. source: "./media/characters/cafat/winter.svg",
  15628. extra: 1223/1126,
  15629. bottom: 205/1428
  15630. }
  15631. },
  15632. lingerie: {
  15633. height: math.unit(5, "feet"),
  15634. weight: math.unit(240, "lb"),
  15635. name: "Lingerie",
  15636. image: {
  15637. source: "./media/characters/cafat/lingerie.svg",
  15638. extra: 1223/1126,
  15639. bottom: 205/1428
  15640. }
  15641. },
  15642. upright: {
  15643. height: math.unit(6.3, "feet"),
  15644. weight: math.unit(240, "lb"),
  15645. name: "Upright",
  15646. image: {
  15647. source: "./media/characters/cafat/upright.svg",
  15648. bottom: 0.01
  15649. }
  15650. },
  15651. uprightFull: {
  15652. height: math.unit(6.3, "feet"),
  15653. weight: math.unit(240, "lb"),
  15654. name: "Upright (Full)",
  15655. image: {
  15656. source: "./media/characters/cafat/upright-full.svg",
  15657. bottom: 0.01
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Small",
  15664. height: math.unit(5, "feet"),
  15665. default: true
  15666. },
  15667. {
  15668. name: "Large",
  15669. height: math.unit(13, "feet")
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(6, "feet"),
  15678. weight: math.unit(150, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/verin-raharra/front.svg",
  15682. extra: 5019 / 4835,
  15683. bottom: 0.023
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(7 + 5 / 12, "feet"),
  15691. default: true
  15692. },
  15693. {
  15694. name: "Upsized",
  15695. height: math.unit(20, "feet")
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(7, "feet"),
  15704. weight: math.unit(230, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/nakata/front.svg",
  15708. extra: 1.005,
  15709. bottom: 0.01
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Normal",
  15716. height: math.unit(7, "feet"),
  15717. default: true
  15718. },
  15719. {
  15720. name: "Big",
  15721. height: math.unit(14, "feet")
  15722. },
  15723. {
  15724. name: "Macro",
  15725. height: math.unit(400, "feet")
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15731. {
  15732. front: {
  15733. height: math.unit(4.91, "feet"),
  15734. weight: math.unit(100, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/lily/front.svg",
  15738. extra: 1585 / 1415,
  15739. bottom: 0.02
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(4.91, "feet"),
  15747. default: true
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15753. {
  15754. laying: {
  15755. height: math.unit(4 + 4 / 12, "feet"),
  15756. weight: math.unit(600, "lb"),
  15757. name: "Laying",
  15758. image: {
  15759. source: "./media/characters/sheila/laying.svg",
  15760. extra: 1333 / 1265,
  15761. bottom: 0.16
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(4 + 4 / 12, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6, "feet"),
  15778. weight: math.unit(190, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/sax/front.svg",
  15782. extra: 1187 / 973,
  15783. bottom: 0.042
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Micro",
  15790. height: math.unit(4, "inches"),
  15791. default: true
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(6, "feet"),
  15800. weight: math.unit(150, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/pandora/front.svg",
  15804. extra: 2720 / 2556,
  15805. bottom: 0.015
  15806. }
  15807. },
  15808. back: {
  15809. height: math.unit(6, "feet"),
  15810. weight: math.unit(150, "lb"),
  15811. name: "Back",
  15812. image: {
  15813. source: "./media/characters/pandora/back.svg",
  15814. extra: 2720 / 2556,
  15815. bottom: 0.01
  15816. }
  15817. },
  15818. beans: {
  15819. height: math.unit(6 / 8, "feet"),
  15820. name: "Beans",
  15821. image: {
  15822. source: "./media/characters/pandora/beans.svg"
  15823. }
  15824. },
  15825. collar: {
  15826. height: math.unit(0.31, "feet"),
  15827. name: "Collar",
  15828. image: {
  15829. source: "./media/characters/pandora/collar.svg"
  15830. }
  15831. },
  15832. skirt: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(150, "lb"),
  15835. name: "Skirt",
  15836. image: {
  15837. source: "./media/characters/pandora/skirt.svg",
  15838. extra: 1622 / 1525,
  15839. bottom: 0.015
  15840. }
  15841. },
  15842. hoodie: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Hoodie",
  15846. image: {
  15847. source: "./media/characters/pandora/hoodie.svg",
  15848. extra: 1622 / 1525,
  15849. bottom: 0.015
  15850. }
  15851. },
  15852. casual: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Casual",
  15856. image: {
  15857. source: "./media/characters/pandora/casual.svg",
  15858. extra: 1622 / 1525,
  15859. bottom: 0.015
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(6, "feet")
  15867. },
  15868. {
  15869. name: "Big Steppy",
  15870. height: math.unit(1, "km"),
  15871. default: true
  15872. },
  15873. {
  15874. name: "Galactic Steppy",
  15875. height: math.unit(2, "gigameters")
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15881. {
  15882. side: {
  15883. height: math.unit(10, "feet"),
  15884. weight: math.unit(800, "kg"),
  15885. name: "Side",
  15886. image: {
  15887. source: "./media/characters/venio-darcony/side.svg",
  15888. extra: 1373 / 1003,
  15889. bottom: 0.037
  15890. }
  15891. },
  15892. front: {
  15893. height: math.unit(19, "feet"),
  15894. weight: math.unit(800, "kg"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/venio-darcony/front.svg"
  15898. }
  15899. },
  15900. back: {
  15901. height: math.unit(19, "feet"),
  15902. weight: math.unit(800, "kg"),
  15903. name: "Back",
  15904. image: {
  15905. source: "./media/characters/venio-darcony/back.svg"
  15906. }
  15907. },
  15908. sideNsfw: {
  15909. height: math.unit(10, "feet"),
  15910. weight: math.unit(800, "kg"),
  15911. name: "Side (NSFW)",
  15912. image: {
  15913. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15914. extra: 1373 / 1003,
  15915. bottom: 0.037
  15916. }
  15917. },
  15918. frontNsfw: {
  15919. height: math.unit(19, "feet"),
  15920. weight: math.unit(800, "kg"),
  15921. name: "Front (NSFW)",
  15922. image: {
  15923. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15924. }
  15925. },
  15926. backNsfw: {
  15927. height: math.unit(19, "feet"),
  15928. weight: math.unit(800, "kg"),
  15929. name: "Back (NSFW)",
  15930. image: {
  15931. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15932. }
  15933. },
  15934. sideArmored: {
  15935. height: math.unit(10, "feet"),
  15936. weight: math.unit(800, "kg"),
  15937. name: "Side (Armored)",
  15938. image: {
  15939. source: "./media/characters/venio-darcony/side-armored.svg",
  15940. extra: 1373 / 1003,
  15941. bottom: 0.037
  15942. }
  15943. },
  15944. frontArmored: {
  15945. height: math.unit(19, "feet"),
  15946. weight: math.unit(900, "kg"),
  15947. name: "Front (Armored)",
  15948. image: {
  15949. source: "./media/characters/venio-darcony/front-armored.svg"
  15950. }
  15951. },
  15952. backArmored: {
  15953. height: math.unit(19, "feet"),
  15954. weight: math.unit(900, "kg"),
  15955. name: "Back (Armored)",
  15956. image: {
  15957. source: "./media/characters/venio-darcony/back-armored.svg"
  15958. }
  15959. },
  15960. sword: {
  15961. height: math.unit(10, "feet"),
  15962. weight: math.unit(50, "lb"),
  15963. name: "Sword",
  15964. image: {
  15965. source: "./media/characters/venio-darcony/sword.svg"
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(10, "feet")
  15973. },
  15974. {
  15975. name: "Macro",
  15976. height: math.unit(130, "feet"),
  15977. default: true
  15978. },
  15979. {
  15980. name: "Macro+",
  15981. height: math.unit(240, "feet")
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/veski/front.svg",
  15994. extra: 1299 / 1225,
  15995. bottom: 0.04
  15996. }
  15997. },
  15998. back: {
  15999. height: math.unit(6, "feet"),
  16000. weight: math.unit(150, "lb"),
  16001. name: "Back",
  16002. image: {
  16003. source: "./media/characters/veski/back.svg",
  16004. extra: 1299 / 1225,
  16005. bottom: 0.008
  16006. }
  16007. },
  16008. maw: {
  16009. height: math.unit(1.5 * 1.21, "feet"),
  16010. name: "Maw",
  16011. image: {
  16012. source: "./media/characters/veski/maw.svg"
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Macro",
  16019. height: math.unit(2, "km"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(5 + 7 / 12, "feet"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/isabelle/front.svg",
  16032. extra: 2130 / 1976,
  16033. bottom: 0.05
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Supermicro",
  16040. height: math.unit(10, "micrometers")
  16041. },
  16042. {
  16043. name: "Micro",
  16044. height: math.unit(1, "inch")
  16045. },
  16046. {
  16047. name: "Tiny",
  16048. height: math.unit(5, "inches")
  16049. },
  16050. {
  16051. name: "Standard",
  16052. height: math.unit(5 + 7 / 12, "inches")
  16053. },
  16054. {
  16055. name: "Macro",
  16056. height: math.unit(80, "meters"),
  16057. default: true
  16058. },
  16059. {
  16060. name: "Megamacro",
  16061. height: math.unit(250, "meters")
  16062. },
  16063. {
  16064. name: "Gigamacro",
  16065. height: math.unit(5, "km")
  16066. },
  16067. {
  16068. name: "Cosmic",
  16069. height: math.unit(2.5e6, "miles")
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/hanzo/front.svg",
  16082. extra: 374 / 344,
  16083. bottom: 0.02
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(8, "feet"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16097. {
  16098. front: {
  16099. height: math.unit(7, "feet"),
  16100. weight: math.unit(130, "lb"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/anna/front.svg",
  16104. extra: 169 / 145,
  16105. bottom: 0.06
  16106. }
  16107. },
  16108. full: {
  16109. height: math.unit(4.96, "feet"),
  16110. weight: math.unit(220, "lb"),
  16111. name: "Full",
  16112. image: {
  16113. source: "./media/characters/anna/full.svg",
  16114. extra: 138 / 114,
  16115. bottom: 0.15
  16116. }
  16117. },
  16118. tongue: {
  16119. height: math.unit(2.53, "feet"),
  16120. name: "Tongue",
  16121. image: {
  16122. source: "./media/characters/anna/tongue.svg"
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(7, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(7, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/ian-corvid/front.svg",
  16143. extra: 150 / 142,
  16144. bottom: 0.02
  16145. }
  16146. },
  16147. back: {
  16148. height: math.unit(7, "feet"),
  16149. weight: math.unit(150, "lb"),
  16150. name: "Back",
  16151. image: {
  16152. source: "./media/characters/ian-corvid/back.svg",
  16153. extra: 150 / 143,
  16154. bottom: 0.01
  16155. }
  16156. },
  16157. stomping: {
  16158. height: math.unit(7, "feet"),
  16159. weight: math.unit(150, "lb"),
  16160. name: "Stomping",
  16161. image: {
  16162. source: "./media/characters/ian-corvid/stomping.svg",
  16163. extra: 76 / 72
  16164. }
  16165. },
  16166. sitting: {
  16167. height: math.unit(7 / 1.8, "feet"),
  16168. weight: math.unit(150, "lb"),
  16169. name: "Sitting",
  16170. image: {
  16171. source: "./media/characters/ian-corvid/sitting.svg",
  16172. extra: 1400 / 1269,
  16173. bottom: 0.15
  16174. }
  16175. },
  16176. },
  16177. [
  16178. {
  16179. name: "Tiny Microw",
  16180. height: math.unit(1, "inch")
  16181. },
  16182. {
  16183. name: "Microw",
  16184. height: math.unit(6, "inches")
  16185. },
  16186. {
  16187. name: "Crow",
  16188. height: math.unit(7 + 1 / 12, "feet"),
  16189. default: true
  16190. },
  16191. {
  16192. name: "Macrow",
  16193. height: math.unit(176, "feet")
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(5 + 7 / 12, "feet"),
  16202. weight: math.unit(147, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/natalie-kellon/front.svg",
  16206. extra: 1214 / 1141,
  16207. bottom: 0.02
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(1 / 16, "inch")
  16215. },
  16216. {
  16217. name: "Tiny",
  16218. height: math.unit(4, "inches")
  16219. },
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(5 + 7 / 12, "feet"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Amazon",
  16227. height: math.unit(12, "feet")
  16228. },
  16229. {
  16230. name: "Giantess",
  16231. height: math.unit(160, "meters")
  16232. },
  16233. {
  16234. name: "Titaness",
  16235. height: math.unit(800, "meters")
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(6, "feet"),
  16244. weight: math.unit(150, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/alluria/front.svg",
  16248. extra: 806 / 738,
  16249. bottom: 0.01
  16250. }
  16251. },
  16252. side: {
  16253. height: math.unit(6, "feet"),
  16254. weight: math.unit(150, "lb"),
  16255. name: "Side",
  16256. image: {
  16257. source: "./media/characters/alluria/side.svg",
  16258. extra: 800 / 750,
  16259. }
  16260. },
  16261. back: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(150, "lb"),
  16264. name: "Back",
  16265. image: {
  16266. source: "./media/characters/alluria/back.svg",
  16267. extra: 806 / 738,
  16268. }
  16269. },
  16270. frontMaid: {
  16271. height: math.unit(6, "feet"),
  16272. weight: math.unit(150, "lb"),
  16273. name: "Front (Maid)",
  16274. image: {
  16275. source: "./media/characters/alluria/front-maid.svg",
  16276. extra: 806 / 738,
  16277. bottom: 0.01
  16278. }
  16279. },
  16280. sideMaid: {
  16281. height: math.unit(6, "feet"),
  16282. weight: math.unit(150, "lb"),
  16283. name: "Side (Maid)",
  16284. image: {
  16285. source: "./media/characters/alluria/side-maid.svg",
  16286. extra: 800 / 750,
  16287. bottom: 0.005
  16288. }
  16289. },
  16290. backMaid: {
  16291. height: math.unit(6, "feet"),
  16292. weight: math.unit(150, "lb"),
  16293. name: "Back (Maid)",
  16294. image: {
  16295. source: "./media/characters/alluria/back-maid.svg",
  16296. extra: 806 / 738,
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Micro",
  16303. height: math.unit(6, "inches"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(6, "feet"),
  16313. weight: math.unit(150, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/kyle/front.svg",
  16317. extra: 1069 / 962,
  16318. bottom: 77.228 / 1727.45
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Macro",
  16325. height: math.unit(150, "feet"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(300, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/duncan/front.svg",
  16339. extra: 1650 / 1482,
  16340. bottom: 0.05
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Macro",
  16347. height: math.unit(100, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(5 + 4 / 12, "feet"),
  16357. weight: math.unit(220, "lb"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/memory/front.svg",
  16361. extra: 3641 / 3545,
  16362. bottom: 0.03
  16363. }
  16364. },
  16365. back: {
  16366. height: math.unit(5 + 4 / 12, "feet"),
  16367. weight: math.unit(220, "lb"),
  16368. name: "Back",
  16369. image: {
  16370. source: "./media/characters/memory/back.svg",
  16371. extra: 3641 / 3545,
  16372. bottom: 0.025
  16373. }
  16374. },
  16375. frontSkirt: {
  16376. height: math.unit(5 + 4 / 12, "feet"),
  16377. weight: math.unit(220, "lb"),
  16378. name: "Front (Skirt)",
  16379. image: {
  16380. source: "./media/characters/memory/front-skirt.svg",
  16381. extra: 3641 / 3545,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. frontDress: {
  16386. height: math.unit(5 + 4 / 12, "feet"),
  16387. weight: math.unit(220, "lb"),
  16388. name: "Front (Dress)",
  16389. image: {
  16390. source: "./media/characters/memory/front-dress.svg",
  16391. extra: 3641 / 3545,
  16392. bottom: 0.03
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Micro",
  16399. height: math.unit(6, "inches"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 4 / 12, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(4 + 11 / 12, "feet"),
  16413. weight: math.unit(100, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/luno/front.svg",
  16417. extra: 1535 / 1487,
  16418. bottom: 0.03
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Micro",
  16425. height: math.unit(3, "inches")
  16426. },
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(4 + 11 / 12, "feet"),
  16430. default: true
  16431. },
  16432. {
  16433. name: "Macro",
  16434. height: math.unit(300, "feet")
  16435. },
  16436. {
  16437. name: "Megamacro",
  16438. height: math.unit(700, "miles")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(6 + 2 / 12, "feet"),
  16447. weight: math.unit(170, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/jamesy/front.svg",
  16451. extra: 440 / 382,
  16452. bottom: 0.005
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Micro",
  16459. height: math.unit(3, "inches")
  16460. },
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(6 + 2 / 12, "feet"),
  16464. default: true
  16465. },
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(300, "feet")
  16469. },
  16470. {
  16471. name: "Megamacro",
  16472. height: math.unit(700, "miles")
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(6, "feet"),
  16481. weight: math.unit(160, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/mark/front.svg",
  16485. extra: 3300 / 3100,
  16486. bottom: 136.42 / 3440.47
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Macro",
  16493. height: math.unit(120, "meters")
  16494. },
  16495. {
  16496. name: "Bigger Macro",
  16497. height: math.unit(350, "meters")
  16498. },
  16499. {
  16500. name: "Megamacro",
  16501. height: math.unit(8, "km"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "Continental",
  16506. height: math.unit(4550, "km")
  16507. },
  16508. {
  16509. name: "Planetary",
  16510. height: math.unit(65000, "km")
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(400, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/mac/front.svg",
  16523. extra: 1048 / 987.7,
  16524. bottom: 60 / 1107.6,
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Macro",
  16531. height: math.unit(500, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(5 + 2 / 12, "feet"),
  16541. weight: math.unit(190, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/bari/front.svg",
  16545. extra: 3156 / 2880,
  16546. bottom: 0.03
  16547. }
  16548. },
  16549. back: {
  16550. height: math.unit(5 + 2 / 12, "feet"),
  16551. weight: math.unit(190, "lb"),
  16552. name: "Back",
  16553. image: {
  16554. source: "./media/characters/bari/back.svg",
  16555. extra: 3260 / 2834,
  16556. bottom: 0.025
  16557. }
  16558. },
  16559. frontPlush: {
  16560. height: math.unit(5 + 2 / 12, "feet"),
  16561. weight: math.unit(190, "lb"),
  16562. name: "Front (Plush)",
  16563. image: {
  16564. source: "./media/characters/bari/front-plush.svg",
  16565. extra: 1112 / 1061,
  16566. bottom: 0.002
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Micro",
  16573. height: math.unit(3, "inches")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 2 / 12, "feet"),
  16578. default: true
  16579. },
  16580. {
  16581. name: "Macro",
  16582. height: math.unit(20, "feet")
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(6 + 1 / 12, "feet"),
  16591. weight: math.unit(275, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/hunter-misha-raven/front.svg"
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Mortal",
  16601. height: math.unit(6 + 1 / 12, "feet")
  16602. },
  16603. {
  16604. name: "Divine",
  16605. height: math.unit(1.12134e34, "parsecs"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6 + 3 / 12, "feet"),
  16615. weight: math.unit(220, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/max-calore/front.svg",
  16619. extra: 1700 / 1648,
  16620. bottom: 0.01
  16621. }
  16622. },
  16623. back: {
  16624. height: math.unit(6 + 3 / 12, "feet"),
  16625. weight: math.unit(220, "lb"),
  16626. name: "Back",
  16627. image: {
  16628. source: "./media/characters/max-calore/back.svg",
  16629. extra: 1700 / 1648,
  16630. bottom: 0.01
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(6 + 3 / 12, "feet"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16644. {
  16645. side: {
  16646. height: math.unit(2 + 8 / 12, "feet"),
  16647. weight: math.unit(99, "lb"),
  16648. name: "Side",
  16649. image: {
  16650. source: "./media/characters/aspen/side.svg",
  16651. extra: 152 / 138,
  16652. bottom: 0.032
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(2 + 8 / 12, "feet"),
  16660. default: true
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16666. {
  16667. side: {
  16668. height: math.unit(3 + 2 / 12, "feet"),
  16669. weight: math.unit(224, "lb"),
  16670. name: "Side",
  16671. image: {
  16672. source: "./media/characters/sheila-feral-wolf/side.svg",
  16673. extra: 179 / 166,
  16674. bottom: 0.03
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(3 + 2 / 12, "feet"),
  16682. default: true
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16688. {
  16689. side: {
  16690. height: math.unit(1 + 9 / 12, "feet"),
  16691. weight: math.unit(38, "lb"),
  16692. name: "Side",
  16693. image: {
  16694. source: "./media/characters/michelle/side.svg",
  16695. extra: 147 / 136.7,
  16696. bottom: 0.03
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(1 + 9 / 12, "feet"),
  16704. default: true
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(1 + 1 / 12, "feet"),
  16713. weight: math.unit(18, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/nino/front.svg"
  16717. }
  16718. },
  16719. },
  16720. [
  16721. {
  16722. name: "Normal",
  16723. height: math.unit(1 + 1 / 12, "feet"),
  16724. default: true
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16730. {
  16731. front: {
  16732. height: math.unit(1, "feet"),
  16733. weight: math.unit(16, "lb"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/viola/front.svg"
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(1, "feet"),
  16744. default: true
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(6 + 5 / 12, "feet"),
  16753. weight: math.unit(580, "lb"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/atlas/front.svg",
  16757. extra: 298.5 / 290,
  16758. bottom: 0.015
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(6 + 5 / 12, "feet"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16772. {
  16773. side: {
  16774. height: math.unit(1 + 10 / 12, "feet"),
  16775. weight: math.unit(25, "lb"),
  16776. name: "Side",
  16777. image: {
  16778. source: "./media/characters/davy/side.svg",
  16779. extra: 200 / 170,
  16780. bottom: 0.01
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(1 + 10 / 12, "feet"),
  16788. default: true
  16789. },
  16790. ]
  16791. ))
  16792. characterMakers.push(() => makeCharacter(
  16793. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16794. {
  16795. side: {
  16796. height: math.unit(4 + 8 / 12, "feet"),
  16797. weight: math.unit(166, "lb"),
  16798. name: "Side",
  16799. image: {
  16800. source: "./media/characters/fiona/side.svg",
  16801. extra: 232 / 220,
  16802. bottom: 0.03
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(4 + 8 / 12, "feet"),
  16810. default: true
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16816. {
  16817. front: {
  16818. height: math.unit(2, "feet"),
  16819. weight: math.unit(62, "lb"),
  16820. name: "Front",
  16821. image: {
  16822. source: "./media/characters/lyla/front.svg",
  16823. bottom: 0.1
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(2, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16837. {
  16838. side: {
  16839. height: math.unit(1.8, "feet"),
  16840. weight: math.unit(44, "lb"),
  16841. name: "Side",
  16842. image: {
  16843. source: "./media/characters/perseus/side.svg",
  16844. bottom: 0.21
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(1.8, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16858. {
  16859. side: {
  16860. height: math.unit(4 + 2 / 12, "feet"),
  16861. weight: math.unit(20, "lb"),
  16862. name: "Side",
  16863. image: {
  16864. source: "./media/characters/remus/side.svg"
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(4 + 2 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(4 + 11 / 12, "feet"),
  16881. weight: math.unit(114, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/raf/front.svg",
  16885. bottom: 20.5 / 1863
  16886. }
  16887. },
  16888. side: {
  16889. height: math.unit(4 + 11 / 12, "feet"),
  16890. weight: math.unit(114, "lb"),
  16891. name: "Side",
  16892. image: {
  16893. source: "./media/characters/raf/side.svg",
  16894. bottom: 22 / 1822
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Micro",
  16901. height: math.unit(2, "inches")
  16902. },
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(4 + 11 / 12, "feet"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Macro",
  16910. height: math.unit(70, "feet")
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(1.5, "meters"),
  16919. weight: math.unit(68, "kg"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/liam-einarr/front.svg",
  16923. extra: 2822 / 2666
  16924. }
  16925. },
  16926. back: {
  16927. height: math.unit(1.5, "meters"),
  16928. weight: math.unit(68, "kg"),
  16929. name: "Back",
  16930. image: {
  16931. source: "./media/characters/liam-einarr/back.svg",
  16932. extra: 2822 / 2666,
  16933. bottom: 0.015
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(1.5, "meters"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(150, "meters")
  16946. },
  16947. {
  16948. name: "Megamacro",
  16949. height: math.unit(35, "km")
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(6, "feet"),
  16958. weight: math.unit(75, "kg"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/linda/front.svg",
  16962. extra: 930 / 874,
  16963. bottom: 0.004
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(6, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(6 + 8 / 12, "feet"),
  16980. weight: math.unit(220, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/caylex/front.svg",
  16984. extra: 821 / 772,
  16985. bottom: 0.07
  16986. }
  16987. },
  16988. back: {
  16989. height: math.unit(6 + 8 / 12, "feet"),
  16990. weight: math.unit(220, "lb"),
  16991. name: "Back",
  16992. image: {
  16993. source: "./media/characters/caylex/back.svg",
  16994. extra: 821 / 772,
  16995. bottom: 0.022
  16996. }
  16997. },
  16998. hand: {
  16999. height: math.unit(1.25, "feet"),
  17000. name: "Hand",
  17001. image: {
  17002. source: "./media/characters/caylex/hand.svg"
  17003. }
  17004. },
  17005. foot: {
  17006. height: math.unit(1.6, "feet"),
  17007. name: "Foot",
  17008. image: {
  17009. source: "./media/characters/caylex/foot.svg"
  17010. }
  17011. },
  17012. armored: {
  17013. height: math.unit(6 + 8 / 12, "feet"),
  17014. weight: math.unit(250, "lb"),
  17015. name: "Armored",
  17016. image: {
  17017. source: "./media/characters/caylex/armored.svg",
  17018. extra: 1420 / 1310,
  17019. bottom: 0.045
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(6 + 8 / 12, "feet"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Normal+",
  17031. height: math.unit(12, "feet")
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(7 + 6 / 12, "feet"),
  17040. weight: math.unit(288, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/alana/front.svg",
  17044. extra: 679 / 653,
  17045. bottom: 22.5 / 701
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(7 + 6 / 12, "feet")
  17053. },
  17054. {
  17055. name: "Large",
  17056. height: math.unit(50, "feet")
  17057. },
  17058. {
  17059. name: "Macro",
  17060. height: math.unit(100, "feet"),
  17061. default: true
  17062. },
  17063. {
  17064. name: "Macro+",
  17065. height: math.unit(200, "feet")
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(6 + 1 / 12, "feet"),
  17074. weight: math.unit(210, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/hasani/front.svg",
  17078. extra: 244 / 232,
  17079. bottom: 0.01
  17080. }
  17081. },
  17082. back: {
  17083. height: math.unit(6 + 1 / 12, "feet"),
  17084. weight: math.unit(210, "lb"),
  17085. name: "Back",
  17086. image: {
  17087. source: "./media/characters/hasani/back.svg",
  17088. extra: 244 / 232,
  17089. bottom: 0.01
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(6 + 1 / 12, "feet")
  17097. },
  17098. {
  17099. name: "Macro",
  17100. height: math.unit(175, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(1.82, "meters"),
  17110. weight: math.unit(140, "lb"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/nita/front.svg",
  17114. extra: 2473 / 2363,
  17115. bottom: 0.01
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(1.82, "m")
  17123. },
  17124. {
  17125. name: "Macro",
  17126. height: math.unit(300, "m")
  17127. },
  17128. {
  17129. name: "Mistake Canon",
  17130. height: math.unit(0.5, "miles"),
  17131. default: true
  17132. },
  17133. {
  17134. name: "Big Mistake",
  17135. height: math.unit(13, "miles")
  17136. },
  17137. {
  17138. name: "Playing God",
  17139. height: math.unit(2450, "miles")
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(4, "feet"),
  17148. weight: math.unit(120, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/shiriko/front.svg",
  17152. extra: 195 / 188
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(4, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(6, "feet"),
  17169. name: "front",
  17170. image: {
  17171. source: "./media/characters/deja/front.svg",
  17172. extra: 926 / 840,
  17173. bottom: 0.07
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Planck Length",
  17180. height: math.unit(1.6e-35, "meters")
  17181. },
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(30.48, "meters"),
  17185. default: true
  17186. },
  17187. {
  17188. name: "Universal",
  17189. height: math.unit(8.8e26, "meters")
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17195. {
  17196. side: {
  17197. height: math.unit(8, "feet"),
  17198. weight: math.unit(6300, "lb"),
  17199. name: "Side",
  17200. image: {
  17201. source: "./media/characters/anima/side.svg",
  17202. bottom: 0.035
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(8, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(8, "feet"),
  17219. weight: math.unit(350, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/bianca/front.svg",
  17223. extra: 234 / 225,
  17224. bottom: 0.03
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(8, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(6, "feet"),
  17241. weight: math.unit(150, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/adinia/front.svg",
  17245. extra: 1845 / 1672,
  17246. bottom: 0.02
  17247. }
  17248. },
  17249. back: {
  17250. height: math.unit(6, "feet"),
  17251. weight: math.unit(150, "lb"),
  17252. name: "Back",
  17253. image: {
  17254. source: "./media/characters/adinia/back.svg",
  17255. extra: 1845 / 1672,
  17256. bottom: 0.002
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(11 + 5 / 12, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(3, "meters"),
  17273. weight: math.unit(200, "kg"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/lykasa/front.svg",
  17277. extra: 1076 / 976,
  17278. bottom: 0.06
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(3, "meters")
  17286. },
  17287. {
  17288. name: "Kaiju",
  17289. height: math.unit(120, "meters"),
  17290. default: true
  17291. },
  17292. {
  17293. name: "Mega Kaiju",
  17294. height: math.unit(240, "km")
  17295. },
  17296. {
  17297. name: "Giga Kaiju",
  17298. height: math.unit(400, "megameters")
  17299. },
  17300. {
  17301. name: "Tera Kaiju",
  17302. height: math.unit(800, "gigameters")
  17303. },
  17304. {
  17305. name: "Kaiju Dragon Goddess",
  17306. height: math.unit(26, "zettaparsecs")
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17312. {
  17313. side: {
  17314. height: math.unit(283 / 124 * 6, "feet"),
  17315. weight: math.unit(35000, "lb"),
  17316. name: "Side",
  17317. image: {
  17318. source: "./media/characters/malfaren/side.svg",
  17319. extra: 2500 / 1010,
  17320. bottom: 0.01
  17321. }
  17322. },
  17323. front: {
  17324. height: math.unit(22.36, "feet"),
  17325. weight: math.unit(35000, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/malfaren/front.svg",
  17329. extra: 1631 / 1476,
  17330. bottom: 0.01
  17331. }
  17332. },
  17333. maw: {
  17334. height: math.unit(6.9, "feet"),
  17335. name: "Maw",
  17336. image: {
  17337. source: "./media/characters/malfaren/maw.svg"
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Big",
  17344. height: math.unit(283 / 162 * 6, "feet"),
  17345. },
  17346. {
  17347. name: "Bigger",
  17348. height: math.unit(283 / 124 * 6, "feet")
  17349. },
  17350. {
  17351. name: "Massive",
  17352. height: math.unit(283 / 92 * 6, "feet"),
  17353. default: true
  17354. },
  17355. {
  17356. name: "👀💦",
  17357. height: math.unit(283 / 73 * 6, "feet"),
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(1.7, "m"),
  17366. weight: math.unit(70, "kg"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/kernel/front.svg",
  17370. extra: 222 / 210,
  17371. bottom: 0.007
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Nano",
  17378. height: math.unit(17, "micrometers")
  17379. },
  17380. {
  17381. name: "Micro",
  17382. height: math.unit(1.7, "mm")
  17383. },
  17384. {
  17385. name: "Small",
  17386. height: math.unit(1.7, "cm")
  17387. },
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(1.7, "m"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(1.75, "meters"),
  17400. weight: math.unit(65, "kg"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/jayne-folest/front.svg",
  17404. extra: 2115 / 2007,
  17405. bottom: 0.02
  17406. }
  17407. },
  17408. back: {
  17409. height: math.unit(1.75, "meters"),
  17410. weight: math.unit(65, "kg"),
  17411. name: "Back",
  17412. image: {
  17413. source: "./media/characters/jayne-folest/back.svg",
  17414. extra: 2115 / 2007,
  17415. bottom: 0.005
  17416. }
  17417. },
  17418. frontClothed: {
  17419. height: math.unit(1.75, "meters"),
  17420. weight: math.unit(65, "kg"),
  17421. name: "Front (Clothed)",
  17422. image: {
  17423. source: "./media/characters/jayne-folest/front-clothed.svg",
  17424. extra: 2115 / 2007,
  17425. bottom: 0.035
  17426. }
  17427. },
  17428. hand: {
  17429. height: math.unit(1 / 1.260, "feet"),
  17430. name: "Hand",
  17431. image: {
  17432. source: "./media/characters/jayne-folest/hand.svg"
  17433. }
  17434. },
  17435. foot: {
  17436. height: math.unit(1 / 0.918, "feet"),
  17437. name: "Foot",
  17438. image: {
  17439. source: "./media/characters/jayne-folest/foot.svg"
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Micro",
  17446. height: math.unit(4, "cm")
  17447. },
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(1.75, "meters")
  17451. },
  17452. {
  17453. name: "Macro",
  17454. height: math.unit(47.5, "meters"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(180, "cm"),
  17464. weight: math.unit(70, "kg"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/algier/front.svg",
  17468. extra: 596 / 572,
  17469. bottom: 0.04
  17470. }
  17471. },
  17472. back: {
  17473. height: math.unit(180, "cm"),
  17474. weight: math.unit(70, "kg"),
  17475. name: "Back",
  17476. image: {
  17477. source: "./media/characters/algier/back.svg",
  17478. extra: 596 / 572,
  17479. bottom: 0.025
  17480. }
  17481. },
  17482. frontdressed: {
  17483. height: math.unit(180, "cm"),
  17484. weight: math.unit(150, "kg"),
  17485. name: "Front-dressed",
  17486. image: {
  17487. source: "./media/characters/algier/front-dressed.svg",
  17488. extra: 596 / 572,
  17489. bottom: 0.038
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Micro",
  17496. height: math.unit(5, "cm")
  17497. },
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(180, "cm"),
  17501. default: true
  17502. },
  17503. {
  17504. name: "Macro",
  17505. height: math.unit(64, "m")
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17511. {
  17512. upright: {
  17513. height: math.unit(7, "feet"),
  17514. weight: math.unit(300, "lb"),
  17515. name: "Upright",
  17516. image: {
  17517. source: "./media/characters/pretzel/upright.svg",
  17518. extra: 534 / 522,
  17519. bottom: 0.065
  17520. }
  17521. },
  17522. sprawling: {
  17523. height: math.unit(3.75, "feet"),
  17524. weight: math.unit(300, "lb"),
  17525. name: "Sprawling",
  17526. image: {
  17527. source: "./media/characters/pretzel/sprawling.svg",
  17528. extra: 314 / 281,
  17529. bottom: 0.1
  17530. }
  17531. },
  17532. tongue: {
  17533. height: math.unit(2, "feet"),
  17534. name: "Tongue",
  17535. image: {
  17536. source: "./media/characters/pretzel/tongue.svg"
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(7, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "Oversized",
  17548. height: math.unit(15, "feet")
  17549. },
  17550. {
  17551. name: "Huge",
  17552. height: math.unit(30, "feet")
  17553. },
  17554. {
  17555. name: "Macro",
  17556. height: math.unit(250, "feet")
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17562. {
  17563. sideFront: {
  17564. height: math.unit(5 + 2 / 12, "feet"),
  17565. weight: math.unit(120, "lb"),
  17566. name: "Front Side",
  17567. image: {
  17568. source: "./media/characters/roxi/side-front.svg",
  17569. extra: 2924 / 2717,
  17570. bottom: 0.08
  17571. }
  17572. },
  17573. sideBack: {
  17574. height: math.unit(5 + 2 / 12, "feet"),
  17575. weight: math.unit(120, "lb"),
  17576. name: "Back Side",
  17577. image: {
  17578. source: "./media/characters/roxi/side-back.svg",
  17579. extra: 2904 / 2693,
  17580. bottom: 0.06
  17581. }
  17582. },
  17583. front: {
  17584. height: math.unit(5 + 2 / 12, "feet"),
  17585. weight: math.unit(120, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/roxi/front.svg",
  17589. extra: 2028 / 1907,
  17590. bottom: 0.01
  17591. }
  17592. },
  17593. frontAlt: {
  17594. height: math.unit(5 + 2 / 12, "feet"),
  17595. weight: math.unit(120, "lb"),
  17596. name: "Front (Alt)",
  17597. image: {
  17598. source: "./media/characters/roxi/front-alt.svg",
  17599. extra: 1828 / 1798,
  17600. bottom: 0.01
  17601. }
  17602. },
  17603. sitting: {
  17604. height: math.unit(2.8, "feet"),
  17605. weight: math.unit(120, "lb"),
  17606. name: "Sitting",
  17607. image: {
  17608. source: "./media/characters/roxi/sitting.svg",
  17609. extra: 2660 / 2462,
  17610. bottom: 0.1
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(5 + 2 / 12, "feet"),
  17618. default: true
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17624. {
  17625. side: {
  17626. height: math.unit(55, "feet"),
  17627. weight: math.unit(153, "tons"),
  17628. name: "Side",
  17629. image: {
  17630. source: "./media/characters/shadow/side.svg",
  17631. extra: 701 / 628,
  17632. bottom: 0.02
  17633. }
  17634. },
  17635. flying: {
  17636. height: math.unit(145, "feet"),
  17637. weight: math.unit(153, "tons"),
  17638. name: "Flying",
  17639. image: {
  17640. source: "./media/characters/shadow/flying.svg"
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(55, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(6, "feet"),
  17657. weight: math.unit(200, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/marcie/front.svg",
  17661. extra: 960 / 876,
  17662. bottom: 58 / 1017.87
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Macro",
  17669. height: math.unit(1, "mile"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(7, "feet"),
  17679. weight: math.unit(200, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/kachina/front.svg",
  17683. extra: 1290.68 / 1119,
  17684. bottom: 36.5 / 1327.18
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(7, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17698. {
  17699. looking: {
  17700. height: math.unit(2, "meters"),
  17701. weight: math.unit(300, "kg"),
  17702. name: "Looking",
  17703. image: {
  17704. source: "./media/characters/kash/looking.svg",
  17705. extra: 474 / 344,
  17706. bottom: 0.03
  17707. }
  17708. },
  17709. side: {
  17710. height: math.unit(2, "meters"),
  17711. weight: math.unit(300, "kg"),
  17712. name: "Side",
  17713. image: {
  17714. source: "./media/characters/kash/side.svg",
  17715. extra: 302 / 251,
  17716. bottom: 0.03
  17717. }
  17718. },
  17719. front: {
  17720. height: math.unit(2, "meters"),
  17721. weight: math.unit(300, "kg"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/kash/front.svg",
  17725. extra: 495 / 360,
  17726. bottom: 0.015
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(2, "meters"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Big",
  17738. height: math.unit(3, "meters")
  17739. },
  17740. {
  17741. name: "Large",
  17742. height: math.unit(5, "meters")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17748. {
  17749. feeding: {
  17750. height: math.unit(6.7, "feet"),
  17751. weight: math.unit(350, "lb"),
  17752. name: "Feeding",
  17753. image: {
  17754. source: "./media/characters/lalim/feeding.svg",
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(6.7, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17768. {
  17769. front: {
  17770. height: math.unit(9.5, "feet"),
  17771. weight: math.unit(600, "lb"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/de'vout/front.svg",
  17775. extra: 1443 / 1328,
  17776. bottom: 0.025
  17777. }
  17778. },
  17779. back: {
  17780. height: math.unit(9.5, "feet"),
  17781. weight: math.unit(600, "lb"),
  17782. name: "Back",
  17783. image: {
  17784. source: "./media/characters/de'vout/back.svg",
  17785. extra: 1443 / 1328
  17786. }
  17787. },
  17788. frontDressed: {
  17789. height: math.unit(9.5, "feet"),
  17790. weight: math.unit(600, "lb"),
  17791. name: "Front (Dressed",
  17792. image: {
  17793. source: "./media/characters/de'vout/front-dressed.svg",
  17794. extra: 1443 / 1328,
  17795. bottom: 0.025
  17796. }
  17797. },
  17798. backDressed: {
  17799. height: math.unit(9.5, "feet"),
  17800. weight: math.unit(600, "lb"),
  17801. name: "Back (Dressed",
  17802. image: {
  17803. source: "./media/characters/de'vout/back-dressed.svg",
  17804. extra: 1443 / 1328
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(9.5, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(8, "feet"),
  17821. weight: math.unit(225, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/talana/front.svg",
  17825. extra: 1410 / 1300,
  17826. bottom: 0.015
  17827. }
  17828. },
  17829. frontDressed: {
  17830. height: math.unit(8, "feet"),
  17831. weight: math.unit(225, "lb"),
  17832. name: "Front (Dressed",
  17833. image: {
  17834. source: "./media/characters/talana/front-dressed.svg",
  17835. extra: 1410 / 1300,
  17836. bottom: 0.015
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(8, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17850. {
  17851. side: {
  17852. height: math.unit(7.2, "feet"),
  17853. weight: math.unit(150, "lb"),
  17854. name: "Side",
  17855. image: {
  17856. source: "./media/characters/xeauvok/side.svg",
  17857. extra: 1975 / 1523,
  17858. bottom: 0.07
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Normal",
  17865. height: math.unit(7.2, "feet"),
  17866. default: true
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17872. {
  17873. side: {
  17874. height: math.unit(10, "feet"),
  17875. weight: math.unit(900, "kg"),
  17876. name: "Side",
  17877. image: {
  17878. source: "./media/characters/zara/side.svg",
  17879. extra: 504 / 498
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(10, "feet"),
  17887. default: true
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17893. {
  17894. side: {
  17895. height: math.unit(6, "feet"),
  17896. weight: math.unit(150, "lb"),
  17897. name: "Side",
  17898. image: {
  17899. source: "./media/characters/richard-dragon/side.svg",
  17900. extra: 845 / 340,
  17901. bottom: 0.017
  17902. }
  17903. },
  17904. maw: {
  17905. height: math.unit(2.97, "feet"),
  17906. name: "Maw",
  17907. image: {
  17908. source: "./media/characters/richard-dragon/maw.svg"
  17909. }
  17910. },
  17911. },
  17912. [
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(4, "feet"),
  17920. weight: math.unit(100, "lb"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/richard-smeargle/front.svg",
  17924. extra: 2952 / 2820,
  17925. bottom: 0.028
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(4, "feet"),
  17933. default: true
  17934. },
  17935. {
  17936. name: "Dynamax",
  17937. height: math.unit(20, "meters")
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17943. {
  17944. front: {
  17945. height: math.unit(6, "feet"),
  17946. weight: math.unit(110, "lb"),
  17947. name: "Front",
  17948. image: {
  17949. source: "./media/characters/klay/front.svg",
  17950. extra: 962 / 883,
  17951. bottom: 0.04
  17952. }
  17953. },
  17954. back: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(110, "lb"),
  17957. name: "Back",
  17958. image: {
  17959. source: "./media/characters/klay/back.svg",
  17960. extra: 962 / 883
  17961. }
  17962. },
  17963. beans: {
  17964. height: math.unit(1.15, "feet"),
  17965. name: "Beans",
  17966. image: {
  17967. source: "./media/characters/klay/beans.svg"
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Micro",
  17974. height: math.unit(6, "inches")
  17975. },
  17976. {
  17977. name: "Mini",
  17978. height: math.unit(3, "feet")
  17979. },
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(6, "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Big",
  17987. height: math.unit(25, "feet")
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(100, "feet")
  17992. },
  17993. {
  17994. name: "Megamacro",
  17995. height: math.unit(400, "feet")
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(6, "feet"),
  18004. weight: math.unit(160, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/marcus/front.svg",
  18008. extra: 734 / 676,
  18009. bottom: 0.03
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Little",
  18016. height: math.unit(6, "feet")
  18017. },
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(110, "feet"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Macro",
  18025. height: math.unit(250, "feet")
  18026. },
  18027. {
  18028. name: "Megamacro",
  18029. height: math.unit(1000, "feet")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(7, "feet"),
  18038. weight: math.unit(275, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/claude-delroute/front.svg",
  18042. extra: 230 / 214,
  18043. bottom: 0.007
  18044. }
  18045. },
  18046. side: {
  18047. height: math.unit(7, "feet"),
  18048. weight: math.unit(275, "lb"),
  18049. name: "Side",
  18050. image: {
  18051. source: "./media/characters/claude-delroute/side.svg",
  18052. extra: 222 / 214,
  18053. bottom: 0.01
  18054. }
  18055. },
  18056. back: {
  18057. height: math.unit(7, "feet"),
  18058. weight: math.unit(275, "lb"),
  18059. name: "Back",
  18060. image: {
  18061. source: "./media/characters/claude-delroute/back.svg",
  18062. extra: 230 / 214,
  18063. bottom: 0.015
  18064. }
  18065. },
  18066. maw: {
  18067. height: math.unit(0.6407, "meters"),
  18068. name: "Maw",
  18069. image: {
  18070. source: "./media/characters/claude-delroute/maw.svg"
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(7, "feet"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Lorge",
  18082. height: math.unit(20, "feet")
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(8 + 4 / 12, "feet"),
  18091. weight: math.unit(600, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/dragonien/front.svg",
  18095. extra: 100 / 94,
  18096. bottom: 3.3 / 103.3445
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(8 + 4 / 12, "feet"),
  18101. weight: math.unit(600, "lb"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/dragonien/back.svg",
  18105. extra: 776 / 746,
  18106. bottom: 6.4 / 782.0616
  18107. }
  18108. },
  18109. foot: {
  18110. height: math.unit(1.54, "feet"),
  18111. name: "Foot",
  18112. image: {
  18113. source: "./media/characters/dragonien/foot.svg",
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Normal",
  18120. height: math.unit(8 + 4 / 12, "feet"),
  18121. default: true
  18122. },
  18123. {
  18124. name: "Macro",
  18125. height: math.unit(200, "feet")
  18126. },
  18127. {
  18128. name: "Megamacro",
  18129. height: math.unit(1, "mile")
  18130. },
  18131. {
  18132. name: "Gigamacro",
  18133. height: math.unit(1000, "miles")
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18139. {
  18140. front: {
  18141. height: math.unit(5 + 2 / 12, "feet"),
  18142. weight: math.unit(110, "lb"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/desta/front.svg",
  18146. extra: 767 / 726,
  18147. bottom: 11.7 / 779
  18148. }
  18149. },
  18150. back: {
  18151. height: math.unit(5 + 2 / 12, "feet"),
  18152. weight: math.unit(110, "lb"),
  18153. name: "Back",
  18154. image: {
  18155. source: "./media/characters/desta/back.svg",
  18156. extra: 777 / 728,
  18157. bottom: 6 / 784
  18158. }
  18159. },
  18160. frontAlt: {
  18161. height: math.unit(5 + 2 / 12, "feet"),
  18162. weight: math.unit(110, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/desta/front-alt.svg",
  18166. extra: 1482 / 1417
  18167. }
  18168. },
  18169. side: {
  18170. height: math.unit(5 + 2 / 12, "feet"),
  18171. weight: math.unit(110, "lb"),
  18172. name: "Side",
  18173. image: {
  18174. source: "./media/characters/desta/side.svg",
  18175. extra: 2579 / 2491,
  18176. bottom: 0.053
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(6, "inches")
  18184. },
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(5 + 2 / 12, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(62, "feet")
  18193. },
  18194. {
  18195. name: "Megamacro",
  18196. height: math.unit(1800, "feet")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(10, "feet"),
  18205. weight: math.unit(700, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/storm-alystar/front.svg",
  18209. extra: 2112 / 1898,
  18210. bottom: 0.034
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(3.5, "inches")
  18218. },
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(10, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Macro",
  18226. height: math.unit(400, "feet")
  18227. },
  18228. {
  18229. name: "Deific",
  18230. height: math.unit(60, "miles")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(2.35, "meters"),
  18239. weight: math.unit(119, "kg"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/ilia/front.svg",
  18243. extra: 1285 / 1255,
  18244. bottom: 0.06
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(2.35, "meters")
  18252. },
  18253. {
  18254. name: "Macro",
  18255. height: math.unit(140, "meters"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Megamacro",
  18260. height: math.unit(100, "miles")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(6 + 5 / 12, "feet"),
  18269. weight: math.unit(190, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/kingdead/front.svg",
  18273. extra: 1228 / 1177
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Micro",
  18280. height: math.unit(7, "inches")
  18281. },
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(6 + 5 / 12, "feet")
  18285. },
  18286. {
  18287. name: "Macro",
  18288. height: math.unit(150, "feet"),
  18289. default: true
  18290. },
  18291. {
  18292. name: "Megamacro",
  18293. height: math.unit(200, "miles")
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(8, "feet"),
  18302. weight: math.unit(600, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/kyrehx/front.svg",
  18306. extra: 1195 / 1095,
  18307. bottom: 0.034
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Micro",
  18314. height: math.unit(2, "inches")
  18315. },
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(8, "feet"),
  18319. default: true
  18320. },
  18321. {
  18322. name: "Macro",
  18323. height: math.unit(255, "feet")
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18329. {
  18330. front: {
  18331. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18332. weight: math.unit(184, "lb"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/xang/front.svg",
  18336. extra: 845 / 755
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(0.935 * 146, "feet")
  18349. },
  18350. {
  18351. name: "Megamacro",
  18352. height: math.unit(0.935 * 3, "miles")
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18358. {
  18359. frontDressed: {
  18360. height: math.unit(5 + 7 / 12, "feet"),
  18361. weight: math.unit(140, "lb"),
  18362. name: "Front (Dressed)",
  18363. image: {
  18364. source: "./media/characters/doc-weardno/front-dressed.svg",
  18365. extra: 263 / 234
  18366. }
  18367. },
  18368. backDressed: {
  18369. height: math.unit(5 + 7 / 12, "feet"),
  18370. weight: math.unit(140, "lb"),
  18371. name: "Back (Dressed)",
  18372. image: {
  18373. source: "./media/characters/doc-weardno/back-dressed.svg",
  18374. extra: 266 / 238
  18375. }
  18376. },
  18377. front: {
  18378. height: math.unit(5 + 7 / 12, "feet"),
  18379. weight: math.unit(140, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/doc-weardno/front.svg",
  18383. extra: 254 / 233
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Micro",
  18390. height: math.unit(3, "inches")
  18391. },
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(5 + 7 / 12, "feet"),
  18395. default: true
  18396. },
  18397. {
  18398. name: "Macro",
  18399. height: math.unit(25, "feet")
  18400. },
  18401. {
  18402. name: "Megamacro",
  18403. height: math.unit(2, "miles")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(6 + 2 / 12, "feet"),
  18412. weight: math.unit(153, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/seth-whilst/front.svg",
  18416. bottom: 0.07
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Micro",
  18423. height: math.unit(5, "inches")
  18424. },
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(6 + 2 / 12, "feet"),
  18428. default: true
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18434. {
  18435. front: {
  18436. height: math.unit(3, "inches"),
  18437. weight: math.unit(8, "grams"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/pocket-jabari/front.svg",
  18441. extra: 1024 / 974,
  18442. bottom: 0.039
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Minimicro",
  18449. height: math.unit(8, "mm")
  18450. },
  18451. {
  18452. name: "Micro",
  18453. height: math.unit(3, "inches"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(3, "feet")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(15, "feet"),
  18467. weight: math.unit(3280, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/sapphy/front.svg",
  18471. extra: 671 / 577,
  18472. bottom: 0.085
  18473. }
  18474. },
  18475. back: {
  18476. height: math.unit(15, "feet"),
  18477. weight: math.unit(3280, "lb"),
  18478. name: "Back",
  18479. image: {
  18480. source: "./media/characters/sapphy/back.svg",
  18481. extra: 631 / 607,
  18482. bottom: 0.045
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(15, "feet")
  18490. },
  18491. {
  18492. name: "Casual Macro",
  18493. height: math.unit(120, "feet")
  18494. },
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(2150, "feet"),
  18498. default: true
  18499. },
  18500. {
  18501. name: "Megamacro",
  18502. height: math.unit(8, "miles")
  18503. },
  18504. {
  18505. name: "Galaxy Mom",
  18506. height: math.unit(6, "megalightyears")
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18512. {
  18513. front: {
  18514. height: math.unit(6, "feet"),
  18515. weight: math.unit(170, "lb"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/kiro/front.svg",
  18519. extra: 1064 / 1012,
  18520. bottom: 0.052
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Micro",
  18527. height: math.unit(6, "inches")
  18528. },
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(6, "feet"),
  18532. default: true
  18533. },
  18534. {
  18535. name: "Macro",
  18536. height: math.unit(72, "feet")
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(5 + 9 / 12, "feet"),
  18545. weight: math.unit(175, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/irishfox/front.svg",
  18549. extra: 1912 / 1680,
  18550. bottom: 0.02
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Nano",
  18557. height: math.unit(1, "mm")
  18558. },
  18559. {
  18560. name: "Micro",
  18561. height: math.unit(2, "inches")
  18562. },
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(5 + 9 / 12, "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Macro",
  18570. height: math.unit(45, "feet")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(6 + 1 / 12, "feet"),
  18579. weight: math.unit(75, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/aronai-sieyes/front.svg",
  18583. extra: 1556 / 1480,
  18584. bottom: 0.015
  18585. }
  18586. },
  18587. side: {
  18588. height: math.unit(6 + 1 / 12, "feet"),
  18589. weight: math.unit(75, "lb"),
  18590. name: "Side",
  18591. image: {
  18592. source: "./media/characters/aronai-sieyes/side.svg",
  18593. extra: 1433 / 1390,
  18594. bottom: 0.0393
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(6 + 1 / 12, "feet"),
  18599. weight: math.unit(75, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/aronai-sieyes/back.svg",
  18603. extra: 1544 / 1494,
  18604. bottom: 0.02
  18605. }
  18606. },
  18607. frontClothed: {
  18608. height: math.unit(6 + 1 / 12, "feet"),
  18609. weight: math.unit(75, "lb"),
  18610. name: "Front (Clothed)",
  18611. image: {
  18612. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18613. extra: 1582 / 1527
  18614. }
  18615. },
  18616. feral: {
  18617. height: math.unit(18, "feet"),
  18618. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18619. name: "Feral",
  18620. image: {
  18621. source: "./media/characters/aronai-sieyes/feral.svg",
  18622. extra: 1530 / 1240,
  18623. bottom: 0.035
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Micro",
  18630. height: math.unit(2, "inches")
  18631. },
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(6 + 1 / 12, "feet"),
  18635. default: true
  18636. }
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(12, "feet"),
  18644. weight: math.unit(410, "kg"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/xuna/front.svg",
  18648. extra: 2184 / 1980
  18649. }
  18650. },
  18651. side: {
  18652. height: math.unit(12, "feet"),
  18653. weight: math.unit(410, "kg"),
  18654. name: "Side",
  18655. image: {
  18656. source: "./media/characters/xuna/side.svg",
  18657. extra: 2184 / 1980
  18658. }
  18659. },
  18660. back: {
  18661. height: math.unit(12, "feet"),
  18662. weight: math.unit(410, "kg"),
  18663. name: "Back",
  18664. image: {
  18665. source: "./media/characters/xuna/back.svg",
  18666. extra: 2184 / 1980
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Nano glow",
  18673. height: math.unit(10, "nm")
  18674. },
  18675. {
  18676. name: "Micro floof",
  18677. height: math.unit(0.3, "m")
  18678. },
  18679. {
  18680. name: "Huggable softy boi",
  18681. height: math.unit(3.6576, "m"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Admirable floof",
  18686. height: math.unit(80, "meters")
  18687. },
  18688. {
  18689. name: "Gentle macro",
  18690. height: math.unit(300, "meters")
  18691. },
  18692. {
  18693. name: "Very careful floof",
  18694. height: math.unit(3200, "meters")
  18695. },
  18696. {
  18697. name: "The mega floof",
  18698. height: math.unit(36000, "meters")
  18699. },
  18700. {
  18701. name: "Giga-fur-Wicker",
  18702. height: math.unit(4800000, "meters")
  18703. },
  18704. {
  18705. name: "Licky world",
  18706. height: math.unit(20000000, "meters")
  18707. },
  18708. {
  18709. name: "Floofy cyan sun",
  18710. height: math.unit(1500000000, "meters")
  18711. },
  18712. {
  18713. name: "Milky Wicker",
  18714. height: math.unit(1000000000000000000000, "meters")
  18715. },
  18716. {
  18717. name: "The observing Wicker",
  18718. height: math.unit(999999999999999999999999999, "meters")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(5 + 9 / 12, "feet"),
  18727. weight: math.unit(150, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/arokha-sieyes/front.svg",
  18731. extra: 1425 / 1284,
  18732. bottom: 0.05
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(5 + 9 / 12, "feet")
  18740. },
  18741. {
  18742. name: "Macro",
  18743. height: math.unit(30, "meters"),
  18744. default: true
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(6, "feet"),
  18753. weight: math.unit(180, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/arokh-sieyes/front.svg",
  18757. extra: 1830 / 1769,
  18758. bottom: 0.01
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(6, "feet")
  18766. },
  18767. {
  18768. name: "Macro",
  18769. height: math.unit(30, "meters"),
  18770. default: true
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18776. {
  18777. side: {
  18778. height: math.unit(13 + 1 / 12, "feet"),
  18779. weight: math.unit(8.5, "tonnes"),
  18780. name: "Side",
  18781. image: {
  18782. source: "./media/characters/goldeneye/side.svg",
  18783. extra: 1182 / 778,
  18784. bottom: 0.067
  18785. }
  18786. },
  18787. paw: {
  18788. height: math.unit(3.4, "feet"),
  18789. name: "Paw",
  18790. image: {
  18791. source: "./media/characters/goldeneye/paw.svg"
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(13 + 1 / 12, "feet"),
  18799. default: true
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18805. {
  18806. front: {
  18807. height: math.unit(6 + 1 / 12, "feet"),
  18808. weight: math.unit(210, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/leonardo-lycheborne/front.svg",
  18812. extra: 390 / 365,
  18813. bottom: 0.032
  18814. }
  18815. },
  18816. side: {
  18817. height: math.unit(6 + 1 / 12, "feet"),
  18818. weight: math.unit(210, "lb"),
  18819. name: "Side",
  18820. image: {
  18821. source: "./media/characters/leonardo-lycheborne/side.svg",
  18822. extra: 390 / 365,
  18823. bottom: 0.005
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(6 + 1 / 12, "feet"),
  18828. weight: math.unit(210, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/leonardo-lycheborne/back.svg",
  18832. extra: 392 / 366,
  18833. bottom: 0.01
  18834. }
  18835. },
  18836. hand: {
  18837. height: math.unit(1.08, "feet"),
  18838. name: "Hand",
  18839. image: {
  18840. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18841. }
  18842. },
  18843. foot: {
  18844. height: math.unit(1.32, "feet"),
  18845. name: "Foot",
  18846. image: {
  18847. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18848. }
  18849. },
  18850. were: {
  18851. height: math.unit(20, "feet"),
  18852. weight: math.unit(7800, "lb"),
  18853. name: "Were",
  18854. image: {
  18855. source: "./media/characters/leonardo-lycheborne/were.svg",
  18856. extra: 308 / 294,
  18857. bottom: 0.048
  18858. }
  18859. },
  18860. feral: {
  18861. height: math.unit(7.5, "feet"),
  18862. weight: math.unit(600, "lb"),
  18863. name: "Feral",
  18864. image: {
  18865. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18866. extra: 210 / 186,
  18867. bottom: 0.108
  18868. }
  18869. },
  18870. taur: {
  18871. height: math.unit(11, "feet"),
  18872. weight: math.unit(3300, "lb"),
  18873. name: "Taur",
  18874. image: {
  18875. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18876. extra: 320 / 303,
  18877. bottom: 0.025
  18878. }
  18879. },
  18880. barghest: {
  18881. height: math.unit(11, "feet"),
  18882. weight: math.unit(1300, "lb"),
  18883. name: "Barghest",
  18884. image: {
  18885. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18886. extra: 323 / 302,
  18887. bottom: 0.027
  18888. }
  18889. },
  18890. dick: {
  18891. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18892. name: "Dick",
  18893. image: {
  18894. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18895. }
  18896. },
  18897. dickWere: {
  18898. height: math.unit((20) / 3.8, "feet"),
  18899. name: "Dick (Were)",
  18900. image: {
  18901. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18902. }
  18903. },
  18904. },
  18905. [
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(6 + 1 / 12, "feet"),
  18909. default: true
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18915. {
  18916. front: {
  18917. height: math.unit(10, "feet"),
  18918. weight: math.unit(350, "lb"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/jet/front.svg",
  18922. extra: 2050 / 1980,
  18923. bottom: 0.013
  18924. }
  18925. },
  18926. back: {
  18927. height: math.unit(10, "feet"),
  18928. weight: math.unit(350, "lb"),
  18929. name: "Back",
  18930. image: {
  18931. source: "./media/characters/jet/back.svg",
  18932. extra: 2050 / 1980,
  18933. bottom: 0.013
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(6, "inches")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(10, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(100, "feet")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(15, "feet"),
  18958. weight: math.unit(2800, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/tanarath/front.svg",
  18962. extra: 2392 / 2220,
  18963. bottom: 0.03
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(15, "feet"),
  18968. weight: math.unit(2800, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/tanarath/back.svg",
  18972. extra: 2392 / 2220,
  18973. bottom: 0.03
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(15, "feet"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(7 + 1 / 12, "feet"),
  18990. weight: math.unit(175, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/patty-cattybatty/front.svg",
  18994. extra: 908 / 874,
  18995. bottom: 0.025
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Micro",
  19002. height: math.unit(1, "inch")
  19003. },
  19004. {
  19005. name: "Normal",
  19006. height: math.unit(7 + 1 / 12, "feet")
  19007. },
  19008. {
  19009. name: "Mini Macro",
  19010. height: math.unit(155, "feet")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(1077, "feet")
  19015. },
  19016. {
  19017. name: "Mega Macro",
  19018. height: math.unit(47650, "feet"),
  19019. default: true
  19020. },
  19021. {
  19022. name: "Giga Macro",
  19023. height: math.unit(440, "miles")
  19024. },
  19025. {
  19026. name: "Tera Macro",
  19027. height: math.unit(8700, "miles")
  19028. },
  19029. {
  19030. name: "Planetary Macro",
  19031. height: math.unit(32700, "miles")
  19032. },
  19033. {
  19034. name: "Solar Macro",
  19035. height: math.unit(550000, "miles")
  19036. },
  19037. {
  19038. name: "Celestial Macro",
  19039. height: math.unit(2.5, "AU")
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(4 + 5 / 12, "feet"),
  19048. weight: math.unit(90, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/cappu/front.svg",
  19052. extra: 1247 / 1152,
  19053. bottom: 0.012
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(4 + 5 / 12, "feet"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19067. {
  19068. frontDressed: {
  19069. height: math.unit(70, "cm"),
  19070. weight: math.unit(6, "kg"),
  19071. name: "Front (Dressed)",
  19072. image: {
  19073. source: "./media/characters/sebi/front-dressed.svg",
  19074. extra: 713.5 / 686.5,
  19075. bottom: 0.003
  19076. }
  19077. },
  19078. front: {
  19079. height: math.unit(70, "cm"),
  19080. weight: math.unit(5, "kg"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/sebi/front.svg",
  19084. extra: 713.5 / 686.5,
  19085. bottom: 0.003
  19086. }
  19087. }
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(70, "cm"),
  19093. default: true
  19094. },
  19095. {
  19096. name: "Macro",
  19097. height: math.unit(8, "meters")
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(6, "feet"),
  19106. weight: math.unit(150, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/typhek/front.svg",
  19110. extra: 1948 / 1929,
  19111. bottom: 0.025
  19112. }
  19113. },
  19114. side: {
  19115. height: math.unit(6, "feet"),
  19116. weight: math.unit(150, "lb"),
  19117. name: "Side",
  19118. image: {
  19119. source: "./media/characters/typhek/side.svg",
  19120. extra: 2034 / 2010,
  19121. bottom: 0.003
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(6, "feet"),
  19126. weight: math.unit(150, "lb"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/typhek/back.svg",
  19130. extra: 2005 / 1978,
  19131. bottom: 0.004
  19132. }
  19133. },
  19134. palm: {
  19135. height: math.unit(1.2, "feet"),
  19136. name: "Palm",
  19137. image: {
  19138. source: "./media/characters/typhek/palm.svg"
  19139. }
  19140. },
  19141. fist: {
  19142. height: math.unit(1.1, "feet"),
  19143. name: "Fist",
  19144. image: {
  19145. source: "./media/characters/typhek/fist.svg"
  19146. }
  19147. },
  19148. foot: {
  19149. height: math.unit(1.57, "feet"),
  19150. name: "Foot",
  19151. image: {
  19152. source: "./media/characters/typhek/foot.svg"
  19153. }
  19154. },
  19155. sole: {
  19156. height: math.unit(2.05, "feet"),
  19157. name: "Sole",
  19158. image: {
  19159. source: "./media/characters/typhek/sole.svg"
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Macro",
  19166. height: math.unit(40, "stories"),
  19167. default: true
  19168. },
  19169. {
  19170. name: "Megamacro",
  19171. height: math.unit(1, "mile")
  19172. },
  19173. {
  19174. name: "Gigamacro",
  19175. height: math.unit(4000, "solarradii")
  19176. },
  19177. {
  19178. name: "Universal",
  19179. height: math.unit(1.1, "universes")
  19180. }
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19185. {
  19186. side: {
  19187. height: math.unit(5 + 7 / 12, "feet"),
  19188. weight: math.unit(150, "lb"),
  19189. name: "Side",
  19190. image: {
  19191. source: "./media/characters/kassy/side.svg",
  19192. extra: 1280 / 1225,
  19193. bottom: 0.002
  19194. }
  19195. },
  19196. front: {
  19197. height: math.unit(5 + 7 / 12, "feet"),
  19198. weight: math.unit(150, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/kassy/front.svg",
  19202. extra: 1280 / 1225,
  19203. bottom: 0.025
  19204. }
  19205. },
  19206. back: {
  19207. height: math.unit(5 + 7 / 12, "feet"),
  19208. weight: math.unit(150, "lb"),
  19209. name: "Back",
  19210. image: {
  19211. source: "./media/characters/kassy/back.svg",
  19212. extra: 1280 / 1225,
  19213. bottom: 0.002
  19214. }
  19215. },
  19216. foot: {
  19217. height: math.unit(1.266, "feet"),
  19218. name: "Foot",
  19219. image: {
  19220. source: "./media/characters/kassy/foot.svg"
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(5 + 7 / 12, "feet")
  19228. },
  19229. {
  19230. name: "Macro",
  19231. height: math.unit(137, "feet"),
  19232. default: true
  19233. },
  19234. {
  19235. name: "Megamacro",
  19236. height: math.unit(1, "mile")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(6 + 1 / 12, "feet"),
  19245. weight: math.unit(200, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/neil/front.svg",
  19249. extra: 1326 / 1250,
  19250. bottom: 0.023
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(6 + 1 / 12, "feet"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "Macro",
  19262. height: math.unit(200, "feet")
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(5 + 9 / 12, "feet"),
  19271. weight: math.unit(190, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/atticus/front.svg",
  19275. extra: 2934 / 2785,
  19276. bottom: 0.025
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(5 + 9 / 12, "feet"),
  19284. default: true
  19285. },
  19286. {
  19287. name: "Macro",
  19288. height: math.unit(180, "feet")
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19294. {
  19295. side: {
  19296. height: math.unit(9, "feet"),
  19297. weight: math.unit(650, "lb"),
  19298. name: "Side",
  19299. image: {
  19300. source: "./media/characters/milo/side.svg",
  19301. extra: 2644 / 2310,
  19302. bottom: 0.032
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(9, "feet"),
  19310. default: true
  19311. },
  19312. {
  19313. name: "Macro",
  19314. height: math.unit(300, "feet")
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19320. {
  19321. side: {
  19322. height: math.unit(8, "meters"),
  19323. weight: math.unit(90000, "kg"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/ijzer/side.svg",
  19327. extra: 2756 / 1600,
  19328. bottom: 0.01
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Small",
  19335. height: math.unit(3, "meters")
  19336. },
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(8, "meters"),
  19340. default: true
  19341. },
  19342. {
  19343. name: "Normal+",
  19344. height: math.unit(10, "meters")
  19345. },
  19346. {
  19347. name: "Bigger",
  19348. height: math.unit(24, "meters")
  19349. },
  19350. {
  19351. name: "Huge",
  19352. height: math.unit(80, "meters")
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19358. {
  19359. front: {
  19360. height: math.unit(6 + 2 / 12, "feet"),
  19361. weight: math.unit(153, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/luca-cervicum/front.svg",
  19365. extra: 370 / 327,
  19366. bottom: 0.015
  19367. }
  19368. },
  19369. back: {
  19370. height: math.unit(6 + 2 / 12, "feet"),
  19371. weight: math.unit(153, "lb"),
  19372. name: "Back",
  19373. image: {
  19374. source: "./media/characters/luca-cervicum/back.svg",
  19375. extra: 367 / 333,
  19376. bottom: 0.005
  19377. }
  19378. },
  19379. frontGear: {
  19380. height: math.unit(6 + 2 / 12, "feet"),
  19381. weight: math.unit(173, "lb"),
  19382. name: "Front (Gear)",
  19383. image: {
  19384. source: "./media/characters/luca-cervicum/front-gear.svg",
  19385. extra: 377 / 333,
  19386. bottom: 0.006
  19387. }
  19388. },
  19389. },
  19390. [
  19391. {
  19392. name: "Normal",
  19393. height: math.unit(6 + 2 / 12, "feet"),
  19394. default: true
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(6 + 1 / 12, "feet"),
  19403. weight: math.unit(304, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/oliver/front.svg",
  19407. extra: 157 / 143,
  19408. bottom: 0.08
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(6 + 1 / 12, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(5 + 7 / 12, "feet"),
  19425. weight: math.unit(140, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/shane/front.svg",
  19429. extra: 304 / 289,
  19430. bottom: 0.005
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(5 + 7 / 12, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19444. {
  19445. front: {
  19446. height: math.unit(5 + 9 / 12, "feet"),
  19447. weight: math.unit(178, "lb"),
  19448. name: "Front",
  19449. image: {
  19450. source: "./media/characters/shin/front.svg",
  19451. extra: 159 / 151,
  19452. bottom: 0.015
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(5 + 9 / 12, "feet"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(5 + 10 / 12, "feet"),
  19469. weight: math.unit(168, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/xerxes/front.svg",
  19473. extra: 282 / 260,
  19474. bottom: 0.045
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(5 + 10 / 12, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(6 + 7 / 12, "feet"),
  19491. weight: math.unit(208, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/chaska/front.svg",
  19495. extra: 332 / 319,
  19496. bottom: 0.015
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(6 + 7 / 12, "feet"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(5 + 8 / 12, "feet"),
  19513. weight: math.unit(208, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/enuk/front.svg",
  19517. extra: 437 / 406,
  19518. bottom: 0.02
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(5 + 8 / 12, "feet"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(5 + 10 / 12, "feet"),
  19535. weight: math.unit(252, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/bruun/front.svg",
  19539. extra: 197 / 187,
  19540. bottom: 0.012
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(5 + 10 / 12, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(6 + 10 / 12, "feet"),
  19557. weight: math.unit(255, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/alexeev/front.svg",
  19561. extra: 213 / 200,
  19562. bottom: 0.05
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(6 + 10 / 12, "feet"),
  19570. default: true
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(2 + 8 / 12, "feet"),
  19579. weight: math.unit(22, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/evelyn/front.svg",
  19583. extra: 208 / 180
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(2 + 8 / 12, "feet"),
  19591. default: true
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19597. {
  19598. front: {
  19599. height: math.unit(5 + 9 / 12, "feet"),
  19600. weight: math.unit(139, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/inca/front.svg",
  19604. extra: 294 / 291,
  19605. bottom: 0.03
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(5 + 9 / 12, "feet"),
  19613. default: true
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(5 + 1 / 12, "feet"),
  19622. weight: math.unit(84, "lb"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/magdalene/front.svg",
  19626. extra: 293 / 273
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(5 + 1 / 12, "feet"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(6 + 3 / 12, "feet"),
  19643. weight: math.unit(185, "lb"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/mera/front.svg",
  19647. extra: 291 / 277,
  19648. bottom: 0.03
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(6 + 3 / 12, "feet"),
  19656. default: true
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(6 + 7 / 12, "feet"),
  19665. weight: math.unit(160, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/ceres/front.svg",
  19669. extra: 1023 / 950,
  19670. bottom: 0.027
  19671. }
  19672. },
  19673. back: {
  19674. height: math.unit(6 + 7 / 12, "feet"),
  19675. weight: math.unit(160, "lb"),
  19676. name: "Back",
  19677. image: {
  19678. source: "./media/characters/ceres/back.svg",
  19679. extra: 1023 / 950
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(6 + 7 / 12, "feet"),
  19687. default: true
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19693. {
  19694. front: {
  19695. height: math.unit(5 + 10 / 12, "feet"),
  19696. weight: math.unit(150, "lb"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/kris/front.svg",
  19700. extra: 885 / 803,
  19701. bottom: 0.03
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(5 + 10 / 12, "feet"),
  19709. default: true
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19715. {
  19716. front: {
  19717. height: math.unit(7, "feet"),
  19718. weight: math.unit(120, "kg"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/taluthus/front.svg",
  19722. extra: 903 / 833,
  19723. bottom: 0.015
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(7, "feet"),
  19731. default: true
  19732. },
  19733. {
  19734. name: "Macro",
  19735. height: math.unit(300, "feet")
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 9 / 12, "feet"),
  19744. weight: math.unit(145, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/dawn/front.svg",
  19748. extra: 2094 / 2016,
  19749. bottom: 0.025
  19750. }
  19751. },
  19752. back: {
  19753. height: math.unit(5 + 9 / 12, "feet"),
  19754. weight: math.unit(160, "lb"),
  19755. name: "Back",
  19756. image: {
  19757. source: "./media/characters/dawn/back.svg",
  19758. extra: 2112 / 2080,
  19759. bottom: 0.005
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(6 + 7 / 12, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19773. {
  19774. anthro: {
  19775. height: math.unit(8 + 3 / 12, "feet"),
  19776. weight: math.unit(450, "lb"),
  19777. name: "Anthro",
  19778. image: {
  19779. source: "./media/characters/arador/anthro.svg",
  19780. extra: 1835 / 1718,
  19781. bottom: 0.025
  19782. }
  19783. },
  19784. feral: {
  19785. height: math.unit(4, "feet"),
  19786. weight: math.unit(200, "lb"),
  19787. name: "Feral",
  19788. image: {
  19789. source: "./media/characters/arador/feral.svg",
  19790. extra: 1683 / 1514,
  19791. bottom: 0.07
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(8 + 3 / 12, "feet")
  19799. },
  19800. {
  19801. name: "Macro",
  19802. height: math.unit(82.5, "feet"),
  19803. default: true
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19809. {
  19810. front: {
  19811. height: math.unit(5 + 10 / 12, "feet"),
  19812. weight: math.unit(125, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/dharsi/front.svg",
  19816. extra: 716 / 630,
  19817. bottom: 0.035
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Nano",
  19824. height: math.unit(100, "nm")
  19825. },
  19826. {
  19827. name: "Micro",
  19828. height: math.unit(2, "inches")
  19829. },
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(5 + 10 / 12, "feet"),
  19833. default: true
  19834. },
  19835. {
  19836. name: "Macro",
  19837. height: math.unit(1000, "feet")
  19838. },
  19839. {
  19840. name: "Megamacro",
  19841. height: math.unit(10, "miles")
  19842. },
  19843. {
  19844. name: "Gigamacro",
  19845. height: math.unit(3000, "miles")
  19846. },
  19847. {
  19848. name: "Teramacro",
  19849. height: math.unit(500000, "miles")
  19850. },
  19851. {
  19852. name: "Teramacro+",
  19853. height: math.unit(30, "galaxies")
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19859. {
  19860. front: {
  19861. height: math.unit(6, "feet"),
  19862. weight: math.unit(150, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/deathy/front.svg",
  19866. extra: 1552 / 1463,
  19867. bottom: 0.025
  19868. }
  19869. },
  19870. side: {
  19871. height: math.unit(6, "feet"),
  19872. weight: math.unit(150, "lb"),
  19873. name: "Side",
  19874. image: {
  19875. source: "./media/characters/deathy/side.svg",
  19876. extra: 1604 / 1455,
  19877. bottom: 0.025
  19878. }
  19879. },
  19880. back: {
  19881. height: math.unit(6, "feet"),
  19882. weight: math.unit(150, "lb"),
  19883. name: "Back",
  19884. image: {
  19885. source: "./media/characters/deathy/back.svg",
  19886. extra: 1580 / 1463,
  19887. bottom: 0.005
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Micro",
  19894. height: math.unit(5, "millimeters")
  19895. },
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(6 + 5 / 12, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19905. {
  19906. front: {
  19907. height: math.unit(16, "feet"),
  19908. weight: math.unit(4000, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/juniper/front.svg",
  19912. bottom: 0.04
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Normal",
  19919. height: math.unit(16, "feet"),
  19920. default: true
  19921. },
  19922. ]
  19923. ))
  19924. characterMakers.push(() => makeCharacter(
  19925. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19926. {
  19927. front: {
  19928. height: math.unit(6, "feet"),
  19929. weight: math.unit(150, "lb"),
  19930. name: "Front",
  19931. image: {
  19932. source: "./media/characters/hipster/front.svg",
  19933. extra: 1312 / 1209,
  19934. bottom: 0.025
  19935. }
  19936. },
  19937. back: {
  19938. height: math.unit(6, "feet"),
  19939. weight: math.unit(150, "lb"),
  19940. name: "Back",
  19941. image: {
  19942. source: "./media/characters/hipster/back.svg",
  19943. extra: 1281 / 1196,
  19944. bottom: 0.01
  19945. }
  19946. },
  19947. },
  19948. [
  19949. {
  19950. name: "Micro",
  19951. height: math.unit(1, "mm")
  19952. },
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(4, "inches"),
  19956. default: true
  19957. },
  19958. {
  19959. name: "Macro",
  19960. height: math.unit(500, "feet")
  19961. },
  19962. {
  19963. name: "Megamacro",
  19964. height: math.unit(1000, "miles")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(6, "feet"),
  19973. weight: math.unit(150, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/tendirmuldr/front.svg",
  19977. extra: 1878 / 1772,
  19978. bottom: 0.015
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Megamacro",
  19985. height: math.unit(1500, "miles"),
  19986. default: true
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19992. {
  19993. front: {
  19994. height: math.unit(14, "feet"),
  19995. weight: math.unit(12000, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/mort/front.svg",
  19999. extra: 365 / 318,
  20000. bottom: 0.01
  20001. }
  20002. },
  20003. side: {
  20004. height: math.unit(14, "feet"),
  20005. weight: math.unit(12000, "lb"),
  20006. name: "Side",
  20007. image: {
  20008. source: "./media/characters/mort/side.svg",
  20009. extra: 365 / 318,
  20010. bottom: 0.052
  20011. },
  20012. default: true
  20013. },
  20014. back: {
  20015. height: math.unit(14, "feet"),
  20016. weight: math.unit(12000, "lb"),
  20017. name: "Back",
  20018. image: {
  20019. source: "./media/characters/mort/back.svg",
  20020. extra: 371 / 332,
  20021. bottom: 0.18
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(14, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20035. {
  20036. front: {
  20037. height: math.unit(8, "feet"),
  20038. weight: math.unit(1, "ton"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/lycoa/front.svg",
  20042. extra: 1875 / 1789,
  20043. bottom: 0.022
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(8, "feet"),
  20048. weight: math.unit(1, "ton"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/lycoa/back.svg",
  20052. extra: 1835 / 1781,
  20053. bottom: 0.03
  20054. }
  20055. },
  20056. head: {
  20057. height: math.unit(2.1, "feet"),
  20058. name: "Head",
  20059. image: {
  20060. source: "./media/characters/lycoa/head.svg"
  20061. }
  20062. },
  20063. tailmaw: {
  20064. height: math.unit(1.9, "feet"),
  20065. name: "Tailmaw",
  20066. image: {
  20067. source: "./media/characters/lycoa/tailmaw.svg"
  20068. }
  20069. },
  20070. tentacles: {
  20071. height: math.unit(2.1, "feet"),
  20072. name: "Tentacles",
  20073. image: {
  20074. source: "./media/characters/lycoa/tentacles.svg"
  20075. }
  20076. },
  20077. dick: {
  20078. height: math.unit(1.73, "feet"),
  20079. name: "Dick",
  20080. image: {
  20081. source: "./media/characters/lycoa/dick.svg"
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(8, "feet"),
  20089. default: true
  20090. },
  20091. {
  20092. name: "Macro",
  20093. height: math.unit(30, "feet")
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20099. {
  20100. front: {
  20101. height: math.unit(4 + 2 / 12, "feet"),
  20102. weight: math.unit(70, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/naldara/front.svg",
  20106. extra: 841 / 720,
  20107. bottom: 0.04
  20108. }
  20109. },
  20110. naga: {
  20111. height: math.unit(23, "feet"),
  20112. weight: math.unit(15000, "kg"),
  20113. name: "Naga",
  20114. image: {
  20115. source: "./media/characters/naldara/naga.svg",
  20116. extra: 3290 / 2959,
  20117. bottom: 124 / 3432
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(4 + 2 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(13 + 7 / 12, "feet"),
  20134. weight: math.unit(1500, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/briar/front.svg",
  20138. extra: 626 / 596,
  20139. bottom: 0.08
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(13 + 7 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20153. {
  20154. side: {
  20155. height: math.unit(10, "feet"),
  20156. weight: math.unit(500, "lb"),
  20157. name: "Side",
  20158. image: {
  20159. source: "./media/characters/vanguard/side.svg",
  20160. extra: 502 / 425,
  20161. bottom: 0.087
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(10, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20175. {
  20176. front: {
  20177. height: math.unit(7.5, "feet"),
  20178. weight: math.unit(2, "lb"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/artemis/front.svg",
  20182. extra: 1192 / 1075,
  20183. bottom: 0.07
  20184. }
  20185. },
  20186. frontNsfw: {
  20187. height: math.unit(7.5, "feet"),
  20188. weight: math.unit(2, "lb"),
  20189. name: "Front (NSFW)",
  20190. image: {
  20191. source: "./media/characters/artemis/front-nsfw.svg",
  20192. extra: 1192 / 1075,
  20193. bottom: 0.07
  20194. }
  20195. },
  20196. frontNsfwer: {
  20197. height: math.unit(7.5, "feet"),
  20198. weight: math.unit(2, "lb"),
  20199. name: "Front (NSFW-er)",
  20200. image: {
  20201. source: "./media/characters/artemis/front-nsfwer.svg",
  20202. extra: 1192 / 1075,
  20203. bottom: 0.07
  20204. }
  20205. },
  20206. side: {
  20207. height: math.unit(7.5, "feet"),
  20208. weight: math.unit(2, "lb"),
  20209. name: "Side",
  20210. image: {
  20211. source: "./media/characters/artemis/side.svg",
  20212. extra: 1192 / 1075,
  20213. bottom: 0.07
  20214. }
  20215. },
  20216. sideNsfw: {
  20217. height: math.unit(7.5, "feet"),
  20218. weight: math.unit(2, "lb"),
  20219. name: "Side (NSFW)",
  20220. image: {
  20221. source: "./media/characters/artemis/side-nsfw.svg",
  20222. extra: 1192 / 1075,
  20223. bottom: 0.07
  20224. }
  20225. },
  20226. sideNsfwer: {
  20227. height: math.unit(7.5, "feet"),
  20228. weight: math.unit(2, "lb"),
  20229. name: "Side (NSFW-er)",
  20230. image: {
  20231. source: "./media/characters/artemis/side-nsfwer.svg",
  20232. extra: 1192 / 1075,
  20233. bottom: 0.07
  20234. }
  20235. },
  20236. maw: {
  20237. height: math.unit(1.1, "feet"),
  20238. name: "Maw",
  20239. image: {
  20240. source: "./media/characters/artemis/maw.svg"
  20241. }
  20242. },
  20243. stomach: {
  20244. height: math.unit(0.95, "feet"),
  20245. name: "Stomach",
  20246. image: {
  20247. source: "./media/characters/artemis/stomach.svg"
  20248. }
  20249. },
  20250. dickCanine: {
  20251. height: math.unit(1, "feet"),
  20252. name: "Dick (Canine)",
  20253. image: {
  20254. source: "./media/characters/artemis/dick-canine.svg"
  20255. }
  20256. },
  20257. dickEquine: {
  20258. height: math.unit(0.85, "feet"),
  20259. name: "Dick (Equine)",
  20260. image: {
  20261. source: "./media/characters/artemis/dick-equine.svg"
  20262. }
  20263. },
  20264. dickExotic: {
  20265. height: math.unit(0.85, "feet"),
  20266. name: "Dick (Exotic)",
  20267. image: {
  20268. source: "./media/characters/artemis/dick-exotic.svg"
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(7.5, "feet"),
  20276. default: true
  20277. },
  20278. {
  20279. name: "Enlarged",
  20280. height: math.unit(12, "feet")
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20286. {
  20287. front: {
  20288. height: math.unit(5 + 3 / 12, "feet"),
  20289. weight: math.unit(160, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/kira/front.svg",
  20293. extra: 906 / 786,
  20294. bottom: 0.01
  20295. }
  20296. },
  20297. back: {
  20298. height: math.unit(5 + 3 / 12, "feet"),
  20299. weight: math.unit(160, "lb"),
  20300. name: "Back",
  20301. image: {
  20302. source: "./media/characters/kira/back.svg",
  20303. extra: 882 / 757,
  20304. bottom: 0.005
  20305. }
  20306. },
  20307. frontDressed: {
  20308. height: math.unit(5 + 3 / 12, "feet"),
  20309. weight: math.unit(160, "lb"),
  20310. name: "Front (Dressed)",
  20311. image: {
  20312. source: "./media/characters/kira/front-dressed.svg",
  20313. extra: 906 / 786,
  20314. bottom: 0.01
  20315. }
  20316. },
  20317. beans: {
  20318. height: math.unit(0.92, "feet"),
  20319. name: "Beans",
  20320. image: {
  20321. source: "./media/characters/kira/beans.svg"
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(5 + 3 / 12, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(5 + 4 / 12, "feet"),
  20338. weight: math.unit(145, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/scramble/front.svg",
  20342. extra: 763 / 727,
  20343. bottom: 0.05
  20344. }
  20345. },
  20346. back: {
  20347. height: math.unit(5 + 4 / 12, "feet"),
  20348. weight: math.unit(145, "lb"),
  20349. name: "Back",
  20350. image: {
  20351. source: "./media/characters/scramble/back.svg",
  20352. extra: 826 / 737,
  20353. bottom: 0.002
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(5 + 4 / 12, "feet"),
  20361. default: true
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20367. {
  20368. side: {
  20369. height: math.unit(6 + 2 / 12, "feet"),
  20370. weight: math.unit(190, "lb"),
  20371. name: "Side",
  20372. image: {
  20373. source: "./media/characters/biscuit/side.svg",
  20374. extra: 858 / 791,
  20375. bottom: 0.044
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(6 + 2 / 12, "feet"),
  20383. default: true
  20384. },
  20385. ]
  20386. ))
  20387. characterMakers.push(() => makeCharacter(
  20388. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20389. {
  20390. front: {
  20391. height: math.unit(5 + 2 / 12, "feet"),
  20392. weight: math.unit(120, "lb"),
  20393. name: "Front",
  20394. image: {
  20395. source: "./media/characters/poffin/front.svg",
  20396. extra: 786 / 680,
  20397. bottom: 0.005
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(5 + 2 / 12, "feet"),
  20405. default: true
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20411. {
  20412. front: {
  20413. height: math.unit(6 + 3 / 12, "feet"),
  20414. weight: math.unit(519, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/dhari/front.svg",
  20418. extra: 1048 / 946,
  20419. bottom: 0.015
  20420. }
  20421. },
  20422. back: {
  20423. height: math.unit(6 + 3 / 12, "feet"),
  20424. weight: math.unit(519, "lb"),
  20425. name: "Back",
  20426. image: {
  20427. source: "./media/characters/dhari/back.svg",
  20428. extra: 1048 / 931,
  20429. bottom: 0.005
  20430. }
  20431. },
  20432. frontDressed: {
  20433. height: math.unit(6 + 3 / 12, "feet"),
  20434. weight: math.unit(519, "lb"),
  20435. name: "Front (Dressed)",
  20436. image: {
  20437. source: "./media/characters/dhari/front-dressed.svg",
  20438. extra: 1713 / 1546,
  20439. bottom: 0.02
  20440. }
  20441. },
  20442. backDressed: {
  20443. height: math.unit(6 + 3 / 12, "feet"),
  20444. weight: math.unit(519, "lb"),
  20445. name: "Back (Dressed)",
  20446. image: {
  20447. source: "./media/characters/dhari/back-dressed.svg",
  20448. extra: 1699 / 1537,
  20449. bottom: 0.01
  20450. }
  20451. },
  20452. maw: {
  20453. height: math.unit(0.95, "feet"),
  20454. name: "Maw",
  20455. image: {
  20456. source: "./media/characters/dhari/maw.svg"
  20457. }
  20458. },
  20459. wereFront: {
  20460. height: math.unit(12 + 8 / 12, "feet"),
  20461. weight: math.unit(4000, "lb"),
  20462. name: "Front (Were)",
  20463. image: {
  20464. source: "./media/characters/dhari/were-front.svg",
  20465. extra: 1065 / 969,
  20466. bottom: 0.015
  20467. }
  20468. },
  20469. wereBack: {
  20470. height: math.unit(12 + 8 / 12, "feet"),
  20471. weight: math.unit(4000, "lb"),
  20472. name: "Back (Were)",
  20473. image: {
  20474. source: "./media/characters/dhari/were-back.svg",
  20475. extra: 1065 / 969,
  20476. bottom: 0.012
  20477. }
  20478. },
  20479. wereMaw: {
  20480. height: math.unit(0.625, "meters"),
  20481. name: "Maw (Were)",
  20482. image: {
  20483. source: "./media/characters/dhari/were-maw.svg"
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(6 + 3 / 12, "feet"),
  20491. default: true
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20497. {
  20498. anthro: {
  20499. height: math.unit(5 + 7 / 12, "feet"),
  20500. weight: math.unit(175, "lb"),
  20501. name: "Anthro",
  20502. image: {
  20503. source: "./media/characters/rena-dyne/anthro.svg",
  20504. extra: 1849 / 1785,
  20505. bottom: 0.005
  20506. }
  20507. },
  20508. taur: {
  20509. height: math.unit(15 + 6 / 12, "feet"),
  20510. weight: math.unit(8000, "lb"),
  20511. name: "Taur",
  20512. image: {
  20513. source: "./media/characters/rena-dyne/taur.svg",
  20514. extra: 2315 / 2234,
  20515. bottom: 0.033
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 7 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(8, "feet"),
  20532. weight: math.unit(600, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/weremeep/front.svg",
  20536. extra: 967 / 862,
  20537. bottom: 0.01
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(8, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Lorg",
  20549. height: math.unit(12, "feet")
  20550. },
  20551. {
  20552. name: "Oh Lawd She Comin'",
  20553. height: math.unit(20, "feet")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20559. {
  20560. front: {
  20561. height: math.unit(4, "feet"),
  20562. weight: math.unit(90, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/reza/front.svg",
  20566. extra: 1183 / 1111,
  20567. bottom: 0.017
  20568. }
  20569. },
  20570. back: {
  20571. height: math.unit(4, "feet"),
  20572. weight: math.unit(90, "lb"),
  20573. name: "Back",
  20574. image: {
  20575. source: "./media/characters/reza/back.svg",
  20576. extra: 1183 / 1111,
  20577. bottom: 0.01
  20578. }
  20579. },
  20580. drake: {
  20581. height: math.unit(30, "feet"),
  20582. weight: math.unit(246960, "lb"),
  20583. name: "Drake",
  20584. image: {
  20585. source: "./media/characters/reza/drake.svg",
  20586. extra: 2350 / 2024,
  20587. bottom: 60.7 / 2403
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(4, "feet"),
  20595. default: true
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20601. {
  20602. side: {
  20603. height: math.unit(15, "feet"),
  20604. weight: math.unit(14, "tons"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/athea/side.svg",
  20608. extra: 960 / 540,
  20609. bottom: 0.003
  20610. }
  20611. },
  20612. sitting: {
  20613. height: math.unit(6 * 2.85, "feet"),
  20614. weight: math.unit(14, "tons"),
  20615. name: "Sitting",
  20616. image: {
  20617. source: "./media/characters/athea/sitting.svg",
  20618. extra: 621 / 581,
  20619. bottom: 0.075
  20620. }
  20621. },
  20622. maw: {
  20623. height: math.unit(7.59498031496063, "feet"),
  20624. name: "Maw",
  20625. image: {
  20626. source: "./media/characters/athea/maw.svg"
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Lap Cat",
  20633. height: math.unit(2.5, "feet")
  20634. },
  20635. {
  20636. name: "Minimacro",
  20637. height: math.unit(15, "feet"),
  20638. default: true
  20639. },
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(120, "feet")
  20643. },
  20644. {
  20645. name: "Macro+",
  20646. height: math.unit(640, "feet")
  20647. },
  20648. {
  20649. name: "Colossus",
  20650. height: math.unit(2.2, "miles")
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(8 + 8 / 12, "feet"),
  20659. weight: math.unit(130, "kg"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/seroko/front.svg",
  20663. extra: 1385 / 1280,
  20664. bottom: 0.025
  20665. }
  20666. },
  20667. back: {
  20668. height: math.unit(8 + 8 / 12, "feet"),
  20669. weight: math.unit(130, "kg"),
  20670. name: "Back",
  20671. image: {
  20672. source: "./media/characters/seroko/back.svg",
  20673. extra: 1369 / 1238,
  20674. bottom: 0.018
  20675. }
  20676. },
  20677. frontDressed: {
  20678. height: math.unit(8 + 8 / 12, "feet"),
  20679. weight: math.unit(130, "kg"),
  20680. name: "Front (Dressed)",
  20681. image: {
  20682. source: "./media/characters/seroko/front-dressed.svg",
  20683. extra: 1366 / 1275,
  20684. bottom: 0.03
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(8 + 8 / 12, "feet"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(5.5, "feet"),
  20701. weight: math.unit(160, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/quatzi/front.svg",
  20705. extra: 2346 / 2242,
  20706. bottom: 0.015
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(5.5, "feet"),
  20714. default: true
  20715. },
  20716. {
  20717. name: "Big",
  20718. height: math.unit(7.7, "feet")
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(5 + 11 / 12, "feet"),
  20727. weight: math.unit(180, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/sen/front.svg",
  20731. extra: 1321 / 1254,
  20732. bottom: 0.015
  20733. }
  20734. },
  20735. side: {
  20736. height: math.unit(5 + 11 / 12, "feet"),
  20737. weight: math.unit(180, "lb"),
  20738. name: "Side",
  20739. image: {
  20740. source: "./media/characters/sen/side.svg",
  20741. extra: 1321 / 1254,
  20742. bottom: 0.007
  20743. }
  20744. },
  20745. back: {
  20746. height: math.unit(5 + 11 / 12, "feet"),
  20747. weight: math.unit(180, "lb"),
  20748. name: "Back",
  20749. image: {
  20750. source: "./media/characters/sen/back.svg",
  20751. extra: 1321 / 1254
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(5 + 11 / 12, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(166.6, "cm"),
  20768. weight: math.unit(66.6, "kg"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/fruity/front.svg",
  20772. extra: 1510 / 1386,
  20773. bottom: 0.04
  20774. }
  20775. },
  20776. back: {
  20777. height: math.unit(166.6, "cm"),
  20778. weight: math.unit(66.6, "lb"),
  20779. name: "Back",
  20780. image: {
  20781. source: "./media/characters/fruity/back.svg",
  20782. extra: 1563 / 1435,
  20783. bottom: 0.005
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(166.6, "cm"),
  20791. default: true
  20792. },
  20793. {
  20794. name: "Demonic",
  20795. height: math.unit(166.6, "feet")
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20801. {
  20802. side: {
  20803. height: math.unit(10, "feet"),
  20804. weight: math.unit(500, "lb"),
  20805. name: "Side",
  20806. image: {
  20807. source: "./media/characters/zost/side.svg",
  20808. extra: 966 / 880,
  20809. bottom: 0.075
  20810. }
  20811. },
  20812. mawFront: {
  20813. height: math.unit(1.08, "meters"),
  20814. name: "Maw (Front)",
  20815. image: {
  20816. source: "./media/characters/zost/maw-front.svg"
  20817. }
  20818. },
  20819. mawSide: {
  20820. height: math.unit(2.66, "feet"),
  20821. name: "Maw (Side)",
  20822. image: {
  20823. source: "./media/characters/zost/maw-side.svg"
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(10, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20837. {
  20838. front: {
  20839. height: math.unit(5 + 4 / 12, "feet"),
  20840. weight: math.unit(120, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/luci/front.svg",
  20844. extra: 1985 / 1884,
  20845. bottom: 0.04
  20846. }
  20847. },
  20848. back: {
  20849. height: math.unit(5 + 4 / 12, "feet"),
  20850. weight: math.unit(120, "lb"),
  20851. name: "Back",
  20852. image: {
  20853. source: "./media/characters/luci/back.svg",
  20854. extra: 1892 / 1791,
  20855. bottom: 0.002
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(5 + 4 / 12, "feet"),
  20863. default: true
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20869. {
  20870. front: {
  20871. height: math.unit(1500, "feet"),
  20872. weight: math.unit(3.8e6, "tons"),
  20873. name: "Front",
  20874. image: {
  20875. source: "./media/characters/2th/front.svg",
  20876. extra: 3489 / 3350,
  20877. bottom: 0.1
  20878. }
  20879. },
  20880. foot: {
  20881. height: math.unit(461, "feet"),
  20882. name: "Foot",
  20883. image: {
  20884. source: "./media/characters/2th/foot.svg"
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "\"Micro\"",
  20891. height: math.unit(15 + 7 / 12, "feet")
  20892. },
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(1500, "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(5000, "feet")
  20901. },
  20902. {
  20903. name: "Megamacro",
  20904. height: math.unit(15, "miles")
  20905. },
  20906. {
  20907. name: "Gigamacro",
  20908. height: math.unit(4000, "miles")
  20909. },
  20910. {
  20911. name: "Galactic",
  20912. height: math.unit(50, "AU")
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(5 + 6 / 12, "feet"),
  20921. weight: math.unit(220, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/amethyst/front.svg",
  20925. extra: 2078 / 2040,
  20926. bottom: 0.045
  20927. }
  20928. },
  20929. back: {
  20930. height: math.unit(5 + 6 / 12, "feet"),
  20931. weight: math.unit(220, "lb"),
  20932. name: "Back",
  20933. image: {
  20934. source: "./media/characters/amethyst/back.svg",
  20935. extra: 2021 / 1989,
  20936. bottom: 0.02
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(5 + 6 / 12, "feet"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(4 + 11 / 12, "feet"),
  20953. weight: math.unit(120, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/yumi-akiyama/front.svg",
  20957. extra: 1327 / 1235,
  20958. bottom: 0.02
  20959. }
  20960. },
  20961. back: {
  20962. height: math.unit(4 + 11 / 12, "feet"),
  20963. weight: math.unit(120, "lb"),
  20964. name: "Back",
  20965. image: {
  20966. source: "./media/characters/yumi-akiyama/back.svg",
  20967. extra: 1287 / 1245,
  20968. bottom: 0.002
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Galactic",
  20975. height: math.unit(50, "galaxies"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Universal",
  20980. height: math.unit(100, "universes")
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(8, "feet"),
  20989. weight: math.unit(500, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/rifter-yrmori/front.svg",
  20993. extra: 1180 / 1125,
  20994. bottom: 0.02
  20995. }
  20996. },
  20997. back: {
  20998. height: math.unit(8, "feet"),
  20999. weight: math.unit(500, "lb"),
  21000. name: "Back",
  21001. image: {
  21002. source: "./media/characters/rifter-yrmori/back.svg",
  21003. extra: 1190 / 1145,
  21004. bottom: 0.001
  21005. }
  21006. },
  21007. wings: {
  21008. height: math.unit(7.75, "feet"),
  21009. weight: math.unit(500, "lb"),
  21010. name: "Wings",
  21011. image: {
  21012. source: "./media/characters/rifter-yrmori/wings.svg",
  21013. extra: 1357 / 1285
  21014. }
  21015. },
  21016. maw: {
  21017. height: math.unit(0.8, "feet"),
  21018. name: "Maw",
  21019. image: {
  21020. source: "./media/characters/rifter-yrmori/maw.svg"
  21021. }
  21022. },
  21023. mawfront: {
  21024. height: math.unit(1.45, "feet"),
  21025. name: "Maw (Front)",
  21026. image: {
  21027. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(8, "feet"),
  21035. default: true
  21036. },
  21037. {
  21038. name: "Macro",
  21039. height: math.unit(42, "meters")
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21045. {
  21046. were: {
  21047. height: math.unit(25 + 6 / 12, "feet"),
  21048. weight: math.unit(10000, "lb"),
  21049. name: "Were",
  21050. image: {
  21051. source: "./media/characters/tahajin/were.svg",
  21052. extra: 801 / 770,
  21053. bottom: 0.042
  21054. }
  21055. },
  21056. aquatic: {
  21057. height: math.unit(6 + 4 / 12, "feet"),
  21058. weight: math.unit(160, "lb"),
  21059. name: "Aquatic",
  21060. image: {
  21061. source: "./media/characters/tahajin/aquatic.svg",
  21062. extra: 572 / 542,
  21063. bottom: 0.04
  21064. }
  21065. },
  21066. chow: {
  21067. height: math.unit(8 + 11 / 12, "feet"),
  21068. weight: math.unit(450, "lb"),
  21069. name: "Chow",
  21070. image: {
  21071. source: "./media/characters/tahajin/chow.svg",
  21072. extra: 660 / 640,
  21073. bottom: 0.015
  21074. }
  21075. },
  21076. demiNaga: {
  21077. height: math.unit(6 + 8 / 12, "feet"),
  21078. weight: math.unit(300, "lb"),
  21079. name: "Demi Naga",
  21080. image: {
  21081. source: "./media/characters/tahajin/demi-naga.svg",
  21082. extra: 643 / 615,
  21083. bottom: 0.1
  21084. }
  21085. },
  21086. data: {
  21087. height: math.unit(5, "inches"),
  21088. weight: math.unit(0.1, "lb"),
  21089. name: "Data",
  21090. image: {
  21091. source: "./media/characters/tahajin/data.svg"
  21092. }
  21093. },
  21094. fluu: {
  21095. height: math.unit(5 + 7 / 12, "feet"),
  21096. weight: math.unit(140, "lb"),
  21097. name: "Fluu",
  21098. image: {
  21099. source: "./media/characters/tahajin/fluu.svg",
  21100. extra: 628 / 592,
  21101. bottom: 0.02
  21102. }
  21103. },
  21104. starWarrior: {
  21105. height: math.unit(4 + 5 / 12, "feet"),
  21106. weight: math.unit(50, "lb"),
  21107. name: "Star Warrior",
  21108. image: {
  21109. source: "./media/characters/tahajin/star-warrior.svg"
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(25 + 6 / 12, "feet"),
  21117. default: true
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21123. {
  21124. front: {
  21125. height: math.unit(8, "feet"),
  21126. weight: math.unit(350, "lb"),
  21127. name: "Front",
  21128. image: {
  21129. source: "./media/characters/gabira/front.svg",
  21130. extra: 608 / 580,
  21131. bottom: 0.03
  21132. }
  21133. },
  21134. back: {
  21135. height: math.unit(8, "feet"),
  21136. weight: math.unit(350, "lb"),
  21137. name: "Back",
  21138. image: {
  21139. source: "./media/characters/gabira/back.svg",
  21140. extra: 608 / 580,
  21141. bottom: 0.03
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Normal",
  21148. height: math.unit(8, "feet"),
  21149. default: true
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(5 + 3 / 12, "feet"),
  21158. weight: math.unit(137, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/sasha-katraine/front.svg",
  21162. bottom: 0.045
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Micro",
  21169. height: math.unit(5, "inches")
  21170. },
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(5 + 3 / 12, "feet"),
  21174. default: true
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21180. {
  21181. side: {
  21182. height: math.unit(4, "inches"),
  21183. weight: math.unit(200, "grams"),
  21184. name: "Side",
  21185. image: {
  21186. source: "./media/characters/der/side.svg",
  21187. extra: 719 / 400,
  21188. bottom: 30.6 / 749.9187
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Micro",
  21195. height: math.unit(4, "inches"),
  21196. default: true
  21197. },
  21198. ]
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21202. {
  21203. side: {
  21204. height: math.unit(30, "meters"),
  21205. weight: math.unit(700, "tonnes"),
  21206. name: "Side",
  21207. image: {
  21208. source: "./media/characters/fixerdragon/side.svg",
  21209. extra: (1293.0514 - 116.03) / 1106.86,
  21210. bottom: 116.03 / 1293.0514
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Planck",
  21217. height: math.unit(1.6e-35, "meters")
  21218. },
  21219. {
  21220. name: "Micro",
  21221. height: math.unit(0.4, "meters")
  21222. },
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(30, "meters"),
  21226. default: true
  21227. },
  21228. {
  21229. name: "Megamacro",
  21230. height: math.unit(1.2, "megameters")
  21231. },
  21232. {
  21233. name: "Teramacro",
  21234. height: math.unit(130, "terameters")
  21235. },
  21236. {
  21237. name: "Yottamacro",
  21238. height: math.unit(6200, "yottameters")
  21239. },
  21240. ]
  21241. ));
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21244. {
  21245. front: {
  21246. height: math.unit(8, "feet"),
  21247. weight: math.unit(250, "lb"),
  21248. name: "Front",
  21249. image: {
  21250. source: "./media/characters/kite/front.svg",
  21251. extra: 2796 / 2659,
  21252. bottom: 0.002
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(8, "feet"),
  21260. default: true
  21261. },
  21262. {
  21263. name: "Macro",
  21264. height: math.unit(360, "feet")
  21265. },
  21266. {
  21267. name: "Megamacro",
  21268. height: math.unit(1500, "feet")
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(5 + 10 / 12, "feet"),
  21277. weight: math.unit(150, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/poojawa-vynar/front.svg",
  21281. extra: (1506.1547 - 55) / 1356.6,
  21282. bottom: 55 / 1506.1547
  21283. }
  21284. },
  21285. frontTailless: {
  21286. height: math.unit(5 + 10 / 12, "feet"),
  21287. weight: math.unit(150, "lb"),
  21288. name: "Front (Tailless)",
  21289. image: {
  21290. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21291. extra: (1506.1547 - 55) / 1356.6,
  21292. bottom: 55 / 1506.1547
  21293. }
  21294. },
  21295. },
  21296. [
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(5 + 10 / 12, "feet"),
  21300. default: true
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(293, "meters"),
  21309. weight: math.unit(70400, "tons"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/violette/front.svg",
  21313. extra: 1227 / 1180,
  21314. bottom: 0.005
  21315. }
  21316. },
  21317. back: {
  21318. height: math.unit(293, "meters"),
  21319. weight: math.unit(70400, "tons"),
  21320. name: "Back",
  21321. image: {
  21322. source: "./media/characters/violette/back.svg",
  21323. extra: 1227 / 1180,
  21324. bottom: 0.005
  21325. }
  21326. },
  21327. },
  21328. [
  21329. {
  21330. name: "Macro",
  21331. height: math.unit(293, "meters"),
  21332. default: true
  21333. },
  21334. ]
  21335. ))
  21336. characterMakers.push(() => makeCharacter(
  21337. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21338. {
  21339. front: {
  21340. height: math.unit(1050, "feet"),
  21341. weight: math.unit(200000, "tons"),
  21342. name: "Front",
  21343. image: {
  21344. source: "./media/characters/alessandra/front.svg",
  21345. extra: 960 / 912,
  21346. bottom: 0.06
  21347. }
  21348. },
  21349. },
  21350. [
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(1050, "feet")
  21354. },
  21355. {
  21356. name: "Macro+",
  21357. height: math.unit(900, "meters"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21364. {
  21365. front: {
  21366. height: math.unit(5, "feet"),
  21367. weight: math.unit(187, "lb"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/person/front.svg",
  21371. extra: 3087 / 2945,
  21372. bottom: 91 / 3181
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Micro",
  21379. height: math.unit(3, "inches")
  21380. },
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(5, "feet"),
  21384. default: true
  21385. },
  21386. {
  21387. name: "Macro",
  21388. height: math.unit(90, "feet")
  21389. },
  21390. {
  21391. name: "Max Size",
  21392. height: math.unit(280, "feet")
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(4.5, "meters"),
  21401. weight: math.unit(3200, "lb"),
  21402. name: "Front",
  21403. image: {
  21404. source: "./media/characters/ty/front.svg",
  21405. extra: 1038 / 960,
  21406. bottom: 31.156 / 1068
  21407. }
  21408. },
  21409. back: {
  21410. height: math.unit(4.5, "meters"),
  21411. weight: math.unit(3200, "lb"),
  21412. name: "Back",
  21413. image: {
  21414. source: "./media/characters/ty/back.svg",
  21415. extra: 1044 / 966,
  21416. bottom: 7.48 / 1049
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(4.5, "meters"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 4 / 12, "feet"),
  21433. weight: math.unit(115, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/rocky/front.svg",
  21437. extra: 1012 / 975,
  21438. bottom: 54 / 1066
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(5 + 4 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21452. {
  21453. upright: {
  21454. height: math.unit(6, "meters"),
  21455. weight: math.unit(4000, "kg"),
  21456. name: "Upright",
  21457. image: {
  21458. source: "./media/characters/ruin/upright.svg",
  21459. extra: 668 / 661,
  21460. bottom: 42 / 799.8396
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(6, "meters"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(5, "feet"),
  21477. weight: math.unit(106, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/robin/front.svg",
  21481. extra: 862 / 799,
  21482. bottom: 42.4 / 914.8856
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Normal",
  21489. height: math.unit(5, "feet"),
  21490. default: true
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21496. {
  21497. side: {
  21498. height: math.unit(3, "feet"),
  21499. weight: math.unit(225, "lb"),
  21500. name: "Side",
  21501. image: {
  21502. source: "./media/characters/saian/side.svg",
  21503. extra: 566 / 356,
  21504. bottom: 79.7 / 643
  21505. }
  21506. },
  21507. maw: {
  21508. height: math.unit(2.85, "feet"),
  21509. name: "Maw",
  21510. image: {
  21511. source: "./media/characters/saian/maw.svg"
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(3, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21525. {
  21526. side: {
  21527. height: math.unit(8, "feet"),
  21528. weight: math.unit(300, "lb"),
  21529. name: "Side",
  21530. image: {
  21531. source: "./media/characters/equus-silvermane/side.svg",
  21532. extra: 2176 / 2050,
  21533. bottom: 65.7 / 2245
  21534. }
  21535. },
  21536. front: {
  21537. height: math.unit(8, "feet"),
  21538. weight: math.unit(300, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/equus-silvermane/front.svg",
  21542. extra: 4633 / 4400,
  21543. bottom: 71.3 / 4706.915
  21544. }
  21545. },
  21546. sideStepping: {
  21547. height: math.unit(8, "feet"),
  21548. weight: math.unit(300, "lb"),
  21549. name: "Side (Stepping)",
  21550. image: {
  21551. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21552. extra: 1968 / 1860,
  21553. bottom: 16.4 / 1989
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(8, "feet")
  21561. },
  21562. {
  21563. name: "Minimacro",
  21564. height: math.unit(75, "feet"),
  21565. default: true
  21566. },
  21567. {
  21568. name: "Macro",
  21569. height: math.unit(150, "feet")
  21570. },
  21571. {
  21572. name: "Macro+",
  21573. height: math.unit(1000, "feet")
  21574. },
  21575. {
  21576. name: "Megamacro",
  21577. height: math.unit(1, "mile")
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21583. {
  21584. side: {
  21585. height: math.unit(20, "feet"),
  21586. weight: math.unit(30000, "kg"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/windar/side.svg",
  21590. extra: 1491 / 1248,
  21591. bottom: 82.56 / 1568
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(20, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21605. {
  21606. side: {
  21607. height: math.unit(15.66, "feet"),
  21608. weight: math.unit(150, "lb"),
  21609. name: "Side",
  21610. image: {
  21611. source: "./media/characters/melody/side.svg",
  21612. extra: 1097 / 944,
  21613. bottom: 11.8 / 1109
  21614. }
  21615. },
  21616. sideOutfit: {
  21617. height: math.unit(15.66, "feet"),
  21618. weight: math.unit(150, "lb"),
  21619. name: "Side (Outfit)",
  21620. image: {
  21621. source: "./media/characters/melody/side-outfit.svg",
  21622. extra: 1097 / 944,
  21623. bottom: 11.8 / 1109
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Normal",
  21630. height: math.unit(15.66, "feet"),
  21631. default: true
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(8, "feet"),
  21640. weight: math.unit(325, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/windera/front.svg",
  21644. extra: 3180 / 2845,
  21645. bottom: 178 / 3365
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(8, "feet"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21659. {
  21660. front: {
  21661. height: math.unit(28.75, "feet"),
  21662. weight: math.unit(2000, "kg"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/sonear/front.svg",
  21666. extra: 1041.1 / 964.9,
  21667. bottom: 53.7 / 1096.6
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(28.75, "feet"),
  21675. default: true
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21681. {
  21682. side: {
  21683. height: math.unit(25.5, "feet"),
  21684. weight: math.unit(23000, "kg"),
  21685. name: "Side",
  21686. image: {
  21687. source: "./media/characters/kanara/side.svg"
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(25.5, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21701. {
  21702. side: {
  21703. height: math.unit(10, "feet"),
  21704. weight: math.unit(1000, "kg"),
  21705. name: "Side",
  21706. image: {
  21707. source: "./media/characters/ereus/side.svg",
  21708. extra: 1157 / 959,
  21709. bottom: 153 / 1312.5
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(10, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21723. {
  21724. side: {
  21725. height: math.unit(4.5, "feet"),
  21726. weight: math.unit(500, "lb"),
  21727. name: "Side",
  21728. image: {
  21729. source: "./media/characters/e-ter/side.svg",
  21730. extra: 1550 / 1248,
  21731. bottom: 146 / 1694
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(4.5, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21745. {
  21746. side: {
  21747. height: math.unit(9.7, "feet"),
  21748. weight: math.unit(4000, "kg"),
  21749. name: "Side",
  21750. image: {
  21751. source: "./media/characters/yamie/side.svg"
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(9.7, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(50, "feet"),
  21768. weight: math.unit(50000, "kg"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/anders/front.svg",
  21772. extra: 570 / 539,
  21773. bottom: 14.7 / 586.7
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Large",
  21780. height: math.unit(50, "feet")
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(2000, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Megamacro",
  21789. height: math.unit(12, "miles")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(7 + 2 / 12, "feet"),
  21798. weight: math.unit(300, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/reban/front.svg",
  21802. extra: 516 / 487,
  21803. bottom: 42.82 / 558.356
  21804. }
  21805. },
  21806. dick: {
  21807. height: math.unit(7 / 5, "feet"),
  21808. name: "Dick",
  21809. image: {
  21810. source: "./media/characters/reban/dick.svg"
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Natural Height",
  21817. height: math.unit(7 + 2 / 12, "feet")
  21818. },
  21819. {
  21820. name: "Macro",
  21821. height: math.unit(500, "feet"),
  21822. default: true
  21823. },
  21824. {
  21825. name: "Canon Height",
  21826. height: math.unit(50, "AU")
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(6, "feet"),
  21835. weight: math.unit(150, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/terrance-keayes/front.svg",
  21839. extra: 1.005,
  21840. bottom: 151 / 1615
  21841. }
  21842. },
  21843. side: {
  21844. height: math.unit(6, "feet"),
  21845. weight: math.unit(150, "lb"),
  21846. name: "Side",
  21847. image: {
  21848. source: "./media/characters/terrance-keayes/side.svg",
  21849. extra: 1.005,
  21850. bottom: 129.4 / 1544
  21851. }
  21852. },
  21853. back: {
  21854. height: math.unit(6, "feet"),
  21855. weight: math.unit(150, "lb"),
  21856. name: "Back",
  21857. image: {
  21858. source: "./media/characters/terrance-keayes/back.svg",
  21859. extra: 1.005,
  21860. bottom: 58.4 / 1557.3
  21861. }
  21862. },
  21863. dick: {
  21864. height: math.unit(6 * 0.208, "feet"),
  21865. name: "Dick",
  21866. image: {
  21867. source: "./media/characters/terrance-keayes/dick.svg"
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Canon Height",
  21874. height: math.unit(35, "miles"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/ofelia/front.svg",
  21888. extra: 546 / 541,
  21889. bottom: 39 / 583
  21890. }
  21891. },
  21892. back: {
  21893. height: math.unit(6, "feet"),
  21894. weight: math.unit(150, "lb"),
  21895. name: "Back",
  21896. image: {
  21897. source: "./media/characters/ofelia/back.svg",
  21898. extra: 564 / 559.5,
  21899. bottom: 8.69 / 573.02
  21900. }
  21901. },
  21902. maw: {
  21903. height: math.unit(1, "feet"),
  21904. name: "Maw",
  21905. image: {
  21906. source: "./media/characters/ofelia/maw.svg"
  21907. }
  21908. },
  21909. foot: {
  21910. height: math.unit(1.949, "feet"),
  21911. name: "Foot",
  21912. image: {
  21913. source: "./media/characters/ofelia/foot.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Canon Height",
  21920. height: math.unit(2000, "miles"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(6, "feet"),
  21930. weight: math.unit(150, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/samuel/front.svg",
  21934. extra: 265 / 258,
  21935. bottom: 2 / 266.1566
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Macro",
  21942. height: math.unit(100, "feet"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Full Size",
  21947. height: math.unit(1000, "miles")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(6, "feet"),
  21956. weight: math.unit(300, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/beishir-kiel/front.svg",
  21960. extra: 569 / 547,
  21961. bottom: 41.9 / 609
  21962. }
  21963. },
  21964. maw: {
  21965. height: math.unit(6 * 0.202, "feet"),
  21966. name: "Maw",
  21967. image: {
  21968. source: "./media/characters/beishir-kiel/maw.svg"
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Macro",
  21975. height: math.unit(300, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(5 + 7/12, "feet"),
  21985. weight: math.unit(120, "lb"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/logan-grey/front.svg",
  21989. extra: 1836/1738,
  21990. bottom: 108/1944
  21991. }
  21992. },
  21993. back: {
  21994. height: math.unit(5 + 7/12, "feet"),
  21995. weight: math.unit(120, "lb"),
  21996. name: "Back",
  21997. image: {
  21998. source: "./media/characters/logan-grey/back.svg",
  21999. extra: 1880/1794,
  22000. bottom: 24/1904
  22001. }
  22002. },
  22003. frontSfw: {
  22004. height: math.unit(5 + 7/12, "feet"),
  22005. weight: math.unit(120, "lb"),
  22006. name: "Front (SFW)",
  22007. image: {
  22008. source: "./media/characters/logan-grey/front-sfw.svg",
  22009. extra: 1836/1738,
  22010. bottom: 108/1944
  22011. }
  22012. },
  22013. backSfw: {
  22014. height: math.unit(5 + 7/12, "feet"),
  22015. weight: math.unit(120, "lb"),
  22016. name: "Back (SFW)",
  22017. image: {
  22018. source: "./media/characters/logan-grey/back-sfw.svg",
  22019. extra: 1880/1794,
  22020. bottom: 24/1904
  22021. }
  22022. },
  22023. hands: {
  22024. height: math.unit(0.84, "feet"),
  22025. name: "Hands",
  22026. image: {
  22027. source: "./media/characters/logan-grey/hands.svg"
  22028. }
  22029. },
  22030. paws: {
  22031. height: math.unit(0.72, "feet"),
  22032. name: "Paws",
  22033. image: {
  22034. source: "./media/characters/logan-grey/paws.svg"
  22035. }
  22036. },
  22037. cock: {
  22038. height: math.unit(1.45, "feet"),
  22039. name: "Cock",
  22040. image: {
  22041. source: "./media/characters/logan-grey/cock.svg"
  22042. }
  22043. },
  22044. cockAlt: {
  22045. height: math.unit(1.437, "feet"),
  22046. name: "Cock (alt)",
  22047. image: {
  22048. source: "./media/characters/logan-grey/cock-alt.svg"
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Normal",
  22055. height: math.unit(5 + 8 / 12, "feet")
  22056. },
  22057. {
  22058. name: "The 500 Foot Femboy",
  22059. height: math.unit(500, "feet"),
  22060. default: true
  22061. },
  22062. {
  22063. name: "Megmacro",
  22064. height: math.unit(20, "miles")
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(8 + 2 / 12, "feet"),
  22073. weight: math.unit(275, "lb"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/draganta/front.svg",
  22077. extra: 1177 / 1135,
  22078. bottom: 33.46 / 1212.1
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(8 + 6 / 12, "feet"),
  22086. default: true
  22087. },
  22088. {
  22089. name: "Macro",
  22090. height: math.unit(150, "feet")
  22091. },
  22092. {
  22093. name: "Megamacro",
  22094. height: math.unit(1000, "miles")
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(1.72, "m"),
  22103. weight: math.unit(80, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/voski/front.svg",
  22107. extra: 2076.22 / 2022.4,
  22108. bottom: 102.7 / 2177.3866
  22109. }
  22110. },
  22111. frontNsfw: {
  22112. height: math.unit(1.72, "m"),
  22113. weight: math.unit(80, "lb"),
  22114. name: "Front (NSFW)",
  22115. image: {
  22116. source: "./media/characters/voski/front-nsfw.svg",
  22117. extra: 2076.22 / 2022.4,
  22118. bottom: 102.7 / 2177.3866
  22119. }
  22120. },
  22121. back: {
  22122. height: math.unit(1.72, "m"),
  22123. weight: math.unit(80, "lb"),
  22124. name: "Back",
  22125. image: {
  22126. source: "./media/characters/voski/back.svg",
  22127. extra: 2104 / 2051,
  22128. bottom: 10.45 / 2113.63
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(1.72, "m")
  22136. },
  22137. {
  22138. name: "Macro",
  22139. height: math.unit(55, "m"),
  22140. default: true
  22141. },
  22142. {
  22143. name: "Macro+",
  22144. height: math.unit(300, "m")
  22145. },
  22146. {
  22147. name: "Macro++",
  22148. height: math.unit(700, "m")
  22149. },
  22150. {
  22151. name: "Macro+++",
  22152. height: math.unit(4500, "m")
  22153. },
  22154. {
  22155. name: "Macro++++",
  22156. height: math.unit(45, "km")
  22157. },
  22158. {
  22159. name: "Macro+++++",
  22160. height: math.unit(1220, "km")
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22166. {
  22167. front: {
  22168. height: math.unit(2.3, "m"),
  22169. weight: math.unit(304, "kg"),
  22170. name: "Front",
  22171. image: {
  22172. source: "./media/characters/icowom-lee/front.svg",
  22173. extra: 985 / 955,
  22174. bottom: 25.4 / 1012
  22175. }
  22176. },
  22177. fronttentacles: {
  22178. height: math.unit(2.3, "m"),
  22179. weight: math.unit(304, "kg"),
  22180. name: "Front-tentacles",
  22181. image: {
  22182. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22183. extra: 985 / 955,
  22184. bottom: 25.4 / 1012
  22185. }
  22186. },
  22187. back: {
  22188. height: math.unit(2.3, "m"),
  22189. weight: math.unit(304, "kg"),
  22190. name: "Back",
  22191. image: {
  22192. source: "./media/characters/icowom-lee/back.svg",
  22193. extra: 975 / 954,
  22194. bottom: 9.5 / 985
  22195. }
  22196. },
  22197. backtentacles: {
  22198. height: math.unit(2.3, "m"),
  22199. weight: math.unit(304, "kg"),
  22200. name: "Back-tentacles",
  22201. image: {
  22202. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22203. extra: 975 / 954,
  22204. bottom: 9.5 / 985
  22205. }
  22206. },
  22207. frontDressed: {
  22208. height: math.unit(2.3, "m"),
  22209. weight: math.unit(304, "kg"),
  22210. name: "Front (Dressed)",
  22211. image: {
  22212. source: "./media/characters/icowom-lee/front-dressed.svg",
  22213. extra: 3076 / 2933,
  22214. bottom: 51.4 / 3125.1889
  22215. }
  22216. },
  22217. rump: {
  22218. height: math.unit(0.776, "meters"),
  22219. name: "Rump",
  22220. image: {
  22221. source: "./media/characters/icowom-lee/rump.svg"
  22222. }
  22223. },
  22224. genitals: {
  22225. height: math.unit(0.78, "meters"),
  22226. name: "Genitals",
  22227. image: {
  22228. source: "./media/characters/icowom-lee/genitals.svg"
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(2.3, "meters"),
  22236. default: true
  22237. },
  22238. {
  22239. name: "Macro",
  22240. height: math.unit(94, "meters"),
  22241. default: true
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22247. {
  22248. front: {
  22249. height: math.unit(22, "meters"),
  22250. weight: math.unit(21000, "kg"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/shock-diamond/front.svg",
  22254. extra: 2204 / 2053,
  22255. bottom: 65 / 2239.47
  22256. }
  22257. },
  22258. frontNude: {
  22259. height: math.unit(22, "meters"),
  22260. weight: math.unit(21000, "kg"),
  22261. name: "Front (Nude)",
  22262. image: {
  22263. source: "./media/characters/shock-diamond/front-nude.svg",
  22264. extra: 2514 / 2285,
  22265. bottom: 13 / 2527.56
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(3, "meters")
  22273. },
  22274. {
  22275. name: "Macro",
  22276. height: math.unit(22, "meters"),
  22277. default: true
  22278. },
  22279. ]
  22280. ))
  22281. characterMakers.push(() => makeCharacter(
  22282. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22283. {
  22284. front: {
  22285. height: math.unit(5 + 4 / 12, "feet"),
  22286. weight: math.unit(120, "lb"),
  22287. name: "Front",
  22288. image: {
  22289. source: "./media/characters/rory/front.svg",
  22290. extra: 1318/1241,
  22291. bottom: 42/1360
  22292. }
  22293. },
  22294. back: {
  22295. height: math.unit(5 + 4 / 12, "feet"),
  22296. weight: math.unit(120, "lb"),
  22297. name: "Back",
  22298. image: {
  22299. source: "./media/characters/rory/back.svg",
  22300. extra: 1318/1241,
  22301. bottom: 42/1360
  22302. }
  22303. },
  22304. butt: {
  22305. height: math.unit(1.74, "feet"),
  22306. name: "Butt",
  22307. image: {
  22308. source: "./media/characters/rory/butt.svg"
  22309. }
  22310. },
  22311. dick: {
  22312. height: math.unit(1.02, "feet"),
  22313. name: "Dick",
  22314. image: {
  22315. source: "./media/characters/rory/dick.svg"
  22316. }
  22317. },
  22318. paws: {
  22319. height: math.unit(1, "feet"),
  22320. name: "Paws",
  22321. image: {
  22322. source: "./media/characters/rory/paws.svg"
  22323. }
  22324. },
  22325. frontAlt: {
  22326. height: math.unit(5 + 4 / 12, "feet"),
  22327. weight: math.unit(120, "lb"),
  22328. name: "Front (Alt)",
  22329. image: {
  22330. source: "./media/characters/rory/front-alt.svg",
  22331. extra: 589 / 556,
  22332. bottom: 45.7 / 635.76
  22333. }
  22334. },
  22335. frontAltNude: {
  22336. height: math.unit(5 + 4 / 12, "feet"),
  22337. weight: math.unit(120, "lb"),
  22338. name: "Front (Alt, Nude)",
  22339. image: {
  22340. source: "./media/characters/rory/front-alt-nude.svg",
  22341. extra: 589 / 556,
  22342. bottom: 45.7 / 635.76
  22343. }
  22344. },
  22345. side: {
  22346. height: math.unit(5 + 4 / 12, "feet"),
  22347. weight: math.unit(120, "lb"),
  22348. name: "Side",
  22349. image: {
  22350. source: "./media/characters/rory/side.svg",
  22351. extra: 597 / 564,
  22352. bottom: 55 / 653
  22353. }
  22354. },
  22355. backAlt: {
  22356. height: math.unit(5 + 4 / 12, "feet"),
  22357. weight: math.unit(120, "lb"),
  22358. name: "Back (Alt)",
  22359. image: {
  22360. source: "./media/characters/rory/back-alt.svg",
  22361. extra: 620 / 585,
  22362. bottom: 8.86 / 630.43
  22363. }
  22364. },
  22365. dickAlt: {
  22366. height: math.unit(0.86, "feet"),
  22367. name: "Dick (Alt)",
  22368. image: {
  22369. source: "./media/characters/rory/dick-alt.svg"
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(5 + 4 / 12, "feet"),
  22377. default: true
  22378. },
  22379. {
  22380. name: "Macro",
  22381. height: math.unit(100, "feet")
  22382. },
  22383. {
  22384. name: "Macro+",
  22385. height: math.unit(140, "feet")
  22386. },
  22387. {
  22388. name: "Macro++",
  22389. height: math.unit(300, "feet")
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(5 + 9 / 12, "feet"),
  22398. weight: math.unit(190, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/sprisk/front.svg",
  22402. extra: 1225 / 1180,
  22403. bottom: 42.7 / 1266.4
  22404. }
  22405. },
  22406. frontNsfw: {
  22407. height: math.unit(5 + 9 / 12, "feet"),
  22408. weight: math.unit(190, "lb"),
  22409. name: "Front (NSFW)",
  22410. image: {
  22411. source: "./media/characters/sprisk/front-nsfw.svg",
  22412. extra: 1225 / 1180,
  22413. bottom: 42.7 / 1266.4
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(5 + 9 / 12, "feet"),
  22418. weight: math.unit(190, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/sprisk/back.svg",
  22422. extra: 1247 / 1200,
  22423. bottom: 5.6 / 1253.04
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Tiny",
  22430. height: math.unit(2, "inches")
  22431. },
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(5 + 9 / 12, "feet"),
  22435. default: true
  22436. },
  22437. {
  22438. name: "Mini Macro",
  22439. height: math.unit(18, "feet")
  22440. },
  22441. {
  22442. name: "Macro",
  22443. height: math.unit(100, "feet")
  22444. },
  22445. {
  22446. name: "MACRO",
  22447. height: math.unit(50, "miles")
  22448. },
  22449. {
  22450. name: "M A C R O",
  22451. height: math.unit(300, "miles")
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22457. {
  22458. side: {
  22459. height: math.unit(15.6, "meters"),
  22460. weight: math.unit(700000, "kg"),
  22461. name: "Side",
  22462. image: {
  22463. source: "./media/characters/bunsen/side.svg",
  22464. extra: 1644 / 358
  22465. }
  22466. },
  22467. foot: {
  22468. height: math.unit(1.611 * 1644 / 358, "meter"),
  22469. name: "Foot",
  22470. image: {
  22471. source: "./media/characters/bunsen/foot.svg"
  22472. }
  22473. },
  22474. },
  22475. [
  22476. {
  22477. name: "Small",
  22478. height: math.unit(10, "feet")
  22479. },
  22480. {
  22481. name: "Normal",
  22482. height: math.unit(15.6, "meters"),
  22483. default: true
  22484. },
  22485. ]
  22486. ))
  22487. characterMakers.push(() => makeCharacter(
  22488. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22489. {
  22490. front: {
  22491. height: math.unit(4 + 11 / 12, "feet"),
  22492. weight: math.unit(140, "lb"),
  22493. name: "Front",
  22494. image: {
  22495. source: "./media/characters/sesh/front.svg",
  22496. extra: 3420 / 3231,
  22497. bottom: 72 / 3949.5
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(4 + 11 / 12, "feet")
  22505. },
  22506. {
  22507. name: "Grown",
  22508. height: math.unit(15, "feet"),
  22509. default: true
  22510. },
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(1500, "feet")
  22514. },
  22515. {
  22516. name: "Megamacro",
  22517. height: math.unit(30, "miles")
  22518. },
  22519. {
  22520. name: "Continental",
  22521. height: math.unit(3000, "miles")
  22522. },
  22523. {
  22524. name: "Gravity Mass",
  22525. height: math.unit(300000, "miles")
  22526. },
  22527. {
  22528. name: "Planet Buster",
  22529. height: math.unit(30000000, "miles")
  22530. },
  22531. {
  22532. name: "Big",
  22533. height: math.unit(3000000000, "miles")
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(9, "feet"),
  22542. weight: math.unit(350, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/pepper/front.svg",
  22546. extra: 1448 / 1312,
  22547. bottom: 9.4 / 1457.88
  22548. }
  22549. },
  22550. back: {
  22551. height: math.unit(9, "feet"),
  22552. weight: math.unit(350, "lb"),
  22553. name: "Back",
  22554. image: {
  22555. source: "./media/characters/pepper/back.svg",
  22556. extra: 1423 / 1300,
  22557. bottom: 4.6 / 1429
  22558. }
  22559. },
  22560. maw: {
  22561. height: math.unit(0.932, "feet"),
  22562. name: "Maw",
  22563. image: {
  22564. source: "./media/characters/pepper/maw.svg"
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(9, "feet"),
  22572. default: true
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(6, "feet"),
  22581. weight: math.unit(150, "lb"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/maelstrom/front.svg",
  22585. extra: 2100 / 1883,
  22586. bottom: 94 / 2196.7
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Less Kaiju",
  22593. height: math.unit(200, "feet")
  22594. },
  22595. {
  22596. name: "Kaiju",
  22597. height: math.unit(400, "feet"),
  22598. default: true
  22599. },
  22600. {
  22601. name: "Kaiju-er",
  22602. height: math.unit(600, "feet")
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(6 + 5 / 12, "feet"),
  22611. weight: math.unit(180, "lb"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/lexir/front.svg",
  22615. extra: 180 / 172,
  22616. bottom: 12 / 192
  22617. }
  22618. },
  22619. back: {
  22620. height: math.unit(6 + 5 / 12, "feet"),
  22621. weight: math.unit(180, "lb"),
  22622. name: "Back",
  22623. image: {
  22624. source: "./media/characters/lexir/back.svg",
  22625. extra: 183.84 / 175.5,
  22626. bottom: 3.1 / 187
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Very Smal",
  22633. height: math.unit(1, "nm")
  22634. },
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(6 + 5 / 12, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Macro",
  22642. height: math.unit(1, "mile")
  22643. },
  22644. {
  22645. name: "Megamacro",
  22646. height: math.unit(50, "miles")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22652. {
  22653. front: {
  22654. height: math.unit(1.5, "meters"),
  22655. weight: math.unit(100, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/maksio/front.svg",
  22659. extra: 1549 / 1531,
  22660. bottom: 123.7 / 1674.5429
  22661. }
  22662. },
  22663. back: {
  22664. height: math.unit(1.5, "meters"),
  22665. weight: math.unit(100, "lb"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/maksio/back.svg",
  22669. extra: 1541 / 1509,
  22670. bottom: 97 / 1639
  22671. }
  22672. },
  22673. hand: {
  22674. height: math.unit(0.621, "feet"),
  22675. name: "Hand",
  22676. image: {
  22677. source: "./media/characters/maksio/hand.svg"
  22678. }
  22679. },
  22680. foot: {
  22681. height: math.unit(1.611, "feet"),
  22682. name: "Foot",
  22683. image: {
  22684. source: "./media/characters/maksio/foot.svg"
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Shrunken",
  22691. height: math.unit(10, "cm")
  22692. },
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(150, "cm"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(100, "feet"),
  22705. name: "Front",
  22706. image: {
  22707. source: "./media/characters/erza-bear/front.svg",
  22708. extra: 2449 / 2390,
  22709. bottom: 46 / 2494
  22710. }
  22711. },
  22712. back: {
  22713. height: math.unit(100, "feet"),
  22714. name: "Back",
  22715. image: {
  22716. source: "./media/characters/erza-bear/back.svg",
  22717. extra: 2489 / 2430,
  22718. bottom: 85.4 / 2480
  22719. }
  22720. },
  22721. tail: {
  22722. height: math.unit(42, "feet"),
  22723. name: "Tail",
  22724. image: {
  22725. source: "./media/characters/erza-bear/tail.svg"
  22726. }
  22727. },
  22728. tongue: {
  22729. height: math.unit(8, "feet"),
  22730. name: "Tongue",
  22731. image: {
  22732. source: "./media/characters/erza-bear/tongue.svg"
  22733. }
  22734. },
  22735. dick: {
  22736. height: math.unit(10.5, "feet"),
  22737. name: "Dick",
  22738. image: {
  22739. source: "./media/characters/erza-bear/dick.svg"
  22740. }
  22741. },
  22742. dickVertical: {
  22743. height: math.unit(16.9, "feet"),
  22744. name: "Dick (Vertical)",
  22745. image: {
  22746. source: "./media/characters/erza-bear/dick-vertical.svg"
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Macro",
  22753. height: math.unit(100, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(172, "cm"),
  22763. weight: math.unit(73, "kg"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/violet-flor/front.svg",
  22767. extra: 1530 / 1442,
  22768. bottom: 61.9 / 1588.8
  22769. }
  22770. },
  22771. back: {
  22772. height: math.unit(180, "cm"),
  22773. weight: math.unit(73, "kg"),
  22774. name: "Back",
  22775. image: {
  22776. source: "./media/characters/violet-flor/back.svg",
  22777. extra: 1692 / 1630,
  22778. bottom: 20 / 1712
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(172, "cm"),
  22786. default: true
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(6, "feet"),
  22795. weight: math.unit(220, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/lynn-rhea/front.svg",
  22799. extra: 310 / 273
  22800. }
  22801. },
  22802. back: {
  22803. height: math.unit(6, "feet"),
  22804. weight: math.unit(220, "lb"),
  22805. name: "Back",
  22806. image: {
  22807. source: "./media/characters/lynn-rhea/back.svg",
  22808. extra: 310 / 273
  22809. }
  22810. },
  22811. dicks: {
  22812. height: math.unit(0.9, "feet"),
  22813. name: "Dicks",
  22814. image: {
  22815. source: "./media/characters/lynn-rhea/dicks.svg"
  22816. }
  22817. },
  22818. slit: {
  22819. height: math.unit(0.4, "feet"),
  22820. name: "Slit",
  22821. image: {
  22822. source: "./media/characters/lynn-rhea/slit.svg"
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Micro",
  22829. height: math.unit(1, "inch")
  22830. },
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(60, "feet"),
  22834. default: true
  22835. },
  22836. {
  22837. name: "Megamacro",
  22838. height: math.unit(2, "miles")
  22839. },
  22840. {
  22841. name: "Gigamacro",
  22842. height: math.unit(3, "earths")
  22843. },
  22844. {
  22845. name: "Galactic",
  22846. height: math.unit(0.8, "galaxies")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22852. {
  22853. front: {
  22854. height: math.unit(1600, "feet"),
  22855. weight: math.unit(85758785169, "kg"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/valathos/front.svg",
  22859. extra: 1451 / 1339
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Macro",
  22866. height: math.unit(1600, "feet"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(7 + 5 / 12, "feet"),
  22876. weight: math.unit(300, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/azula/front.svg",
  22880. extra: 3208 / 2880,
  22881. bottom: 80.2 / 3277
  22882. }
  22883. },
  22884. back: {
  22885. height: math.unit(7 + 5 / 12, "feet"),
  22886. weight: math.unit(300, "lb"),
  22887. name: "Back",
  22888. image: {
  22889. source: "./media/characters/azula/back.svg",
  22890. extra: 3169 / 2822,
  22891. bottom: 150.6 / 3321
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(7 + 5 / 12, "feet"),
  22899. default: true
  22900. },
  22901. {
  22902. name: "Big",
  22903. height: math.unit(20, "feet")
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(5 + 1 / 12, "feet"),
  22912. weight: math.unit(110, "lb"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/rupert/front.svg",
  22916. extra: 1549 / 1495,
  22917. bottom: 54.2 / 1604.4
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(5 + 1 / 12, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22931. {
  22932. front: {
  22933. height: math.unit(8 + 4 / 12, "feet"),
  22934. weight: math.unit(350, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/sheera-castellar/front.svg",
  22938. extra: 1957 / 1894,
  22939. bottom: 26.97 / 1975.017
  22940. }
  22941. },
  22942. side: {
  22943. height: math.unit(8 + 4 / 12, "feet"),
  22944. weight: math.unit(350, "lb"),
  22945. name: "Side",
  22946. image: {
  22947. source: "./media/characters/sheera-castellar/side.svg",
  22948. extra: 1957 / 1894
  22949. }
  22950. },
  22951. back: {
  22952. height: math.unit(8 + 4 / 12, "feet"),
  22953. weight: math.unit(350, "lb"),
  22954. name: "Back",
  22955. image: {
  22956. source: "./media/characters/sheera-castellar/back.svg",
  22957. extra: 1957 / 1894
  22958. }
  22959. },
  22960. angled: {
  22961. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22962. weight: math.unit(350, "lb"),
  22963. name: "Angled",
  22964. image: {
  22965. source: "./media/characters/sheera-castellar/angled.svg",
  22966. extra: 1807 / 1707,
  22967. bottom: 68 / 1875
  22968. }
  22969. },
  22970. genitals: {
  22971. height: math.unit(2.2, "feet"),
  22972. name: "Genitals",
  22973. image: {
  22974. source: "./media/characters/sheera-castellar/genitals.svg"
  22975. }
  22976. },
  22977. taur: {
  22978. height: math.unit(10 + 6/12, "feet"),
  22979. name: "Taur",
  22980. image: {
  22981. source: "./media/characters/sheera-castellar/taur.svg",
  22982. extra: 2017/1909,
  22983. bottom: 185/2202
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(8 + 4 / 12, "feet")
  22991. },
  22992. {
  22993. name: "Macro",
  22994. height: math.unit(150, "feet"),
  22995. default: true
  22996. },
  22997. {
  22998. name: "Macro+",
  22999. height: math.unit(800, "feet")
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(6, "feet"),
  23008. weight: math.unit(150, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/jaipur/front.svg",
  23012. extra: 3860 / 3731,
  23013. bottom: 287 / 4140
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(6, "feet"),
  23018. weight: math.unit(150, "lb"),
  23019. name: "Back",
  23020. image: {
  23021. source: "./media/characters/jaipur/back.svg",
  23022. extra: 4060 / 3930,
  23023. bottom: 151 / 4200
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(1.85, "meters"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(150, "meters")
  23036. },
  23037. {
  23038. name: "Macro+",
  23039. height: math.unit(0.5, "miles")
  23040. },
  23041. {
  23042. name: "Macro++",
  23043. height: math.unit(2.5, "miles")
  23044. },
  23045. {
  23046. name: "Macro+++",
  23047. height: math.unit(12, "miles")
  23048. },
  23049. {
  23050. name: "Macro++++",
  23051. height: math.unit(120, "miles")
  23052. },
  23053. {
  23054. name: "Macro+++++",
  23055. height: math.unit(1200, "miles")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(6, "feet"),
  23064. weight: math.unit(150, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/sheila-wolf/front.svg",
  23068. extra: 1931 / 1808,
  23069. bottom: 29.5 / 1960
  23070. }
  23071. },
  23072. dick: {
  23073. height: math.unit(1.464, "feet"),
  23074. name: "Dick",
  23075. image: {
  23076. source: "./media/characters/sheila-wolf/dick.svg"
  23077. }
  23078. },
  23079. muzzle: {
  23080. height: math.unit(0.513, "feet"),
  23081. name: "Muzzle",
  23082. image: {
  23083. source: "./media/characters/sheila-wolf/muzzle.svg"
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Macro",
  23090. height: math.unit(70, "feet"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(32, "meters"),
  23100. weight: math.unit(300000, "kg"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/almor/front.svg",
  23104. extra: 1408 / 1322,
  23105. bottom: 94.6 / 1506.5
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Macro",
  23112. height: math.unit(32, "meters"),
  23113. default: true
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(7, "feet"),
  23122. weight: math.unit(200, "lb"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/silver/front.svg",
  23126. extra: 472.1 / 450.5,
  23127. bottom: 26.5 / 499.424
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(7, "feet"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(800, "feet")
  23140. },
  23141. {
  23142. name: "Megamacro",
  23143. height: math.unit(250, "miles")
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(6, "feet"),
  23152. weight: math.unit(150, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/pliskin/front.svg",
  23156. extra: 1469 / 1359,
  23157. bottom: 70 / 1540
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Micro",
  23164. height: math.unit(3, "inches")
  23165. },
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(5 + 11 / 12, "feet"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Macro",
  23173. height: math.unit(120, "feet")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(6, "feet"),
  23182. weight: math.unit(150, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/sammy/front.svg",
  23186. extra: 1193 / 1089,
  23187. bottom: 30.5 / 1226
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Macro",
  23194. height: math.unit(1700, "feet"),
  23195. default: true
  23196. },
  23197. {
  23198. name: "Examacro",
  23199. height: math.unit(2.5e9, "lightyears")
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23205. {
  23206. front: {
  23207. height: math.unit(21, "meters"),
  23208. weight: math.unit(12, "tonnes"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/kuru/front.svg",
  23212. extra: 4301 / 3785,
  23213. bottom: 371.3 / 4691
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Macro",
  23220. height: math.unit(21, "meters"),
  23221. default: true
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(23, "meters"),
  23230. weight: math.unit(12.2, "tonnes"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/rakka/front.svg",
  23234. extra: 4670 / 4169,
  23235. bottom: 301 / 4968.7
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Macro",
  23242. height: math.unit(23, "meters"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(6, "feet"),
  23252. weight: math.unit(150, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/rhys-feline/front.svg",
  23256. extra: 2488 / 2308,
  23257. bottom: 35.67 / 2519.19
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Really Small",
  23264. height: math.unit(1, "nm")
  23265. },
  23266. {
  23267. name: "Micro",
  23268. height: math.unit(4, "inches")
  23269. },
  23270. {
  23271. name: "Normal",
  23272. height: math.unit(4 + 10 / 12, "feet"),
  23273. default: true
  23274. },
  23275. {
  23276. name: "Macro",
  23277. height: math.unit(100, "feet")
  23278. },
  23279. {
  23280. name: "Megamacto",
  23281. height: math.unit(50, "miles")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23287. {
  23288. side: {
  23289. height: math.unit(30, "feet"),
  23290. weight: math.unit(35000, "kg"),
  23291. name: "Side",
  23292. image: {
  23293. source: "./media/characters/alydar/side.svg",
  23294. extra: 234 / 222,
  23295. bottom: 6.5 / 241
  23296. }
  23297. },
  23298. front: {
  23299. height: math.unit(30, "feet"),
  23300. weight: math.unit(35000, "kg"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/alydar/front.svg",
  23304. extra: 223.37 / 210.2,
  23305. bottom: 22.3 / 246.76
  23306. }
  23307. },
  23308. top: {
  23309. height: math.unit(64.54, "feet"),
  23310. weight: math.unit(35000, "kg"),
  23311. name: "Top",
  23312. image: {
  23313. source: "./media/characters/alydar/top.svg"
  23314. }
  23315. },
  23316. anthro: {
  23317. height: math.unit(30, "feet"),
  23318. weight: math.unit(9000, "kg"),
  23319. name: "Anthro",
  23320. image: {
  23321. source: "./media/characters/alydar/anthro.svg",
  23322. extra: 432 / 421,
  23323. bottom: 7.18 / 440
  23324. }
  23325. },
  23326. maw: {
  23327. height: math.unit(11.693, "feet"),
  23328. name: "Maw",
  23329. image: {
  23330. source: "./media/characters/alydar/maw.svg"
  23331. }
  23332. },
  23333. head: {
  23334. height: math.unit(11.693, "feet"),
  23335. name: "Head",
  23336. image: {
  23337. source: "./media/characters/alydar/head.svg"
  23338. }
  23339. },
  23340. headAlt: {
  23341. height: math.unit(12.861, "feet"),
  23342. name: "Head (Alt)",
  23343. image: {
  23344. source: "./media/characters/alydar/head-alt.svg"
  23345. }
  23346. },
  23347. wing: {
  23348. height: math.unit(20.712, "feet"),
  23349. name: "Wing",
  23350. image: {
  23351. source: "./media/characters/alydar/wing.svg"
  23352. }
  23353. },
  23354. wingFeather: {
  23355. height: math.unit(9.662, "feet"),
  23356. name: "Wing Feather",
  23357. image: {
  23358. source: "./media/characters/alydar/wing-feather.svg"
  23359. }
  23360. },
  23361. countourFeather: {
  23362. height: math.unit(4.154, "feet"),
  23363. name: "Contour Feather",
  23364. image: {
  23365. source: "./media/characters/alydar/contour-feather.svg"
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Diplomatic",
  23372. height: math.unit(13, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Small",
  23377. height: math.unit(30, "feet")
  23378. },
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(95, "feet"),
  23382. default: true
  23383. },
  23384. {
  23385. name: "Large",
  23386. height: math.unit(285, "feet")
  23387. },
  23388. {
  23389. name: "Incomprehensible",
  23390. height: math.unit(450, "megameters")
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23396. {
  23397. side: {
  23398. height: math.unit(11, "feet"),
  23399. weight: math.unit(1750, "kg"),
  23400. name: "Side",
  23401. image: {
  23402. source: "./media/characters/selicia/side.svg",
  23403. extra: 440 / 396,
  23404. bottom: 24.8 / 465.979
  23405. }
  23406. },
  23407. maw: {
  23408. height: math.unit(4.665, "feet"),
  23409. name: "Maw",
  23410. image: {
  23411. source: "./media/characters/selicia/maw.svg"
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(11, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23425. {
  23426. side: {
  23427. height: math.unit(2 + 6 / 12, "feet"),
  23428. weight: math.unit(30, "lb"),
  23429. name: "Side",
  23430. image: {
  23431. source: "./media/characters/layla/side.svg",
  23432. extra: 244 / 188,
  23433. bottom: 18.2 / 262.1
  23434. }
  23435. },
  23436. back: {
  23437. height: math.unit(2 + 6 / 12, "feet"),
  23438. weight: math.unit(30, "lb"),
  23439. name: "Back",
  23440. image: {
  23441. source: "./media/characters/layla/back.svg",
  23442. extra: 308 / 241.5,
  23443. bottom: 8.9 / 316.8
  23444. }
  23445. },
  23446. cumming: {
  23447. height: math.unit(2 + 6 / 12, "feet"),
  23448. weight: math.unit(30, "lb"),
  23449. name: "Cumming",
  23450. image: {
  23451. source: "./media/characters/layla/cumming.svg",
  23452. extra: 342 / 279,
  23453. bottom: 595 / 938
  23454. }
  23455. },
  23456. dickFlaccid: {
  23457. height: math.unit(2.595, "feet"),
  23458. name: "Flaccid Genitals",
  23459. image: {
  23460. source: "./media/characters/layla/dick-flaccid.svg"
  23461. }
  23462. },
  23463. dickErect: {
  23464. height: math.unit(2.359, "feet"),
  23465. name: "Erect Genitals",
  23466. image: {
  23467. source: "./media/characters/layla/dick-erect.svg"
  23468. }
  23469. },
  23470. dragon: {
  23471. height: math.unit(40, "feet"),
  23472. name: "Dragon",
  23473. image: {
  23474. source: "./media/characters/layla/dragon.svg",
  23475. extra: 610/535,
  23476. bottom: 367/977
  23477. }
  23478. },
  23479. taur: {
  23480. height: math.unit(30, "feet"),
  23481. name: "Taur",
  23482. image: {
  23483. source: "./media/characters/layla/taur.svg",
  23484. extra: 1268/1199,
  23485. bottom: 112/1380
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Micro",
  23492. height: math.unit(1, "inch")
  23493. },
  23494. {
  23495. name: "Small",
  23496. height: math.unit(1, "foot")
  23497. },
  23498. {
  23499. name: "Normal",
  23500. height: math.unit(2 + 6 / 12, "feet"),
  23501. default: true
  23502. },
  23503. {
  23504. name: "Macro",
  23505. height: math.unit(200, "feet")
  23506. },
  23507. {
  23508. name: "Megamacro",
  23509. height: math.unit(1000, "miles")
  23510. },
  23511. {
  23512. name: "Planetary",
  23513. height: math.unit(8000, "miles")
  23514. },
  23515. {
  23516. name: "True Layla",
  23517. height: math.unit(200000 * 7, "multiverses")
  23518. },
  23519. ]
  23520. ))
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23523. {
  23524. back: {
  23525. height: math.unit(10.5, "feet"),
  23526. weight: math.unit(800, "lb"),
  23527. name: "Back",
  23528. image: {
  23529. source: "./media/characters/knox/back.svg",
  23530. extra: 1486 / 1089,
  23531. bottom: 107 / 1601.4
  23532. }
  23533. },
  23534. side: {
  23535. height: math.unit(10.5, "feet"),
  23536. weight: math.unit(800, "lb"),
  23537. name: "Side",
  23538. image: {
  23539. source: "./media/characters/knox/side.svg",
  23540. extra: 244 / 218,
  23541. bottom: 14 / 260
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Compact",
  23548. height: math.unit(10.5, "feet"),
  23549. default: true
  23550. },
  23551. {
  23552. name: "Dynamax",
  23553. height: math.unit(210, "feet")
  23554. },
  23555. {
  23556. name: "Full Macro",
  23557. height: math.unit(850, "feet")
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23563. {
  23564. front: {
  23565. height: math.unit(6, "feet"),
  23566. weight: math.unit(152, "lb"),
  23567. name: "Front",
  23568. image: {
  23569. source: "./media/characters/shin-pikachu/front.svg",
  23570. extra: 1854/1602,
  23571. bottom: 166/2020
  23572. }
  23573. },
  23574. hand: {
  23575. height: math.unit(1.055, "feet"),
  23576. name: "Hand",
  23577. image: {
  23578. source: "./media/characters/shin-pikachu/hand.svg"
  23579. }
  23580. },
  23581. foot: {
  23582. height: math.unit(1.1, "feet"),
  23583. name: "Foot",
  23584. image: {
  23585. source: "./media/characters/shin-pikachu/foot.svg"
  23586. }
  23587. },
  23588. collar: {
  23589. height: math.unit(0.386, "feet"),
  23590. name: "Collar",
  23591. image: {
  23592. source: "./media/characters/shin-pikachu/collar.svg"
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Smallest",
  23599. height: math.unit(0.5, "inches")
  23600. },
  23601. {
  23602. name: "Micro",
  23603. height: math.unit(6, "inches")
  23604. },
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(6, "feet"),
  23608. default: true
  23609. },
  23610. {
  23611. name: "Macro",
  23612. height: math.unit(150, "feet")
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23618. {
  23619. front: {
  23620. height: math.unit(28, "feet"),
  23621. weight: math.unit(10500, "lb"),
  23622. name: "Front",
  23623. image: {
  23624. source: "./media/characters/kayda/front.svg",
  23625. extra: 1536 / 1428,
  23626. bottom: 68.7 / 1603
  23627. }
  23628. },
  23629. back: {
  23630. height: math.unit(28, "feet"),
  23631. weight: math.unit(10500, "lb"),
  23632. name: "Back",
  23633. image: {
  23634. source: "./media/characters/kayda/back.svg",
  23635. extra: 1557 / 1464,
  23636. bottom: 39.5 / 1597.49
  23637. }
  23638. },
  23639. dick: {
  23640. height: math.unit(3.858, "feet"),
  23641. name: "Dick",
  23642. image: {
  23643. source: "./media/characters/kayda/dick.svg"
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Macro",
  23650. height: math.unit(28, "feet"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(10 + 11 / 12, "feet"),
  23660. weight: math.unit(1400, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/brian/front.svg",
  23664. extra: 737 / 692,
  23665. bottom: 55.4 / 785
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(10 + 11 / 12, "feet"),
  23673. default: true
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(5 + 8 / 12, "feet"),
  23682. weight: math.unit(140, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/khemri/front.svg",
  23686. extra: 4780 / 4059,
  23687. bottom: 80.1 / 4859.25
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Micro",
  23694. height: math.unit(6, "inches")
  23695. },
  23696. {
  23697. name: "Normal",
  23698. height: math.unit(5 + 8 / 12, "feet"),
  23699. default: true
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23705. {
  23706. front: {
  23707. height: math.unit(13, "feet"),
  23708. weight: math.unit(1700, "lb"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/felix-braveheart/front.svg",
  23712. extra: 1222 / 1157,
  23713. bottom: 53.2 / 1280
  23714. }
  23715. },
  23716. back: {
  23717. height: math.unit(13, "feet"),
  23718. weight: math.unit(1700, "lb"),
  23719. name: "Back",
  23720. image: {
  23721. source: "./media/characters/felix-braveheart/back.svg",
  23722. extra: 1277 / 1203,
  23723. bottom: 50.2 / 1327
  23724. }
  23725. },
  23726. feral: {
  23727. height: math.unit(6, "feet"),
  23728. weight: math.unit(400, "lb"),
  23729. name: "Feral",
  23730. image: {
  23731. source: "./media/characters/felix-braveheart/feral.svg",
  23732. extra: 682 / 625,
  23733. bottom: 6.9 / 688
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(13, "feet"),
  23741. default: true
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23747. {
  23748. side: {
  23749. height: math.unit(5 + 11 / 12, "feet"),
  23750. weight: math.unit(1400, "lb"),
  23751. name: "Side",
  23752. image: {
  23753. source: "./media/characters/shadow-blade/side.svg",
  23754. extra: 1726 / 1267,
  23755. bottom: 58.4 / 1785
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Normal",
  23762. height: math.unit(5 + 11 / 12, "feet"),
  23763. default: true
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23769. {
  23770. front: {
  23771. height: math.unit(1 + 6 / 12, "feet"),
  23772. weight: math.unit(25, "lb"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/karla-halldor/front.svg",
  23776. extra: 1459 / 1383,
  23777. bottom: 12 / 1472
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Normal",
  23784. height: math.unit(1 + 6 / 12, "feet"),
  23785. default: true
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23791. {
  23792. front: {
  23793. height: math.unit(6 + 2 / 12, "feet"),
  23794. weight: math.unit(160, "lb"),
  23795. name: "Front",
  23796. image: {
  23797. source: "./media/characters/ariam/front.svg",
  23798. extra: 714 / 617,
  23799. bottom: 23.4 / 737,
  23800. }
  23801. },
  23802. squatting: {
  23803. height: math.unit(4.1, "feet"),
  23804. weight: math.unit(160, "lb"),
  23805. name: "Squatting",
  23806. image: {
  23807. source: "./media/characters/ariam/squatting.svg",
  23808. extra: 2617 / 2112,
  23809. bottom: 61.2 / 2681,
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(6 + 2 / 12, "feet"),
  23817. default: true
  23818. },
  23819. {
  23820. name: "Normal+",
  23821. height: math.unit(4, "meters")
  23822. },
  23823. {
  23824. name: "Macro",
  23825. height: math.unit(50, "meters")
  23826. },
  23827. {
  23828. name: "Macro+",
  23829. height: math.unit(100, "meters")
  23830. },
  23831. {
  23832. name: "Megamacro",
  23833. height: math.unit(20, "km")
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(1.67, "meters"),
  23842. weight: math.unit(140, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23846. extra: 438 / 410,
  23847. bottom: 0.75 / 439
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Shrunken",
  23854. height: math.unit(7.6, "cm")
  23855. },
  23856. {
  23857. name: "Human Scale",
  23858. height: math.unit(1.67, "meters")
  23859. },
  23860. {
  23861. name: "Wolxi Scale",
  23862. height: math.unit(36.7, "meters"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(1.73, "meters"),
  23872. weight: math.unit(240, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/izue-two-mothers/front.svg",
  23876. extra: 469 / 437,
  23877. bottom: 1.24 / 470.6
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Shrunken",
  23884. height: math.unit(7.86, "cm")
  23885. },
  23886. {
  23887. name: "Human Scale",
  23888. height: math.unit(1.73, "meters")
  23889. },
  23890. {
  23891. name: "Wolxi Scale",
  23892. height: math.unit(38, "meters"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23899. {
  23900. front: {
  23901. height: math.unit(1.55, "meters"),
  23902. weight: math.unit(120, "lb"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/teeku-love-shack/front.svg",
  23906. extra: 387 / 362,
  23907. bottom: 1.51 / 388
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Shrunken",
  23914. height: math.unit(7, "cm")
  23915. },
  23916. {
  23917. name: "Human Scale",
  23918. height: math.unit(1.55, "meters")
  23919. },
  23920. {
  23921. name: "Wolxi Scale",
  23922. height: math.unit(34.1, "meters"),
  23923. default: true
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23929. {
  23930. front: {
  23931. height: math.unit(1.83, "meters"),
  23932. weight: math.unit(135, "lb"),
  23933. name: "Front",
  23934. image: {
  23935. source: "./media/characters/dejma-the-red/front.svg",
  23936. extra: 480 / 458,
  23937. bottom: 1.8 / 482
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Shrunken",
  23944. height: math.unit(8.3, "cm")
  23945. },
  23946. {
  23947. name: "Human Scale",
  23948. height: math.unit(1.83, "meters")
  23949. },
  23950. {
  23951. name: "Wolxi Scale",
  23952. height: math.unit(40, "meters"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23959. {
  23960. front: {
  23961. height: math.unit(1.78, "meters"),
  23962. weight: math.unit(65, "kg"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/aki/front.svg",
  23966. extra: 452 / 415
  23967. }
  23968. },
  23969. frontNsfw: {
  23970. height: math.unit(1.78, "meters"),
  23971. weight: math.unit(65, "kg"),
  23972. name: "Front (NSFW)",
  23973. image: {
  23974. source: "./media/characters/aki/front-nsfw.svg",
  23975. extra: 452 / 415
  23976. }
  23977. },
  23978. back: {
  23979. height: math.unit(1.78, "meters"),
  23980. weight: math.unit(65, "kg"),
  23981. name: "Back",
  23982. image: {
  23983. source: "./media/characters/aki/back.svg",
  23984. extra: 452 / 415
  23985. }
  23986. },
  23987. rump: {
  23988. height: math.unit(2.05, "feet"),
  23989. name: "Rump",
  23990. image: {
  23991. source: "./media/characters/aki/rump.svg"
  23992. }
  23993. },
  23994. dick: {
  23995. height: math.unit(0.95, "feet"),
  23996. name: "Dick",
  23997. image: {
  23998. source: "./media/characters/aki/dick.svg"
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Micro",
  24005. height: math.unit(15, "cm")
  24006. },
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(178, "cm"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(214, "m")
  24015. },
  24016. {
  24017. name: "Macro+",
  24018. height: math.unit(534, "m")
  24019. },
  24020. ]
  24021. ))
  24022. characterMakers.push(() => makeCharacter(
  24023. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24024. {
  24025. front: {
  24026. height: math.unit(5 + 5 / 12, "feet"),
  24027. weight: math.unit(120, "lb"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/ari/front.svg",
  24031. extra: 714.5 / 682,
  24032. bottom: 8 / 722.5
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(5 + 5 / 12, "feet")
  24040. },
  24041. {
  24042. name: "Macro",
  24043. height: math.unit(100, "feet"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Megamacro",
  24048. height: math.unit(100, "miles")
  24049. },
  24050. {
  24051. name: "Gigamacro",
  24052. height: math.unit(80000, "miles")
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24058. {
  24059. side: {
  24060. height: math.unit(9, "feet"),
  24061. weight: math.unit(400, "kg"),
  24062. name: "Side",
  24063. image: {
  24064. source: "./media/characters/bolt/side.svg",
  24065. extra: 1126 / 896,
  24066. bottom: 60 / 1187.3,
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Micro",
  24073. height: math.unit(5, "inches")
  24074. },
  24075. {
  24076. name: "Normal",
  24077. height: math.unit(9, "feet"),
  24078. default: true
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(700, "feet")
  24083. },
  24084. {
  24085. name: "Max Size",
  24086. height: math.unit(1.52e22, "yottameters")
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(4.53, "meters"),
  24095. weight: math.unit(3, "tons"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/draekon-sylviar/front.svg",
  24099. extra: 1228 / 1068,
  24100. bottom: 41 / 1270
  24101. }
  24102. },
  24103. tail: {
  24104. height: math.unit(1.772, "meter"),
  24105. name: "Tail",
  24106. image: {
  24107. source: "./media/characters/draekon-sylviar/tail.svg"
  24108. }
  24109. },
  24110. head: {
  24111. height: math.unit(1.331, "meter"),
  24112. name: "Head",
  24113. image: {
  24114. source: "./media/characters/draekon-sylviar/head.svg"
  24115. }
  24116. },
  24117. hand: {
  24118. height: math.unit(0.564, "meter"),
  24119. name: "Hand",
  24120. image: {
  24121. source: "./media/characters/draekon-sylviar/hand.svg"
  24122. }
  24123. },
  24124. foot: {
  24125. height: math.unit(0.621, "meter"),
  24126. name: "Foot",
  24127. image: {
  24128. source: "./media/characters/draekon-sylviar/foot.svg",
  24129. bottom: 32 / 324
  24130. }
  24131. },
  24132. dick: {
  24133. height: math.unit(61, "cm"),
  24134. name: "Dick",
  24135. image: {
  24136. source: "./media/characters/draekon-sylviar/dick.svg"
  24137. }
  24138. },
  24139. dickseparated: {
  24140. height: math.unit(61, "cm"),
  24141. name: "Dick-separated",
  24142. image: {
  24143. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Small",
  24150. height: math.unit(4.53 / 2, "meters"),
  24151. default: true
  24152. },
  24153. {
  24154. name: "Normal",
  24155. height: math.unit(4.53, "meters"),
  24156. default: true
  24157. },
  24158. {
  24159. name: "Large",
  24160. height: math.unit(4.53 * 2, "meters"),
  24161. },
  24162. ]
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24166. {
  24167. front: {
  24168. height: math.unit(6 + 2 / 12, "feet"),
  24169. weight: math.unit(180, "lb"),
  24170. name: "Front",
  24171. image: {
  24172. source: "./media/characters/brawler/front.svg",
  24173. extra: 3301 / 3027,
  24174. bottom: 138 / 3439
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(6 + 2 / 12, "feet"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(11, "feet"),
  24191. weight: math.unit(1000, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/alex/front.svg",
  24195. bottom: 44.5 / 620
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Micro",
  24202. height: math.unit(5, "inches")
  24203. },
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(11, "feet"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Macro",
  24211. height: math.unit(9.5e9, "feet")
  24212. },
  24213. {
  24214. name: "Max Size",
  24215. height: math.unit(1.4e283, "yottameters")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24221. {
  24222. female: {
  24223. height: math.unit(29.9, "m"),
  24224. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24225. name: "Female",
  24226. image: {
  24227. source: "./media/characters/zenari/female.svg",
  24228. extra: 3281.6 / 3217,
  24229. bottom: 72.2 / 3353
  24230. }
  24231. },
  24232. male: {
  24233. height: math.unit(27.7, "m"),
  24234. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24235. name: "Male",
  24236. image: {
  24237. source: "./media/characters/zenari/male.svg",
  24238. extra: 3008 / 2991,
  24239. bottom: 54.6 / 3069
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Macro",
  24246. height: math.unit(29.7, "meters"),
  24247. default: true
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24253. {
  24254. female: {
  24255. height: math.unit(23.8, "m"),
  24256. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24257. name: "Female",
  24258. image: {
  24259. source: "./media/characters/mactarian/female.svg",
  24260. extra: 2662 / 2569,
  24261. bottom: 73 / 2736
  24262. }
  24263. },
  24264. male: {
  24265. height: math.unit(23.8, "m"),
  24266. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24267. name: "Male",
  24268. image: {
  24269. source: "./media/characters/mactarian/male.svg",
  24270. extra: 2673 / 2600,
  24271. bottom: 76 / 2750
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Macro",
  24278. height: math.unit(23.8, "meters"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24285. {
  24286. female: {
  24287. height: math.unit(19.3, "m"),
  24288. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24289. name: "Female",
  24290. image: {
  24291. source: "./media/characters/umok/female.svg",
  24292. extra: 2186 / 2078,
  24293. bottom: 87 / 2277
  24294. }
  24295. },
  24296. male: {
  24297. height: math.unit(19.5, "m"),
  24298. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24299. name: "Male",
  24300. image: {
  24301. source: "./media/characters/umok/male.svg",
  24302. extra: 2233 / 2140,
  24303. bottom: 24.4 / 2258
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Macro",
  24310. height: math.unit(19.3, "meters"),
  24311. default: true
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24317. {
  24318. female: {
  24319. height: math.unit(26.15, "m"),
  24320. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24321. name: "Female",
  24322. image: {
  24323. source: "./media/characters/joraxian/female.svg",
  24324. extra: 2912 / 2824,
  24325. bottom: 36 / 2956
  24326. }
  24327. },
  24328. male: {
  24329. height: math.unit(25.4, "m"),
  24330. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24331. name: "Male",
  24332. image: {
  24333. source: "./media/characters/joraxian/male.svg",
  24334. extra: 2877 / 2721,
  24335. bottom: 82 / 2967
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Macro",
  24342. height: math.unit(26.15, "meters"),
  24343. default: true
  24344. },
  24345. ]
  24346. ))
  24347. characterMakers.push(() => makeCharacter(
  24348. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24349. {
  24350. female: {
  24351. height: math.unit(21.6, "m"),
  24352. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24353. name: "Female",
  24354. image: {
  24355. source: "./media/characters/sthara/female.svg",
  24356. extra: 2516 / 2347,
  24357. bottom: 21.5 / 2537
  24358. }
  24359. },
  24360. male: {
  24361. height: math.unit(24, "m"),
  24362. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24363. name: "Male",
  24364. image: {
  24365. source: "./media/characters/sthara/male.svg",
  24366. extra: 2732 / 2607,
  24367. bottom: 23 / 2732
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(21.6, "meters"),
  24375. default: true
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24381. {
  24382. front: {
  24383. height: math.unit(6 + 4 / 12, "feet"),
  24384. weight: math.unit(175, "lb"),
  24385. name: "Front",
  24386. image: {
  24387. source: "./media/characters/luka-bryzant/front.svg",
  24388. extra: 311 / 289,
  24389. bottom: 4 / 315
  24390. }
  24391. },
  24392. back: {
  24393. height: math.unit(6 + 4 / 12, "feet"),
  24394. weight: math.unit(175, "lb"),
  24395. name: "Back",
  24396. image: {
  24397. source: "./media/characters/luka-bryzant/back.svg",
  24398. extra: 311 / 289,
  24399. bottom: 3.8 / 313.7
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Micro",
  24406. height: math.unit(10, "inches")
  24407. },
  24408. {
  24409. name: "Normal",
  24410. height: math.unit(6 + 4 / 12, "feet"),
  24411. default: true
  24412. },
  24413. {
  24414. name: "Large",
  24415. height: math.unit(12, "feet")
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(5 + 7 / 12, "feet"),
  24424. weight: math.unit(185, "lb"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/aman-aquila/front.svg",
  24428. extra: 1013 / 976,
  24429. bottom: 45.6 / 1057
  24430. }
  24431. },
  24432. side: {
  24433. height: math.unit(5 + 7 / 12, "feet"),
  24434. weight: math.unit(185, "lb"),
  24435. name: "Side",
  24436. image: {
  24437. source: "./media/characters/aman-aquila/side.svg",
  24438. extra: 1054 / 1011,
  24439. bottom: 15 / 1070
  24440. }
  24441. },
  24442. back: {
  24443. height: math.unit(5 + 7 / 12, "feet"),
  24444. weight: math.unit(185, "lb"),
  24445. name: "Back",
  24446. image: {
  24447. source: "./media/characters/aman-aquila/back.svg",
  24448. extra: 1026 / 970,
  24449. bottom: 12 / 1039
  24450. }
  24451. },
  24452. head: {
  24453. height: math.unit(1.211, "feet"),
  24454. name: "Head",
  24455. image: {
  24456. source: "./media/characters/aman-aquila/head.svg",
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Minimicro",
  24463. height: math.unit(0.057, "inches")
  24464. },
  24465. {
  24466. name: "Micro",
  24467. height: math.unit(7, "inches")
  24468. },
  24469. {
  24470. name: "Mini",
  24471. height: math.unit(3 + 7 / 12, "feet")
  24472. },
  24473. {
  24474. name: "Normal",
  24475. height: math.unit(5 + 7 / 12, "feet"),
  24476. default: true
  24477. },
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(157 + 7 / 12, "feet")
  24481. },
  24482. {
  24483. name: "Megamacro",
  24484. height: math.unit(1557 + 7 / 12, "feet")
  24485. },
  24486. {
  24487. name: "Gigamacro",
  24488. height: math.unit(15557 + 7 / 12, "feet")
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24494. {
  24495. front: {
  24496. height: math.unit(3 + 2 / 12, "inches"),
  24497. weight: math.unit(0.3, "ounces"),
  24498. name: "Front",
  24499. image: {
  24500. source: "./media/characters/hiphae/front.svg",
  24501. extra: 1931 / 1683,
  24502. bottom: 24 / 1955
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(3 + 1 / 2, "inches"),
  24510. default: true
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(5 + 10 / 12, "feet"),
  24519. weight: math.unit(165, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/nicky/front.svg",
  24523. extra: 3144 / 2886,
  24524. bottom: 45.6 / 3192
  24525. }
  24526. },
  24527. back: {
  24528. height: math.unit(5 + 10 / 12, "feet"),
  24529. weight: math.unit(165, "lb"),
  24530. name: "Back",
  24531. image: {
  24532. source: "./media/characters/nicky/back.svg",
  24533. extra: 3055 / 2804,
  24534. bottom: 28.4 / 3087
  24535. }
  24536. },
  24537. frontclothed: {
  24538. height: math.unit(5 + 10 / 12, "feet"),
  24539. weight: math.unit(165, "lb"),
  24540. name: "Front-clothed",
  24541. image: {
  24542. source: "./media/characters/nicky/front-clothed.svg",
  24543. extra: 3184.9 / 2926.9,
  24544. bottom: 86.5 / 3239.9
  24545. }
  24546. },
  24547. foot: {
  24548. height: math.unit(1.16, "feet"),
  24549. name: "Foot",
  24550. image: {
  24551. source: "./media/characters/nicky/foot.svg"
  24552. }
  24553. },
  24554. feet: {
  24555. height: math.unit(1.34, "feet"),
  24556. name: "Feet",
  24557. image: {
  24558. source: "./media/characters/nicky/feet.svg"
  24559. }
  24560. },
  24561. maw: {
  24562. height: math.unit(0.9, "feet"),
  24563. name: "Maw",
  24564. image: {
  24565. source: "./media/characters/nicky/maw.svg"
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Normal",
  24572. height: math.unit(5 + 10 / 12, "feet"),
  24573. default: true
  24574. },
  24575. {
  24576. name: "Macro",
  24577. height: math.unit(60, "feet")
  24578. },
  24579. {
  24580. name: "Megamacro",
  24581. height: math.unit(1, "mile")
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24587. {
  24588. side: {
  24589. height: math.unit(10, "feet"),
  24590. weight: math.unit(600, "lb"),
  24591. name: "Side",
  24592. image: {
  24593. source: "./media/characters/blair/side.svg",
  24594. bottom: 16.6 / 475,
  24595. extra: 458 / 431
  24596. }
  24597. },
  24598. },
  24599. [
  24600. {
  24601. name: "Micro",
  24602. height: math.unit(8, "inches")
  24603. },
  24604. {
  24605. name: "Normal",
  24606. height: math.unit(10, "feet"),
  24607. default: true
  24608. },
  24609. {
  24610. name: "Macro",
  24611. height: math.unit(180, "feet")
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(5 + 4 / 12, "feet"),
  24620. weight: math.unit(125, "lb"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/fisher/front.svg",
  24624. extra: 444 / 390,
  24625. bottom: 2 / 444.8
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Micro",
  24632. height: math.unit(4, "inches")
  24633. },
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(5 + 4 / 12, "feet"),
  24637. default: true
  24638. },
  24639. {
  24640. name: "Macro",
  24641. height: math.unit(100, "feet")
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24647. {
  24648. front: {
  24649. height: math.unit(6.71, "feet"),
  24650. weight: math.unit(200, "lb"),
  24651. capacity: math.unit(1000000, "people"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/gliss/front.svg",
  24655. extra: 2347 / 2231,
  24656. bottom: 113 / 2462
  24657. }
  24658. },
  24659. hammerspaceSize: {
  24660. height: math.unit(6.71 * 717, "feet"),
  24661. weight: math.unit(200, "lb"),
  24662. capacity: math.unit(1000000, "people"),
  24663. name: "Hammerspace Size",
  24664. image: {
  24665. source: "./media/characters/gliss/front.svg",
  24666. extra: 2347 / 2231,
  24667. bottom: 113 / 2462
  24668. }
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(6.71, "feet"),
  24675. default: true
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24681. {
  24682. side: {
  24683. height: math.unit(1.44, "m"),
  24684. weight: math.unit(80, "kg"),
  24685. name: "Side",
  24686. image: {
  24687. source: "./media/characters/dune-anderson/side.svg",
  24688. bottom: 49 / 1426
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Wolf-sized",
  24695. height: math.unit(1.44, "meters")
  24696. },
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(5.05, "meters"),
  24700. default: true
  24701. },
  24702. {
  24703. name: "Big",
  24704. height: math.unit(14.4, "meters")
  24705. },
  24706. {
  24707. name: "Huge",
  24708. height: math.unit(144, "meters")
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(7, "feet"),
  24717. weight: math.unit(425, "lb"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/hind/front.svg",
  24721. extra: 2091 / 1860,
  24722. bottom: 129 / 2220
  24723. }
  24724. },
  24725. back: {
  24726. height: math.unit(7, "feet"),
  24727. weight: math.unit(425, "lb"),
  24728. name: "Back",
  24729. image: {
  24730. source: "./media/characters/hind/back.svg",
  24731. extra: 2091 / 1860,
  24732. bottom: 24.6 / 2309
  24733. }
  24734. },
  24735. tail: {
  24736. height: math.unit(2.8, "feet"),
  24737. name: "Tail",
  24738. image: {
  24739. source: "./media/characters/hind/tail.svg"
  24740. }
  24741. },
  24742. head: {
  24743. height: math.unit(2.55, "feet"),
  24744. name: "Head",
  24745. image: {
  24746. source: "./media/characters/hind/head.svg"
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "XS",
  24753. height: math.unit(0.7, "feet")
  24754. },
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(7, "feet"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "XL",
  24762. height: math.unit(70, "feet")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(6, "feet"),
  24771. weight: math.unit(150, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/dylan-skaven/front.svg",
  24775. extra: 2318 / 2063,
  24776. bottom: 93.4 / 2410
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Nano",
  24783. height: math.unit(1, "mm")
  24784. },
  24785. {
  24786. name: "Micro",
  24787. height: math.unit(1, "cm")
  24788. },
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(2.1, "meters"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(7 + 5 / 12, "feet"),
  24801. weight: math.unit(357, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/solex-draconov/front.svg",
  24805. extra: 1993 / 1865,
  24806. bottom: 117 / 2111
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Natural Height",
  24813. height: math.unit(7 + 5 / 12, "feet"),
  24814. default: true
  24815. },
  24816. {
  24817. name: "Macro",
  24818. height: math.unit(350, "feet")
  24819. },
  24820. {
  24821. name: "Macro+",
  24822. height: math.unit(1000, "feet")
  24823. },
  24824. {
  24825. name: "Megamacro",
  24826. height: math.unit(20, "km")
  24827. },
  24828. {
  24829. name: "Megamacro+",
  24830. height: math.unit(1000, "km")
  24831. },
  24832. {
  24833. name: "Gigamacro",
  24834. height: math.unit(2.5, "Gm")
  24835. },
  24836. {
  24837. name: "Teramacro",
  24838. height: math.unit(15, "Tm")
  24839. },
  24840. {
  24841. name: "Galactic",
  24842. height: math.unit(30, "Zm")
  24843. },
  24844. {
  24845. name: "Universal",
  24846. height: math.unit(21000, "Ym")
  24847. },
  24848. {
  24849. name: "Omniversal",
  24850. height: math.unit(9.861e50, "Ym")
  24851. },
  24852. {
  24853. name: "Existential",
  24854. height: math.unit(1e300, "meters")
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24860. {
  24861. side: {
  24862. height: math.unit(25, "feet"),
  24863. weight: math.unit(90000, "lb"),
  24864. name: "Side",
  24865. image: {
  24866. source: "./media/characters/mandarax/side.svg",
  24867. extra: 614 / 332,
  24868. bottom: 55 / 630
  24869. }
  24870. },
  24871. head: {
  24872. height: math.unit(11.4, "feet"),
  24873. name: "Head",
  24874. image: {
  24875. source: "./media/characters/mandarax/head.svg"
  24876. }
  24877. },
  24878. belly: {
  24879. height: math.unit(33, "feet"),
  24880. name: "Belly",
  24881. capacity: math.unit(500, "people"),
  24882. image: {
  24883. source: "./media/characters/mandarax/belly.svg"
  24884. }
  24885. },
  24886. dick: {
  24887. height: math.unit(8.46, "feet"),
  24888. name: "Dick",
  24889. image: {
  24890. source: "./media/characters/mandarax/dick.svg"
  24891. }
  24892. },
  24893. top: {
  24894. height: math.unit(28, "meters"),
  24895. name: "Top",
  24896. image: {
  24897. source: "./media/characters/mandarax/top.svg"
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(25, "feet"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24911. {
  24912. front: {
  24913. height: math.unit(5, "feet"),
  24914. weight: math.unit(90, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/pixil/front.svg",
  24918. extra: 2000 / 1618,
  24919. bottom: 12.3 / 2011
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(5, "feet"),
  24927. default: true
  24928. },
  24929. {
  24930. name: "Megamacro",
  24931. height: math.unit(10, "miles"),
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(7 + 2 / 12, "feet"),
  24940. weight: math.unit(200, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/angel/front.svg",
  24944. extra: 1830 / 1737,
  24945. bottom: 22.6 / 1854,
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(7 + 2 / 12, "feet"),
  24953. default: true
  24954. },
  24955. {
  24956. name: "Macro",
  24957. height: math.unit(1000, "feet")
  24958. },
  24959. {
  24960. name: "Megamacro",
  24961. height: math.unit(2, "miles")
  24962. },
  24963. {
  24964. name: "Gigamacro",
  24965. height: math.unit(20, "earths")
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24971. {
  24972. front: {
  24973. height: math.unit(5, "feet"),
  24974. weight: math.unit(180, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/mekana/front.svg",
  24978. extra: 1671 / 1605,
  24979. bottom: 3.5 / 1691
  24980. }
  24981. },
  24982. side: {
  24983. height: math.unit(5, "feet"),
  24984. weight: math.unit(180, "lb"),
  24985. name: "Side",
  24986. image: {
  24987. source: "./media/characters/mekana/side.svg",
  24988. extra: 1671 / 1605,
  24989. bottom: 3.5 / 1691
  24990. }
  24991. },
  24992. back: {
  24993. height: math.unit(5, "feet"),
  24994. weight: math.unit(180, "lb"),
  24995. name: "Back",
  24996. image: {
  24997. source: "./media/characters/mekana/back.svg",
  24998. extra: 1671 / 1605,
  24999. bottom: 3.5 / 1691
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(5, "feet"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25013. {
  25014. front: {
  25015. height: math.unit(4 + 6 / 12, "feet"),
  25016. weight: math.unit(80, "lb"),
  25017. name: "Front",
  25018. image: {
  25019. source: "./media/characters/pixie/front.svg",
  25020. extra: 1924 / 1825,
  25021. bottom: 22.4 / 1946
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(4 + 6 / 12, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Macro",
  25033. height: math.unit(40, "feet")
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(2.1, "meters"),
  25042. weight: math.unit(200, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/the-lascivious/front.svg",
  25046. extra: 1 / 0.893,
  25047. bottom: 3.5 / 573.7
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Human Scale",
  25054. height: math.unit(2.1, "meters")
  25055. },
  25056. {
  25057. name: "Wolxi Scale",
  25058. height: math.unit(46.2, "m"),
  25059. default: true
  25060. },
  25061. {
  25062. name: "Boinker of Buildings",
  25063. height: math.unit(10, "km")
  25064. },
  25065. {
  25066. name: "Shagger of Skyscrapers",
  25067. height: math.unit(40, "km")
  25068. },
  25069. {
  25070. name: "Banger of Boroughs",
  25071. height: math.unit(4000, "km")
  25072. },
  25073. {
  25074. name: "Screwer of States",
  25075. height: math.unit(100000, "km")
  25076. },
  25077. {
  25078. name: "Pounder of Planets",
  25079. height: math.unit(2000000, "km")
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(6, "feet"),
  25088. weight: math.unit(150, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/aj/front.svg",
  25092. extra: 2039 / 1562,
  25093. bottom: 40 / 2079
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(11 + 6 / 12, "feet"),
  25101. default: true
  25102. },
  25103. {
  25104. name: "Megamacro",
  25105. height: math.unit(60, "megameters")
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25111. {
  25112. side: {
  25113. height: math.unit(31 + 8 / 12, "feet"),
  25114. weight: math.unit(75000, "kg"),
  25115. name: "Side",
  25116. image: {
  25117. source: "./media/characters/koros/side.svg",
  25118. extra: 1442 / 1297,
  25119. bottom: 122.7 / 1562
  25120. }
  25121. },
  25122. dicksKingsCrown: {
  25123. height: math.unit(6, "feet"),
  25124. name: "Dicks (King's Crown)",
  25125. image: {
  25126. source: "./media/characters/koros/dicks-kings-crown.svg"
  25127. }
  25128. },
  25129. dicksTailSet: {
  25130. height: math.unit(3, "feet"),
  25131. name: "Dicks (Tail Set)",
  25132. image: {
  25133. source: "./media/characters/koros/dicks-tail-set.svg"
  25134. }
  25135. },
  25136. dickCumming: {
  25137. height: math.unit(7.98, "feet"),
  25138. name: "Dick (Cumming)",
  25139. image: {
  25140. source: "./media/characters/koros/dick-cumming.svg"
  25141. }
  25142. },
  25143. dicksBack: {
  25144. height: math.unit(5.9, "feet"),
  25145. name: "Dicks (Back)",
  25146. image: {
  25147. source: "./media/characters/koros/dicks-back.svg"
  25148. }
  25149. },
  25150. dicksFront: {
  25151. height: math.unit(3.72, "feet"),
  25152. name: "Dicks (Front)",
  25153. image: {
  25154. source: "./media/characters/koros/dicks-front.svg"
  25155. }
  25156. },
  25157. dicksPeeking: {
  25158. height: math.unit(3.0, "feet"),
  25159. name: "Dicks (Peeking)",
  25160. image: {
  25161. source: "./media/characters/koros/dicks-peeking.svg"
  25162. }
  25163. },
  25164. eye: {
  25165. height: math.unit(1.7, "feet"),
  25166. name: "Eye",
  25167. image: {
  25168. source: "./media/characters/koros/eye.svg"
  25169. }
  25170. },
  25171. headFront: {
  25172. height: math.unit(11.69, "feet"),
  25173. name: "Head (Front)",
  25174. image: {
  25175. source: "./media/characters/koros/head-front.svg"
  25176. }
  25177. },
  25178. headSide: {
  25179. height: math.unit(14, "feet"),
  25180. name: "Head (Side)",
  25181. image: {
  25182. source: "./media/characters/koros/head-side.svg"
  25183. }
  25184. },
  25185. leg: {
  25186. height: math.unit(17, "feet"),
  25187. name: "Leg",
  25188. image: {
  25189. source: "./media/characters/koros/leg.svg"
  25190. }
  25191. },
  25192. mawSide: {
  25193. height: math.unit(12.8, "feet"),
  25194. name: "Maw (Side)",
  25195. image: {
  25196. source: "./media/characters/koros/maw-side.svg"
  25197. }
  25198. },
  25199. mawSpitting: {
  25200. height: math.unit(17, "feet"),
  25201. name: "Maw (Spitting)",
  25202. image: {
  25203. source: "./media/characters/koros/maw-spitting.svg"
  25204. }
  25205. },
  25206. slit: {
  25207. height: math.unit(2.8, "feet"),
  25208. name: "Slit",
  25209. image: {
  25210. source: "./media/characters/koros/slit.svg"
  25211. }
  25212. },
  25213. stomach: {
  25214. height: math.unit(6.8, "feet"),
  25215. capacity: math.unit(20, "people"),
  25216. name: "Stomach",
  25217. image: {
  25218. source: "./media/characters/koros/stomach.svg"
  25219. }
  25220. },
  25221. wingspanBottom: {
  25222. height: math.unit(114, "feet"),
  25223. name: "Wingspan (Bottom)",
  25224. image: {
  25225. source: "./media/characters/koros/wingspan-bottom.svg"
  25226. }
  25227. },
  25228. wingspanTop: {
  25229. height: math.unit(104, "feet"),
  25230. name: "Wingspan (Top)",
  25231. image: {
  25232. source: "./media/characters/koros/wingspan-top.svg"
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(31 + 8 / 12, "feet"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(18 + 5 / 12, "feet"),
  25249. weight: math.unit(3750, "kg"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/vexx/front.svg",
  25253. extra: 426 / 396,
  25254. bottom: 31.5 / 458
  25255. }
  25256. },
  25257. maw: {
  25258. height: math.unit(6, "feet"),
  25259. name: "Maw",
  25260. image: {
  25261. source: "./media/characters/vexx/maw.svg"
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(18 + 5 / 12, "feet"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(17 + 6 / 12, "feet"),
  25278. weight: math.unit(150, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/baadra/front.svg",
  25282. extra: 3137 / 2890,
  25283. bottom: 168.4 / 3305
  25284. }
  25285. },
  25286. back: {
  25287. height: math.unit(17 + 6 / 12, "feet"),
  25288. weight: math.unit(150, "lb"),
  25289. name: "Back",
  25290. image: {
  25291. source: "./media/characters/baadra/back.svg",
  25292. extra: 3142 / 2890,
  25293. bottom: 220 / 3371
  25294. }
  25295. },
  25296. head: {
  25297. height: math.unit(5.45, "feet"),
  25298. name: "Head",
  25299. image: {
  25300. source: "./media/characters/baadra/head.svg"
  25301. }
  25302. },
  25303. headAngry: {
  25304. height: math.unit(4.95, "feet"),
  25305. name: "Head (Angry)",
  25306. image: {
  25307. source: "./media/characters/baadra/head-angry.svg"
  25308. }
  25309. },
  25310. headOpen: {
  25311. height: math.unit(6, "feet"),
  25312. name: "Head (Open)",
  25313. image: {
  25314. source: "./media/characters/baadra/head-open.svg"
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Normal",
  25321. height: math.unit(17 + 6 / 12, "feet"),
  25322. default: true
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(7 + 3 / 12, "feet"),
  25331. weight: math.unit(180, "lb"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/juri/front.svg",
  25335. extra: 1401 / 1237,
  25336. bottom: 18.5 / 1418
  25337. }
  25338. },
  25339. side: {
  25340. height: math.unit(7 + 3 / 12, "feet"),
  25341. weight: math.unit(180, "lb"),
  25342. name: "Side",
  25343. image: {
  25344. source: "./media/characters/juri/side.svg",
  25345. extra: 1424 / 1242,
  25346. bottom: 18.5 / 1447
  25347. }
  25348. },
  25349. sitting: {
  25350. height: math.unit(6, "feet"),
  25351. weight: math.unit(180, "lb"),
  25352. name: "Sitting",
  25353. image: {
  25354. source: "./media/characters/juri/sitting.svg",
  25355. extra: 1270 / 1143,
  25356. bottom: 100 / 1343
  25357. }
  25358. },
  25359. back: {
  25360. height: math.unit(7 + 3 / 12, "feet"),
  25361. weight: math.unit(180, "lb"),
  25362. name: "Back",
  25363. image: {
  25364. source: "./media/characters/juri/back.svg",
  25365. extra: 1377 / 1240,
  25366. bottom: 23.7 / 1405
  25367. }
  25368. },
  25369. maw: {
  25370. height: math.unit(2.8, "feet"),
  25371. name: "Maw",
  25372. image: {
  25373. source: "./media/characters/juri/maw.svg"
  25374. }
  25375. },
  25376. stomach: {
  25377. height: math.unit(0.89, "feet"),
  25378. capacity: math.unit(4, "liters"),
  25379. name: "Stomach",
  25380. image: {
  25381. source: "./media/characters/juri/stomach.svg"
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(7 + 3 / 12, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25395. {
  25396. fox: {
  25397. height: math.unit(5 + 6 / 12, "feet"),
  25398. weight: math.unit(140, "lb"),
  25399. name: "Fox",
  25400. image: {
  25401. source: "./media/characters/maxene-sita/fox.svg",
  25402. extra: 146 / 138,
  25403. bottom: 2.1 / 148.19
  25404. }
  25405. },
  25406. foxLaying: {
  25407. height: math.unit(1.70, "feet"),
  25408. weight: math.unit(140, "lb"),
  25409. name: "Fox (Laying)",
  25410. image: {
  25411. source: "./media/characters/maxene-sita/fox-laying.svg",
  25412. extra: 910 / 572,
  25413. bottom: 71 / 981
  25414. }
  25415. },
  25416. kitsune: {
  25417. height: math.unit(10, "feet"),
  25418. weight: math.unit(800, "lb"),
  25419. name: "Kitsune",
  25420. image: {
  25421. source: "./media/characters/maxene-sita/kitsune.svg",
  25422. extra: 185 / 176,
  25423. bottom: 4.7 / 189.9
  25424. }
  25425. },
  25426. hellhound: {
  25427. height: math.unit(10, "feet"),
  25428. weight: math.unit(700, "lb"),
  25429. name: "Hellhound",
  25430. image: {
  25431. source: "./media/characters/maxene-sita/hellhound.svg",
  25432. extra: 1600 / 1545,
  25433. bottom: 81 / 1681
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(5 + 6 / 12, "feet"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25447. {
  25448. front: {
  25449. height: math.unit(3 + 4 / 12, "feet"),
  25450. weight: math.unit(70, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/maia/front.svg",
  25454. extra: 227 / 219.5,
  25455. bottom: 40 / 267
  25456. }
  25457. },
  25458. back: {
  25459. height: math.unit(3 + 4 / 12, "feet"),
  25460. weight: math.unit(70, "lb"),
  25461. name: "Back",
  25462. image: {
  25463. source: "./media/characters/maia/back.svg",
  25464. extra: 237 / 225
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(3 + 4 / 12, "feet"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(5 + 10 / 12, "feet"),
  25481. weight: math.unit(197, "lb"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/jabaro/front.svg",
  25485. extra: 225 / 216,
  25486. bottom: 5.06 / 230
  25487. }
  25488. },
  25489. back: {
  25490. height: math.unit(5 + 10 / 12, "feet"),
  25491. weight: math.unit(197, "lb"),
  25492. name: "Back",
  25493. image: {
  25494. source: "./media/characters/jabaro/back.svg",
  25495. extra: 225 / 219,
  25496. bottom: 1.9 / 227
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Normal",
  25503. height: math.unit(5 + 10 / 12, "feet"),
  25504. default: true
  25505. },
  25506. ]
  25507. ))
  25508. characterMakers.push(() => makeCharacter(
  25509. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25510. {
  25511. front: {
  25512. height: math.unit(5 + 8 / 12, "feet"),
  25513. weight: math.unit(139, "lb"),
  25514. name: "Front",
  25515. image: {
  25516. source: "./media/characters/risa/front.svg",
  25517. extra: 270 / 260,
  25518. bottom: 11.2 / 282
  25519. }
  25520. },
  25521. back: {
  25522. height: math.unit(5 + 8 / 12, "feet"),
  25523. weight: math.unit(139, "lb"),
  25524. name: "Back",
  25525. image: {
  25526. source: "./media/characters/risa/back.svg",
  25527. extra: 264 / 255,
  25528. bottom: 4 / 268
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(5 + 8 / 12, "feet"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25542. {
  25543. front: {
  25544. height: math.unit(2 + 11 / 12, "feet"),
  25545. weight: math.unit(30, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/weatley/front.svg",
  25549. bottom: 10.7 / 414,
  25550. extra: 403.5 / 362
  25551. }
  25552. },
  25553. back: {
  25554. height: math.unit(2 + 11 / 12, "feet"),
  25555. weight: math.unit(30, "lb"),
  25556. name: "Back",
  25557. image: {
  25558. source: "./media/characters/weatley/back.svg",
  25559. bottom: 10.7 / 414,
  25560. extra: 403.5 / 362
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(2 + 11 / 12, "feet"),
  25568. default: true
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(5 + 2 / 12, "feet"),
  25577. weight: math.unit(50, "kg"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/mercury-crescent/front.svg",
  25581. extra: 1088 / 1033,
  25582. bottom: 18.9 / 1109
  25583. }
  25584. },
  25585. },
  25586. [
  25587. {
  25588. name: "Normal",
  25589. height: math.unit(5 + 2 / 12, "feet"),
  25590. default: true
  25591. },
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(2, "feet"),
  25599. weight: math.unit(15, "kg"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/diamond-jones/front.svg",
  25603. extra: 727/723,
  25604. bottom: 46/773
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Normal",
  25611. height: math.unit(2, "feet"),
  25612. default: true
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(3, "feet"),
  25621. weight: math.unit(30, "kg"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/sweet-bit/front.svg",
  25625. extra: 675 / 567,
  25626. bottom: 27.7 / 703
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(3, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25640. {
  25641. side: {
  25642. height: math.unit(9.178, "feet"),
  25643. weight: math.unit(500, "lb"),
  25644. name: "Side",
  25645. image: {
  25646. source: "./media/characters/umbrazen/side.svg",
  25647. extra: 1730 / 1473,
  25648. bottom: 34.6 / 1765
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(9.178, "feet"),
  25656. default: true
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25662. {
  25663. front: {
  25664. height: math.unit(10, "feet"),
  25665. weight: math.unit(750, "lb"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/arlist/front.svg",
  25669. extra: 961 / 778,
  25670. bottom: 6.2 / 986
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Normal",
  25677. height: math.unit(10, "feet"),
  25678. default: true
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25684. {
  25685. front: {
  25686. height: math.unit(5 + 1 / 12, "feet"),
  25687. weight: math.unit(110, "lb"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/aradel/front.svg",
  25691. extra: 324 / 303,
  25692. bottom: 3.6 / 329.4
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(5 + 1 / 12, "feet"),
  25700. default: true
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(3 + 8 / 12, "feet"),
  25709. weight: math.unit(50, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/serryn/front.svg",
  25713. extra: 1792 / 1656,
  25714. bottom: 43.5 / 1840
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(3 + 8 / 12, "feet"),
  25722. default: true
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(7 + 10 / 12, "feet"),
  25731. weight: math.unit(255, "lb"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/xavier-thyme/front.svg",
  25735. extra: 3733 / 3642,
  25736. bottom: 131 / 3869
  25737. }
  25738. },
  25739. frontRaven: {
  25740. height: math.unit(7 + 10 / 12, "feet"),
  25741. weight: math.unit(255, "lb"),
  25742. name: "Front (Raven)",
  25743. image: {
  25744. source: "./media/characters/xavier-thyme/front-raven.svg",
  25745. extra: 4385 / 3642,
  25746. bottom: 131 / 4517
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(7 + 10 / 12, "feet"),
  25754. default: true
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(1.6, "m"),
  25763. weight: math.unit(50, "kg"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/kiki/front.svg",
  25767. extra: 4682 / 3610,
  25768. bottom: 115 / 4777
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(1.6, "meters"),
  25776. default: true
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25782. {
  25783. front: {
  25784. height: math.unit(50, "m"),
  25785. weight: math.unit(500, "tonnes"),
  25786. name: "Front",
  25787. image: {
  25788. source: "./media/characters/ryoko/front.svg",
  25789. extra: 4632 / 3926,
  25790. bottom: 193 / 4823
  25791. }
  25792. },
  25793. },
  25794. [
  25795. {
  25796. name: "Normal",
  25797. height: math.unit(50, "meters"),
  25798. default: true
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(30, "m"),
  25807. weight: math.unit(22, "tonnes"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/elio/front.svg",
  25811. extra: 4582 / 3720,
  25812. bottom: 236 / 4828
  25813. }
  25814. },
  25815. },
  25816. [
  25817. {
  25818. name: "Normal",
  25819. height: math.unit(30, "meters"),
  25820. default: true
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(6 + 3 / 12, "feet"),
  25829. weight: math.unit(120, "lb"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/azura/front.svg",
  25833. extra: 1149 / 1135,
  25834. bottom: 45 / 1194
  25835. }
  25836. },
  25837. frontClothed: {
  25838. height: math.unit(6 + 3 / 12, "feet"),
  25839. weight: math.unit(120, "lb"),
  25840. name: "Front (Clothed)",
  25841. image: {
  25842. source: "./media/characters/azura/front-clothed.svg",
  25843. extra: 1149 / 1135,
  25844. bottom: 45 / 1194
  25845. }
  25846. },
  25847. },
  25848. [
  25849. {
  25850. name: "Normal",
  25851. height: math.unit(6 + 3 / 12, "feet"),
  25852. default: true
  25853. },
  25854. {
  25855. name: "Macro",
  25856. height: math.unit(20 + 6 / 12, "feet")
  25857. },
  25858. {
  25859. name: "Megamacro",
  25860. height: math.unit(12, "miles")
  25861. },
  25862. {
  25863. name: "Gigamacro",
  25864. height: math.unit(10000, "miles")
  25865. },
  25866. {
  25867. name: "Teramacro",
  25868. height: math.unit(900000, "miles")
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(12, "feet"),
  25877. weight: math.unit(1, "ton"),
  25878. capacity: math.unit(660000, "gallons"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/zeus/front.svg",
  25882. extra: 5005 / 4717,
  25883. bottom: 363 / 5388
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(12, "feet")
  25891. },
  25892. {
  25893. name: "Preferred Size",
  25894. height: math.unit(0.5, "miles"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Giga Horse",
  25899. height: math.unit(300, "miles")
  25900. },
  25901. {
  25902. name: "Riding Planets",
  25903. height: math.unit(30, "megameters")
  25904. },
  25905. {
  25906. name: "Cosmic Giant",
  25907. height: math.unit(3, "zettameters")
  25908. },
  25909. {
  25910. name: "Breeding God",
  25911. height: math.unit(9.92e22, "yottameters")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25917. {
  25918. side: {
  25919. height: math.unit(9, "feet"),
  25920. weight: math.unit(1500, "kg"),
  25921. name: "Side",
  25922. image: {
  25923. source: "./media/characters/fang/side.svg",
  25924. extra: 924 / 866,
  25925. bottom: 47.5 / 972.3
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(9, "feet"),
  25933. default: true
  25934. },
  25935. {
  25936. name: "Macro",
  25937. height: math.unit(75 + 6 / 12, "feet")
  25938. },
  25939. {
  25940. name: "Teramacro",
  25941. height: math.unit(50000, "miles")
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(10, "feet"),
  25950. weight: math.unit(2, "tons"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/rekhit/front.svg",
  25954. extra: 2796 / 2590,
  25955. bottom: 225 / 3022
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(10, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(500, "feet")
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(7 + 6.451 / 12, "feet"),
  25976. weight: math.unit(310, "lb"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/dahlia-verrick/front.svg",
  25980. extra: 1488 / 1365,
  25981. bottom: 6.2 / 1495
  25982. }
  25983. },
  25984. back: {
  25985. height: math.unit(7 + 6.451 / 12, "feet"),
  25986. weight: math.unit(310, "lb"),
  25987. name: "Back",
  25988. image: {
  25989. source: "./media/characters/dahlia-verrick/back.svg",
  25990. extra: 1472 / 1351,
  25991. bottom: 5.28 / 1477
  25992. }
  25993. },
  25994. frontBusiness: {
  25995. height: math.unit(7 + 6.451 / 12, "feet"),
  25996. weight: math.unit(200, "lb"),
  25997. name: "Front (Business)",
  25998. image: {
  25999. source: "./media/characters/dahlia-verrick/front-business.svg",
  26000. extra: 1478 / 1381,
  26001. bottom: 5.5 / 1484
  26002. }
  26003. },
  26004. frontCasual: {
  26005. height: math.unit(7 + 6.451 / 12, "feet"),
  26006. weight: math.unit(200, "lb"),
  26007. name: "Front (Casual)",
  26008. image: {
  26009. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26010. extra: 1478 / 1381,
  26011. bottom: 5.5 / 1484
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Travel-Sized",
  26018. height: math.unit(7.45, "inches")
  26019. },
  26020. {
  26021. name: "Normal",
  26022. height: math.unit(7 + 6.451 / 12, "feet"),
  26023. default: true
  26024. },
  26025. {
  26026. name: "Hitting the Town",
  26027. height: math.unit(37 + 8 / 12, "feet")
  26028. },
  26029. {
  26030. name: "Stomp in the Suburbs",
  26031. height: math.unit(964 + 9.728 / 12, "feet")
  26032. },
  26033. {
  26034. name: "Sit on the City",
  26035. height: math.unit(61747 + 10.592 / 12, "feet")
  26036. },
  26037. {
  26038. name: "Glomp the Globe",
  26039. height: math.unit(252919327 + 4.832 / 12, "feet")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(6 + 4 / 12, "feet"),
  26048. weight: math.unit(320, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/balina-mahigan/front.svg",
  26052. extra: 447 / 428,
  26053. bottom: 18 / 466
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(6 + 4 / 12, "feet"),
  26058. weight: math.unit(320, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/balina-mahigan/back.svg",
  26062. extra: 445 / 428,
  26063. bottom: 4.07 / 448
  26064. }
  26065. },
  26066. arm: {
  26067. height: math.unit(1.88, "feet"),
  26068. name: "Arm",
  26069. image: {
  26070. source: "./media/characters/balina-mahigan/arm.svg"
  26071. }
  26072. },
  26073. backPort: {
  26074. height: math.unit(0.685, "feet"),
  26075. name: "Back Port",
  26076. image: {
  26077. source: "./media/characters/balina-mahigan/back-port.svg"
  26078. }
  26079. },
  26080. hoofpaw: {
  26081. height: math.unit(1.41, "feet"),
  26082. name: "Hoofpaw",
  26083. image: {
  26084. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26085. }
  26086. },
  26087. leftHandBack: {
  26088. height: math.unit(0.938, "feet"),
  26089. name: "Left Hand (Back)",
  26090. image: {
  26091. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26092. }
  26093. },
  26094. leftHandFront: {
  26095. height: math.unit(0.938, "feet"),
  26096. name: "Left Hand (Front)",
  26097. image: {
  26098. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26099. }
  26100. },
  26101. rightHandBack: {
  26102. height: math.unit(0.95, "feet"),
  26103. name: "Right Hand (Back)",
  26104. image: {
  26105. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26106. }
  26107. },
  26108. rightHandFront: {
  26109. height: math.unit(0.95, "feet"),
  26110. name: "Right Hand (Front)",
  26111. image: {
  26112. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Normal",
  26119. height: math.unit(6 + 4 / 12, "feet"),
  26120. default: true
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(6, "feet"),
  26129. weight: math.unit(320, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/balina-mejeri/front.svg",
  26133. extra: 517 / 488,
  26134. bottom: 44.2 / 561
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Normal",
  26141. height: math.unit(6 + 4 / 12, "feet")
  26142. },
  26143. {
  26144. name: "Business",
  26145. height: math.unit(155, "feet"),
  26146. default: true
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26152. {
  26153. kneeling: {
  26154. height: math.unit(6 + 4 / 12, "feet"),
  26155. weight: math.unit(300 * 20, "lb"),
  26156. name: "Kneeling",
  26157. image: {
  26158. source: "./media/characters/balbarian/kneeling.svg",
  26159. extra: 922 / 862,
  26160. bottom: 42.4 / 965
  26161. }
  26162. },
  26163. },
  26164. [
  26165. {
  26166. name: "Normal",
  26167. height: math.unit(6 + 4 / 12, "feet")
  26168. },
  26169. {
  26170. name: "Treasured",
  26171. height: math.unit(18 + 9 / 12, "feet"),
  26172. default: true
  26173. },
  26174. {
  26175. name: "Macro",
  26176. height: math.unit(900, "feet")
  26177. },
  26178. ]
  26179. ))
  26180. characterMakers.push(() => makeCharacter(
  26181. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26182. {
  26183. front: {
  26184. height: math.unit(6 + 4 / 12, "feet"),
  26185. weight: math.unit(325, "lb"),
  26186. name: "Front",
  26187. image: {
  26188. source: "./media/characters/balina-amarini/front.svg",
  26189. extra: 415 / 403,
  26190. bottom: 19 / 433.4
  26191. }
  26192. },
  26193. back: {
  26194. height: math.unit(6 + 4 / 12, "feet"),
  26195. weight: math.unit(325, "lb"),
  26196. name: "Back",
  26197. image: {
  26198. source: "./media/characters/balina-amarini/back.svg",
  26199. extra: 415 / 403,
  26200. bottom: 13.5 / 432
  26201. }
  26202. },
  26203. overdrive: {
  26204. height: math.unit(6 + 4 / 12, "feet"),
  26205. weight: math.unit(400, "lb"),
  26206. name: "Overdrive",
  26207. image: {
  26208. source: "./media/characters/balina-amarini/overdrive.svg",
  26209. extra: 269 / 259,
  26210. bottom: 12 / 282
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Boom",
  26217. height: math.unit(9 + 10 / 12, "feet"),
  26218. default: true
  26219. },
  26220. {
  26221. name: "Macro",
  26222. height: math.unit(280, "feet")
  26223. },
  26224. ]
  26225. ))
  26226. characterMakers.push(() => makeCharacter(
  26227. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26228. {
  26229. goddess: {
  26230. height: math.unit(600, "feet"),
  26231. weight: math.unit(2000000, "tons"),
  26232. name: "Goddess",
  26233. image: {
  26234. source: "./media/characters/lady-kubwa/goddess.svg",
  26235. extra: 1240.5 / 1223,
  26236. bottom: 22 / 1263
  26237. }
  26238. },
  26239. goddesser: {
  26240. height: math.unit(900, "feet"),
  26241. weight: math.unit(20000000, "lb"),
  26242. name: "Goddess-er",
  26243. image: {
  26244. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26245. extra: 899 / 888,
  26246. bottom: 12.6 / 912
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(600, "feet"),
  26254. default: true
  26255. },
  26256. {
  26257. name: "Megamacro",
  26258. height: math.unit(250, "miles")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(7 + 7 / 12, "feet"),
  26267. weight: math.unit(250, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/tala-grovehorn/front.svg",
  26271. extra: 2636 / 2525,
  26272. bottom: 147 / 2781
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(7 + 7 / 12, "feet"),
  26277. weight: math.unit(250, "lb"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/tala-grovehorn/back.svg",
  26281. extra: 2635 / 2539,
  26282. bottom: 100 / 2732.8
  26283. }
  26284. },
  26285. mouth: {
  26286. height: math.unit(1.15, "feet"),
  26287. name: "Mouth",
  26288. image: {
  26289. source: "./media/characters/tala-grovehorn/mouth.svg"
  26290. }
  26291. },
  26292. dick: {
  26293. height: math.unit(2.36, "feet"),
  26294. name: "Dick",
  26295. image: {
  26296. source: "./media/characters/tala-grovehorn/dick.svg"
  26297. }
  26298. },
  26299. slit: {
  26300. height: math.unit(0.61, "feet"),
  26301. name: "Slit",
  26302. image: {
  26303. source: "./media/characters/tala-grovehorn/slit.svg"
  26304. }
  26305. },
  26306. },
  26307. [
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(7 + 7 / 12, "feet"),
  26315. weight: math.unit(225, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/epona/front.svg",
  26319. extra: 2445 / 2290,
  26320. bottom: 251 / 2696
  26321. }
  26322. },
  26323. back: {
  26324. height: math.unit(7 + 7 / 12, "feet"),
  26325. weight: math.unit(225, "lb"),
  26326. name: "Back",
  26327. image: {
  26328. source: "./media/characters/epona/back.svg",
  26329. extra: 2546 / 2408,
  26330. bottom: 44 / 2589
  26331. }
  26332. },
  26333. genitals: {
  26334. height: math.unit(1.5, "feet"),
  26335. name: "Genitals",
  26336. image: {
  26337. source: "./media/characters/epona/genitals.svg"
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(7 + 7 / 12, "feet"),
  26345. default: true
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(7, "feet"),
  26354. weight: math.unit(518, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/avia-bloodbourn/front.svg",
  26358. extra: 1466 / 1350,
  26359. bottom: 65 / 1527
  26360. }
  26361. },
  26362. },
  26363. [
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(9.35, "feet"),
  26371. weight: math.unit(600, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/amera/front.svg",
  26375. extra: 891 / 818,
  26376. bottom: 30 / 922.7
  26377. }
  26378. },
  26379. back: {
  26380. height: math.unit(9.35, "feet"),
  26381. weight: math.unit(600, "lb"),
  26382. name: "Back",
  26383. image: {
  26384. source: "./media/characters/amera/back.svg",
  26385. extra: 876 / 824,
  26386. bottom: 6.8 / 884
  26387. }
  26388. },
  26389. dick: {
  26390. height: math.unit(2.14, "feet"),
  26391. name: "Dick",
  26392. image: {
  26393. source: "./media/characters/amera/dick.svg"
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Normal",
  26400. height: math.unit(9.35, "feet"),
  26401. default: true
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26407. {
  26408. kneeling: {
  26409. height: math.unit(3 + 4 / 12, "feet"),
  26410. weight: math.unit(90, "lb"),
  26411. name: "Kneeling",
  26412. image: {
  26413. source: "./media/characters/rosewen/kneeling.svg",
  26414. extra: 1835 / 1571,
  26415. bottom: 27.7 / 1862
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(3 + 4 / 12, "feet"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(5 + 10 / 12, "feet"),
  26432. weight: math.unit(200, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/sabah/front.svg",
  26436. extra: 849 / 763,
  26437. bottom: 33.9 / 881
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(5 + 10 / 12, "feet"),
  26445. default: true
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26451. {
  26452. front: {
  26453. height: math.unit(3 + 5 / 12, "feet"),
  26454. weight: math.unit(40, "kg"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/purple-flame/front.svg",
  26458. extra: 1577 / 1412,
  26459. bottom: 97 / 1694
  26460. }
  26461. },
  26462. frontDressed: {
  26463. height: math.unit(3 + 5 / 12, "feet"),
  26464. weight: math.unit(40, "kg"),
  26465. name: "Front (Dressed)",
  26466. image: {
  26467. source: "./media/characters/purple-flame/front-dressed.svg",
  26468. extra: 1577 / 1412,
  26469. bottom: 97 / 1694
  26470. }
  26471. },
  26472. headphones: {
  26473. height: math.unit(0.85, "feet"),
  26474. name: "Headphones",
  26475. image: {
  26476. source: "./media/characters/purple-flame/headphones.svg"
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Really Small",
  26483. height: math.unit(5, "cm")
  26484. },
  26485. {
  26486. name: "Micro",
  26487. height: math.unit(1 + 5 / 12, "feet")
  26488. },
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(3 + 5 / 12, "feet"),
  26492. default: true
  26493. },
  26494. {
  26495. name: "Minimacro",
  26496. height: math.unit(125, "feet")
  26497. },
  26498. {
  26499. name: "Macro",
  26500. height: math.unit(0.5, "miles")
  26501. },
  26502. {
  26503. name: "Megamacro",
  26504. height: math.unit(50, "miles")
  26505. },
  26506. {
  26507. name: "Gigantic",
  26508. height: math.unit(750, "miles")
  26509. },
  26510. {
  26511. name: "Planetary",
  26512. height: math.unit(15000, "miles")
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(14, "feet"),
  26521. weight: math.unit(959, "lb"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/arsenal/front.svg",
  26525. extra: 2357 / 2157,
  26526. bottom: 93 / 2458
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(14, "feet"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(6, "feet"),
  26543. weight: math.unit(150, "lb"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/adira/front.svg",
  26547. extra: 1078 / 1029,
  26548. bottom: 87 / 1166
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Micro",
  26555. height: math.unit(4, "inches"),
  26556. default: true
  26557. },
  26558. {
  26559. name: "Macro",
  26560. height: math.unit(50, "feet")
  26561. },
  26562. ]
  26563. ))
  26564. characterMakers.push(() => makeCharacter(
  26565. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26566. {
  26567. front: {
  26568. height: math.unit(16, "feet"),
  26569. weight: math.unit(1000, "lb"),
  26570. name: "Front",
  26571. image: {
  26572. source: "./media/characters/grim/front.svg",
  26573. extra: 622 / 614,
  26574. bottom: 18.1 / 642
  26575. }
  26576. },
  26577. back: {
  26578. height: math.unit(16, "feet"),
  26579. weight: math.unit(1000, "lb"),
  26580. name: "Back",
  26581. image: {
  26582. source: "./media/characters/grim/back.svg",
  26583. extra: 610.6 / 602,
  26584. bottom: 40.8 / 652
  26585. }
  26586. },
  26587. hunched: {
  26588. height: math.unit(9.75, "feet"),
  26589. weight: math.unit(1000, "lb"),
  26590. name: "Hunched",
  26591. image: {
  26592. source: "./media/characters/grim/hunched.svg",
  26593. extra: 304 / 297,
  26594. bottom: 35.4 / 394
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(16, "feet"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(2.3, "meters"),
  26611. weight: math.unit(300, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/sinja/front-sfw.svg",
  26615. extra: 1393 / 1294,
  26616. bottom: 70 / 1463
  26617. }
  26618. },
  26619. frontNsfw: {
  26620. height: math.unit(2.3, "meters"),
  26621. weight: math.unit(300, "lb"),
  26622. name: "Front (NSFW)",
  26623. image: {
  26624. source: "./media/characters/sinja/front-nsfw.svg",
  26625. extra: 1393 / 1294,
  26626. bottom: 70 / 1463
  26627. }
  26628. },
  26629. back: {
  26630. height: math.unit(2.3, "meters"),
  26631. weight: math.unit(300, "lb"),
  26632. name: "Back",
  26633. image: {
  26634. source: "./media/characters/sinja/back.svg",
  26635. extra: 1393 / 1294,
  26636. bottom: 70 / 1463
  26637. }
  26638. },
  26639. head: {
  26640. height: math.unit(1.771, "feet"),
  26641. name: "Head",
  26642. image: {
  26643. source: "./media/characters/sinja/head.svg"
  26644. }
  26645. },
  26646. slit: {
  26647. height: math.unit(0.8, "feet"),
  26648. name: "Slit",
  26649. image: {
  26650. source: "./media/characters/sinja/slit.svg"
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Normal",
  26657. height: math.unit(2.3, "meters")
  26658. },
  26659. {
  26660. name: "Macro",
  26661. height: math.unit(91, "meters"),
  26662. default: true
  26663. },
  26664. {
  26665. name: "Megamacro",
  26666. height: math.unit(91440, "meters")
  26667. },
  26668. {
  26669. name: "Gigamacro",
  26670. height: math.unit(60960000, "meters")
  26671. },
  26672. {
  26673. name: "Teramacro",
  26674. height: math.unit(9144000000, "meters")
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(1.7, "meters"),
  26683. weight: math.unit(130, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/kyu/front.svg",
  26687. extra: 415 / 395,
  26688. bottom: 5 / 420
  26689. }
  26690. },
  26691. head: {
  26692. height: math.unit(1.75, "feet"),
  26693. name: "Head",
  26694. image: {
  26695. source: "./media/characters/kyu/head.svg"
  26696. }
  26697. },
  26698. foot: {
  26699. height: math.unit(0.81, "feet"),
  26700. name: "Foot",
  26701. image: {
  26702. source: "./media/characters/kyu/foot.svg"
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(1.7, "meters")
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(131, "feet"),
  26714. default: true
  26715. },
  26716. {
  26717. name: "Megamacro",
  26718. height: math.unit(91440, "meters")
  26719. },
  26720. {
  26721. name: "Gigamacro",
  26722. height: math.unit(60960000, "meters")
  26723. },
  26724. {
  26725. name: "Teramacro",
  26726. height: math.unit(9144000000, "meters")
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(7 + 1 / 12, "feet"),
  26735. weight: math.unit(250, "lb"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/joey/front.svg",
  26739. extra: 1791 / 1537,
  26740. bottom: 28 / 1816
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Micro",
  26747. height: math.unit(3, "inches")
  26748. },
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(7 + 1 / 12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(165, "cm"),
  26761. weight: math.unit(140, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/sam-evans/front.svg",
  26765. extra: 3417 / 3230,
  26766. bottom: 41.3 / 3417
  26767. }
  26768. },
  26769. frontSixTails: {
  26770. height: math.unit(165, "cm"),
  26771. weight: math.unit(140, "lb"),
  26772. name: "Front-six-tails",
  26773. image: {
  26774. source: "./media/characters/sam-evans/front-six-tails.svg",
  26775. extra: 3417 / 3230,
  26776. bottom: 41.3 / 3417
  26777. }
  26778. },
  26779. back: {
  26780. height: math.unit(165, "cm"),
  26781. weight: math.unit(140, "lb"),
  26782. name: "Back",
  26783. image: {
  26784. source: "./media/characters/sam-evans/back.svg",
  26785. extra: 3227 / 3032,
  26786. bottom: 6.8 / 3234
  26787. }
  26788. },
  26789. face: {
  26790. height: math.unit(0.68, "feet"),
  26791. name: "Face",
  26792. image: {
  26793. source: "./media/characters/sam-evans/face.svg"
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(165, "cm"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Macro",
  26805. height: math.unit(100, "meters")
  26806. },
  26807. {
  26808. name: "Macro+",
  26809. height: math.unit(800, "meters")
  26810. },
  26811. {
  26812. name: "Macro++",
  26813. height: math.unit(3, "km")
  26814. },
  26815. {
  26816. name: "Macro+++",
  26817. height: math.unit(30, "km")
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(10, "feet"),
  26826. weight: math.unit(750, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/juliet-a/front.svg",
  26830. extra: 1766 / 1720,
  26831. bottom: 43 / 1809
  26832. }
  26833. },
  26834. back: {
  26835. height: math.unit(10, "feet"),
  26836. weight: math.unit(750, "lb"),
  26837. name: "Back",
  26838. image: {
  26839. source: "./media/characters/juliet-a/back.svg",
  26840. extra: 1781 / 1734,
  26841. bottom: 35 / 1810,
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(10, "feet"),
  26849. default: true
  26850. },
  26851. {
  26852. name: "Dragon Form",
  26853. height: math.unit(250, "feet")
  26854. },
  26855. {
  26856. name: "Macro",
  26857. height: math.unit(1000, "feet")
  26858. },
  26859. {
  26860. name: "Megamacro",
  26861. height: math.unit(10000, "feet")
  26862. }
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26867. {
  26868. regular: {
  26869. height: math.unit(7 + 3 / 12, "feet"),
  26870. weight: math.unit(260, "lb"),
  26871. name: "Regular",
  26872. image: {
  26873. source: "./media/characters/wild/regular.svg",
  26874. extra: 97.45 / 92,
  26875. bottom: 6.8 / 104.3
  26876. }
  26877. },
  26878. biggums: {
  26879. height: math.unit(8 + 6 / 12, "feet"),
  26880. weight: math.unit(425, "lb"),
  26881. name: "Biggums",
  26882. image: {
  26883. source: "./media/characters/wild/biggums.svg",
  26884. extra: 97.45 / 92,
  26885. bottom: 7.5 / 132.34
  26886. }
  26887. },
  26888. mawRegular: {
  26889. height: math.unit(1.24, "feet"),
  26890. name: "Maw (Regular)",
  26891. image: {
  26892. source: "./media/characters/wild/maw.svg"
  26893. }
  26894. },
  26895. mawBiggums: {
  26896. height: math.unit(1.47, "feet"),
  26897. name: "Maw (Biggums)",
  26898. image: {
  26899. source: "./media/characters/wild/maw.svg"
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(7 + 3 / 12, "feet"),
  26907. default: true
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26913. {
  26914. front: {
  26915. height: math.unit(2.5, "meters"),
  26916. weight: math.unit(200, "kg"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/vidar/front.svg",
  26920. extra: 2994 / 2795,
  26921. bottom: 56 / 3061
  26922. }
  26923. },
  26924. back: {
  26925. height: math.unit(2.5, "meters"),
  26926. weight: math.unit(200, "kg"),
  26927. name: "Back",
  26928. image: {
  26929. source: "./media/characters/vidar/back.svg",
  26930. extra: 3131 / 2928,
  26931. bottom: 13.5 / 3141.5
  26932. }
  26933. },
  26934. feral: {
  26935. height: math.unit(2.5, "meters"),
  26936. weight: math.unit(2000, "kg"),
  26937. name: "Feral",
  26938. image: {
  26939. source: "./media/characters/vidar/feral.svg",
  26940. extra: 2790 / 1765,
  26941. bottom: 6 / 2796
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(2.5, "meters"),
  26949. default: true
  26950. },
  26951. {
  26952. name: "Macro",
  26953. height: math.unit(100, "meters")
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(5 + 9 / 12, "feet"),
  26962. weight: math.unit(120, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/ash/front.svg",
  26966. extra: 2189 / 1961,
  26967. bottom: 5.2 / 2194
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Normal",
  26974. height: math.unit(5 + 9 / 12, "feet"),
  26975. default: true
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(9, "feet"),
  26984. weight: math.unit(10000, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/gygabite/front.svg",
  26988. bottom: 31.7 / 537.8,
  26989. extra: 505 / 370
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Normal",
  26996. height: math.unit(9, "feet"),
  26997. default: true
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27003. {
  27004. front: {
  27005. height: math.unit(12, "feet"),
  27006. weight: math.unit(35000, "lb"),
  27007. name: "Front",
  27008. image: {
  27009. source: "./media/characters/p0tat0/front.svg",
  27010. extra: 1065 / 921,
  27011. bottom: 55.7 / 1121.25
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(12, "feet"),
  27019. default: true
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27025. {
  27026. side: {
  27027. height: math.unit(6.5, "feet"),
  27028. weight: math.unit(800, "lb"),
  27029. name: "Side",
  27030. image: {
  27031. source: "./media/characters/dusk/side.svg",
  27032. extra: 615 / 373,
  27033. bottom: 53 / 664
  27034. }
  27035. },
  27036. sitting: {
  27037. height: math.unit(7, "feet"),
  27038. weight: math.unit(800, "lb"),
  27039. name: "Sitting",
  27040. image: {
  27041. source: "./media/characters/dusk/sitting.svg",
  27042. extra: 753 / 425,
  27043. bottom: 33 / 774
  27044. }
  27045. },
  27046. head: {
  27047. height: math.unit(6.1, "feet"),
  27048. name: "Head",
  27049. image: {
  27050. source: "./media/characters/dusk/head.svg"
  27051. }
  27052. },
  27053. },
  27054. [
  27055. {
  27056. name: "Normal",
  27057. height: math.unit(7, "feet"),
  27058. default: true
  27059. },
  27060. ]
  27061. ))
  27062. characterMakers.push(() => makeCharacter(
  27063. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27064. {
  27065. front: {
  27066. height: math.unit(15, "feet"),
  27067. weight: math.unit(7000, "lb"),
  27068. name: "Front",
  27069. image: {
  27070. source: "./media/characters/jay-direwolf/front.svg",
  27071. extra: 1810 / 1732,
  27072. bottom: 66 / 1892
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(15, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(4 + 9 / 12, "feet"),
  27089. weight: math.unit(130, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/anchovie/front.svg",
  27093. extra: 382 / 350,
  27094. bottom: 25 / 409
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(4 + 9 / 12, "feet"),
  27099. weight: math.unit(130, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/anchovie/back.svg",
  27103. extra: 385 / 352,
  27104. bottom: 16.6 / 402
  27105. }
  27106. },
  27107. frontDressed: {
  27108. height: math.unit(4 + 9 / 12, "feet"),
  27109. weight: math.unit(130, "lb"),
  27110. name: "Front (Dressed)",
  27111. image: {
  27112. source: "./media/characters/anchovie/front-dressed.svg",
  27113. extra: 382 / 350,
  27114. bottom: 25 / 409
  27115. }
  27116. },
  27117. backDressed: {
  27118. height: math.unit(4 + 9 / 12, "feet"),
  27119. weight: math.unit(130, "lb"),
  27120. name: "Back (Dressed)",
  27121. image: {
  27122. source: "./media/characters/anchovie/back-dressed.svg",
  27123. extra: 385 / 352,
  27124. bottom: 16.6 / 402
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Micro",
  27131. height: math.unit(6.4, "inches")
  27132. },
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(4 + 9 / 12, "feet"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(2, "meters"),
  27145. weight: math.unit(180, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/acidrenamon/front.svg",
  27149. extra: 987 / 890,
  27150. bottom: 22.8 / 1009
  27151. }
  27152. },
  27153. back: {
  27154. height: math.unit(2, "meters"),
  27155. weight: math.unit(180, "lb"),
  27156. name: "Back",
  27157. image: {
  27158. source: "./media/characters/acidrenamon/back.svg",
  27159. extra: 983 / 891,
  27160. bottom: 8.4 / 992
  27161. }
  27162. },
  27163. head: {
  27164. height: math.unit(1.92, "feet"),
  27165. name: "Head",
  27166. image: {
  27167. source: "./media/characters/acidrenamon/head.svg"
  27168. }
  27169. },
  27170. rump: {
  27171. height: math.unit(1.72, "feet"),
  27172. name: "Rump",
  27173. image: {
  27174. source: "./media/characters/acidrenamon/rump.svg"
  27175. }
  27176. },
  27177. tail: {
  27178. height: math.unit(4.2, "feet"),
  27179. name: "Tail",
  27180. image: {
  27181. source: "./media/characters/acidrenamon/tail.svg"
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(2, "meters"),
  27189. default: true
  27190. },
  27191. {
  27192. name: "Minimacro",
  27193. height: math.unit(7, "meters")
  27194. },
  27195. {
  27196. name: "Macro",
  27197. height: math.unit(200, "meters")
  27198. },
  27199. {
  27200. name: "Gigamacro",
  27201. height: math.unit(0.2, "earths")
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27207. {
  27208. front: {
  27209. height: math.unit(6, "feet"),
  27210. weight: math.unit(150, "lb"),
  27211. name: "Front",
  27212. image: {
  27213. source: "./media/characters/kenzie-lee/front.svg",
  27214. extra: 1525 / 1465,
  27215. bottom: 45 / 1570
  27216. }
  27217. },
  27218. side: {
  27219. height: math.unit(6, "feet"),
  27220. weight: math.unit(150, "lb"),
  27221. name: "Side",
  27222. image: {
  27223. source: "./media/characters/kenzie-lee/side.svg",
  27224. extra: 5505 / 5383,
  27225. bottom: 60 / 5573
  27226. }
  27227. },
  27228. paw: {
  27229. height: math.unit(0.57, "feet"),
  27230. name: "Paw",
  27231. image: {
  27232. source: "./media/characters/kenzie-lee/paw.svg"
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Normal",
  27239. height: math.unit(152, "feet"),
  27240. default: true
  27241. },
  27242. {
  27243. name: "Megamacro",
  27244. height: math.unit(7, "miles")
  27245. },
  27246. {
  27247. name: "Gigamacro",
  27248. height: math.unit(8000, "miles")
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27254. {
  27255. side: {
  27256. height: math.unit(6, "feet"),
  27257. weight: math.unit(150, "lb"),
  27258. name: "Side",
  27259. image: {
  27260. source: "./media/characters/withers/side.svg",
  27261. extra: 1830 / 1728,
  27262. bottom: 96 / 1927
  27263. }
  27264. },
  27265. front: {
  27266. height: math.unit(6, "feet"),
  27267. weight: math.unit(150, "lb"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/withers/front.svg",
  27271. extra: 1514 / 1438,
  27272. bottom: 118 / 1632
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Macro",
  27279. height: math.unit(168, "feet"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Megamacro",
  27284. height: math.unit(15, "miles")
  27285. }
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(6 + 7 / 12, "feet"),
  27293. weight: math.unit(250, "lb"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/nemoskii/front.svg",
  27297. extra: 2270 / 1734,
  27298. bottom: 86 / 2354
  27299. }
  27300. },
  27301. back: {
  27302. height: math.unit(6 + 7 / 12, "feet"),
  27303. weight: math.unit(250, "lb"),
  27304. name: "Back",
  27305. image: {
  27306. source: "./media/characters/nemoskii/back.svg",
  27307. extra: 1845 / 1788,
  27308. bottom: 10.5 / 1852
  27309. }
  27310. },
  27311. head: {
  27312. height: math.unit(1.31, "feet"),
  27313. name: "Head",
  27314. image: {
  27315. source: "./media/characters/nemoskii/head.svg"
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Micro",
  27322. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27323. },
  27324. {
  27325. name: "Normal",
  27326. height: math.unit(6 + 7 / 12, "feet"),
  27327. default: true
  27328. },
  27329. {
  27330. name: "Macro",
  27331. height: math.unit((6 + 7 / 12) * 150, "feet")
  27332. },
  27333. {
  27334. name: "Macro+",
  27335. height: math.unit((6 + 7 / 12) * 500, "feet")
  27336. },
  27337. {
  27338. name: "Megamacro",
  27339. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(1, "mile"),
  27348. weight: math.unit(265261.9, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/shui/front.svg",
  27352. extra: 1633 / 1564,
  27353. bottom: 91.5 / 1726
  27354. }
  27355. },
  27356. },
  27357. [
  27358. {
  27359. name: "Macro",
  27360. height: math.unit(1, "mile"),
  27361. default: true
  27362. },
  27363. ]
  27364. ))
  27365. characterMakers.push(() => makeCharacter(
  27366. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27367. {
  27368. front: {
  27369. height: math.unit(12 + 6 / 12, "feet"),
  27370. weight: math.unit(1342, "lb"),
  27371. name: "Front",
  27372. image: {
  27373. source: "./media/characters/arokh-takakura/front.svg",
  27374. extra: 1089 / 1043,
  27375. bottom: 77.4 / 1176.7
  27376. }
  27377. },
  27378. back: {
  27379. height: math.unit(12 + 6 / 12, "feet"),
  27380. weight: math.unit(1342, "lb"),
  27381. name: "Back",
  27382. image: {
  27383. source: "./media/characters/arokh-takakura/back.svg",
  27384. extra: 1046 / 1019,
  27385. bottom: 102 / 1150
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Big",
  27392. height: math.unit(12 + 6 / 12, "feet"),
  27393. default: true
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27399. {
  27400. front: {
  27401. height: math.unit(5 + 6 / 12, "feet"),
  27402. weight: math.unit(150, "lb"),
  27403. name: "Front",
  27404. image: {
  27405. source: "./media/characters/theo/front.svg",
  27406. extra: 1184 / 1131,
  27407. bottom: 7.4 / 1191
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Micro",
  27414. height: math.unit(5, "inches")
  27415. },
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(5 + 6 / 12, "feet"),
  27419. default: true
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27425. {
  27426. front: {
  27427. height: math.unit(5 + 9 / 12, "feet"),
  27428. weight: math.unit(130, "lb"),
  27429. name: "Front",
  27430. image: {
  27431. source: "./media/characters/cecelia-swift/front.svg",
  27432. extra: 502 / 484,
  27433. bottom: 23 / 523
  27434. }
  27435. },
  27436. back: {
  27437. height: math.unit(5 + 9 / 12, "feet"),
  27438. weight: math.unit(130, "lb"),
  27439. name: "Back",
  27440. image: {
  27441. source: "./media/characters/cecelia-swift/back.svg",
  27442. extra: 499 / 485,
  27443. bottom: 12 / 511
  27444. }
  27445. },
  27446. head: {
  27447. height: math.unit(0.90, "feet"),
  27448. name: "Head",
  27449. image: {
  27450. source: "./media/characters/cecelia-swift/head.svg"
  27451. }
  27452. },
  27453. rump: {
  27454. height: math.unit(1.75, "feet"),
  27455. name: "Rump",
  27456. image: {
  27457. source: "./media/characters/cecelia-swift/rump.svg"
  27458. }
  27459. },
  27460. },
  27461. [
  27462. {
  27463. name: "Normal",
  27464. height: math.unit(5 + 9 / 12, "feet"),
  27465. default: true
  27466. },
  27467. {
  27468. name: "Big",
  27469. height: math.unit(50, "feet")
  27470. },
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(100, "feet")
  27474. },
  27475. {
  27476. name: "Macro+",
  27477. height: math.unit(500, "feet")
  27478. },
  27479. {
  27480. name: "Macro++",
  27481. height: math.unit(1000, "feet")
  27482. },
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27487. {
  27488. front: {
  27489. height: math.unit(6, "feet"),
  27490. weight: math.unit(150, "lb"),
  27491. name: "Front",
  27492. image: {
  27493. source: "./media/characters/kaunan/front.svg",
  27494. extra: 2890 / 2523,
  27495. bottom: 49 / 2939
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Macro",
  27502. height: math.unit(150, "feet"),
  27503. default: true
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27509. {
  27510. front: {
  27511. height: math.unit(175, "cm"),
  27512. weight: math.unit(60, "kg"),
  27513. name: "Front",
  27514. image: {
  27515. source: "./media/characters/fei/front.svg",
  27516. extra: 1873/1723,
  27517. bottom: 53/1926
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Mortal",
  27524. height: math.unit(175, "cm")
  27525. },
  27526. {
  27527. name: "Normal",
  27528. height: math.unit(3500, "m"),
  27529. default: true
  27530. },
  27531. {
  27532. name: "Stroll",
  27533. height: math.unit(17.5, "km")
  27534. },
  27535. {
  27536. name: "Showoff",
  27537. height: math.unit(175, "km")
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27543. {
  27544. front: {
  27545. height: math.unit(7, "feet"),
  27546. weight: math.unit(1000, "kg"),
  27547. name: "Front",
  27548. image: {
  27549. source: "./media/characters/edrax/front.svg",
  27550. extra: 2838 / 2550,
  27551. bottom: 130 / 2968
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Small",
  27558. height: math.unit(7, "feet")
  27559. },
  27560. {
  27561. name: "Normal",
  27562. height: math.unit(1500, "meters")
  27563. },
  27564. {
  27565. name: "Mega",
  27566. height: math.unit(12000000, "km"),
  27567. default: true
  27568. },
  27569. {
  27570. name: "Megamacro",
  27571. height: math.unit(10600000, "lightyears")
  27572. },
  27573. {
  27574. name: "Hypermacro",
  27575. height: math.unit(256, "yottameters")
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27581. {
  27582. front: {
  27583. height: math.unit(10, "feet"),
  27584. weight: math.unit(750, "lb"),
  27585. name: "Front",
  27586. image: {
  27587. source: "./media/characters/clove/front.svg",
  27588. extra: 2031 / 1860,
  27589. bottom: 47.8 / 2080
  27590. }
  27591. },
  27592. back: {
  27593. height: math.unit(10, "feet"),
  27594. weight: math.unit(750, "lb"),
  27595. name: "Back",
  27596. image: {
  27597. source: "./media/characters/clove/back.svg",
  27598. extra: 2025 / 1859,
  27599. bottom: 46 / 2071
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(10, "feet"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(4, "feet"),
  27616. weight: math.unit(50, "lb"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/alex-rabbit/front.svg",
  27620. extra: 507 / 458,
  27621. bottom: 18.5 / 527
  27622. }
  27623. },
  27624. back: {
  27625. height: math.unit(4, "feet"),
  27626. weight: math.unit(50, "lb"),
  27627. name: "Back",
  27628. image: {
  27629. source: "./media/characters/alex-rabbit/back.svg",
  27630. extra: 502 / 460,
  27631. bottom: 18.9 / 521
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(4, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(1 + 3 / 12, "feet"),
  27648. weight: math.unit(80, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/zander-rose/front.svg",
  27652. extra: 916 / 797,
  27653. bottom: 17 / 933
  27654. }
  27655. },
  27656. back: {
  27657. height: math.unit(1 + 3 / 12, "feet"),
  27658. weight: math.unit(80, "lb"),
  27659. name: "Back",
  27660. image: {
  27661. source: "./media/characters/zander-rose/back.svg",
  27662. extra: 903 / 779,
  27663. bottom: 31 / 934
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(1 + 3 / 12, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27677. {
  27678. anthro: {
  27679. height: math.unit(6, "feet"),
  27680. weight: math.unit(150, "lb"),
  27681. name: "Anthro",
  27682. image: {
  27683. source: "./media/characters/razz/anthro.svg",
  27684. extra: 1437 / 1343,
  27685. bottom: 48 / 1485
  27686. }
  27687. },
  27688. feral: {
  27689. height: math.unit(6, "feet"),
  27690. weight: math.unit(150, "lb"),
  27691. name: "Feral",
  27692. image: {
  27693. source: "./media/characters/razz/feral.svg",
  27694. extra: 2569 / 1385,
  27695. bottom: 95 / 2664
  27696. }
  27697. },
  27698. },
  27699. [
  27700. {
  27701. name: "Normal",
  27702. height: math.unit(6, "feet"),
  27703. default: true
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(9 + 4 / 12, "feet"),
  27712. weight: math.unit(500, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/morrigan/front.svg",
  27716. extra: 2707 / 2579,
  27717. bottom: 156 / 2863
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(9 + 4 / 12, "feet"),
  27725. default: true
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27731. {
  27732. front: {
  27733. height: math.unit(5, "stories"),
  27734. weight: math.unit(4000, "lb"),
  27735. name: "Front",
  27736. image: {
  27737. source: "./media/characters/jenene/front.svg",
  27738. extra: 1780 / 1710,
  27739. bottom: 57 / 1837
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Normal",
  27746. height: math.unit(5, "stories"),
  27747. default: true
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27753. {
  27754. taurSfw: {
  27755. height: math.unit(10, "meters"),
  27756. weight: math.unit(17500, "kg"),
  27757. name: "Taur",
  27758. image: {
  27759. source: "./media/characters/faey/taur-sfw.svg",
  27760. extra: 1200 / 968,
  27761. bottom: 41 / 1241
  27762. }
  27763. },
  27764. chestmaw: {
  27765. height: math.unit(2.01, "meters"),
  27766. name: "Chestmaw",
  27767. image: {
  27768. source: "./media/characters/faey/chestmaw.svg"
  27769. }
  27770. },
  27771. foot: {
  27772. height: math.unit(2.43, "meters"),
  27773. name: "Foot",
  27774. image: {
  27775. source: "./media/characters/faey/foot.svg"
  27776. }
  27777. },
  27778. jaws: {
  27779. height: math.unit(1.66, "meters"),
  27780. name: "Jaws",
  27781. image: {
  27782. source: "./media/characters/faey/jaws.svg"
  27783. }
  27784. },
  27785. tongues: {
  27786. height: math.unit(2.01, "meters"),
  27787. name: "Tongues",
  27788. image: {
  27789. source: "./media/characters/faey/tongues.svg"
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Small",
  27796. height: math.unit(10, "meters"),
  27797. default: true
  27798. },
  27799. {
  27800. name: "Big",
  27801. height: math.unit(500000, "km")
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(7, "feet"),
  27810. weight: math.unit(275, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/roku/front.svg",
  27814. extra: 903 / 878,
  27815. bottom: 37 / 940
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(7, "feet"),
  27823. default: true
  27824. },
  27825. {
  27826. name: "Macro",
  27827. height: math.unit(500, "feet")
  27828. },
  27829. {
  27830. name: "Megamacro",
  27831. height: math.unit(200, "miles")
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(6 + 2 / 12, "feet"),
  27840. weight: math.unit(150, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/lira/front.svg",
  27844. extra: 1727 / 1605,
  27845. bottom: 26 / 1753
  27846. }
  27847. },
  27848. back: {
  27849. height: math.unit(6 + 2 / 12, "feet"),
  27850. weight: math.unit(150, "lb"),
  27851. name: "Back",
  27852. image: {
  27853. source: "./media/characters/lira/back.svg",
  27854. extra: 1713/1621,
  27855. bottom: 20/1733
  27856. }
  27857. },
  27858. hand: {
  27859. height: math.unit(0.75, "feet"),
  27860. name: "Hand",
  27861. image: {
  27862. source: "./media/characters/lira/hand.svg"
  27863. }
  27864. },
  27865. maw: {
  27866. height: math.unit(0.65, "feet"),
  27867. name: "Maw",
  27868. image: {
  27869. source: "./media/characters/lira/maw.svg"
  27870. }
  27871. },
  27872. pawDigi: {
  27873. height: math.unit(1.6, "feet"),
  27874. name: "Paw Digi",
  27875. image: {
  27876. source: "./media/characters/lira/paw-digi.svg"
  27877. }
  27878. },
  27879. pawPlanti: {
  27880. height: math.unit(1.4, "feet"),
  27881. name: "Paw Planti",
  27882. image: {
  27883. source: "./media/characters/lira/paw-planti.svg"
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(6 + 2 / 12, "feet"),
  27891. default: true
  27892. },
  27893. {
  27894. name: "Macro",
  27895. height: math.unit(100, "feet")
  27896. },
  27897. {
  27898. name: "Macro²",
  27899. height: math.unit(1600, "feet")
  27900. },
  27901. {
  27902. name: "Planetary",
  27903. height: math.unit(20, "earths")
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27909. {
  27910. front: {
  27911. height: math.unit(6, "feet"),
  27912. weight: math.unit(150, "lb"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/hadjet/front.svg",
  27916. extra: 1480 / 1346,
  27917. bottom: 26 / 1506
  27918. }
  27919. },
  27920. frontNsfw: {
  27921. height: math.unit(6, "feet"),
  27922. weight: math.unit(150, "lb"),
  27923. name: "Front (NSFW)",
  27924. image: {
  27925. source: "./media/characters/hadjet/front-nsfw.svg",
  27926. extra: 1440 / 1358,
  27927. bottom: 52 / 1492
  27928. }
  27929. },
  27930. },
  27931. [
  27932. {
  27933. name: "Macro",
  27934. height: math.unit(10, "stories"),
  27935. default: true
  27936. },
  27937. {
  27938. name: "Megamacro",
  27939. height: math.unit(1.5, "miles")
  27940. },
  27941. {
  27942. name: "Megamacro+",
  27943. height: math.unit(5, "miles")
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27949. {
  27950. side: {
  27951. height: math.unit(106, "feet"),
  27952. weight: math.unit(500, "tonnes"),
  27953. name: "Side",
  27954. image: {
  27955. source: "./media/characters/kodran/side.svg",
  27956. extra: 553 / 480,
  27957. bottom: 33 / 586
  27958. }
  27959. },
  27960. front: {
  27961. height: math.unit(132, "feet"),
  27962. weight: math.unit(500, "tonnes"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/kodran/front.svg",
  27966. extra: 667 / 643,
  27967. bottom: 42 / 709
  27968. }
  27969. },
  27970. flying: {
  27971. height: math.unit(350, "feet"),
  27972. weight: math.unit(500, "tonnes"),
  27973. name: "Flying",
  27974. image: {
  27975. source: "./media/characters/kodran/flying.svg"
  27976. }
  27977. },
  27978. foot: {
  27979. height: math.unit(33, "feet"),
  27980. name: "Foot",
  27981. image: {
  27982. source: "./media/characters/kodran/foot.svg"
  27983. }
  27984. },
  27985. footFront: {
  27986. height: math.unit(19, "feet"),
  27987. name: "Foot (Front)",
  27988. image: {
  27989. source: "./media/characters/kodran/foot-front.svg",
  27990. extra: 261 / 261,
  27991. bottom: 91 / 352
  27992. }
  27993. },
  27994. headFront: {
  27995. height: math.unit(53, "feet"),
  27996. name: "Head (Front)",
  27997. image: {
  27998. source: "./media/characters/kodran/head-front.svg"
  27999. }
  28000. },
  28001. headSide: {
  28002. height: math.unit(65, "feet"),
  28003. name: "Head (Side)",
  28004. image: {
  28005. source: "./media/characters/kodran/head-side.svg"
  28006. }
  28007. },
  28008. throat: {
  28009. height: math.unit(79, "feet"),
  28010. name: "Throat",
  28011. image: {
  28012. source: "./media/characters/kodran/throat.svg"
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Large",
  28019. height: math.unit(106, "feet"),
  28020. default: true
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28026. {
  28027. side: {
  28028. height: math.unit(11, "feet"),
  28029. weight: math.unit(150, "lb"),
  28030. name: "Side",
  28031. image: {
  28032. source: "./media/characters/pyxaron/side.svg",
  28033. extra: 305 / 195,
  28034. bottom: 17 / 322
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(11, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(6, "feet"),
  28051. weight: math.unit(150, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/meep/front.svg",
  28055. extra: 88 / 80,
  28056. bottom: 6 / 94
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Fun Sized",
  28063. height: math.unit(2, "inches"),
  28064. default: true
  28065. },
  28066. {
  28067. name: "Friend Sized",
  28068. height: math.unit(8, "inches")
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(15, "feet"),
  28077. weight: math.unit(2500, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/holly-rabbit/front.svg",
  28081. extra: 1433 / 1233,
  28082. bottom: 125 / 1558
  28083. }
  28084. },
  28085. dick: {
  28086. height: math.unit(4.6, "feet"),
  28087. name: "Dick",
  28088. image: {
  28089. source: "./media/characters/holly-rabbit/dick.svg"
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(15, "feet"),
  28097. default: true
  28098. },
  28099. {
  28100. name: "Macro",
  28101. height: math.unit(250, "feet")
  28102. },
  28103. {
  28104. name: "Macro+",
  28105. height: math.unit(2500, "feet")
  28106. },
  28107. ]
  28108. ))
  28109. characterMakers.push(() => makeCharacter(
  28110. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28111. {
  28112. front: {
  28113. height: math.unit(3.02, "meters"),
  28114. weight: math.unit(500, "kg"),
  28115. name: "Front",
  28116. image: {
  28117. source: "./media/characters/drena/front.svg",
  28118. extra: 282 / 243,
  28119. bottom: 8 / 290
  28120. }
  28121. },
  28122. side: {
  28123. height: math.unit(3.02, "meters"),
  28124. weight: math.unit(500, "kg"),
  28125. name: "Side",
  28126. image: {
  28127. source: "./media/characters/drena/side.svg",
  28128. extra: 280 / 245,
  28129. bottom: 10 / 290
  28130. }
  28131. },
  28132. back: {
  28133. height: math.unit(3.02, "meters"),
  28134. weight: math.unit(500, "kg"),
  28135. name: "Back",
  28136. image: {
  28137. source: "./media/characters/drena/back.svg",
  28138. extra: 278 / 243,
  28139. bottom: 2 / 280
  28140. }
  28141. },
  28142. foot: {
  28143. height: math.unit(0.75, "meters"),
  28144. name: "Foot",
  28145. image: {
  28146. source: "./media/characters/drena/foot.svg"
  28147. }
  28148. },
  28149. maw: {
  28150. height: math.unit(0.82, "meters"),
  28151. name: "Maw",
  28152. image: {
  28153. source: "./media/characters/drena/maw.svg"
  28154. }
  28155. },
  28156. rump: {
  28157. height: math.unit(0.93, "meters"),
  28158. name: "Rump",
  28159. image: {
  28160. source: "./media/characters/drena/rump.svg"
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(3.02, "meters"),
  28168. default: true
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(6 + 4 / 12, "feet"),
  28177. weight: math.unit(250, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/remmyzilla/front.svg",
  28181. extra: 4033 / 3588,
  28182. bottom: 123 / 4156
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(6 + 4 / 12, "feet"),
  28187. weight: math.unit(250, "lb"),
  28188. name: "Back",
  28189. image: {
  28190. source: "./media/characters/remmyzilla/back.svg",
  28191. extra: 2687 / 2555,
  28192. bottom: 48 / 2735
  28193. }
  28194. },
  28195. paw: {
  28196. height: math.unit(1.73, "feet"),
  28197. name: "Paw",
  28198. image: {
  28199. source: "./media/characters/remmyzilla/paw.svg"
  28200. }
  28201. },
  28202. maw: {
  28203. height: math.unit(1.73, "feet"),
  28204. name: "Maw",
  28205. image: {
  28206. source: "./media/characters/remmyzilla/maw.svg"
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(6 + 4 / 12, "feet")
  28214. },
  28215. {
  28216. name: "Minimacro",
  28217. height: math.unit(12 + 8 / 12, "feet")
  28218. },
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(640, "feet"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Megamacro",
  28226. height: math.unit(6400, "feet")
  28227. },
  28228. {
  28229. name: "Gigamacro",
  28230. height: math.unit(64000, "miles")
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(2.5, "meters"),
  28239. weight: math.unit(300, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/lawrence/front.svg",
  28243. extra: 357 / 335,
  28244. bottom: 30 / 387
  28245. }
  28246. },
  28247. back: {
  28248. height: math.unit(2.5, "meters"),
  28249. weight: math.unit(300, "lb"),
  28250. name: "Back",
  28251. image: {
  28252. source: "./media/characters/lawrence/back.svg",
  28253. extra: 357 / 338,
  28254. bottom: 16 / 373
  28255. }
  28256. },
  28257. head: {
  28258. height: math.unit(0.9, "meter"),
  28259. name: "Head",
  28260. image: {
  28261. source: "./media/characters/lawrence/head.svg"
  28262. }
  28263. },
  28264. maw: {
  28265. height: math.unit(0.7, "meter"),
  28266. name: "Maw",
  28267. image: {
  28268. source: "./media/characters/lawrence/maw.svg"
  28269. }
  28270. },
  28271. footBottom: {
  28272. height: math.unit(0.5, "meter"),
  28273. name: "Foot (Bottom)",
  28274. image: {
  28275. source: "./media/characters/lawrence/foot-bottom.svg"
  28276. }
  28277. },
  28278. footTop: {
  28279. height: math.unit(0.5, "meter"),
  28280. name: "Foot (Top)",
  28281. image: {
  28282. source: "./media/characters/lawrence/foot-top.svg"
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(2.5, "meters"),
  28290. default: true
  28291. },
  28292. {
  28293. name: "Macro",
  28294. height: math.unit(95, "meters")
  28295. },
  28296. {
  28297. name: "Megamacro",
  28298. height: math.unit(150, "km")
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28304. {
  28305. front: {
  28306. height: math.unit(4.2, "meters"),
  28307. name: "Front",
  28308. image: {
  28309. source: "./media/characters/sydney/front.svg",
  28310. extra: 1323 / 1277,
  28311. bottom: 111 / 1434
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Normal",
  28318. height: math.unit(4.2, "meters"),
  28319. default: true
  28320. },
  28321. ]
  28322. ))
  28323. characterMakers.push(() => makeCharacter(
  28324. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28325. {
  28326. back: {
  28327. height: math.unit(201, "feet"),
  28328. name: "Back",
  28329. image: {
  28330. source: "./media/characters/jessica/back.svg",
  28331. extra: 273 / 259,
  28332. bottom: 7 / 280
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Normal",
  28339. height: math.unit(201, "feet"),
  28340. default: true
  28341. },
  28342. {
  28343. name: "Megamacro",
  28344. height: math.unit(8, "miles")
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28350. {
  28351. side: {
  28352. height: math.unit(320, "cm"),
  28353. name: "Side",
  28354. image: {
  28355. source: "./media/characters/victoria/side.svg",
  28356. extra: 778 / 346,
  28357. bottom: 56 / 834
  28358. }
  28359. },
  28360. maw: {
  28361. height: math.unit(5.9, "feet"),
  28362. name: "Maw",
  28363. image: {
  28364. source: "./media/characters/victoria/maw.svg"
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(320, "cm"),
  28372. default: true
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28378. {
  28379. front: {
  28380. height: math.unit(5 + 6 / 12, "feet"),
  28381. name: "Front",
  28382. image: {
  28383. source: "./media/characters/cat/front.svg",
  28384. extra: 1374 / 1257,
  28385. bottom: 59 / 1433
  28386. }
  28387. },
  28388. back: {
  28389. height: math.unit(5 + 6 / 12, "feet"),
  28390. name: "Back",
  28391. image: {
  28392. source: "./media/characters/cat/back.svg",
  28393. extra: 1337 / 1226,
  28394. bottom: 34 / 1371
  28395. }
  28396. },
  28397. taur: {
  28398. height: math.unit(7, "feet"),
  28399. name: "Taur",
  28400. image: {
  28401. source: "./media/characters/cat/taur.svg",
  28402. extra: 1345 / 1231,
  28403. bottom: 66 / 1411
  28404. }
  28405. },
  28406. lucario: {
  28407. height: math.unit(4, "feet"),
  28408. name: "Lucario",
  28409. image: {
  28410. source: "./media/characters/cat/lucario.svg",
  28411. extra: 1470 / 1318,
  28412. bottom: 65 / 1535
  28413. }
  28414. },
  28415. megaLucario: {
  28416. height: math.unit(4, "feet"),
  28417. name: "Mega Lucario",
  28418. image: {
  28419. source: "./media/characters/cat/mega-lucario.svg",
  28420. extra: 1515 / 1319,
  28421. bottom: 63 / 1578
  28422. }
  28423. },
  28424. nickit: {
  28425. height: math.unit(2, "feet"),
  28426. name: "Nickit",
  28427. image: {
  28428. source: "./media/characters/cat/nickit.svg",
  28429. extra: 1980 / 1585,
  28430. bottom: 102 / 2082
  28431. }
  28432. },
  28433. lopunnyFront: {
  28434. height: math.unit(5, "feet"),
  28435. name: "Lopunny (Front)",
  28436. image: {
  28437. source: "./media/characters/cat/lopunny-front.svg",
  28438. extra: 1782 / 1469,
  28439. bottom: 38 / 1820
  28440. }
  28441. },
  28442. lopunnyBack: {
  28443. height: math.unit(5, "feet"),
  28444. name: "Lopunny (Back)",
  28445. image: {
  28446. source: "./media/characters/cat/lopunny-back.svg",
  28447. extra: 1660 / 1490,
  28448. bottom: 25 / 1685
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Really small",
  28455. height: math.unit(1, "nm")
  28456. },
  28457. {
  28458. name: "Micro",
  28459. height: math.unit(5, "inches")
  28460. },
  28461. {
  28462. name: "Normal",
  28463. height: math.unit(5 + 6 / 12, "feet"),
  28464. default: true
  28465. },
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(50, "feet")
  28469. },
  28470. {
  28471. name: "Macro+",
  28472. height: math.unit(150, "feet")
  28473. },
  28474. {
  28475. name: "Megamacro",
  28476. height: math.unit(100, "miles")
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(63.4, "meters"),
  28485. weight: math.unit(3.28349e+6, "kilograms"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/kirina-violet/front.svg",
  28489. extra: 2812 / 2725,
  28490. bottom: 0 / 2812
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(63.4, "meters"),
  28495. weight: math.unit(3.28349e+6, "kilograms"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/kirina-violet/back.svg",
  28499. extra: 2812 / 2725,
  28500. bottom: 0 / 2812
  28501. }
  28502. },
  28503. mouth: {
  28504. height: math.unit(4.35, "meters"),
  28505. name: "Mouth",
  28506. image: {
  28507. source: "./media/characters/kirina-violet/mouth.svg"
  28508. }
  28509. },
  28510. paw: {
  28511. height: math.unit(5.6, "meters"),
  28512. name: "Paw",
  28513. image: {
  28514. source: "./media/characters/kirina-violet/paw.svg"
  28515. }
  28516. },
  28517. tail: {
  28518. height: math.unit(18, "meters"),
  28519. name: "Tail",
  28520. image: {
  28521. source: "./media/characters/kirina-violet/tail.svg"
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Macro",
  28528. height: math.unit(63.4, "meters"),
  28529. default: true
  28530. },
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28535. {
  28536. front: {
  28537. height: math.unit(75, "feet"),
  28538. name: "Front",
  28539. image: {
  28540. source: "./media/characters/cat-gigachu/front.svg",
  28541. extra: 1239/1027,
  28542. bottom: 32/1271
  28543. }
  28544. },
  28545. back: {
  28546. height: math.unit(75, "feet"),
  28547. name: "Back",
  28548. image: {
  28549. source: "./media/characters/cat-gigachu/back.svg",
  28550. extra: 1229/1030,
  28551. bottom: 9/1238
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Dynamax",
  28558. height: math.unit(75, "feet"),
  28559. default: true
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28565. {
  28566. front: {
  28567. height: math.unit(6, "feet"),
  28568. weight: math.unit(150, "lb"),
  28569. name: "Front",
  28570. image: {
  28571. source: "./media/characters/sfaiyan/front.svg",
  28572. extra: 999 / 978,
  28573. bottom: 5 / 1004
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(1.82, "meters")
  28581. },
  28582. {
  28583. name: "Giant",
  28584. height: math.unit(2.27, "km"),
  28585. default: true
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(179, "cm"),
  28594. weight: math.unit(100, "kg"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/raunehkeli/front.svg",
  28598. extra: 1934 / 1926,
  28599. bottom: 0 / 1934
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(179, "cm")
  28607. },
  28608. {
  28609. name: "Maximum",
  28610. height: math.unit(575, "meters"),
  28611. default: true
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(6, "feet"),
  28620. weight: math.unit(150, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28624. extra: 2625 / 2518,
  28625. bottom: 60 / 2685
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(6 + 2 / 12, "feet")
  28633. },
  28634. {
  28635. name: "Macro",
  28636. height: math.unit(1180, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(5 + 6 / 12, "feet"),
  28646. weight: math.unit(108, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/lilith-zott/front.svg",
  28650. extra: 2510 / 2238,
  28651. bottom: 100 / 2610
  28652. }
  28653. },
  28654. frontDressed: {
  28655. height: math.unit(5 + 6 / 12, "feet"),
  28656. weight: math.unit(108, "lb"),
  28657. name: "Front (Dressed)",
  28658. image: {
  28659. source: "./media/characters/lilith-zott/front-dressed.svg",
  28660. extra: 2510 / 2238,
  28661. bottom: 100 / 2610
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(5 + 6 / 12, "feet")
  28669. },
  28670. {
  28671. name: "Macro",
  28672. height: math.unit(1030, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(6, "feet"),
  28682. weight: math.unit(150, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28686. extra: 2567 / 2435,
  28687. bottom: 39 / 2606
  28688. }
  28689. },
  28690. frontSuper: {
  28691. height: math.unit(6, "feet"),
  28692. name: "Front (Super)",
  28693. image: {
  28694. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28695. extra: 2567 / 2435,
  28696. bottom: 39 / 2606
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(5 + 10 / 12, "feet")
  28704. },
  28705. {
  28706. name: "Macro",
  28707. height: math.unit(1100, "feet"),
  28708. default: true
  28709. },
  28710. ]
  28711. ))
  28712. characterMakers.push(() => makeCharacter(
  28713. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28714. {
  28715. front: {
  28716. height: math.unit(100, "miles"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/sona/front.svg",
  28720. extra: 2433 / 2201,
  28721. bottom: 53 / 2486
  28722. }
  28723. },
  28724. foot: {
  28725. height: math.unit(16.1, "miles"),
  28726. name: "Foot",
  28727. image: {
  28728. source: "./media/characters/sona/foot.svg"
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Macro",
  28735. height: math.unit(100, "miles"),
  28736. default: true
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(6, "feet"),
  28745. weight: math.unit(150, "lb"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/bailey/front.svg",
  28749. extra: 1778 / 1724,
  28750. bottom: 30 / 1808
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Micro",
  28757. height: math.unit(4, "inches")
  28758. },
  28759. {
  28760. name: "Normal",
  28761. height: math.unit(5 + 5 / 12, "feet"),
  28762. default: true
  28763. },
  28764. {
  28765. name: "Macro",
  28766. height: math.unit(250, "feet")
  28767. },
  28768. {
  28769. name: "Megamacro",
  28770. height: math.unit(100, "miles")
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(5 + 2 / 12, "feet"),
  28779. weight: math.unit(120, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/snaps/front.svg",
  28783. extra: 2370 / 2177,
  28784. bottom: 48 / 2418
  28785. }
  28786. },
  28787. back: {
  28788. height: math.unit(5 + 2 / 12, "feet"),
  28789. weight: math.unit(120, "lb"),
  28790. name: "Back",
  28791. image: {
  28792. source: "./media/characters/snaps/back.svg",
  28793. extra: 2408 / 2258,
  28794. bottom: 15 / 2423
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Micro",
  28801. height: math.unit(9, "inches")
  28802. },
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(5 + 2 / 12, "feet"),
  28806. default: true
  28807. },
  28808. {
  28809. name: "Mini Macro",
  28810. height: math.unit(10, "feet")
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(1.8, "meters"),
  28819. weight: math.unit(85, "kg"),
  28820. name: "Front",
  28821. image: {
  28822. source: "./media/characters/azteck/front.svg",
  28823. extra: 2815 / 2625,
  28824. bottom: 89 / 2904
  28825. }
  28826. },
  28827. back: {
  28828. height: math.unit(1.8, "meters"),
  28829. weight: math.unit(85, "kg"),
  28830. name: "Back",
  28831. image: {
  28832. source: "./media/characters/azteck/back.svg",
  28833. extra: 2856 / 2648,
  28834. bottom: 85 / 2941
  28835. }
  28836. },
  28837. frontDressed: {
  28838. height: math.unit(1.8, "meters"),
  28839. weight: math.unit(85, "kg"),
  28840. name: "Front (Dressed)",
  28841. image: {
  28842. source: "./media/characters/azteck/front-dressed.svg",
  28843. extra: 2147 / 2003,
  28844. bottom: 68 / 2215
  28845. }
  28846. },
  28847. head: {
  28848. height: math.unit(0.47, "meters"),
  28849. weight: math.unit(85, "kg"),
  28850. name: "Head",
  28851. image: {
  28852. source: "./media/characters/azteck/head.svg"
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Bite sized",
  28859. height: math.unit(16, "cm")
  28860. },
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(1.8, "meters"),
  28864. default: true
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28870. {
  28871. front: {
  28872. height: math.unit(6, "feet"),
  28873. weight: math.unit(150, "lb"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/pidge/front.svg",
  28877. extra: 620 / 588,
  28878. bottom: 9 / 629
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(6, "feet"),
  28883. weight: math.unit(150, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/pidge/back.svg",
  28887. extra: 620 / 588,
  28888. bottom: 9 / 629
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Macro",
  28895. height: math.unit(1, "mile"),
  28896. default: true
  28897. },
  28898. ]
  28899. ))
  28900. characterMakers.push(() => makeCharacter(
  28901. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28902. {
  28903. front: {
  28904. height: math.unit(6, "feet"),
  28905. weight: math.unit(150, "lb"),
  28906. name: "Front",
  28907. image: {
  28908. source: "./media/characters/en/front.svg",
  28909. extra: 1697 / 1563,
  28910. bottom: 103 / 1800
  28911. }
  28912. },
  28913. back: {
  28914. height: math.unit(6, "feet"),
  28915. weight: math.unit(150, "lb"),
  28916. name: "Back",
  28917. image: {
  28918. source: "./media/characters/en/back.svg",
  28919. extra: 1700 / 1570,
  28920. bottom: 51 / 1751
  28921. }
  28922. },
  28923. frontDressed: {
  28924. height: math.unit(6, "feet"),
  28925. weight: math.unit(150, "lb"),
  28926. name: "Front (Dressed)",
  28927. image: {
  28928. source: "./media/characters/en/front-dressed.svg",
  28929. extra: 1697 / 1563,
  28930. bottom: 103 / 1800
  28931. }
  28932. },
  28933. backDressed: {
  28934. height: math.unit(6, "feet"),
  28935. weight: math.unit(150, "lb"),
  28936. name: "Back (Dressed)",
  28937. image: {
  28938. source: "./media/characters/en/back-dressed.svg",
  28939. extra: 1700 / 1570,
  28940. bottom: 51 / 1751
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Macro",
  28947. height: math.unit(210, "feet"),
  28948. default: true
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(6, "feet"),
  28957. weight: math.unit(150, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/haze-orris/front.svg",
  28961. extra: 3975 / 3525,
  28962. bottom: 137 / 4112
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Micro",
  28969. height: math.unit(150, "mm"),
  28970. default: true
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(6, "feet"),
  28979. weight: math.unit(150, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/casselene-yaro/front.svg",
  28983. extra: 4721 / 4541,
  28984. bottom: 82 / 4803
  28985. }
  28986. },
  28987. back: {
  28988. height: math.unit(6, "feet"),
  28989. weight: math.unit(150, "lb"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/casselene-yaro/back.svg",
  28993. extra: 4569 / 4377,
  28994. bottom: 69 / 4638
  28995. }
  28996. },
  28997. frontDressed: {
  28998. height: math.unit(6, "feet"),
  28999. weight: math.unit(150, "lb"),
  29000. name: "Front-dressed",
  29001. image: {
  29002. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29003. extra: 4721 / 4541,
  29004. bottom: 82 / 4803
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Macro",
  29011. height: math.unit(190, "feet"),
  29012. default: true
  29013. },
  29014. ]
  29015. ))
  29016. characterMakers.push(() => makeCharacter(
  29017. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29018. {
  29019. front: {
  29020. height: math.unit(6, "feet"),
  29021. weight: math.unit(150, "lb"),
  29022. name: "Front",
  29023. image: {
  29024. source: "./media/characters/myra-rue-delore/front.svg",
  29025. extra: 1340 / 1308,
  29026. bottom: 67 / 1407
  29027. }
  29028. },
  29029. back: {
  29030. height: math.unit(6, "feet"),
  29031. weight: math.unit(150, "lb"),
  29032. name: "Back",
  29033. image: {
  29034. source: "./media/characters/myra-rue-delore/back.svg",
  29035. extra: 1341 / 1310,
  29036. bottom: 40 / 1381
  29037. }
  29038. },
  29039. frontDressed: {
  29040. height: math.unit(6, "feet"),
  29041. weight: math.unit(150, "lb"),
  29042. name: "Front (Dressed)",
  29043. image: {
  29044. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29045. extra: 1340 / 1308,
  29046. bottom: 67 / 1407
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Macro",
  29053. height: math.unit(150, "feet"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(10, "feet"),
  29063. weight: math.unit(15015, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/fem!plat/front.svg",
  29067. extra: 2799 / 2604,
  29068. bottom: 149 / 2948
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Normal",
  29075. height: math.unit(10, "feet"),
  29076. default: true
  29077. },
  29078. {
  29079. name: "Macro",
  29080. height: math.unit(100, "feet")
  29081. },
  29082. {
  29083. name: "Megamacro",
  29084. height: math.unit(1000, "feet")
  29085. },
  29086. ]
  29087. ))
  29088. characterMakers.push(() => makeCharacter(
  29089. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29090. {
  29091. front: {
  29092. height: math.unit(15 + 5 / 12, "feet"),
  29093. weight: math.unit(4600, "lb"),
  29094. name: "Front",
  29095. image: {
  29096. source: "./media/characters/neapolitan-ananassa/front.svg",
  29097. extra: 2903 / 2736,
  29098. bottom: 0 / 2903
  29099. }
  29100. },
  29101. side: {
  29102. height: math.unit(15 + 5 / 12, "feet"),
  29103. weight: math.unit(4600, "lb"),
  29104. name: "Side",
  29105. image: {
  29106. source: "./media/characters/neapolitan-ananassa/side.svg",
  29107. extra: 2925 / 2719,
  29108. bottom: 0 / 2925
  29109. }
  29110. },
  29111. back: {
  29112. height: math.unit(15 + 5 / 12, "feet"),
  29113. weight: math.unit(4600, "lb"),
  29114. name: "Back",
  29115. image: {
  29116. source: "./media/characters/neapolitan-ananassa/back.svg",
  29117. extra: 2903 / 2736,
  29118. bottom: 0 / 2903
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(15 + 5 / 12, "feet"),
  29126. default: true
  29127. },
  29128. {
  29129. name: "Post-Millenium",
  29130. height: math.unit(35 + 5 / 12, "feet")
  29131. },
  29132. {
  29133. name: "Post-Era",
  29134. height: math.unit(450 + 5 / 12, "feet")
  29135. },
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29140. {
  29141. front: {
  29142. height: math.unit(300, "meters"),
  29143. weight: math.unit(125000, "tonnes"),
  29144. name: "Front",
  29145. image: {
  29146. source: "./media/characters/pazuzu/front.svg",
  29147. extra: 877 / 794,
  29148. bottom: 47 / 924
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Macro",
  29155. height: math.unit(300, "meters"),
  29156. default: true
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29162. {
  29163. side: {
  29164. height: math.unit(10 + 7 / 12, "feet"),
  29165. weight: math.unit(2.5, "tons"),
  29166. name: "Side",
  29167. image: {
  29168. source: "./media/characters/aasha/side.svg",
  29169. extra: 1345 / 1245,
  29170. bottom: 111 / 1456
  29171. }
  29172. },
  29173. back: {
  29174. height: math.unit(10 + 7 / 12, "feet"),
  29175. weight: math.unit(2.5, "tons"),
  29176. name: "Back",
  29177. image: {
  29178. source: "./media/characters/aasha/back.svg",
  29179. extra: 1133 / 1057,
  29180. bottom: 257 / 1390
  29181. }
  29182. },
  29183. },
  29184. [
  29185. {
  29186. name: "Normal",
  29187. height: math.unit(10 + 7 / 12, "feet"),
  29188. default: true
  29189. },
  29190. ]
  29191. ))
  29192. characterMakers.push(() => makeCharacter(
  29193. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29194. {
  29195. front: {
  29196. height: math.unit(6 + 3 / 12, "feet"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/nevan/front.svg",
  29200. extra: 704 / 704,
  29201. bottom: 28 / 732
  29202. }
  29203. },
  29204. back: {
  29205. height: math.unit(6 + 3 / 12, "feet"),
  29206. name: "Back",
  29207. image: {
  29208. source: "./media/characters/nevan/back.svg",
  29209. extra: 714 / 714,
  29210. bottom: 21 / 735
  29211. }
  29212. },
  29213. frontFlaccid: {
  29214. height: math.unit(6 + 3 / 12, "feet"),
  29215. name: "Front (Flaccid)",
  29216. image: {
  29217. source: "./media/characters/nevan/front-flaccid.svg",
  29218. extra: 704 / 704,
  29219. bottom: 28 / 732
  29220. }
  29221. },
  29222. frontErect: {
  29223. height: math.unit(6 + 3 / 12, "feet"),
  29224. name: "Front (Erect)",
  29225. image: {
  29226. source: "./media/characters/nevan/front-erect.svg",
  29227. extra: 704 / 704,
  29228. bottom: 28 / 732
  29229. }
  29230. },
  29231. backFlaccid: {
  29232. height: math.unit(6 + 3 / 12, "feet"),
  29233. name: "Back (Flaccid)",
  29234. image: {
  29235. source: "./media/characters/nevan/back-flaccid.svg",
  29236. extra: 714 / 714,
  29237. bottom: 21 / 735
  29238. }
  29239. },
  29240. },
  29241. [
  29242. {
  29243. name: "Normal",
  29244. height: math.unit(6 + 3 / 12, "feet"),
  29245. default: true
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(4, "feet"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/arhan/front.svg",
  29257. extra: 3368 / 3133,
  29258. bottom: 0 / 3368
  29259. }
  29260. },
  29261. side: {
  29262. height: math.unit(4, "feet"),
  29263. name: "Side",
  29264. image: {
  29265. source: "./media/characters/arhan/side.svg",
  29266. extra: 3347 / 3105,
  29267. bottom: 0 / 3347
  29268. }
  29269. },
  29270. tongue: {
  29271. height: math.unit(1.42, "feet"),
  29272. name: "Tongue",
  29273. image: {
  29274. source: "./media/characters/arhan/tongue.svg"
  29275. }
  29276. },
  29277. head: {
  29278. height: math.unit(0.85, "feet"),
  29279. name: "Head",
  29280. image: {
  29281. source: "./media/characters/arhan/head.svg"
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(4, "feet"),
  29289. default: true
  29290. },
  29291. ]
  29292. ))
  29293. characterMakers.push(() => makeCharacter(
  29294. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29295. {
  29296. front: {
  29297. height: math.unit(5 + 7.5 / 12, "feet"),
  29298. weight: math.unit(120, "lb"),
  29299. name: "Front",
  29300. image: {
  29301. source: "./media/characters/digi-duncan/front.svg",
  29302. extra: 330 / 326,
  29303. bottom: 16 / 346
  29304. }
  29305. },
  29306. side: {
  29307. height: math.unit(5 + 7.5 / 12, "feet"),
  29308. weight: math.unit(120, "lb"),
  29309. name: "Side",
  29310. image: {
  29311. source: "./media/characters/digi-duncan/side.svg",
  29312. extra: 341 / 337,
  29313. bottom: 1 / 342
  29314. }
  29315. },
  29316. back: {
  29317. height: math.unit(5 + 7.5 / 12, "feet"),
  29318. weight: math.unit(120, "lb"),
  29319. name: "Back",
  29320. image: {
  29321. source: "./media/characters/digi-duncan/back.svg",
  29322. extra: 330 / 326,
  29323. bottom: 12 / 342
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Speck",
  29330. height: math.unit(0.25, "mm")
  29331. },
  29332. {
  29333. name: "Micro",
  29334. height: math.unit(5, "mm")
  29335. },
  29336. {
  29337. name: "Tiny",
  29338. height: math.unit(0.5, "inches"),
  29339. default: true
  29340. },
  29341. {
  29342. name: "Human",
  29343. height: math.unit(5 + 7.5 / 12, "feet")
  29344. },
  29345. {
  29346. name: "Minigiant",
  29347. height: math.unit(8 + 5.25, "feet")
  29348. },
  29349. {
  29350. name: "Giant",
  29351. height: math.unit(2000, "feet")
  29352. },
  29353. {
  29354. name: "Mega",
  29355. height: math.unit(371.1, "miles")
  29356. },
  29357. ]
  29358. ))
  29359. characterMakers.push(() => makeCharacter(
  29360. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29361. {
  29362. front: {
  29363. height: math.unit(2, "meters"),
  29364. weight: math.unit(350, "kg"),
  29365. name: "Front",
  29366. image: {
  29367. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29368. extra: 898 / 838,
  29369. bottom: 9 / 907
  29370. }
  29371. },
  29372. },
  29373. [
  29374. {
  29375. name: "Micro",
  29376. height: math.unit(8, "meters")
  29377. },
  29378. {
  29379. name: "Normal",
  29380. height: math.unit(50, "meters"),
  29381. default: true
  29382. },
  29383. {
  29384. name: "Macro",
  29385. height: math.unit(500, "meters")
  29386. },
  29387. ]
  29388. ))
  29389. characterMakers.push(() => makeCharacter(
  29390. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29391. {
  29392. front: {
  29393. height: math.unit(6 + 6 / 12, "feet"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/khardesh/front.svg",
  29397. extra: 888 / 797,
  29398. bottom: 25 / 913
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Normal",
  29405. height: math.unit(6 + 6 / 12, "feet"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Normal+",
  29410. height: math.unit(4, "meters")
  29411. },
  29412. {
  29413. name: "Macro",
  29414. height: math.unit(50, "meters")
  29415. },
  29416. {
  29417. name: "Macro+",
  29418. height: math.unit(100, "meters")
  29419. },
  29420. {
  29421. name: "Megamacro",
  29422. height: math.unit(20, "km")
  29423. },
  29424. ]
  29425. ))
  29426. characterMakers.push(() => makeCharacter(
  29427. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29428. {
  29429. front: {
  29430. height: math.unit(6, "feet"),
  29431. weight: math.unit(150, "lb"),
  29432. name: "Front",
  29433. image: {
  29434. source: "./media/characters/kosho/front.svg",
  29435. extra: 1847 / 1847,
  29436. bottom: 86 / 1933
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Second-stage micro",
  29443. height: math.unit(0.5, "inches")
  29444. },
  29445. {
  29446. name: "First-stage micro",
  29447. height: math.unit(6, "inches")
  29448. },
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(6, "feet"),
  29452. default: true
  29453. },
  29454. {
  29455. name: "First-stage macro",
  29456. height: math.unit(72, "feet")
  29457. },
  29458. {
  29459. name: "Second-stage macro",
  29460. height: math.unit(864, "feet")
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29466. {
  29467. normal: {
  29468. height: math.unit(4 + 6 / 12, "feet"),
  29469. name: "Normal",
  29470. image: {
  29471. source: "./media/characters/hydra/normal.svg",
  29472. extra: 2833 / 2634,
  29473. bottom: 68 / 2901
  29474. }
  29475. },
  29476. smol: {
  29477. height: math.unit(0.705, "inches"),
  29478. name: "Smol",
  29479. image: {
  29480. source: "./media/characters/hydra/smol.svg",
  29481. extra: 2715 / 2540,
  29482. bottom: 0 / 2715
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Normal",
  29489. height: math.unit(4 + 6 / 12, "feet"),
  29490. default: true
  29491. }
  29492. ]
  29493. ))
  29494. characterMakers.push(() => makeCharacter(
  29495. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29496. {
  29497. front: {
  29498. height: math.unit(0.6, "cm"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/daz/front.svg",
  29502. extra: 1682 / 1164,
  29503. bottom: 42 / 1724
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(0.6, "cm"),
  29511. default: true
  29512. },
  29513. ]
  29514. ))
  29515. characterMakers.push(() => makeCharacter(
  29516. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29517. {
  29518. front: {
  29519. height: math.unit(6, "feet"),
  29520. weight: math.unit(235, "lb"),
  29521. name: "Front",
  29522. image: {
  29523. source: "./media/characters/theo-pangolin/front.svg",
  29524. extra: 1996 / 1969,
  29525. bottom: 115 / 2111
  29526. }
  29527. },
  29528. back: {
  29529. height: math.unit(6, "feet"),
  29530. weight: math.unit(235, "lb"),
  29531. name: "Back",
  29532. image: {
  29533. source: "./media/characters/theo-pangolin/back.svg",
  29534. extra: 1979 / 1979,
  29535. bottom: 40 / 2019
  29536. }
  29537. },
  29538. feral: {
  29539. height: math.unit(2, "feet"),
  29540. weight: math.unit(30, "lb"),
  29541. name: "Feral",
  29542. image: {
  29543. source: "./media/characters/theo-pangolin/feral.svg",
  29544. extra: 803 / 791,
  29545. bottom: 181 / 984
  29546. }
  29547. },
  29548. footFive: {
  29549. height: math.unit(1.43, "feet"),
  29550. name: "Foot (Five Toes)",
  29551. image: {
  29552. source: "./media/characters/theo-pangolin/foot-five.svg"
  29553. }
  29554. },
  29555. footFour: {
  29556. height: math.unit(1.43, "feet"),
  29557. name: "Foot (Four Toes)",
  29558. image: {
  29559. source: "./media/characters/theo-pangolin/foot-four.svg"
  29560. }
  29561. },
  29562. handFour: {
  29563. height: math.unit(0.81, "feet"),
  29564. name: "Hand (Four Fingers)",
  29565. image: {
  29566. source: "./media/characters/theo-pangolin/hand-four.svg"
  29567. }
  29568. },
  29569. handThree: {
  29570. height: math.unit(0.81, "feet"),
  29571. name: "Hand (Three Fingers)",
  29572. image: {
  29573. source: "./media/characters/theo-pangolin/hand-three.svg"
  29574. }
  29575. },
  29576. headFront: {
  29577. height: math.unit(1.37, "feet"),
  29578. name: "Head (Front)",
  29579. image: {
  29580. source: "./media/characters/theo-pangolin/head-front.svg"
  29581. }
  29582. },
  29583. headSide: {
  29584. height: math.unit(1.43, "feet"),
  29585. name: "Head (Side)",
  29586. image: {
  29587. source: "./media/characters/theo-pangolin/head-side.svg"
  29588. }
  29589. },
  29590. tongue: {
  29591. height: math.unit(2.29, "feet"),
  29592. name: "Tongue",
  29593. image: {
  29594. source: "./media/characters/theo-pangolin/tongue.svg"
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(6, "feet")
  29602. },
  29603. {
  29604. name: "Macro",
  29605. height: math.unit(400, "feet"),
  29606. default: true
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(6, "inches"),
  29615. weight: math.unit(0.036, "kg"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/renée/front.svg",
  29619. extra: 900 / 886,
  29620. bottom: 8 / 908
  29621. }
  29622. },
  29623. },
  29624. [
  29625. {
  29626. name: "Nano",
  29627. height: math.unit(1, "nm")
  29628. },
  29629. {
  29630. name: "Micro",
  29631. height: math.unit(1, "mm")
  29632. },
  29633. {
  29634. name: "Normal",
  29635. height: math.unit(6, "inches")
  29636. },
  29637. {
  29638. name: "Macro",
  29639. height: math.unit(2000, "feet"),
  29640. default: true
  29641. },
  29642. {
  29643. name: "Megamacro",
  29644. height: math.unit(2, "km")
  29645. },
  29646. {
  29647. name: "Gigamacro",
  29648. height: math.unit(2000, "km")
  29649. },
  29650. {
  29651. name: "Teramacro",
  29652. height: math.unit(250000, "km")
  29653. },
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29658. {
  29659. front: {
  29660. height: math.unit(4, "meters"),
  29661. weight: math.unit(150, "kg"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/caledvwlch/front.svg",
  29665. extra: 1760 / 1551,
  29666. bottom: 28 / 1788
  29667. }
  29668. },
  29669. side: {
  29670. height: math.unit(4, "meters"),
  29671. weight: math.unit(150, "kg"),
  29672. name: "Side",
  29673. image: {
  29674. source: "./media/characters/caledvwlch/side.svg",
  29675. extra: 1605 / 1536,
  29676. bottom: 31 / 1636
  29677. }
  29678. },
  29679. back: {
  29680. height: math.unit(4, "meters"),
  29681. weight: math.unit(150, "kg"),
  29682. name: "Back",
  29683. image: {
  29684. source: "./media/characters/caledvwlch/back.svg",
  29685. extra: 1635 / 1565,
  29686. bottom: 27 / 1662
  29687. }
  29688. },
  29689. },
  29690. [
  29691. {
  29692. name: "\"Incognito\"",
  29693. height: math.unit(4, "meters")
  29694. },
  29695. {
  29696. name: "Small rampage",
  29697. height: math.unit(600, "meters")
  29698. },
  29699. {
  29700. name: "Mega",
  29701. height: math.unit(30, "km")
  29702. },
  29703. {
  29704. name: "Home-size",
  29705. height: math.unit(50, "km"),
  29706. default: true
  29707. },
  29708. {
  29709. name: "Giga",
  29710. height: math.unit(300, "km")
  29711. },
  29712. {
  29713. name: "Lounging",
  29714. height: math.unit(11000, "km")
  29715. },
  29716. {
  29717. name: "Planet snacking",
  29718. height: math.unit(2000000, "km")
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29724. {
  29725. front: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(215, "lb"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/sapphire-svell/front.svg",
  29731. extra: 495 / 455,
  29732. bottom: 20 / 515
  29733. }
  29734. },
  29735. back: {
  29736. height: math.unit(6, "feet"),
  29737. weight: math.unit(216, "lb"),
  29738. name: "Back",
  29739. image: {
  29740. source: "./media/characters/sapphire-svell/back.svg",
  29741. extra: 497 / 477,
  29742. bottom: 7 / 504
  29743. }
  29744. },
  29745. maw: {
  29746. height: math.unit(1.57, "feet"),
  29747. name: "Maw",
  29748. image: {
  29749. source: "./media/characters/sapphire-svell/maw.svg"
  29750. }
  29751. },
  29752. foot: {
  29753. height: math.unit(1.07, "feet"),
  29754. name: "Foot",
  29755. image: {
  29756. source: "./media/characters/sapphire-svell/foot.svg"
  29757. }
  29758. },
  29759. toering: {
  29760. height: math.unit(1.7, "inch"),
  29761. name: "Toering",
  29762. image: {
  29763. source: "./media/characters/sapphire-svell/toering.svg"
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(300, "feet"),
  29771. default: true
  29772. },
  29773. {
  29774. name: "Augmented",
  29775. height: math.unit(1250, "feet")
  29776. },
  29777. {
  29778. name: "Unleashed",
  29779. height: math.unit(3000, "feet")
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29785. {
  29786. side: {
  29787. height: math.unit(2 + 3 / 12, "feet"),
  29788. weight: math.unit(110, "lb"),
  29789. name: "Side",
  29790. image: {
  29791. source: "./media/characters/glitch-flux/side.svg",
  29792. extra: 997 / 805,
  29793. bottom: 20 / 1017
  29794. }
  29795. },
  29796. },
  29797. [
  29798. {
  29799. name: "Normal",
  29800. height: math.unit(2 + 3 / 12, "feet"),
  29801. default: true
  29802. },
  29803. ]
  29804. ))
  29805. characterMakers.push(() => makeCharacter(
  29806. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29807. {
  29808. front: {
  29809. height: math.unit(4, "meters"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/mid/front.svg",
  29813. extra: 507 / 476,
  29814. bottom: 17 / 524
  29815. }
  29816. },
  29817. back: {
  29818. height: math.unit(4, "meters"),
  29819. name: "Back",
  29820. image: {
  29821. source: "./media/characters/mid/back.svg",
  29822. extra: 519 / 487,
  29823. bottom: 7 / 526
  29824. }
  29825. },
  29826. stuck: {
  29827. height: math.unit(2.2, "meters"),
  29828. name: "Stuck",
  29829. image: {
  29830. source: "./media/characters/mid/stuck.svg",
  29831. extra: 1951 / 1869,
  29832. bottom: 88 / 2039
  29833. }
  29834. }
  29835. },
  29836. [
  29837. {
  29838. name: "Normal",
  29839. height: math.unit(4, "meters"),
  29840. default: true
  29841. },
  29842. {
  29843. name: "Big",
  29844. height: math.unit(10, "meters")
  29845. },
  29846. {
  29847. name: "Macro",
  29848. height: math.unit(800, "meters")
  29849. },
  29850. {
  29851. name: "Megamacro",
  29852. height: math.unit(100, "km")
  29853. },
  29854. {
  29855. name: "Overgrown",
  29856. height: math.unit(1, "parsec")
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29862. {
  29863. front: {
  29864. height: math.unit(2.5, "meters"),
  29865. weight: math.unit(225, "kg"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/iris/front.svg",
  29869. extra: 3348 / 3251,
  29870. bottom: 205 / 3553
  29871. }
  29872. },
  29873. maw: {
  29874. height: math.unit(0.56, "meter"),
  29875. name: "Maw",
  29876. image: {
  29877. source: "./media/characters/iris/maw.svg"
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Mewter cat",
  29884. height: math.unit(1.2, "meters")
  29885. },
  29886. {
  29887. name: "Minimacro",
  29888. height: math.unit(2.5, "meters"),
  29889. default: true
  29890. },
  29891. {
  29892. name: "Macro",
  29893. height: math.unit(180, "meters")
  29894. },
  29895. {
  29896. name: "Megamacro",
  29897. height: math.unit(2746, "meters")
  29898. },
  29899. ]
  29900. ))
  29901. characterMakers.push(() => makeCharacter(
  29902. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29903. {
  29904. front: {
  29905. height: math.unit(6, "feet"),
  29906. weight: math.unit(135, "lb"),
  29907. name: "Front",
  29908. image: {
  29909. source: "./media/characters/axel/front.svg",
  29910. extra: 908 / 908,
  29911. bottom: 58 / 966
  29912. }
  29913. },
  29914. side: {
  29915. height: math.unit(6, "feet"),
  29916. weight: math.unit(135, "lb"),
  29917. name: "Side",
  29918. image: {
  29919. source: "./media/characters/axel/side.svg",
  29920. extra: 958 / 958,
  29921. bottom: 11 / 969
  29922. }
  29923. },
  29924. back: {
  29925. height: math.unit(6, "feet"),
  29926. weight: math.unit(135, "lb"),
  29927. name: "Back",
  29928. image: {
  29929. source: "./media/characters/axel/back.svg",
  29930. extra: 887 / 887,
  29931. bottom: 34 / 921
  29932. }
  29933. },
  29934. head: {
  29935. height: math.unit(1.07, "feet"),
  29936. name: "Head",
  29937. image: {
  29938. source: "./media/characters/axel/head.svg"
  29939. }
  29940. },
  29941. beak: {
  29942. height: math.unit(1.4, "feet"),
  29943. name: "Beak",
  29944. image: {
  29945. source: "./media/characters/axel/beak.svg"
  29946. }
  29947. },
  29948. beakSide: {
  29949. height: math.unit(1.4, "feet"),
  29950. name: "Beak Side",
  29951. image: {
  29952. source: "./media/characters/axel/beak-side.svg"
  29953. }
  29954. },
  29955. sheath: {
  29956. height: math.unit(0.5, "feet"),
  29957. name: "Sheath",
  29958. image: {
  29959. source: "./media/characters/axel/sheath.svg"
  29960. }
  29961. },
  29962. dick: {
  29963. height: math.unit(0.98, "feet"),
  29964. name: "Dick",
  29965. image: {
  29966. source: "./media/characters/axel/dick.svg"
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Macro",
  29973. height: math.unit(68, "meters"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(3.5, "meters"),
  29983. weight: math.unit(1200, "kg"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/joanna/front.svg",
  29987. extra: 1596 / 1488,
  29988. bottom: 29 / 1625
  29989. }
  29990. },
  29991. back: {
  29992. height: math.unit(3.5, "meters"),
  29993. weight: math.unit(1200, "kg"),
  29994. name: "Back",
  29995. image: {
  29996. source: "./media/characters/joanna/back.svg",
  29997. extra: 1594 / 1495,
  29998. bottom: 26 / 1620
  29999. }
  30000. },
  30001. frontShorts: {
  30002. height: math.unit(3.5, "meters"),
  30003. weight: math.unit(1200, "kg"),
  30004. name: "Front (Shorts)",
  30005. image: {
  30006. source: "./media/characters/joanna/front-shorts.svg",
  30007. extra: 1596 / 1488,
  30008. bottom: 29 / 1625
  30009. }
  30010. },
  30011. frontBiker: {
  30012. height: math.unit(3.5, "meters"),
  30013. weight: math.unit(1200, "kg"),
  30014. name: "Front (Biker)",
  30015. image: {
  30016. source: "./media/characters/joanna/front-biker.svg",
  30017. extra: 1596 / 1488,
  30018. bottom: 29 / 1625
  30019. }
  30020. },
  30021. backBiker: {
  30022. height: math.unit(3.5, "meters"),
  30023. weight: math.unit(1200, "kg"),
  30024. name: "Back (Biker)",
  30025. image: {
  30026. source: "./media/characters/joanna/back-biker.svg",
  30027. extra: 1594 / 1495,
  30028. bottom: 88 / 1682
  30029. }
  30030. },
  30031. bikeLeft: {
  30032. height: math.unit(2.4, "meters"),
  30033. weight: math.unit(1600, "kg"),
  30034. name: "Bike (Left)",
  30035. image: {
  30036. source: "./media/characters/joanna/bike-left.svg",
  30037. extra: 720 / 720,
  30038. bottom: 8 / 728
  30039. }
  30040. },
  30041. bikeRight: {
  30042. height: math.unit(2.4, "meters"),
  30043. weight: math.unit(1600, "kg"),
  30044. name: "Bike (Right)",
  30045. image: {
  30046. source: "./media/characters/joanna/bike-right.svg",
  30047. extra: 720 / 720,
  30048. bottom: 8 / 728
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Incognito",
  30055. height: math.unit(3.5, "meters")
  30056. },
  30057. {
  30058. name: "Casual Big",
  30059. height: math.unit(200, "meters")
  30060. },
  30061. {
  30062. name: "Macro",
  30063. height: math.unit(600, "meters")
  30064. },
  30065. {
  30066. name: "Original",
  30067. height: math.unit(20, "km"),
  30068. default: true
  30069. },
  30070. {
  30071. name: "Giga",
  30072. height: math.unit(400, "km")
  30073. },
  30074. {
  30075. name: "Lounging",
  30076. height: math.unit(1500, "km")
  30077. },
  30078. {
  30079. name: "Planetary",
  30080. height: math.unit(200000, "km")
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(6, "feet"),
  30089. weight: math.unit(150, "lb"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/hugo-sigil/front.svg",
  30093. extra: 522 / 500,
  30094. bottom: 2 / 524
  30095. }
  30096. },
  30097. back: {
  30098. height: math.unit(6, "feet"),
  30099. weight: math.unit(150, "lb"),
  30100. name: "Back",
  30101. image: {
  30102. source: "./media/characters/hugo-sigil/back.svg",
  30103. extra: 519 / 495,
  30104. bottom: 5 / 524
  30105. }
  30106. },
  30107. maw: {
  30108. height: math.unit(1.4, "feet"),
  30109. weight: math.unit(150, "lb"),
  30110. name: "Maw",
  30111. image: {
  30112. source: "./media/characters/hugo-sigil/maw.svg"
  30113. }
  30114. },
  30115. feet: {
  30116. height: math.unit(1.56, "feet"),
  30117. weight: math.unit(150, "lb"),
  30118. name: "Feet",
  30119. image: {
  30120. source: "./media/characters/hugo-sigil/feet.svg",
  30121. extra: 177 / 177,
  30122. bottom: 12 / 189
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Normal",
  30129. height: math.unit(6, "feet")
  30130. },
  30131. {
  30132. name: "Macro",
  30133. height: math.unit(200, "feet"),
  30134. default: true
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(6, "feet"),
  30143. weight: math.unit(150, "lb"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/peri/front.svg",
  30147. extra: 2354 / 2233,
  30148. bottom: 49 / 2403
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Really Small",
  30155. height: math.unit(1, "nm")
  30156. },
  30157. {
  30158. name: "Micro",
  30159. height: math.unit(4, "inches")
  30160. },
  30161. {
  30162. name: "Normal",
  30163. height: math.unit(7, "inches"),
  30164. default: true
  30165. },
  30166. {
  30167. name: "Macro",
  30168. height: math.unit(400, "feet")
  30169. },
  30170. {
  30171. name: "Megamacro",
  30172. height: math.unit(100, "miles")
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30178. {
  30179. frontSlim: {
  30180. height: math.unit(7, "feet"),
  30181. name: "Front (Slim)",
  30182. image: {
  30183. source: "./media/characters/issilora/front-slim.svg",
  30184. extra: 529 / 449,
  30185. bottom: 53 / 582
  30186. }
  30187. },
  30188. sideSlim: {
  30189. height: math.unit(7, "feet"),
  30190. name: "Side (Slim)",
  30191. image: {
  30192. source: "./media/characters/issilora/side-slim.svg",
  30193. extra: 570 / 480,
  30194. bottom: 30 / 600
  30195. }
  30196. },
  30197. backSlim: {
  30198. height: math.unit(7, "feet"),
  30199. name: "Back (Slim)",
  30200. image: {
  30201. source: "./media/characters/issilora/back-slim.svg",
  30202. extra: 537 / 455,
  30203. bottom: 46 / 583
  30204. }
  30205. },
  30206. frontBuff: {
  30207. height: math.unit(7, "feet"),
  30208. name: "Front (Buff)",
  30209. image: {
  30210. source: "./media/characters/issilora/front-buff.svg",
  30211. extra: 2310 / 2035,
  30212. bottom: 335 / 2645
  30213. }
  30214. },
  30215. head: {
  30216. height: math.unit(1.94, "feet"),
  30217. name: "Head",
  30218. image: {
  30219. source: "./media/characters/issilora/head.svg"
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Minimum",
  30226. height: math.unit(7, "feet")
  30227. },
  30228. {
  30229. name: "Comfortable",
  30230. height: math.unit(17, "feet")
  30231. },
  30232. {
  30233. name: "Fun Size",
  30234. height: math.unit(47, "feet")
  30235. },
  30236. {
  30237. name: "Natural Macro",
  30238. height: math.unit(137, "feet"),
  30239. default: true
  30240. },
  30241. {
  30242. name: "Maximum Kaiju",
  30243. height: math.unit(397, "feet")
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30249. {
  30250. front: {
  30251. height: math.unit(50 + 9/12, "feet"),
  30252. weight: math.unit(32.8, "tons"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/irb'iiritaahn/front.svg",
  30256. extra: 1878/1826,
  30257. bottom: 326/2204
  30258. }
  30259. },
  30260. back: {
  30261. height: math.unit(50 + 9/12, "feet"),
  30262. weight: math.unit(32.8, "tons"),
  30263. name: "Back",
  30264. image: {
  30265. source: "./media/characters/irb'iiritaahn/back.svg",
  30266. extra: 2052/2018,
  30267. bottom: 152/2204
  30268. }
  30269. },
  30270. head: {
  30271. height: math.unit(12.86, "feet"),
  30272. name: "Head",
  30273. image: {
  30274. source: "./media/characters/irb'iiritaahn/head.svg"
  30275. }
  30276. },
  30277. maw: {
  30278. height: math.unit(9.66, "feet"),
  30279. name: "Maw",
  30280. image: {
  30281. source: "./media/characters/irb'iiritaahn/maw.svg"
  30282. }
  30283. },
  30284. frontDick: {
  30285. height: math.unit(8.78461, "feet"),
  30286. name: "Front Dick",
  30287. image: {
  30288. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30289. }
  30290. },
  30291. rearDick: {
  30292. height: math.unit(8.78461, "feet"),
  30293. name: "Rear Dick",
  30294. image: {
  30295. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30296. }
  30297. },
  30298. rearDickUnfolded: {
  30299. height: math.unit(8.78, "feet"),
  30300. name: "Rear Dick (Unfolded)",
  30301. image: {
  30302. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30303. }
  30304. },
  30305. wings: {
  30306. height: math.unit(43, "feet"),
  30307. name: "Wings",
  30308. image: {
  30309. source: "./media/characters/irb'iiritaahn/wings.svg"
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Macro",
  30316. height: math.unit(50 + 9/12, "feet"),
  30317. default: true
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(205, "cm"),
  30326. weight: math.unit(102, "kg"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/irbisgreif/front.svg",
  30330. extra: 785/706,
  30331. bottom: 13/798
  30332. }
  30333. },
  30334. back: {
  30335. height: math.unit(205, "cm"),
  30336. weight: math.unit(102, "kg"),
  30337. name: "Back",
  30338. image: {
  30339. source: "./media/characters/irbisgreif/back.svg",
  30340. extra: 713/701,
  30341. bottom: 26/739
  30342. }
  30343. },
  30344. frontDressed: {
  30345. height: math.unit(216, "cm"),
  30346. weight: math.unit(102, "kg"),
  30347. name: "Front-dressed",
  30348. image: {
  30349. source: "./media/characters/irbisgreif/front-dressed.svg",
  30350. extra: 902/776,
  30351. bottom: 14/916
  30352. }
  30353. },
  30354. sideDressed: {
  30355. height: math.unit(195, "cm"),
  30356. weight: math.unit(102, "kg"),
  30357. name: "Side-dressed",
  30358. image: {
  30359. source: "./media/characters/irbisgreif/side-dressed.svg",
  30360. extra: 788/688,
  30361. bottom: 21/809
  30362. }
  30363. },
  30364. backDressed: {
  30365. height: math.unit(216, "cm"),
  30366. weight: math.unit(102, "kg"),
  30367. name: "Back-dressed",
  30368. image: {
  30369. source: "./media/characters/irbisgreif/back-dressed.svg",
  30370. extra: 901/783,
  30371. bottom: 10/911
  30372. }
  30373. },
  30374. dick: {
  30375. height: math.unit(0.49, "feet"),
  30376. name: "Dick",
  30377. image: {
  30378. source: "./media/characters/irbisgreif/dick.svg"
  30379. }
  30380. },
  30381. wingTop: {
  30382. height: math.unit(1.93 , "feet"),
  30383. name: "Wing-top",
  30384. image: {
  30385. source: "./media/characters/irbisgreif/wing-top.svg"
  30386. }
  30387. },
  30388. wingBottom: {
  30389. height: math.unit(1.93 , "feet"),
  30390. name: "Wing-bottom",
  30391. image: {
  30392. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(216, "cm"),
  30400. default: true
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30406. {
  30407. front: {
  30408. height: math.unit(6, "feet"),
  30409. weight: math.unit(150, "lb"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/pride/front.svg",
  30413. extra: 1299/1230,
  30414. bottom: 18/1317
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(7, "feet")
  30422. },
  30423. {
  30424. name: "Mini-macro",
  30425. height: math.unit(11, "feet")
  30426. },
  30427. {
  30428. name: "Macro",
  30429. height: math.unit(15, "meters"),
  30430. default: true
  30431. },
  30432. {
  30433. name: "Macro+",
  30434. height: math.unit(40, "meters")
  30435. },
  30436. ]
  30437. ))
  30438. characterMakers.push(() => makeCharacter(
  30439. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30440. {
  30441. front: {
  30442. height: math.unit(4 + 2 / 12, "feet"),
  30443. weight: math.unit(95, "lb"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/vaelophis-nyx/front.svg",
  30447. extra: 2532/2330,
  30448. bottom: 0/2532
  30449. }
  30450. },
  30451. back: {
  30452. height: math.unit(4 + 2 / 12, "feet"),
  30453. weight: math.unit(95, "lb"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/vaelophis-nyx/back.svg",
  30457. extra: 2484/2361,
  30458. bottom: 0/2484
  30459. }
  30460. },
  30461. feralSide: {
  30462. height: math.unit(2 + 1/12, "feet"),
  30463. weight: math.unit(20, "lb"),
  30464. name: "Feral (Side)",
  30465. image: {
  30466. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30467. extra: 1721/1581,
  30468. bottom: 70/1791
  30469. }
  30470. },
  30471. feralLazing: {
  30472. height: math.unit(1.08, "feet"),
  30473. weight: math.unit(20, "lb"),
  30474. name: "Feral (Lazing)",
  30475. image: {
  30476. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30477. extra: 822/822,
  30478. bottom: 248/1070
  30479. }
  30480. },
  30481. ear: {
  30482. height: math.unit(0.416, "feet"),
  30483. name: "Ear",
  30484. image: {
  30485. source: "./media/characters/vaelophis-nyx/ear.svg"
  30486. }
  30487. },
  30488. eye: {
  30489. height: math.unit(0.0748, "feet"),
  30490. name: "Eye",
  30491. image: {
  30492. source: "./media/characters/vaelophis-nyx/eye.svg"
  30493. }
  30494. },
  30495. mouth: {
  30496. height: math.unit(0.378, "feet"),
  30497. name: "Mouth",
  30498. image: {
  30499. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30500. }
  30501. },
  30502. spade: {
  30503. height: math.unit(0.55, "feet"),
  30504. name: "Spade",
  30505. image: {
  30506. source: "./media/characters/vaelophis-nyx/spade.svg"
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Normal",
  30513. height: math.unit(4 + 2/12, "feet"),
  30514. default: true
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30520. {
  30521. front: {
  30522. height: math.unit(7, "feet"),
  30523. weight: math.unit(231, "lb"),
  30524. name: "Front",
  30525. image: {
  30526. source: "./media/characters/flux/front.svg",
  30527. extra: 919/871,
  30528. bottom: 0/919
  30529. }
  30530. },
  30531. back: {
  30532. height: math.unit(7, "feet"),
  30533. weight: math.unit(231, "lb"),
  30534. name: "Back",
  30535. image: {
  30536. source: "./media/characters/flux/back.svg",
  30537. extra: 1040/992,
  30538. bottom: 0/1040
  30539. }
  30540. },
  30541. frontDressed: {
  30542. height: math.unit(7, "feet"),
  30543. weight: math.unit(231, "lb"),
  30544. name: "Front (Dressed)",
  30545. image: {
  30546. source: "./media/characters/flux/front-dressed.svg",
  30547. extra: 919/871,
  30548. bottom: 0/919
  30549. }
  30550. },
  30551. feralSide: {
  30552. height: math.unit(5, "feet"),
  30553. weight: math.unit(150, "lb"),
  30554. name: "Feral (Side)",
  30555. image: {
  30556. source: "./media/characters/flux/feral-side.svg",
  30557. extra: 598/528,
  30558. bottom: 28/626
  30559. }
  30560. },
  30561. head: {
  30562. height: math.unit(1.585, "feet"),
  30563. name: "Head",
  30564. image: {
  30565. source: "./media/characters/flux/head.svg"
  30566. }
  30567. },
  30568. headSide: {
  30569. height: math.unit(1.74, "feet"),
  30570. name: "Head (Side)",
  30571. image: {
  30572. source: "./media/characters/flux/head-side.svg"
  30573. }
  30574. },
  30575. headSideFire: {
  30576. height: math.unit(1.76, "feet"),
  30577. name: "Head (Side, Fire)",
  30578. image: {
  30579. source: "./media/characters/flux/head-side-fire.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(7, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(9, "feet"),
  30596. weight: math.unit(1012, "lb"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/ulfra-lupae/front.svg",
  30600. extra: 1083/1011,
  30601. bottom: 67/1150
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Micro",
  30608. height: math.unit(6, "inches")
  30609. },
  30610. {
  30611. name: "Socializing",
  30612. height: math.unit(6 + 5/12, "feet")
  30613. },
  30614. {
  30615. name: "Normal",
  30616. height: math.unit(9, "feet"),
  30617. default: true
  30618. },
  30619. {
  30620. name: "Macro",
  30621. height: math.unit(150, "feet")
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(5 + 2/12, "feet"),
  30630. weight: math.unit(120, "lb"),
  30631. name: "Front",
  30632. image: {
  30633. source: "./media/characters/timber/front.svg",
  30634. extra: 2814/2705,
  30635. bottom: 181/2995
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Normal",
  30642. height: math.unit(5 + 2/12, "feet"),
  30643. default: true
  30644. },
  30645. ]
  30646. ))
  30647. characterMakers.push(() => makeCharacter(
  30648. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30649. {
  30650. front: {
  30651. height: math.unit(5 + 7/12, "feet"),
  30652. weight: math.unit(220, "lb"),
  30653. name: "Front",
  30654. image: {
  30655. source: "./media/characters/nicki/front.svg",
  30656. extra: 453/419,
  30657. bottom: 7/460
  30658. }
  30659. },
  30660. frontAlt: {
  30661. height: math.unit(5 + 7/12, "feet"),
  30662. weight: math.unit(220, "lb"),
  30663. name: "Front-alt",
  30664. image: {
  30665. source: "./media/characters/nicki/front-alt.svg",
  30666. extra: 435/411,
  30667. bottom: 12/447
  30668. }
  30669. },
  30670. back: {
  30671. height: math.unit(5 + 7/12, "feet"),
  30672. weight: math.unit(220, "lb"),
  30673. name: "Back",
  30674. image: {
  30675. source: "./media/characters/nicki/back.svg",
  30676. extra: 440/413,
  30677. bottom: 19/459
  30678. }
  30679. },
  30680. taur: {
  30681. height: math.unit(7 + 6/12, "feet"),
  30682. weight: math.unit(700, "lb"),
  30683. name: "Taur",
  30684. image: {
  30685. source: "./media/characters/nicki/taur.svg",
  30686. extra: 975/773,
  30687. bottom: 0/975
  30688. }
  30689. },
  30690. frontNsfw: {
  30691. height: math.unit(5 + 7/12, "feet"),
  30692. weight: math.unit(220, "lb"),
  30693. name: "Front (NSFW)",
  30694. image: {
  30695. source: "./media/characters/nicki/front-nsfw.svg",
  30696. extra: 453/419,
  30697. bottom: 7/460
  30698. }
  30699. },
  30700. frontNsfwAlt: {
  30701. height: math.unit(5 + 7/12, "feet"),
  30702. weight: math.unit(220, "lb"),
  30703. name: "Front (Alt, NSFW)",
  30704. image: {
  30705. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30706. extra: 435/411,
  30707. bottom: 12/447
  30708. }
  30709. },
  30710. backNsfw: {
  30711. height: math.unit(5 + 7/12, "feet"),
  30712. weight: math.unit(220, "lb"),
  30713. name: "Back (NSFW)",
  30714. image: {
  30715. source: "./media/characters/nicki/back-nsfw.svg",
  30716. extra: 440/413,
  30717. bottom: 19/459
  30718. }
  30719. },
  30720. head: {
  30721. height: math.unit(2.1, "feet"),
  30722. name: "Head",
  30723. image: {
  30724. source: "./media/characters/nicki/head.svg"
  30725. }
  30726. },
  30727. paw: {
  30728. height: math.unit(1.88, "feet"),
  30729. name: "Paw",
  30730. image: {
  30731. source: "./media/characters/nicki/paw.svg"
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Normal",
  30738. height: math.unit(5 + 7/12, "feet"),
  30739. default: true
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30745. {
  30746. front: {
  30747. height: math.unit(7 + 10/12, "feet"),
  30748. weight: math.unit(3.5, "tons"),
  30749. name: "Front",
  30750. image: {
  30751. source: "./media/characters/lee/front.svg",
  30752. extra: 1773/1615,
  30753. bottom: 86/1859
  30754. }
  30755. },
  30756. hand: {
  30757. height: math.unit(1.78, "feet"),
  30758. name: "Hand",
  30759. image: {
  30760. source: "./media/characters/lee/hand.svg"
  30761. }
  30762. },
  30763. maw: {
  30764. height: math.unit(1.18, "feet"),
  30765. name: "Maw",
  30766. image: {
  30767. source: "./media/characters/lee/maw.svg"
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Normal",
  30774. height: math.unit(7 + 10/12, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30781. {
  30782. front: {
  30783. height: math.unit(9, "feet"),
  30784. name: "Front",
  30785. image: {
  30786. source: "./media/characters/guti/front.svg",
  30787. extra: 4551/4355,
  30788. bottom: 123/4674
  30789. }
  30790. },
  30791. tongue: {
  30792. height: math.unit(1, "feet"),
  30793. name: "Tongue",
  30794. image: {
  30795. source: "./media/characters/guti/tongue.svg"
  30796. }
  30797. },
  30798. paw: {
  30799. height: math.unit(1.18, "feet"),
  30800. name: "Paw",
  30801. image: {
  30802. source: "./media/characters/guti/paw.svg"
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Normal",
  30809. height: math.unit(9, "feet"),
  30810. default: true
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30816. {
  30817. side: {
  30818. height: math.unit(5, "meters"),
  30819. name: "Side",
  30820. image: {
  30821. source: "./media/characters/vesper/side.svg",
  30822. extra: 1605/1518,
  30823. bottom: 0/1605
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Small",
  30830. height: math.unit(5, "meters")
  30831. },
  30832. {
  30833. name: "Sage",
  30834. height: math.unit(100, "meters"),
  30835. default: true
  30836. },
  30837. {
  30838. name: "Fun Size",
  30839. height: math.unit(600, "meters")
  30840. },
  30841. {
  30842. name: "Goddess",
  30843. height: math.unit(20000, "km")
  30844. },
  30845. {
  30846. name: "Maximum",
  30847. height: math.unit(5, "galaxies")
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30853. {
  30854. front: {
  30855. height: math.unit(6 + 3/12, "feet"),
  30856. weight: math.unit(190, "lb"),
  30857. name: "Front",
  30858. image: {
  30859. source: "./media/characters/gawain/front.svg",
  30860. extra: 2222/2139,
  30861. bottom: 90/2312
  30862. }
  30863. },
  30864. back: {
  30865. height: math.unit(6 + 3/12, "feet"),
  30866. weight: math.unit(190, "lb"),
  30867. name: "Back",
  30868. image: {
  30869. source: "./media/characters/gawain/back.svg",
  30870. extra: 2199/2111,
  30871. bottom: 73/2272
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(6 + 3/12, "feet"),
  30879. default: true
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30885. {
  30886. side: {
  30887. height: math.unit(3.5, "meters"),
  30888. weight: math.unit(16000, "lb"),
  30889. name: "Side",
  30890. image: {
  30891. source: "./media/characters/dascalti/side.svg",
  30892. extra: 392/273,
  30893. bottom: 47/439
  30894. }
  30895. },
  30896. breath: {
  30897. height: math.unit(7.4, "feet"),
  30898. name: "Breath",
  30899. image: {
  30900. source: "./media/characters/dascalti/breath.svg"
  30901. }
  30902. },
  30903. fed: {
  30904. height: math.unit(3.6, "meters"),
  30905. weight: math.unit(16000, "lb"),
  30906. name: "Fed",
  30907. image: {
  30908. source: "./media/characters/dascalti/fed.svg",
  30909. extra: 1419/820,
  30910. bottom: 95/1514
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Normal",
  30917. height: math.unit(3.5, "meters"),
  30918. default: true
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30924. {
  30925. front: {
  30926. height: math.unit(3 + 5/12, "feet"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/mauve/front.svg",
  30930. extra: 1126/1033,
  30931. bottom: 65/1191
  30932. }
  30933. },
  30934. side: {
  30935. height: math.unit(3 + 5/12, "feet"),
  30936. name: "Side",
  30937. image: {
  30938. source: "./media/characters/mauve/side.svg",
  30939. extra: 1089/1001,
  30940. bottom: 29/1118
  30941. }
  30942. },
  30943. back: {
  30944. height: math.unit(3 + 5/12, "feet"),
  30945. name: "Back",
  30946. image: {
  30947. source: "./media/characters/mauve/back.svg",
  30948. extra: 1173/1053,
  30949. bottom: 109/1282
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Normal",
  30956. height: math.unit(3 + 5/12, "feet"),
  30957. default: true
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(6 + 3/12, "feet"),
  30966. weight: math.unit(430, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/carlos/front.svg",
  30970. extra: 1964/1913,
  30971. bottom: 70/2034
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(6 + 3/12, "feet"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30985. {
  30986. back: {
  30987. height: math.unit(5 + 10/12, "feet"),
  30988. weight: math.unit(200, "lb"),
  30989. name: "Back",
  30990. image: {
  30991. source: "./media/characters/jax/back.svg",
  30992. extra: 764/739,
  30993. bottom: 25/789
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(5 + 10/12, "feet"),
  31001. default: true
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(8, "feet"),
  31010. weight: math.unit(250, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/eikthynir/front.svg",
  31014. extra: 1332/1166,
  31015. bottom: 82/1414
  31016. }
  31017. },
  31018. back: {
  31019. height: math.unit(8, "feet"),
  31020. weight: math.unit(250, "lb"),
  31021. name: "Back",
  31022. image: {
  31023. source: "./media/characters/eikthynir/back.svg",
  31024. extra: 1342/1190,
  31025. bottom: 19/1361
  31026. }
  31027. },
  31028. dick: {
  31029. height: math.unit(2.35, "feet"),
  31030. name: "Dick",
  31031. image: {
  31032. source: "./media/characters/eikthynir/dick.svg"
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Normal",
  31039. height: math.unit(8, "feet"),
  31040. default: true
  31041. },
  31042. ]
  31043. ))
  31044. characterMakers.push(() => makeCharacter(
  31045. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31046. {
  31047. front: {
  31048. height: math.unit(99, "meters"),
  31049. weight: math.unit(13000, "tons"),
  31050. name: "Front",
  31051. image: {
  31052. source: "./media/characters/zlmos/front.svg",
  31053. extra: 2202/1992,
  31054. bottom: 315/2517
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Macro",
  31061. height: math.unit(99, "meters"),
  31062. default: true
  31063. },
  31064. ]
  31065. ))
  31066. characterMakers.push(() => makeCharacter(
  31067. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31068. {
  31069. front: {
  31070. height: math.unit(6 + 5/12, "feet"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/purri/front.svg",
  31074. extra: 1698/1610,
  31075. bottom: 32/1730
  31076. }
  31077. },
  31078. frontAlt: {
  31079. height: math.unit(6 + 5/12, "feet"),
  31080. name: "Front (Alt)",
  31081. image: {
  31082. source: "./media/characters/purri/front-alt.svg",
  31083. extra: 450/420,
  31084. bottom: 26/476
  31085. }
  31086. },
  31087. boots: {
  31088. height: math.unit(5.5, "feet"),
  31089. name: "Boots",
  31090. image: {
  31091. source: "./media/characters/purri/boots.svg",
  31092. extra: 905/853,
  31093. bottom: 18/923
  31094. }
  31095. },
  31096. lying: {
  31097. height: math.unit(2, "feet"),
  31098. name: "Lying",
  31099. image: {
  31100. source: "./media/characters/purri/lying.svg",
  31101. extra: 940/843,
  31102. bottom: 146/1086
  31103. }
  31104. },
  31105. devious: {
  31106. height: math.unit(1.77, "feet"),
  31107. name: "Devious",
  31108. image: {
  31109. source: "./media/characters/purri/devious.svg",
  31110. extra: 1440/1155,
  31111. bottom: 147/1587
  31112. }
  31113. },
  31114. bean: {
  31115. height: math.unit(1.94, "feet"),
  31116. name: "Bean",
  31117. image: {
  31118. source: "./media/characters/purri/bean.svg"
  31119. }
  31120. },
  31121. },
  31122. [
  31123. {
  31124. name: "Micro",
  31125. height: math.unit(1, "mm")
  31126. },
  31127. {
  31128. name: "Normal",
  31129. height: math.unit(6 + 5/12, "feet"),
  31130. default: true
  31131. },
  31132. {
  31133. name: "Macro :3c",
  31134. height: math.unit(2, "miles")
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(6 + 2/12, "feet"),
  31143. weight: math.unit(250, "lb"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/moonlight/front.svg",
  31147. extra: 1044/908,
  31148. bottom: 56/1100
  31149. }
  31150. },
  31151. feral: {
  31152. height: math.unit(3 + 1/12, "feet"),
  31153. weight: math.unit(50, "kg"),
  31154. name: "Feral",
  31155. image: {
  31156. source: "./media/characters/moonlight/feral.svg",
  31157. extra: 3705/2791,
  31158. bottom: 145/3850
  31159. }
  31160. },
  31161. paw: {
  31162. height: math.unit(1, "feet"),
  31163. name: "Paw",
  31164. image: {
  31165. source: "./media/characters/moonlight/paw.svg"
  31166. }
  31167. },
  31168. paws: {
  31169. height: math.unit(0.98, "feet"),
  31170. name: "Paws",
  31171. image: {
  31172. source: "./media/characters/moonlight/paws.svg",
  31173. extra: 939/939,
  31174. bottom: 50/989
  31175. }
  31176. },
  31177. mouth: {
  31178. height: math.unit(0.48, "feet"),
  31179. name: "Mouth",
  31180. image: {
  31181. source: "./media/characters/moonlight/mouth.svg"
  31182. }
  31183. },
  31184. dick: {
  31185. height: math.unit(1.46, "feet"),
  31186. name: "Dick",
  31187. image: {
  31188. source: "./media/characters/moonlight/dick.svg"
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Normal",
  31195. height: math.unit(6 + 2/12, "feet"),
  31196. default: true
  31197. },
  31198. {
  31199. name: "Macro",
  31200. height: math.unit(300, "feet")
  31201. },
  31202. {
  31203. name: "Macro+",
  31204. height: math.unit(1, "mile")
  31205. },
  31206. {
  31207. name: "Mt. Moon",
  31208. height: math.unit(5, "miles")
  31209. },
  31210. {
  31211. name: "Megamacro",
  31212. height: math.unit(15, "miles")
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31218. {
  31219. back: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(150, "lb"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/sylen/back.svg",
  31225. extra: 1335/1273,
  31226. bottom: 107/1442
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(5 + 5/12, "feet")
  31234. },
  31235. {
  31236. name: "Megamacro",
  31237. height: math.unit(3, "miles"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(190, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/huttser/front.svg",
  31251. extra: 1152/1058,
  31252. bottom: 23/1175
  31253. }
  31254. },
  31255. side: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(190, "lb"),
  31258. name: "Side",
  31259. image: {
  31260. source: "./media/characters/huttser/side.svg",
  31261. extra: 1174/1065,
  31262. bottom: 18/1192
  31263. }
  31264. },
  31265. back: {
  31266. height: math.unit(6, "feet"),
  31267. weight: math.unit(190, "lb"),
  31268. name: "Back",
  31269. image: {
  31270. source: "./media/characters/huttser/back.svg",
  31271. extra: 1158/1056,
  31272. bottom: 12/1170
  31273. }
  31274. },
  31275. },
  31276. [
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31281. {
  31282. side: {
  31283. height: math.unit(12 + 9/12, "feet"),
  31284. weight: math.unit(15000, "lb"),
  31285. name: "Side",
  31286. image: {
  31287. source: "./media/characters/faan/side.svg",
  31288. extra: 2747/2697,
  31289. bottom: 0/2747
  31290. }
  31291. },
  31292. front: {
  31293. height: math.unit(12 + 9/12, "feet"),
  31294. weight: math.unit(15000, "lb"),
  31295. name: "Front",
  31296. image: {
  31297. source: "./media/characters/faan/front.svg",
  31298. extra: 607/571,
  31299. bottom: 24/631
  31300. }
  31301. },
  31302. head: {
  31303. height: math.unit(2.85, "feet"),
  31304. name: "Head",
  31305. image: {
  31306. source: "./media/characters/faan/head.svg"
  31307. }
  31308. },
  31309. headAlt: {
  31310. height: math.unit(3.13, "feet"),
  31311. name: "Head-alt",
  31312. image: {
  31313. source: "./media/characters/faan/head-alt.svg"
  31314. }
  31315. },
  31316. },
  31317. [
  31318. {
  31319. name: "Normal",
  31320. height: math.unit(12 + 9/12, "feet"),
  31321. default: true
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(6, "feet"),
  31330. weight: math.unit(300, "lb"),
  31331. name: "Front",
  31332. image: {
  31333. source: "./media/characters/tanio/front.svg",
  31334. extra: 711/673,
  31335. bottom: 25/736
  31336. }
  31337. },
  31338. },
  31339. [
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(6, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(3, "inches"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/noboru/front.svg",
  31355. extra: 1039/932,
  31356. bottom: 18/1057
  31357. }
  31358. },
  31359. },
  31360. [
  31361. {
  31362. name: "Micro",
  31363. height: math.unit(3, "inches"),
  31364. default: true
  31365. },
  31366. ]
  31367. ))
  31368. characterMakers.push(() => makeCharacter(
  31369. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31370. {
  31371. front: {
  31372. height: math.unit(1.85, "meters"),
  31373. weight: math.unit(80, "kg"),
  31374. name: "Front",
  31375. image: {
  31376. source: "./media/characters/daniel-barrett/front.svg",
  31377. extra: 355/337,
  31378. bottom: 9/364
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Pico",
  31385. height: math.unit(0.0433, "mm")
  31386. },
  31387. {
  31388. name: "Nano",
  31389. height: math.unit(1.5, "mm")
  31390. },
  31391. {
  31392. name: "Micro",
  31393. height: math.unit(5.3, "cm"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(1.85, "meters")
  31399. },
  31400. {
  31401. name: "Macro",
  31402. height: math.unit(64.7, "meters")
  31403. },
  31404. {
  31405. name: "Megamacro",
  31406. height: math.unit(2.26, "km")
  31407. },
  31408. {
  31409. name: "Gigamacro",
  31410. height: math.unit(79, "km")
  31411. },
  31412. {
  31413. name: "Teramacro",
  31414. height: math.unit(2765, "km")
  31415. },
  31416. {
  31417. name: "Petamacro",
  31418. height: math.unit(96678, "km")
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31424. {
  31425. front: {
  31426. height: math.unit(30, "meters"),
  31427. weight: math.unit(400, "tons"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/zeel/front.svg",
  31431. extra: 2599/2599,
  31432. bottom: 226/2825
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Macro",
  31439. height: math.unit(30, "meters"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(6 + 7/12, "feet"),
  31449. weight: math.unit(210, "lb"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/tarn/front.svg",
  31453. extra: 3517/3220,
  31454. bottom: 91/3608
  31455. }
  31456. },
  31457. back: {
  31458. height: math.unit(6 + 7/12, "feet"),
  31459. weight: math.unit(210, "lb"),
  31460. name: "Back",
  31461. image: {
  31462. source: "./media/characters/tarn/back.svg",
  31463. extra: 3566/3241,
  31464. bottom: 34/3600
  31465. }
  31466. },
  31467. dick: {
  31468. height: math.unit(1.65, "feet"),
  31469. name: "Dick",
  31470. image: {
  31471. source: "./media/characters/tarn/dick.svg"
  31472. }
  31473. },
  31474. paw: {
  31475. height: math.unit(1.80, "feet"),
  31476. name: "Paw",
  31477. image: {
  31478. source: "./media/characters/tarn/paw.svg"
  31479. }
  31480. },
  31481. tongue: {
  31482. height: math.unit(0.97, "feet"),
  31483. name: "Tongue",
  31484. image: {
  31485. source: "./media/characters/tarn/tongue.svg"
  31486. }
  31487. },
  31488. },
  31489. [
  31490. {
  31491. name: "Micro",
  31492. height: math.unit(4, "inches")
  31493. },
  31494. {
  31495. name: "Normal",
  31496. height: math.unit(6 + 7/12, "feet"),
  31497. default: true
  31498. },
  31499. {
  31500. name: "Macro",
  31501. height: math.unit(300, "feet")
  31502. },
  31503. ]
  31504. ))
  31505. characterMakers.push(() => makeCharacter(
  31506. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31507. {
  31508. front: {
  31509. height: math.unit(5 + 7/12, "feet"),
  31510. weight: math.unit(80, "kg"),
  31511. name: "Front",
  31512. image: {
  31513. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31514. extra: 3023/2865,
  31515. bottom: 33/3056
  31516. }
  31517. },
  31518. back: {
  31519. height: math.unit(5 + 7/12, "feet"),
  31520. weight: math.unit(80, "kg"),
  31521. name: "Back",
  31522. image: {
  31523. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31524. extra: 3020/2886,
  31525. bottom: 30/3050
  31526. }
  31527. },
  31528. dick: {
  31529. height: math.unit(0.98, "feet"),
  31530. name: "Dick",
  31531. image: {
  31532. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31533. }
  31534. },
  31535. anatomy: {
  31536. height: math.unit(2.86, "feet"),
  31537. name: "Anatomy",
  31538. image: {
  31539. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Really Small",
  31546. height: math.unit(2, "inches")
  31547. },
  31548. {
  31549. name: "Micro",
  31550. height: math.unit(5.583, "inches")
  31551. },
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(5 + 7/12, "feet"),
  31555. default: true
  31556. },
  31557. {
  31558. name: "Macro",
  31559. height: math.unit(67, "feet")
  31560. },
  31561. {
  31562. name: "Megamacro",
  31563. height: math.unit(134, "feet")
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(9, "feet"),
  31572. weight: math.unit(120, "lb"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/sally/front.svg",
  31576. extra: 1506/1349,
  31577. bottom: 66/1572
  31578. }
  31579. },
  31580. },
  31581. [
  31582. {
  31583. name: "Normal",
  31584. height: math.unit(9, "feet"),
  31585. default: true
  31586. },
  31587. ]
  31588. ))
  31589. characterMakers.push(() => makeCharacter(
  31590. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31591. {
  31592. front: {
  31593. height: math.unit(8, "feet"),
  31594. weight: math.unit(900, "lb"),
  31595. name: "Front",
  31596. image: {
  31597. source: "./media/characters/owen/front.svg",
  31598. extra: 1761/1657,
  31599. bottom: 74/1835
  31600. }
  31601. },
  31602. side: {
  31603. height: math.unit(8, "feet"),
  31604. weight: math.unit(900, "lb"),
  31605. name: "Side",
  31606. image: {
  31607. source: "./media/characters/owen/side.svg",
  31608. extra: 1797/1734,
  31609. bottom: 30/1827
  31610. }
  31611. },
  31612. back: {
  31613. height: math.unit(8, "feet"),
  31614. weight: math.unit(900, "lb"),
  31615. name: "Back",
  31616. image: {
  31617. source: "./media/characters/owen/back.svg",
  31618. extra: 1796/1706,
  31619. bottom: 59/1855
  31620. }
  31621. },
  31622. maw: {
  31623. height: math.unit(1.76, "feet"),
  31624. name: "Maw",
  31625. image: {
  31626. source: "./media/characters/owen/maw.svg"
  31627. }
  31628. },
  31629. },
  31630. [
  31631. {
  31632. name: "Normal",
  31633. height: math.unit(8, "feet"),
  31634. default: true
  31635. },
  31636. ]
  31637. ))
  31638. characterMakers.push(() => makeCharacter(
  31639. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31640. {
  31641. front: {
  31642. height: math.unit(4, "feet"),
  31643. weight: math.unit(400, "lb"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/ryth/front.svg",
  31647. extra: 876/691,
  31648. bottom: 25/901
  31649. }
  31650. },
  31651. goia: {
  31652. height: math.unit(12, "feet"),
  31653. weight: math.unit(10800, "lb"),
  31654. name: "Goia",
  31655. image: {
  31656. source: "./media/characters/ryth/goia.svg",
  31657. extra: 3450/3198,
  31658. bottom: 61/3511
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(4, "feet"),
  31666. default: true
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31672. {
  31673. front: {
  31674. height: math.unit(7, "feet"),
  31675. weight: math.unit(180, "lb"),
  31676. name: "Front",
  31677. image: {
  31678. source: "./media/characters/necrolance/front.svg",
  31679. extra: 1062/947,
  31680. bottom: 41/1103
  31681. }
  31682. },
  31683. back: {
  31684. height: math.unit(7, "feet"),
  31685. weight: math.unit(180, "lb"),
  31686. name: "Back",
  31687. image: {
  31688. source: "./media/characters/necrolance/back.svg",
  31689. extra: 1045/984,
  31690. bottom: 14/1059
  31691. }
  31692. },
  31693. wing: {
  31694. height: math.unit(2.67, "feet"),
  31695. name: "Wing",
  31696. image: {
  31697. source: "./media/characters/necrolance/wing.svg"
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(7, "feet"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31711. {
  31712. front: {
  31713. height: math.unit(76, "meters"),
  31714. weight: math.unit(30000, "tons"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/tyler/front.svg",
  31718. extra: 1640/1640,
  31719. bottom: 114/1754
  31720. }
  31721. },
  31722. },
  31723. [
  31724. {
  31725. name: "Macro",
  31726. height: math.unit(76, "meters"),
  31727. default: true
  31728. },
  31729. ]
  31730. ))
  31731. characterMakers.push(() => makeCharacter(
  31732. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31733. {
  31734. front: {
  31735. height: math.unit(4 + 11/12, "feet"),
  31736. weight: math.unit(132, "lb"),
  31737. name: "Front",
  31738. image: {
  31739. source: "./media/characters/icey/front.svg",
  31740. extra: 2750/2550,
  31741. bottom: 33/2783
  31742. }
  31743. },
  31744. back: {
  31745. height: math.unit(4 + 11/12, "feet"),
  31746. weight: math.unit(132, "lb"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/icey/back.svg",
  31750. extra: 2624/2481,
  31751. bottom: 35/2659
  31752. }
  31753. },
  31754. },
  31755. [
  31756. {
  31757. name: "Normal",
  31758. height: math.unit(4 + 11/12, "feet"),
  31759. default: true
  31760. },
  31761. ]
  31762. ))
  31763. characterMakers.push(() => makeCharacter(
  31764. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31765. {
  31766. front: {
  31767. height: math.unit(100, "feet"),
  31768. weight: math.unit(0, "lb"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/smile/front.svg",
  31772. extra: 2983/2912,
  31773. bottom: 162/3145
  31774. }
  31775. },
  31776. back: {
  31777. height: math.unit(100, "feet"),
  31778. weight: math.unit(0, "lb"),
  31779. name: "Back",
  31780. image: {
  31781. source: "./media/characters/smile/back.svg",
  31782. extra: 3143/3031,
  31783. bottom: 91/3234
  31784. }
  31785. },
  31786. head: {
  31787. height: math.unit(26.3, "feet"),
  31788. weight: math.unit(0, "lb"),
  31789. name: "Head",
  31790. image: {
  31791. source: "./media/characters/smile/head.svg"
  31792. }
  31793. },
  31794. collar: {
  31795. height: math.unit(5.3, "feet"),
  31796. weight: math.unit(0, "lb"),
  31797. name: "Collar",
  31798. image: {
  31799. source: "./media/characters/smile/collar.svg"
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Macro",
  31806. height: math.unit(100, "feet"),
  31807. default: true
  31808. },
  31809. ]
  31810. ))
  31811. characterMakers.push(() => makeCharacter(
  31812. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31813. {
  31814. dragon: {
  31815. height: math.unit(26, "feet"),
  31816. weight: math.unit(36, "tons"),
  31817. name: "Dragon",
  31818. image: {
  31819. source: "./media/characters/arimphae/dragon.svg",
  31820. extra: 1574/983,
  31821. bottom: 357/1931
  31822. }
  31823. },
  31824. drake: {
  31825. height: math.unit(9, "feet"),
  31826. weight: math.unit(1.5, "tons"),
  31827. name: "Drake",
  31828. image: {
  31829. source: "./media/characters/arimphae/drake.svg",
  31830. extra: 1120/925,
  31831. bottom: 435/1555
  31832. }
  31833. },
  31834. },
  31835. [
  31836. {
  31837. name: "Small",
  31838. height: math.unit(26*5/9, "feet")
  31839. },
  31840. {
  31841. name: "Normal",
  31842. height: math.unit(26, "feet"),
  31843. default: true
  31844. },
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31849. {
  31850. front: {
  31851. height: math.unit(8 + 9/12, "feet"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/xander/front.svg",
  31855. extra: 848/673,
  31856. bottom: 62/910
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Normal",
  31863. height: math.unit(8 + 9/12, "feet"),
  31864. default: true
  31865. },
  31866. {
  31867. name: "Gaze Grabber",
  31868. height: math.unit(13 + 8/12, "feet")
  31869. },
  31870. {
  31871. name: "Jaw Dropper",
  31872. height: math.unit(27, "feet")
  31873. },
  31874. {
  31875. name: "Show Stopper",
  31876. height: math.unit(136, "feet")
  31877. },
  31878. {
  31879. name: "Superstar",
  31880. height: math.unit(1.9e6, "miles")
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31886. {
  31887. side: {
  31888. height: math.unit(2100, "feet"),
  31889. name: "Side",
  31890. image: {
  31891. source: "./media/characters/osiris/side.svg",
  31892. extra: 1105/939,
  31893. bottom: 167/1272
  31894. }
  31895. },
  31896. },
  31897. [
  31898. {
  31899. name: "Macro",
  31900. height: math.unit(2100, "feet"),
  31901. default: true
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(6 + 8/12, "feet"),
  31910. weight: math.unit(225, "lb"),
  31911. name: "Front",
  31912. image: {
  31913. source: "./media/characters/rhys-londe/front.svg",
  31914. extra: 2258/2141,
  31915. bottom: 188/2446
  31916. }
  31917. },
  31918. back: {
  31919. height: math.unit(6 + 8/12, "feet"),
  31920. weight: math.unit(225, "lb"),
  31921. name: "Back",
  31922. image: {
  31923. source: "./media/characters/rhys-londe/back.svg",
  31924. extra: 2237/2137,
  31925. bottom: 63/2300
  31926. }
  31927. },
  31928. frontNsfw: {
  31929. height: math.unit(6 + 8/12, "feet"),
  31930. weight: math.unit(225, "lb"),
  31931. name: "Front (NSFW)",
  31932. image: {
  31933. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31934. extra: 2258/2141,
  31935. bottom: 188/2446
  31936. }
  31937. },
  31938. backNsfw: {
  31939. height: math.unit(6 + 8/12, "feet"),
  31940. weight: math.unit(225, "lb"),
  31941. name: "Back (NSFW)",
  31942. image: {
  31943. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31944. extra: 2237/2137,
  31945. bottom: 63/2300
  31946. }
  31947. },
  31948. dick: {
  31949. height: math.unit(30, "inches"),
  31950. name: "Dick",
  31951. image: {
  31952. source: "./media/characters/rhys-londe/dick.svg"
  31953. }
  31954. },
  31955. maw: {
  31956. height: math.unit(1.6, "feet"),
  31957. name: "Maw",
  31958. image: {
  31959. source: "./media/characters/rhys-londe/maw.svg"
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(6 + 8/12, "feet"),
  31967. default: true
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31973. {
  31974. front: {
  31975. height: math.unit(3 + 10/12, "feet"),
  31976. weight: math.unit(90, "lb"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/taivas-ensim/front.svg",
  31980. extra: 1327/1216,
  31981. bottom: 96/1423
  31982. }
  31983. },
  31984. back: {
  31985. height: math.unit(3 + 10/12, "feet"),
  31986. weight: math.unit(90, "lb"),
  31987. name: "Back",
  31988. image: {
  31989. source: "./media/characters/taivas-ensim/back.svg",
  31990. extra: 1355/1247,
  31991. bottom: 11/1366
  31992. }
  31993. },
  31994. frontNsfw: {
  31995. height: math.unit(3 + 10/12, "feet"),
  31996. weight: math.unit(90, "lb"),
  31997. name: "Front (NSFW)",
  31998. image: {
  31999. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32000. extra: 1327/1216,
  32001. bottom: 96/1423
  32002. }
  32003. },
  32004. backNsfw: {
  32005. height: math.unit(3 + 10/12, "feet"),
  32006. weight: math.unit(90, "lb"),
  32007. name: "Back (NSFW)",
  32008. image: {
  32009. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32010. extra: 1355/1247,
  32011. bottom: 11/1366
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Normal",
  32018. height: math.unit(3 + 10/12, "feet"),
  32019. default: true
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32025. {
  32026. front: {
  32027. height: math.unit(9 + 6/12, "feet"),
  32028. weight: math.unit(940, "lb"),
  32029. name: "Front",
  32030. image: {
  32031. source: "./media/characters/byliss/front.svg",
  32032. extra: 1327/1290,
  32033. bottom: 82/1409
  32034. }
  32035. },
  32036. back: {
  32037. height: math.unit(9 + 6/12, "feet"),
  32038. weight: math.unit(940, "lb"),
  32039. name: "Back",
  32040. image: {
  32041. source: "./media/characters/byliss/back.svg",
  32042. extra: 1376/1349,
  32043. bottom: 9/1385
  32044. }
  32045. },
  32046. frontNsfw: {
  32047. height: math.unit(9 + 6/12, "feet"),
  32048. weight: math.unit(940, "lb"),
  32049. name: "Front (NSFW)",
  32050. image: {
  32051. source: "./media/characters/byliss/front-nsfw.svg",
  32052. extra: 1327/1290,
  32053. bottom: 82/1409
  32054. }
  32055. },
  32056. backNsfw: {
  32057. height: math.unit(9 + 6/12, "feet"),
  32058. weight: math.unit(940, "lb"),
  32059. name: "Back (NSFW)",
  32060. image: {
  32061. source: "./media/characters/byliss/back-nsfw.svg",
  32062. extra: 1376/1349,
  32063. bottom: 9/1385
  32064. }
  32065. },
  32066. },
  32067. [
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(9 + 6/12, "feet"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(5 + 2/12, "feet"),
  32080. weight: math.unit(200, "lb"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/noraly/front.svg",
  32084. extra: 4985/4773,
  32085. bottom: 150/5135
  32086. }
  32087. },
  32088. full: {
  32089. height: math.unit(5 + 2/12, "feet"),
  32090. weight: math.unit(164, "lb"),
  32091. name: "Full",
  32092. image: {
  32093. source: "./media/characters/noraly/full.svg",
  32094. extra: 1114/1059,
  32095. bottom: 35/1149
  32096. }
  32097. },
  32098. fuller: {
  32099. height: math.unit(5 + 2/12, "feet"),
  32100. weight: math.unit(230, "lb"),
  32101. name: "Fuller",
  32102. image: {
  32103. source: "./media/characters/noraly/fuller.svg",
  32104. extra: 1114/1059,
  32105. bottom: 35/1149
  32106. }
  32107. },
  32108. fullest: {
  32109. height: math.unit(5 + 2/12, "feet"),
  32110. weight: math.unit(300, "lb"),
  32111. name: "Fullest",
  32112. image: {
  32113. source: "./media/characters/noraly/fullest.svg",
  32114. extra: 1114/1059,
  32115. bottom: 35/1149
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Normal",
  32122. height: math.unit(5 + 2/12, "feet"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32129. {
  32130. front: {
  32131. height: math.unit(5 + 2/12, "feet"),
  32132. weight: math.unit(210, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/pera/front.svg",
  32136. extra: 1560/1531,
  32137. bottom: 165/1725
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(5 + 2/12, "feet"),
  32142. weight: math.unit(210, "lb"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/pera/back.svg",
  32146. extra: 1523/1493,
  32147. bottom: 152/1675
  32148. }
  32149. },
  32150. dick: {
  32151. height: math.unit(2.4, "feet"),
  32152. name: "Dick",
  32153. image: {
  32154. source: "./media/characters/pera/dick.svg"
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(5 + 2/12, "feet"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32168. {
  32169. front: {
  32170. height: math.unit(12, "feet"),
  32171. weight: math.unit(3200, "lb"),
  32172. name: "Front",
  32173. image: {
  32174. source: "./media/characters/julian/front.svg",
  32175. extra: 2962/2701,
  32176. bottom: 184/3146
  32177. }
  32178. },
  32179. maw: {
  32180. height: math.unit(5.35, "feet"),
  32181. name: "Maw",
  32182. image: {
  32183. source: "./media/characters/julian/maw.svg"
  32184. }
  32185. },
  32186. paw: {
  32187. height: math.unit(3.07, "feet"),
  32188. name: "Paw",
  32189. image: {
  32190. source: "./media/characters/julian/paw.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Default",
  32197. height: math.unit(12, "feet"),
  32198. default: true
  32199. },
  32200. {
  32201. name: "Big",
  32202. height: math.unit(50, "feet")
  32203. },
  32204. {
  32205. name: "Really Big",
  32206. height: math.unit(1, "mile")
  32207. },
  32208. {
  32209. name: "Extremely Big",
  32210. height: math.unit(100, "miles")
  32211. },
  32212. {
  32213. name: "Planet Hugger",
  32214. height: math.unit(200, "megameters")
  32215. },
  32216. {
  32217. name: "Unreasonably Big",
  32218. height: math.unit(1e300, "meters")
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32224. {
  32225. solgooleo: {
  32226. height: math.unit(4, "meters"),
  32227. weight: math.unit(6000*1.5, "kg"),
  32228. volume: math.unit(6000, "liters"),
  32229. name: "Solgooleo",
  32230. image: {
  32231. source: "./media/characters/pi/solgooleo.svg",
  32232. extra: 388/331,
  32233. bottom: 29/417
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(4, "meters"),
  32241. default: true
  32242. },
  32243. ]
  32244. ))
  32245. characterMakers.push(() => makeCharacter(
  32246. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32247. {
  32248. front: {
  32249. height: math.unit(8 + 2/12, "feet"),
  32250. weight: math.unit(4, "tons"),
  32251. name: "Front",
  32252. image: {
  32253. source: "./media/characters/shaun/front.svg",
  32254. extra: 1550/1505,
  32255. bottom: 353/1903
  32256. }
  32257. },
  32258. },
  32259. [
  32260. {
  32261. name: "Lorg",
  32262. height: math.unit(8 + 2/12, "feet"),
  32263. default: true
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32269. {
  32270. front: {
  32271. height: math.unit(7, "feet"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/sini/front.svg",
  32275. extra: 726/678,
  32276. bottom: 35/761
  32277. }
  32278. },
  32279. back: {
  32280. height: math.unit(7, "feet"),
  32281. name: "Back",
  32282. image: {
  32283. source: "./media/characters/sini/back.svg",
  32284. extra: 743/701,
  32285. bottom: 12/755
  32286. }
  32287. },
  32288. mawAnthro: {
  32289. height: math.unit(2.14, "feet"),
  32290. name: "Maw (Anthro)",
  32291. image: {
  32292. source: "./media/characters/sini/maw-anthro.svg"
  32293. }
  32294. },
  32295. dick: {
  32296. height: math.unit(1.45, "feet"),
  32297. name: "Dick (Anthro)",
  32298. image: {
  32299. source: "./media/characters/sini/dick-anthro.svg"
  32300. }
  32301. },
  32302. feral: {
  32303. height: math.unit(16, "feet"),
  32304. name: "Feral",
  32305. image: {
  32306. source: "./media/characters/sini/feral.svg",
  32307. extra: 814/605,
  32308. bottom: 11/825
  32309. }
  32310. },
  32311. mawFeral: {
  32312. height: math.unit(5.66, "feet"),
  32313. name: "Maw-feral",
  32314. image: {
  32315. source: "./media/characters/sini/maw-feral.svg"
  32316. }
  32317. },
  32318. footFeral: {
  32319. height: math.unit(5.17, "feet"),
  32320. name: "Foot-feral",
  32321. image: {
  32322. source: "./media/characters/sini/foot-feral.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(7, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32336. {
  32337. side: {
  32338. height: math.unit(13, "meters"),
  32339. weight: math.unit(9072, "kg"),
  32340. name: "Side",
  32341. image: {
  32342. source: "./media/characters/raylldo/side.svg",
  32343. extra: 403/344,
  32344. bottom: 42/445
  32345. }
  32346. },
  32347. leaping: {
  32348. height: math.unit(12.3, "meters"),
  32349. weight: math.unit(9072, "kg"),
  32350. name: "Leaping",
  32351. image: {
  32352. source: "./media/characters/raylldo/leaping.svg",
  32353. extra: 470/249,
  32354. bottom: 13/483
  32355. }
  32356. },
  32357. flying: {
  32358. height: math.unit(18, "meters"),
  32359. weight: math.unit(9072, "kg"),
  32360. name: "Flying",
  32361. image: {
  32362. source: "./media/characters/raylldo/flying.svg"
  32363. }
  32364. },
  32365. head: {
  32366. height: math.unit(5.85, "meters"),
  32367. name: "Head",
  32368. image: {
  32369. source: "./media/characters/raylldo/head.svg"
  32370. }
  32371. },
  32372. maw: {
  32373. height: math.unit(5.32, "meters"),
  32374. name: "Maw",
  32375. image: {
  32376. source: "./media/characters/raylldo/maw.svg"
  32377. }
  32378. },
  32379. eye: {
  32380. height: math.unit(0.54, "meters"),
  32381. name: "Eye",
  32382. image: {
  32383. source: "./media/characters/raylldo/eye.svg"
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(13, "meters"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32397. {
  32398. anthroFront: {
  32399. height: math.unit(9, "feet"),
  32400. weight: math.unit(600, "lb"),
  32401. name: "Anthro (Front)",
  32402. image: {
  32403. source: "./media/characters/glint/anthro-front.svg",
  32404. extra: 1097/1018,
  32405. bottom: 28/1125
  32406. }
  32407. },
  32408. anthroBack: {
  32409. height: math.unit(9, "feet"),
  32410. weight: math.unit(600, "lb"),
  32411. name: "Anthro (Back)",
  32412. image: {
  32413. source: "./media/characters/glint/anthro-back.svg",
  32414. extra: 1154/997,
  32415. bottom: 36/1190
  32416. }
  32417. },
  32418. feral: {
  32419. height: math.unit(11, "feet"),
  32420. weight: math.unit(50000, "lb"),
  32421. name: "Feral",
  32422. image: {
  32423. source: "./media/characters/glint/feral.svg",
  32424. extra: 3035/1585,
  32425. bottom: 1169/4204
  32426. }
  32427. },
  32428. dickAnthro: {
  32429. height: math.unit(0.7, "meters"),
  32430. name: "Dick (Anthro)",
  32431. image: {
  32432. source: "./media/characters/glint/dick-anthro.svg"
  32433. }
  32434. },
  32435. dickFeral: {
  32436. height: math.unit(2.65, "meters"),
  32437. name: "Dick (Feral)",
  32438. image: {
  32439. source: "./media/characters/glint/dick-feral.svg"
  32440. }
  32441. },
  32442. slitHidden: {
  32443. height: math.unit(5.85, "meters"),
  32444. name: "Slit (Hidden)",
  32445. image: {
  32446. source: "./media/characters/glint/slit-hidden.svg"
  32447. }
  32448. },
  32449. slitErect: {
  32450. height: math.unit(5.85, "meters"),
  32451. name: "Slit (Erect)",
  32452. image: {
  32453. source: "./media/characters/glint/slit-erect.svg"
  32454. }
  32455. },
  32456. mawAnthro: {
  32457. height: math.unit(0.63, "meters"),
  32458. name: "Maw (Anthro)",
  32459. image: {
  32460. source: "./media/characters/glint/maw.svg"
  32461. }
  32462. },
  32463. mawFeral: {
  32464. height: math.unit(2.89, "meters"),
  32465. name: "Maw (Feral)",
  32466. image: {
  32467. source: "./media/characters/glint/maw.svg"
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(9, "feet"),
  32475. default: true
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32481. {
  32482. side: {
  32483. height: math.unit(15, "feet"),
  32484. weight: math.unit(5000, "kg"),
  32485. name: "Side",
  32486. image: {
  32487. source: "./media/characters/kairne/side.svg",
  32488. extra: 979/811,
  32489. bottom: 13/992
  32490. }
  32491. },
  32492. front: {
  32493. height: math.unit(15, "feet"),
  32494. weight: math.unit(5000, "kg"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/kairne/front.svg",
  32498. extra: 908/814,
  32499. bottom: 26/934
  32500. }
  32501. },
  32502. sideNsfw: {
  32503. height: math.unit(15, "feet"),
  32504. weight: math.unit(5000, "kg"),
  32505. name: "Side (NSFW)",
  32506. image: {
  32507. source: "./media/characters/kairne/side-nsfw.svg",
  32508. extra: 979/811,
  32509. bottom: 13/992
  32510. }
  32511. },
  32512. frontNsfw: {
  32513. height: math.unit(15, "feet"),
  32514. weight: math.unit(5000, "kg"),
  32515. name: "Front (NSFW)",
  32516. image: {
  32517. source: "./media/characters/kairne/front-nsfw.svg",
  32518. extra: 908/814,
  32519. bottom: 26/934
  32520. }
  32521. },
  32522. dickCaged: {
  32523. height: math.unit(0.65, "meters"),
  32524. name: "Dick-caged",
  32525. image: {
  32526. source: "./media/characters/kairne/dick-caged.svg"
  32527. }
  32528. },
  32529. dick: {
  32530. height: math.unit(0.79, "meters"),
  32531. name: "Dick",
  32532. image: {
  32533. source: "./media/characters/kairne/dick.svg"
  32534. }
  32535. },
  32536. genitals: {
  32537. height: math.unit(1.29, "meters"),
  32538. name: "Genitals",
  32539. image: {
  32540. source: "./media/characters/kairne/genitals.svg"
  32541. }
  32542. },
  32543. maw: {
  32544. height: math.unit(1.73, "meters"),
  32545. name: "Maw",
  32546. image: {
  32547. source: "./media/characters/kairne/maw.svg"
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(15, "feet"),
  32555. default: true
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(5 + 8/12, "feet"),
  32564. weight: math.unit(139, "lb"),
  32565. name: "Front",
  32566. image: {
  32567. source: "./media/characters/biscuit-jackal/front.svg",
  32568. extra: 2106/1961,
  32569. bottom: 58/2164
  32570. }
  32571. },
  32572. back: {
  32573. height: math.unit(5 + 8/12, "feet"),
  32574. weight: math.unit(139, "lb"),
  32575. name: "Back",
  32576. image: {
  32577. source: "./media/characters/biscuit-jackal/back.svg",
  32578. extra: 2132/1976,
  32579. bottom: 57/2189
  32580. }
  32581. },
  32582. werejackal: {
  32583. height: math.unit(6 + 3/12, "feet"),
  32584. weight: math.unit(188, "lb"),
  32585. name: "Werejackal",
  32586. image: {
  32587. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32588. extra: 2373/2178,
  32589. bottom: 53/2426
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Normal",
  32596. height: math.unit(5 + 8/12, "feet"),
  32597. default: true
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(140, "cm"),
  32606. weight: math.unit(45, "kg"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/tayra-white/front.svg",
  32610. extra: 2229/2192,
  32611. bottom: 75/2304
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(140, "cm"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32625. {
  32626. front: {
  32627. height: math.unit(4 + 5/12, "feet"),
  32628. name: "Front",
  32629. image: {
  32630. source: "./media/characters/scoop/front.svg",
  32631. extra: 1257/1136,
  32632. bottom: 69/1326
  32633. }
  32634. },
  32635. back: {
  32636. height: math.unit(4 + 5/12, "feet"),
  32637. name: "Back",
  32638. image: {
  32639. source: "./media/characters/scoop/back.svg",
  32640. extra: 1321/1152,
  32641. bottom: 32/1353
  32642. }
  32643. },
  32644. maw: {
  32645. height: math.unit(0.68, "feet"),
  32646. name: "Maw",
  32647. image: {
  32648. source: "./media/characters/scoop/maw.svg"
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Really Small",
  32655. height: math.unit(1, "mm")
  32656. },
  32657. {
  32658. name: "Micro",
  32659. height: math.unit(1, "inch")
  32660. },
  32661. {
  32662. name: "Normal",
  32663. height: math.unit(4 + 5/12, "feet"),
  32664. default: true
  32665. },
  32666. {
  32667. name: "Macro",
  32668. height: math.unit(200, "feet")
  32669. },
  32670. {
  32671. name: "Megamacro",
  32672. height: math.unit(3240, "feet")
  32673. },
  32674. {
  32675. name: "Teramacro",
  32676. height: math.unit(2500, "miles")
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(15 + 7/12, "feet"),
  32685. name: "Front",
  32686. image: {
  32687. source: "./media/characters/saphinara/front.svg",
  32688. extra: 604/546,
  32689. bottom: 19/623
  32690. }
  32691. },
  32692. side: {
  32693. height: math.unit(15 + 7/12, "feet"),
  32694. name: "Side",
  32695. image: {
  32696. source: "./media/characters/saphinara/side.svg",
  32697. extra: 605/547,
  32698. bottom: 6/611
  32699. }
  32700. },
  32701. back: {
  32702. height: math.unit(15 + 7/12, "feet"),
  32703. name: "Back",
  32704. image: {
  32705. source: "./media/characters/saphinara/back.svg",
  32706. extra: 591/531,
  32707. bottom: 13/604
  32708. }
  32709. },
  32710. frontTail: {
  32711. height: math.unit(15 + 7/12, "feet"),
  32712. name: "Front (Full Tail)",
  32713. image: {
  32714. source: "./media/characters/saphinara/front-tail.svg",
  32715. extra: 748/547,
  32716. bottom: 66/814
  32717. }
  32718. },
  32719. },
  32720. [
  32721. {
  32722. name: "Normal",
  32723. height: math.unit(15 + 7/12, "feet"),
  32724. default: true
  32725. },
  32726. {
  32727. name: "Angry",
  32728. height: math.unit(30 + 6/12, "feet")
  32729. },
  32730. {
  32731. name: "Enraged",
  32732. height: math.unit(102 + 1/12, "feet")
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32738. {
  32739. front: {
  32740. height: math.unit(6 + 8/12, "feet"),
  32741. weight: math.unit(300, "lb"),
  32742. name: "Front",
  32743. image: {
  32744. source: "./media/characters/jrain/front.svg",
  32745. extra: 3039/2865,
  32746. bottom: 399/3438
  32747. }
  32748. },
  32749. back: {
  32750. height: math.unit(6 + 8/12, "feet"),
  32751. weight: math.unit(300, "lb"),
  32752. name: "Back",
  32753. image: {
  32754. source: "./media/characters/jrain/back.svg",
  32755. extra: 3089/2938,
  32756. bottom: 172/3261
  32757. }
  32758. },
  32759. head: {
  32760. height: math.unit(2.14, "feet"),
  32761. name: "Head",
  32762. image: {
  32763. source: "./media/characters/jrain/head.svg"
  32764. }
  32765. },
  32766. maw: {
  32767. height: math.unit(1.77, "feet"),
  32768. name: "Maw",
  32769. image: {
  32770. source: "./media/characters/jrain/maw.svg"
  32771. }
  32772. },
  32773. leftHand: {
  32774. height: math.unit(1.1, "feet"),
  32775. name: "Left Hand",
  32776. image: {
  32777. source: "./media/characters/jrain/left-hand.svg"
  32778. }
  32779. },
  32780. rightHand: {
  32781. height: math.unit(1.1, "feet"),
  32782. name: "Right Hand",
  32783. image: {
  32784. source: "./media/characters/jrain/right-hand.svg"
  32785. }
  32786. },
  32787. eye: {
  32788. height: math.unit(0.35, "feet"),
  32789. name: "Eye",
  32790. image: {
  32791. source: "./media/characters/jrain/eye.svg"
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(6 + 8/12, "feet"),
  32799. default: true
  32800. },
  32801. {
  32802. name: "Casually Large",
  32803. height: math.unit(25, "feet")
  32804. },
  32805. {
  32806. name: "Giant",
  32807. height: math.unit(100, "feet")
  32808. },
  32809. {
  32810. name: "Kaiju",
  32811. height: math.unit(300, "feet")
  32812. },
  32813. ]
  32814. ))
  32815. characterMakers.push(() => makeCharacter(
  32816. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32817. {
  32818. dragon: {
  32819. height: math.unit(5, "meters"),
  32820. name: "Dragon",
  32821. image: {
  32822. source: "./media/characters/sabrina/dragon.svg",
  32823. extra: 3670 / 2365,
  32824. bottom: 333 / 4003
  32825. }
  32826. },
  32827. gryphon: {
  32828. height: math.unit(3, "meters"),
  32829. name: "Gryphon",
  32830. image: {
  32831. source: "./media/characters/sabrina/gryphon.svg",
  32832. extra: 1576 / 945,
  32833. bottom: 71 / 1647
  32834. }
  32835. },
  32836. snake: {
  32837. height: math.unit(12, "meters"),
  32838. name: "Snake",
  32839. image: {
  32840. source: "./media/characters/sabrina/snake.svg",
  32841. extra: 1758 / 1320,
  32842. bottom: 186 / 1944
  32843. }
  32844. },
  32845. collar: {
  32846. height: math.unit(1.86, "meters"),
  32847. name: "Collar",
  32848. image: {
  32849. source: "./media/characters/sabrina/collar.svg"
  32850. }
  32851. },
  32852. eye: {
  32853. height: math.unit(0.53, "meters"),
  32854. name: "Eye",
  32855. image: {
  32856. source: "./media/characters/sabrina/eye.svg"
  32857. }
  32858. },
  32859. foot: {
  32860. height: math.unit(1.86, "meters"),
  32861. name: "Foot",
  32862. image: {
  32863. source: "./media/characters/sabrina/foot.svg"
  32864. }
  32865. },
  32866. hand: {
  32867. height: math.unit(1.32, "meters"),
  32868. name: "Hand",
  32869. image: {
  32870. source: "./media/characters/sabrina/hand.svg"
  32871. }
  32872. },
  32873. head: {
  32874. height: math.unit(2.44, "meters"),
  32875. name: "Head",
  32876. image: {
  32877. source: "./media/characters/sabrina/head.svg"
  32878. }
  32879. },
  32880. headAngry: {
  32881. height: math.unit(2.44, "meters"),
  32882. name: "Head (Angry))",
  32883. image: {
  32884. source: "./media/characters/sabrina/head-angry.svg"
  32885. }
  32886. },
  32887. maw: {
  32888. height: math.unit(1.65, "meters"),
  32889. name: "Maw",
  32890. image: {
  32891. source: "./media/characters/sabrina/maw.svg"
  32892. }
  32893. },
  32894. spikes: {
  32895. height: math.unit(1.69, "meters"),
  32896. name: "Spikes",
  32897. image: {
  32898. source: "./media/characters/sabrina/spikes.svg"
  32899. }
  32900. },
  32901. stomach: {
  32902. height: math.unit(1.15, "meters"),
  32903. name: "Stomach",
  32904. image: {
  32905. source: "./media/characters/sabrina/stomach.svg"
  32906. }
  32907. },
  32908. tongue: {
  32909. height: math.unit(1.27, "meters"),
  32910. name: "Tongue",
  32911. image: {
  32912. source: "./media/characters/sabrina/tongue.svg"
  32913. }
  32914. },
  32915. wingDorsal: {
  32916. height: math.unit(4.85, "meters"),
  32917. name: "Wing (Dorsal)",
  32918. image: {
  32919. source: "./media/characters/sabrina/wing-dorsal.svg"
  32920. }
  32921. },
  32922. wingVentral: {
  32923. height: math.unit(4.85, "meters"),
  32924. name: "Wing (Ventral)",
  32925. image: {
  32926. source: "./media/characters/sabrina/wing-ventral.svg"
  32927. }
  32928. },
  32929. },
  32930. [
  32931. {
  32932. name: "Normal",
  32933. height: math.unit(5, "meters"),
  32934. default: true
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32940. {
  32941. frontMaid: {
  32942. height: math.unit(5 + 5/12, "feet"),
  32943. weight: math.unit(130, "lb"),
  32944. name: "Front (Maid)",
  32945. image: {
  32946. source: "./media/characters/midnight-tales/front-maid.svg",
  32947. extra: 489/454,
  32948. bottom: 61/550
  32949. }
  32950. },
  32951. frontFormal: {
  32952. height: math.unit(5 + 5/12, "feet"),
  32953. weight: math.unit(130, "lb"),
  32954. name: "Front (Formal)",
  32955. image: {
  32956. source: "./media/characters/midnight-tales/front-formal.svg",
  32957. extra: 489/454,
  32958. bottom: 61/550
  32959. }
  32960. },
  32961. back: {
  32962. height: math.unit(5 + 5/12, "feet"),
  32963. weight: math.unit(130, "lb"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/midnight-tales/back.svg",
  32967. extra: 498/456,
  32968. bottom: 33/531
  32969. }
  32970. },
  32971. frontBeast: {
  32972. height: math.unit(40, "feet"),
  32973. weight: math.unit(64000, "lb"),
  32974. name: "Front (Beast)",
  32975. image: {
  32976. source: "./media/characters/midnight-tales/front-beast.svg",
  32977. extra: 927/860,
  32978. bottom: 53/980
  32979. }
  32980. },
  32981. backBeast: {
  32982. height: math.unit(40, "feet"),
  32983. weight: math.unit(64000, "lb"),
  32984. name: "Back (Beast)",
  32985. image: {
  32986. source: "./media/characters/midnight-tales/back-beast.svg",
  32987. extra: 929/855,
  32988. bottom: 16/945
  32989. }
  32990. },
  32991. footBeast: {
  32992. height: math.unit(6.7, "feet"),
  32993. name: "Foot (Beast)",
  32994. image: {
  32995. source: "./media/characters/midnight-tales/foot-beast.svg"
  32996. }
  32997. },
  32998. headBeast: {
  32999. height: math.unit(8, "feet"),
  33000. name: "Head (Beast)",
  33001. image: {
  33002. source: "./media/characters/midnight-tales/head-beast.svg"
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(5 + 5 / 12, "feet"),
  33010. default: true
  33011. },
  33012. {
  33013. name: "Macro",
  33014. height: math.unit(25, "feet")
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33020. {
  33021. front: {
  33022. height: math.unit(5 + 10/12, "feet"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/argon/front.svg",
  33026. extra: 2009/1935,
  33027. bottom: 118/2127
  33028. }
  33029. },
  33030. back: {
  33031. height: math.unit(5 + 10/12, "feet"),
  33032. name: "Back",
  33033. image: {
  33034. source: "./media/characters/argon/back.svg",
  33035. extra: 2047/1992,
  33036. bottom: 20/2067
  33037. }
  33038. },
  33039. frontDressed: {
  33040. height: math.unit(5 + 10/12, "feet"),
  33041. name: "Front (Dressed)",
  33042. image: {
  33043. source: "./media/characters/argon/front-dressed.svg",
  33044. extra: 2009/1935,
  33045. bottom: 118/2127
  33046. }
  33047. },
  33048. },
  33049. [
  33050. {
  33051. name: "Normal",
  33052. height: math.unit(5 + 10/12, "feet"),
  33053. default: true
  33054. },
  33055. ]
  33056. ))
  33057. characterMakers.push(() => makeCharacter(
  33058. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33059. {
  33060. front: {
  33061. height: math.unit(8 + 6/12, "feet"),
  33062. weight: math.unit(1150, "lb"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/kichi/front.svg",
  33066. extra: 1267/1164,
  33067. bottom: 61/1328
  33068. }
  33069. },
  33070. back: {
  33071. height: math.unit(8 + 6/12, "feet"),
  33072. weight: math.unit(1150, "lb"),
  33073. name: "Back",
  33074. image: {
  33075. source: "./media/characters/kichi/back.svg",
  33076. extra: 1273/1166,
  33077. bottom: 33/1306
  33078. }
  33079. },
  33080. },
  33081. [
  33082. {
  33083. name: "Normal",
  33084. height: math.unit(8 + 6/12, "feet"),
  33085. default: true
  33086. },
  33087. ]
  33088. ))
  33089. characterMakers.push(() => makeCharacter(
  33090. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33091. {
  33092. front: {
  33093. height: math.unit(6, "feet"),
  33094. weight: math.unit(210, "lb"),
  33095. name: "Front",
  33096. image: {
  33097. source: "./media/characters/manetel-greyscale/front.svg",
  33098. extra: 350/312,
  33099. bottom: 8/358
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Micro",
  33106. height: math.unit(2, "inches")
  33107. },
  33108. {
  33109. name: "Normal",
  33110. height: math.unit(6, "feet"),
  33111. default: true
  33112. },
  33113. {
  33114. name: "Minimacro",
  33115. height: math.unit(17, "feet")
  33116. },
  33117. {
  33118. name: "Macro",
  33119. height: math.unit(117, "feet")
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33125. {
  33126. side: {
  33127. height: math.unit(5 + 1/12, "feet"),
  33128. weight: math.unit(418, "lb"),
  33129. name: "Side",
  33130. image: {
  33131. source: "./media/characters/softpurr/side.svg",
  33132. extra: 1993/1945,
  33133. bottom: 134/2127
  33134. }
  33135. },
  33136. front: {
  33137. height: math.unit(5 + 1/12, "feet"),
  33138. weight: math.unit(418, "lb"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/softpurr/front.svg",
  33142. extra: 1950/1856,
  33143. bottom: 174/2124
  33144. }
  33145. },
  33146. paw: {
  33147. height: math.unit(1, "feet"),
  33148. name: "Paw",
  33149. image: {
  33150. source: "./media/characters/softpurr/paw.svg"
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Normal",
  33157. height: math.unit(5 + 1/12, "feet"),
  33158. default: true
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(260, "meters"),
  33167. name: "Front",
  33168. image: {
  33169. source: "./media/characters/anahita/front.svg",
  33170. extra: 665/635,
  33171. bottom: 89/754
  33172. }
  33173. },
  33174. },
  33175. [
  33176. {
  33177. name: "Macro",
  33178. height: math.unit(260, "meters"),
  33179. default: true
  33180. },
  33181. ]
  33182. ))
  33183. characterMakers.push(() => makeCharacter(
  33184. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33185. {
  33186. front: {
  33187. height: math.unit(4 + 10/12, "feet"),
  33188. weight: math.unit(160, "lb"),
  33189. name: "Front",
  33190. image: {
  33191. source: "./media/characters/chip-mouse/front.svg",
  33192. extra: 3528/3408,
  33193. bottom: 0/3528
  33194. }
  33195. },
  33196. frontNsfw: {
  33197. height: math.unit(4 + 10/12, "feet"),
  33198. weight: math.unit(160, "lb"),
  33199. name: "Front (NSFW)",
  33200. image: {
  33201. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33202. extra: 3528/3408,
  33203. bottom: 0/3528
  33204. }
  33205. },
  33206. },
  33207. [
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(4 + 10/12, "feet"),
  33211. default: true
  33212. },
  33213. ]
  33214. ))
  33215. characterMakers.push(() => makeCharacter(
  33216. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33217. {
  33218. side: {
  33219. height: math.unit(10, "feet"),
  33220. weight: math.unit(14000, "lb"),
  33221. name: "Side",
  33222. image: {
  33223. source: "./media/characters/kremm/side.svg",
  33224. extra: 1390/1053,
  33225. bottom: 90/1480
  33226. }
  33227. },
  33228. gut: {
  33229. height: math.unit(5.8, "feet"),
  33230. name: "Gut",
  33231. image: {
  33232. source: "./media/characters/kremm/gut.svg"
  33233. }
  33234. },
  33235. ass: {
  33236. height: math.unit(6.1, "feet"),
  33237. name: "Ass",
  33238. image: {
  33239. source: "./media/characters/kremm/ass.svg"
  33240. }
  33241. },
  33242. jaws: {
  33243. height: math.unit(2.2, "feet"),
  33244. name: "Jaws",
  33245. image: {
  33246. source: "./media/characters/kremm/jaws.svg"
  33247. }
  33248. },
  33249. dick: {
  33250. height: math.unit(4.26, "feet"),
  33251. name: "Dick",
  33252. image: {
  33253. source: "./media/characters/kremm/dick.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Normal",
  33260. height: math.unit(10, "feet"),
  33261. default: true
  33262. },
  33263. ]
  33264. ))
  33265. characterMakers.push(() => makeCharacter(
  33266. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33267. {
  33268. front: {
  33269. height: math.unit(30, "stories"),
  33270. name: "Front",
  33271. image: {
  33272. source: "./media/characters/kai/front.svg",
  33273. extra: 1892/1718,
  33274. bottom: 162/2054
  33275. }
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Macro",
  33281. height: math.unit(30, "stories"),
  33282. default: true
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(6 + 4/12, "feet"),
  33291. weight: math.unit(145, "lb"),
  33292. name: "Front",
  33293. image: {
  33294. source: "./media/characters/sykes/front.svg",
  33295. extra: 1321 / 1187,
  33296. bottom: 66 / 1387
  33297. }
  33298. },
  33299. back: {
  33300. height: math.unit(6 + 4/12, "feet"),
  33301. weight: math.unit(145, "lb"),
  33302. name: "Back",
  33303. image: {
  33304. source: "./media/characters/sykes/back.svg",
  33305. extra: 1326/1181,
  33306. bottom: 31/1357
  33307. }
  33308. },
  33309. handBack: {
  33310. height: math.unit(0.9, "feet"),
  33311. name: "Hand (Back)",
  33312. image: {
  33313. source: "./media/characters/sykes/hand-back.svg"
  33314. }
  33315. },
  33316. handFront: {
  33317. height: math.unit(0.839, "feet"),
  33318. name: "Hand (Front)",
  33319. image: {
  33320. source: "./media/characters/sykes/hand-front.svg"
  33321. }
  33322. },
  33323. leftFoot: {
  33324. height: math.unit(1.2, "feet"),
  33325. name: "Foot (Left)",
  33326. image: {
  33327. source: "./media/characters/sykes/foot-left.svg"
  33328. }
  33329. },
  33330. rightFoot: {
  33331. height: math.unit(1.2, "feet"),
  33332. name: "Foot (Right)",
  33333. image: {
  33334. source: "./media/characters/sykes/foot-right.svg"
  33335. }
  33336. },
  33337. maw: {
  33338. height: math.unit(1.93, "feet"),
  33339. name: "Maw",
  33340. image: {
  33341. source: "./media/characters/sykes/maw.svg"
  33342. }
  33343. },
  33344. teeth: {
  33345. height: math.unit(0.51, "feet"),
  33346. name: "Teeth",
  33347. image: {
  33348. source: "./media/characters/sykes/teeth.svg"
  33349. }
  33350. },
  33351. tongue: {
  33352. height: math.unit(2.13, "feet"),
  33353. name: "Tongue",
  33354. image: {
  33355. source: "./media/characters/sykes/tongue.svg"
  33356. }
  33357. },
  33358. uvula: {
  33359. height: math.unit(0.16, "feet"),
  33360. name: "Uvula",
  33361. image: {
  33362. source: "./media/characters/sykes/uvula.svg"
  33363. }
  33364. },
  33365. collar: {
  33366. height: math.unit(0.287, "feet"),
  33367. name: "Collar",
  33368. image: {
  33369. source: "./media/characters/sykes/collar.svg"
  33370. }
  33371. },
  33372. },
  33373. [
  33374. {
  33375. name: "Shrunken",
  33376. height: math.unit(5, "inches")
  33377. },
  33378. {
  33379. name: "Normal",
  33380. height: math.unit(6 + 4 / 12, "feet"),
  33381. default: true
  33382. },
  33383. {
  33384. name: "Big",
  33385. height: math.unit(15, "feet")
  33386. },
  33387. ]
  33388. ))
  33389. characterMakers.push(() => makeCharacter(
  33390. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33391. {
  33392. front: {
  33393. height: math.unit(5 + 8/12, "feet"),
  33394. weight: math.unit(190, "lb"),
  33395. name: "Front",
  33396. image: {
  33397. source: "./media/characters/oven-otter/front.svg",
  33398. extra: 1809/1740,
  33399. bottom: 181/1990
  33400. }
  33401. },
  33402. back: {
  33403. height: math.unit(5 + 8/12, "feet"),
  33404. weight: math.unit(190, "lb"),
  33405. name: "Back",
  33406. image: {
  33407. source: "./media/characters/oven-otter/back.svg",
  33408. extra: 1709/1635,
  33409. bottom: 118/1827
  33410. }
  33411. },
  33412. hand: {
  33413. height: math.unit(1.07, "feet"),
  33414. name: "Hand",
  33415. image: {
  33416. source: "./media/characters/oven-otter/hand.svg"
  33417. }
  33418. },
  33419. beans: {
  33420. height: math.unit(1.74, "feet"),
  33421. name: "Beans",
  33422. image: {
  33423. source: "./media/characters/oven-otter/beans.svg"
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Micro",
  33430. height: math.unit(0.5, "inches")
  33431. },
  33432. {
  33433. name: "Normal",
  33434. height: math.unit(5 + 8/12, "feet"),
  33435. default: true
  33436. },
  33437. {
  33438. name: "Macro",
  33439. height: math.unit(250, "feet")
  33440. },
  33441. {
  33442. name: "Really High",
  33443. height: math.unit(420, "feet")
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33449. {
  33450. front: {
  33451. height: math.unit(5, "meters"),
  33452. weight: math.unit(292000000000000, "kg"),
  33453. name: "Front",
  33454. image: {
  33455. source: "./media/characters/devourer/front.svg",
  33456. extra: 1800/1733,
  33457. bottom: 211/2011
  33458. }
  33459. },
  33460. maw: {
  33461. height: math.unit(1.1, "meter"),
  33462. name: "Maw",
  33463. image: {
  33464. source: "./media/characters/devourer/maw.svg"
  33465. }
  33466. },
  33467. },
  33468. [
  33469. {
  33470. name: "Small",
  33471. height: math.unit(3, "meters")
  33472. },
  33473. {
  33474. name: "Large",
  33475. height: math.unit(5, "meters"),
  33476. default: true
  33477. },
  33478. ]
  33479. ))
  33480. characterMakers.push(() => makeCharacter(
  33481. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33482. {
  33483. front: {
  33484. height: math.unit(6, "feet"),
  33485. weight: math.unit(400, "lb"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/ellarby/front.svg",
  33489. extra: 1909/1763,
  33490. bottom: 80/1989
  33491. }
  33492. },
  33493. back: {
  33494. height: math.unit(6, "feet"),
  33495. weight: math.unit(400, "lb"),
  33496. name: "Back",
  33497. image: {
  33498. source: "./media/characters/ellarby/back.svg",
  33499. extra: 1914/1784,
  33500. bottom: 172/2086
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Mischief",
  33507. height: math.unit(18, "inches")
  33508. },
  33509. {
  33510. name: "Trouble",
  33511. height: math.unit(12, "feet")
  33512. },
  33513. {
  33514. name: "Havoc",
  33515. height: math.unit(200, "feet"),
  33516. default: true
  33517. },
  33518. {
  33519. name: "Pandemonium",
  33520. height: math.unit(1, "mile")
  33521. },
  33522. {
  33523. name: "Catastrophe",
  33524. height: math.unit(100, "miles")
  33525. },
  33526. ]
  33527. ))
  33528. characterMakers.push(() => makeCharacter(
  33529. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33530. {
  33531. front: {
  33532. height: math.unit(4.7, "meters"),
  33533. weight: math.unit(6500, "kg"),
  33534. name: "Front",
  33535. image: {
  33536. source: "./media/characters/vex/front.svg",
  33537. extra: 1288/1140,
  33538. bottom: 100/1388
  33539. }
  33540. },
  33541. },
  33542. [
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(4.7, "meters"),
  33546. default: true
  33547. },
  33548. ]
  33549. ))
  33550. characterMakers.push(() => makeCharacter(
  33551. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33552. {
  33553. normal: {
  33554. height: math.unit(6, "feet"),
  33555. weight: math.unit(350, "lb"),
  33556. name: "Normal",
  33557. image: {
  33558. source: "./media/characters/teshy/normal.svg",
  33559. extra: 1795/1735,
  33560. bottom: 16/1811
  33561. }
  33562. },
  33563. monsterFront: {
  33564. height: math.unit(12, "feet"),
  33565. weight: math.unit(4700, "lb"),
  33566. name: "Monster (Front)",
  33567. image: {
  33568. source: "./media/characters/teshy/monster-front.svg",
  33569. extra: 2042/2034,
  33570. bottom: 128/2170
  33571. }
  33572. },
  33573. monsterSide: {
  33574. height: math.unit(12, "feet"),
  33575. weight: math.unit(4700, "lb"),
  33576. name: "Monster (Side)",
  33577. image: {
  33578. source: "./media/characters/teshy/monster-side.svg",
  33579. extra: 2067/2056,
  33580. bottom: 70/2137
  33581. }
  33582. },
  33583. monsterBack: {
  33584. height: math.unit(12, "feet"),
  33585. weight: math.unit(4700, "lb"),
  33586. name: "Monster (Back)",
  33587. image: {
  33588. source: "./media/characters/teshy/monster-back.svg",
  33589. extra: 1921/1914,
  33590. bottom: 171/2092
  33591. }
  33592. },
  33593. },
  33594. [
  33595. {
  33596. name: "Normal",
  33597. height: math.unit(6, "feet"),
  33598. default: true
  33599. },
  33600. ]
  33601. ))
  33602. characterMakers.push(() => makeCharacter(
  33603. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33604. {
  33605. front: {
  33606. height: math.unit(6, "feet"),
  33607. name: "Front",
  33608. image: {
  33609. source: "./media/characters/ramey/front.svg",
  33610. extra: 790/787,
  33611. bottom: 27/817
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(6, "feet"),
  33619. default: true
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33625. {
  33626. front: {
  33627. height: math.unit(5 + 5/12, "feet"),
  33628. weight: math.unit(120, "lb"),
  33629. name: "Front",
  33630. image: {
  33631. source: "./media/characters/phirae/front.svg",
  33632. extra: 2491/2436,
  33633. bottom: 38/2529
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(5 + 5/12, "feet"),
  33641. default: true
  33642. },
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33647. {
  33648. front: {
  33649. height: math.unit(6, "feet"),
  33650. weight: math.unit(150, "lb"),
  33651. name: "Front",
  33652. image: {
  33653. source: "./media/characters/stagglas/front.svg",
  33654. extra: 962/882,
  33655. bottom: 53/1015
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Normal",
  33662. height: math.unit(5 + 3/12, "feet"),
  33663. default: true
  33664. },
  33665. ]
  33666. ))
  33667. characterMakers.push(() => makeCharacter(
  33668. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33669. {
  33670. front: {
  33671. height: math.unit(5 + 4/12, "feet"),
  33672. weight: math.unit(145, "lb"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/starra/front.svg",
  33676. extra: 1790/1691,
  33677. bottom: 91/1881
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(5 + 4/12, "feet"),
  33685. default: true
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(2.2, "meters"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33697. extra: 1194/1005,
  33698. bottom: 25/1219
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(2.2, "meters"),
  33706. default: true
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33712. {
  33713. side: {
  33714. height: math.unit(8 + 2/12, "feet"),
  33715. weight: math.unit(1240, "lb"),
  33716. name: "Side",
  33717. image: {
  33718. source: "./media/characters/mika-valentine/side.svg",
  33719. extra: 2670/2501,
  33720. bottom: 250/2920
  33721. }
  33722. },
  33723. },
  33724. [
  33725. {
  33726. name: "Normal",
  33727. height: math.unit(8 + 2/12, "feet"),
  33728. default: true
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33734. {
  33735. front: {
  33736. height: math.unit(7 + 2/12, "feet"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/xoltol/front.svg",
  33740. extra: 2212/2124,
  33741. bottom: 84/2296
  33742. }
  33743. },
  33744. side: {
  33745. height: math.unit(7 + 2/12, "feet"),
  33746. name: "Side",
  33747. image: {
  33748. source: "./media/characters/xoltol/side.svg",
  33749. extra: 2273/2197,
  33750. bottom: 26/2299
  33751. }
  33752. },
  33753. hand: {
  33754. height: math.unit(2.5, "feet"),
  33755. name: "Hand",
  33756. image: {
  33757. source: "./media/characters/xoltol/hand.svg"
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Small-ish",
  33764. height: math.unit(5 + 11/12, "feet")
  33765. },
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(7 + 2/12, "feet")
  33769. },
  33770. {
  33771. name: "\"Macro\"",
  33772. height: math.unit(14 + 9/12, "feet"),
  33773. default: true
  33774. },
  33775. {
  33776. name: "Alternate Height",
  33777. height: math.unit(20, "feet")
  33778. },
  33779. {
  33780. name: "Actually Macro",
  33781. height: math.unit(100, "feet")
  33782. },
  33783. ]
  33784. ))
  33785. characterMakers.push(() => makeCharacter(
  33786. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33787. {
  33788. front: {
  33789. height: math.unit(5 + 2/12, "feet"),
  33790. name: "Front",
  33791. image: {
  33792. source: "./media/characters/kotetsu-redwood/front.svg",
  33793. extra: 1053/942,
  33794. bottom: 60/1113
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(5 + 2/12, "feet"),
  33802. default: true
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33808. {
  33809. front: {
  33810. height: math.unit(2.4, "meters"),
  33811. weight: math.unit(125, "kg"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/lilith/front.svg",
  33815. extra: 1590/1513,
  33816. bottom: 203/1793
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Humanoid",
  33823. height: math.unit(2.4, "meters")
  33824. },
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(6, "meters"),
  33828. default: true
  33829. },
  33830. {
  33831. name: "Largest",
  33832. height: math.unit(55, "meters")
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(8 + 4/12, "feet"),
  33841. weight: math.unit(535, "lb"),
  33842. name: "Front",
  33843. image: {
  33844. source: "./media/characters/beh'kah-bolger/front.svg",
  33845. extra: 1660/1603,
  33846. bottom: 37/1697
  33847. }
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Normal",
  33853. height: math.unit(8 + 4/12, "feet"),
  33854. default: true
  33855. },
  33856. {
  33857. name: "Kaiju",
  33858. height: math.unit(250, "feet")
  33859. },
  33860. {
  33861. name: "Still Growing",
  33862. height: math.unit(10, "miles")
  33863. },
  33864. {
  33865. name: "Continental",
  33866. height: math.unit(5000, "miles")
  33867. },
  33868. {
  33869. name: "Final Form",
  33870. height: math.unit(2500000, "miles")
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(7 + 2/12, "feet"),
  33879. weight: math.unit(230, "kg"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/tatyana-milewska/front.svg",
  33883. extra: 1199/1150,
  33884. bottom: 86/1285
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(7 + 2/12, "feet"),
  33892. default: true
  33893. },
  33894. {
  33895. name: "Big",
  33896. height: math.unit(12, "feet")
  33897. },
  33898. {
  33899. name: "Minimacro",
  33900. height: math.unit(20, "feet")
  33901. },
  33902. {
  33903. name: "Macro",
  33904. height: math.unit(120, "feet")
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33910. {
  33911. front: {
  33912. height: math.unit(7 + 8/12, "feet"),
  33913. weight: math.unit(152, "kg"),
  33914. name: "Front",
  33915. image: {
  33916. source: "./media/characters/helen-arri/front.svg",
  33917. extra: 440/423,
  33918. bottom: 14/454
  33919. }
  33920. },
  33921. back: {
  33922. height: math.unit(7 + 8/12, "feet"),
  33923. weight: math.unit(152, "kg"),
  33924. name: "Back",
  33925. image: {
  33926. source: "./media/characters/helen-arri/back.svg",
  33927. extra: 443/426,
  33928. bottom: 8/451
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(7 + 8/12, "feet"),
  33936. default: true
  33937. },
  33938. {
  33939. name: "Big",
  33940. height: math.unit(14, "feet")
  33941. },
  33942. {
  33943. name: "Minimacro",
  33944. height: math.unit(24, "feet")
  33945. },
  33946. {
  33947. name: "Macro",
  33948. height: math.unit(140, "feet")
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33954. {
  33955. front: {
  33956. height: math.unit(6, "meters"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/ehanu-rehu/front.svg",
  33960. extra: 1800/1800,
  33961. bottom: 59/1859
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Normal",
  33968. height: math.unit(6, "meters"),
  33969. default: true
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(7 + 3/12, "feet"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/renholder/front.svg",
  33981. extra: 3096/2960,
  33982. bottom: 250/3346
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal Bat",
  33989. height: math.unit(7 + 3/12, "feet"),
  33990. default: true
  33991. },
  33992. {
  33993. name: "Slightly Tall Bat",
  33994. height: math.unit(100, "feet")
  33995. },
  33996. {
  33997. name: "Big Bat",
  33998. height: math.unit(1000, "feet")
  33999. },
  34000. {
  34001. name: "City-Sized Bat",
  34002. height: math.unit(200000, "feet")
  34003. },
  34004. {
  34005. name: "Bigger Bat",
  34006. height: math.unit(10000, "miles")
  34007. },
  34008. {
  34009. name: "Solar Sized Bat",
  34010. height: math.unit(100, "AU")
  34011. },
  34012. {
  34013. name: "Galactic Bat",
  34014. height: math.unit(200000, "lightyears")
  34015. },
  34016. {
  34017. name: "Universally Known Bat",
  34018. height: math.unit(1, "universe")
  34019. },
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34024. {
  34025. front: {
  34026. height: math.unit(6 + 11/12, "feet"),
  34027. weight: math.unit(250, "lb"),
  34028. name: "Front",
  34029. image: {
  34030. source: "./media/characters/cookiecat/front.svg",
  34031. extra: 893/827,
  34032. bottom: 14/907
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Micro",
  34039. height: math.unit(3, "inches")
  34040. },
  34041. {
  34042. name: "Normal",
  34043. height: math.unit(6 + 11/12, "feet"),
  34044. default: true
  34045. },
  34046. {
  34047. name: "Macro",
  34048. height: math.unit(100, "feet")
  34049. },
  34050. {
  34051. name: "Macro+",
  34052. height: math.unit(404, "feet")
  34053. },
  34054. {
  34055. name: "Megamacro",
  34056. height: math.unit(165, "miles")
  34057. },
  34058. {
  34059. name: "Planetary",
  34060. height: math.unit(4600, "miles")
  34061. },
  34062. ]
  34063. ))
  34064. characterMakers.push(() => makeCharacter(
  34065. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34066. {
  34067. front: {
  34068. height: math.unit(10 + 3/12, "feet"),
  34069. weight: math.unit(1500, "lb"),
  34070. name: "Front",
  34071. image: {
  34072. source: "./media/characters/tux-kusanagi/front.svg",
  34073. extra: 944/840,
  34074. bottom: 39/983
  34075. }
  34076. },
  34077. back: {
  34078. height: math.unit(10 + 3/12, "feet"),
  34079. weight: math.unit(1500, "lb"),
  34080. name: "Back",
  34081. image: {
  34082. source: "./media/characters/tux-kusanagi/back.svg",
  34083. extra: 941/842,
  34084. bottom: 28/969
  34085. }
  34086. },
  34087. rump: {
  34088. height: math.unit(5.25, "feet"),
  34089. name: "Rump",
  34090. image: {
  34091. source: "./media/characters/tux-kusanagi/rump.svg"
  34092. }
  34093. },
  34094. beak: {
  34095. height: math.unit(1.54, "feet"),
  34096. name: "Beak",
  34097. image: {
  34098. source: "./media/characters/tux-kusanagi/beak.svg"
  34099. }
  34100. },
  34101. },
  34102. [
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(10 + 3/12, "feet"),
  34106. default: true
  34107. },
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34112. {
  34113. front: {
  34114. height: math.unit(58, "feet"),
  34115. weight: math.unit(200, "tons"),
  34116. name: "Front",
  34117. image: {
  34118. source: "./media/characters/uzarmazari/front.svg",
  34119. extra: 1575/1455,
  34120. bottom: 152/1727
  34121. }
  34122. },
  34123. back: {
  34124. height: math.unit(58, "feet"),
  34125. weight: math.unit(200, "tons"),
  34126. name: "Back",
  34127. image: {
  34128. source: "./media/characters/uzarmazari/back.svg",
  34129. extra: 1585/1510,
  34130. bottom: 157/1742
  34131. }
  34132. },
  34133. head: {
  34134. height: math.unit(26, "feet"),
  34135. name: "Head",
  34136. image: {
  34137. source: "./media/characters/uzarmazari/head.svg"
  34138. }
  34139. },
  34140. },
  34141. [
  34142. {
  34143. name: "Normal",
  34144. height: math.unit(58, "feet"),
  34145. default: true
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34151. {
  34152. side: {
  34153. height: math.unit(15, "feet"),
  34154. name: "Side",
  34155. image: {
  34156. source: "./media/characters/akitu/side.svg",
  34157. extra: 1421/1321,
  34158. bottom: 157/1578
  34159. }
  34160. },
  34161. front: {
  34162. height: math.unit(15, "feet"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/akitu/front.svg",
  34166. extra: 1435/1326,
  34167. bottom: 232/1667
  34168. }
  34169. },
  34170. },
  34171. [
  34172. {
  34173. name: "Normal",
  34174. height: math.unit(15, "feet"),
  34175. default: true
  34176. },
  34177. ]
  34178. ))
  34179. characterMakers.push(() => makeCharacter(
  34180. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34181. {
  34182. front: {
  34183. height: math.unit(10 + 8/12, "feet"),
  34184. name: "Front",
  34185. image: {
  34186. source: "./media/characters/azalie-croixland/front.svg",
  34187. extra: 1972/1856,
  34188. bottom: 31/2003
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Original Height",
  34195. height: math.unit(5 + 4/12, "feet")
  34196. },
  34197. {
  34198. name: "Normal Height",
  34199. height: math.unit(10 + 8/12, "feet"),
  34200. default: true
  34201. },
  34202. ]
  34203. ))
  34204. characterMakers.push(() => makeCharacter(
  34205. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34206. {
  34207. side: {
  34208. height: math.unit(7 + 1/12, "feet"),
  34209. weight: math.unit(245, "lb"),
  34210. name: "Side",
  34211. image: {
  34212. source: "./media/characters/kavus-kazian/side.svg",
  34213. extra: 349/342,
  34214. bottom: 15/364
  34215. }
  34216. },
  34217. },
  34218. [
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(7 + 1/12, "feet"),
  34222. default: true
  34223. },
  34224. ]
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34228. {
  34229. normal: {
  34230. height: math.unit(5 + 11/12, "feet"),
  34231. name: "Normal",
  34232. image: {
  34233. source: "./media/characters/moonlight-rose/normal.svg",
  34234. extra: 1979/1835,
  34235. bottom: 14/1993
  34236. }
  34237. },
  34238. demon: {
  34239. height: math.unit(5, "km"),
  34240. name: "Demon",
  34241. image: {
  34242. source: "./media/characters/moonlight-rose/demon.svg",
  34243. extra: 986/916,
  34244. bottom: 28/1014
  34245. }
  34246. },
  34247. },
  34248. [
  34249. {
  34250. name: "\"Natural\" height",
  34251. height: math.unit(5 + 11/12, "feet")
  34252. },
  34253. {
  34254. name: "Comfortable Size",
  34255. height: math.unit(40, "meters")
  34256. },
  34257. {
  34258. name: "Common Size",
  34259. height: math.unit(50, "km"),
  34260. default: true
  34261. },
  34262. {
  34263. name: "Demonic",
  34264. height: math.unit(1.24415e+21, "meters")
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(16, "feet"),
  34273. weight: math.unit(610, "kg"),
  34274. name: "Front",
  34275. image: {
  34276. source: "./media/characters/huckle/front.svg",
  34277. extra: 1731/1625,
  34278. bottom: 33/1764
  34279. }
  34280. },
  34281. back: {
  34282. height: math.unit(16, "feet"),
  34283. weight: math.unit(610, "kg"),
  34284. name: "Back",
  34285. image: {
  34286. source: "./media/characters/huckle/back.svg",
  34287. extra: 1738/1651,
  34288. bottom: 37/1775
  34289. }
  34290. },
  34291. laughing: {
  34292. height: math.unit(3.75, "feet"),
  34293. name: "Laughing",
  34294. image: {
  34295. source: "./media/characters/huckle/laughing.svg"
  34296. }
  34297. },
  34298. angry: {
  34299. height: math.unit(4.15, "feet"),
  34300. name: "Angry",
  34301. image: {
  34302. source: "./media/characters/huckle/angry.svg"
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(16, "feet"),
  34310. default: true
  34311. },
  34312. {
  34313. name: "Mini Macro",
  34314. height: math.unit(463, "feet")
  34315. },
  34316. {
  34317. name: "Macro",
  34318. height: math.unit(1680, "meters")
  34319. },
  34320. {
  34321. name: "Mega Macro",
  34322. height: math.unit(175, "km")
  34323. },
  34324. {
  34325. name: "Terra Macro",
  34326. height: math.unit(32, "gigameters")
  34327. },
  34328. {
  34329. name: "Multiverse+",
  34330. height: math.unit(2.56e23, "yottameters")
  34331. },
  34332. ]
  34333. ))
  34334. characterMakers.push(() => makeCharacter(
  34335. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34336. {
  34337. front: {
  34338. height: math.unit(6 + 9/12, "feet"),
  34339. weight: math.unit(280, "lb"),
  34340. name: "Front",
  34341. image: {
  34342. source: "./media/characters/candy/front.svg",
  34343. extra: 234/217,
  34344. bottom: 11/245
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Really Small",
  34351. height: math.unit(0.1, "nm")
  34352. },
  34353. {
  34354. name: "Micro",
  34355. height: math.unit(2, "inches")
  34356. },
  34357. {
  34358. name: "Normal",
  34359. height: math.unit(6 + 9/12, "feet"),
  34360. default: true
  34361. },
  34362. {
  34363. name: "Small Macro",
  34364. height: math.unit(69, "feet")
  34365. },
  34366. {
  34367. name: "Macro",
  34368. height: math.unit(160, "feet")
  34369. },
  34370. {
  34371. name: "Megamacro",
  34372. height: math.unit(22000, "miles")
  34373. },
  34374. {
  34375. name: "Gigamacro",
  34376. height: math.unit(50000, "miles")
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(4, "feet"),
  34385. weight: math.unit(90, "lb"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/joey-mcdonald/front.svg",
  34389. extra: 1059/852,
  34390. bottom: 33/1092
  34391. }
  34392. },
  34393. back: {
  34394. height: math.unit(4, "feet"),
  34395. weight: math.unit(90, "lb"),
  34396. name: "Back",
  34397. image: {
  34398. source: "./media/characters/joey-mcdonald/back.svg",
  34399. extra: 1077/879,
  34400. bottom: 5/1082
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(4, "feet"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(12 + 6/12, "feet"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/kass-lockheed/front.svg",
  34420. extra: 354/343,
  34421. bottom: 9/363
  34422. }
  34423. },
  34424. back: {
  34425. height: math.unit(12 + 6/12, "feet"),
  34426. name: "Back",
  34427. image: {
  34428. source: "./media/characters/kass-lockheed/back.svg",
  34429. extra: 364/352,
  34430. bottom: 3/367
  34431. }
  34432. },
  34433. dick: {
  34434. height: math.unit(3.12, "feet"),
  34435. name: "Dick",
  34436. image: {
  34437. source: "./media/characters/kass-lockheed/dick.svg"
  34438. }
  34439. },
  34440. head: {
  34441. height: math.unit(2.6, "feet"),
  34442. name: "Head",
  34443. image: {
  34444. source: "./media/characters/kass-lockheed/head.svg"
  34445. }
  34446. },
  34447. bleh: {
  34448. height: math.unit(2.85, "feet"),
  34449. name: "Bleh",
  34450. image: {
  34451. source: "./media/characters/kass-lockheed/bleh.svg"
  34452. }
  34453. },
  34454. smug: {
  34455. height: math.unit(2.85, "feet"),
  34456. name: "Smug",
  34457. image: {
  34458. source: "./media/characters/kass-lockheed/smug.svg"
  34459. }
  34460. },
  34461. },
  34462. [
  34463. {
  34464. name: "Normal",
  34465. height: math.unit(12 + 6/12, "feet"),
  34466. default: true
  34467. },
  34468. ]
  34469. ))
  34470. characterMakers.push(() => makeCharacter(
  34471. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34472. {
  34473. front: {
  34474. height: math.unit(6 + 2/12, "feet"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/taylor/front.svg",
  34478. extra: 639/495,
  34479. bottom: 12/651
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(6 + 2/12, "feet"),
  34487. default: true
  34488. },
  34489. {
  34490. name: "Big",
  34491. height: math.unit(15, "feet")
  34492. },
  34493. {
  34494. name: "Lorg",
  34495. height: math.unit(80, "feet")
  34496. },
  34497. {
  34498. name: "Too Lorg",
  34499. height: math.unit(120, "feet")
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34505. {
  34506. front: {
  34507. height: math.unit(15, "feet"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/kaizer/front.svg",
  34511. extra: 1612/1436,
  34512. bottom: 43/1655
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Normal",
  34519. height: math.unit(15, "feet"),
  34520. default: true
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(2, "feet"),
  34529. weight: math.unit(30, "lb"),
  34530. name: "Front",
  34531. image: {
  34532. source: "./media/characters/sandy/front.svg",
  34533. extra: 1439/1307,
  34534. bottom: 194/1633
  34535. }
  34536. },
  34537. },
  34538. [
  34539. {
  34540. name: "Normal",
  34541. height: math.unit(2, "feet"),
  34542. default: true
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34548. {
  34549. front: {
  34550. height: math.unit(3, "feet"),
  34551. name: "Front",
  34552. image: {
  34553. source: "./media/characters/mellvi/front.svg",
  34554. extra: 1831/1630,
  34555. bottom: 58/1889
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(3, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(5 + 11/12, "feet"),
  34572. weight: math.unit(200, "lb"),
  34573. name: "Front",
  34574. image: {
  34575. source: "./media/characters/shirou/front.svg",
  34576. extra: 2491/2383,
  34577. bottom: 189/2680
  34578. }
  34579. },
  34580. back: {
  34581. height: math.unit(5 + 11/12, "feet"),
  34582. weight: math.unit(200, "lb"),
  34583. name: "Back",
  34584. image: {
  34585. source: "./media/characters/shirou/back.svg",
  34586. extra: 2554/2450,
  34587. bottom: 76/2630
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(5 + 11/12, "feet"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(6 + 3/12, "feet"),
  34604. weight: math.unit(177, "lb"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/noryu/front.svg",
  34608. extra: 973/885,
  34609. bottom: 10/983
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(6 + 3/12, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(5 + 6/12, "feet"),
  34626. weight: math.unit(170, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/mevolas-rubenido/front.svg",
  34630. extra: 2109/1901,
  34631. bottom: 96/2205
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(5 + 6/12, "feet"),
  34639. default: true
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(100, "feet"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/dee/front.svg",
  34651. extra: 2153/2036,
  34652. bottom: 59/2212
  34653. }
  34654. },
  34655. back: {
  34656. height: math.unit(100, "feet"),
  34657. name: "Back",
  34658. image: {
  34659. source: "./media/characters/dee/back.svg",
  34660. extra: 2183/2058,
  34661. bottom: 75/2258
  34662. }
  34663. },
  34664. foot: {
  34665. height: math.unit(19.43, "feet"),
  34666. name: "Foot",
  34667. image: {
  34668. source: "./media/characters/dee/foot.svg"
  34669. }
  34670. },
  34671. hoof: {
  34672. height: math.unit(20.6, "feet"),
  34673. name: "Hoof",
  34674. image: {
  34675. source: "./media/characters/dee/hoof.svg"
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Macro",
  34682. height: math.unit(100, "feet"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(5 + 6/12, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/teh/front.svg",
  34695. extra: 1002/847,
  34696. bottom: 62/1064
  34697. }
  34698. },
  34699. },
  34700. [
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(5 + 6/12, "feet"),
  34704. default: true
  34705. },
  34706. ]
  34707. ))
  34708. characterMakers.push(() => makeCharacter(
  34709. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34710. {
  34711. side: {
  34712. height: math.unit(6 + 1/12, "feet"),
  34713. weight: math.unit(204, "lb"),
  34714. name: "Side",
  34715. image: {
  34716. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34717. extra: 974/775,
  34718. bottom: 169/1143
  34719. }
  34720. },
  34721. sitting: {
  34722. height: math.unit(6 + 2/12, "feet"),
  34723. weight: math.unit(204, "lb"),
  34724. name: "Sitting",
  34725. image: {
  34726. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34727. extra: 1175/964,
  34728. bottom: 378/1553
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(6 + 1/12, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(6, "inches"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/tululi/front.svg",
  34748. extra: 1997/1876,
  34749. bottom: 20/2017
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(6, "inches"),
  34757. default: true
  34758. },
  34759. ]
  34760. ))
  34761. characterMakers.push(() => makeCharacter(
  34762. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34763. {
  34764. front: {
  34765. height: math.unit(4 + 1/12, "feet"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/star/front.svg",
  34769. extra: 1493/1189,
  34770. bottom: 48/1541
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(4 + 1/12, "feet"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34784. {
  34785. front: {
  34786. height: math.unit(6 + 3/12, "feet"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/comet/front.svg",
  34790. extra: 1681/1462,
  34791. bottom: 26/1707
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "Normal",
  34798. height: math.unit(6 + 3/12, "feet"),
  34799. default: true
  34800. },
  34801. ]
  34802. ))
  34803. characterMakers.push(() => makeCharacter(
  34804. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34805. {
  34806. front: {
  34807. height: math.unit(950, "feet"),
  34808. name: "Front",
  34809. image: {
  34810. source: "./media/characters/vortex/front.svg",
  34811. extra: 1497/1434,
  34812. bottom: 56/1553
  34813. }
  34814. },
  34815. maw: {
  34816. height: math.unit(285, "feet"),
  34817. name: "Maw",
  34818. image: {
  34819. source: "./media/characters/vortex/maw.svg"
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Macro",
  34826. height: math.unit(950, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(600, "feet"),
  34836. weight: math.unit(0.02, "grams"),
  34837. name: "Front",
  34838. image: {
  34839. source: "./media/characters/doodle/front.svg",
  34840. extra: 1578/1413,
  34841. bottom: 37/1615
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Macro",
  34848. height: math.unit(600, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34855. {
  34856. front: {
  34857. height: math.unit(6 + 6/12, "feet"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/jai/front.svg",
  34861. extra: 1645/1534,
  34862. bottom: 115/1760
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(6 + 6/12, "feet"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(6 + 8/12, "feet"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/pixel/front.svg",
  34882. extra: 1900/1735,
  34883. bottom: 63/1963
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(6 + 8/12, "feet"),
  34891. default: true
  34892. },
  34893. ]
  34894. ))
  34895. characterMakers.push(() => makeCharacter(
  34896. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34897. {
  34898. front: {
  34899. height: math.unit(4 + 11/12, "feet"),
  34900. weight: math.unit(111, "lb"),
  34901. name: "Front",
  34902. image: {
  34903. source: "./media/characters/rhett/front.svg",
  34904. extra: 1682/1586,
  34905. bottom: 92/1774
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Mini",
  34912. height: math.unit(1 + 1/12, "feet")
  34913. },
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(4 + 11/12, "feet"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(3 + 3/12, "feet"),
  34926. name: "Front",
  34927. image: {
  34928. source: "./media/characters/penny/front.svg",
  34929. extra: 1406/1311,
  34930. bottom: 26/1432
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(3 + 3/12, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34944. {
  34945. front: {
  34946. height: math.unit(4 + 11/12, "feet"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/monty/front.svg",
  34950. extra: 1479/1209,
  34951. bottom: 0/1479
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(4 + 11/12, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(8 + 4/12, "feet"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/sterling/front.svg",
  34971. extra: 1420/1236,
  34972. bottom: 27/1447
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(8 + 4/12, "feet"),
  34980. default: true
  34981. },
  34982. ]
  34983. ))
  34984. characterMakers.push(() => makeCharacter(
  34985. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34986. {
  34987. front: {
  34988. height: math.unit(15, "feet"),
  34989. name: "Front",
  34990. image: {
  34991. source: "./media/characters/marble/front.svg",
  34992. extra: 973/937,
  34993. bottom: 32/1005
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(15, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35007. {
  35008. front: {
  35009. height: math.unit(3, "inches"),
  35010. name: "Front",
  35011. image: {
  35012. source: "./media/characters/powder/front.svg",
  35013. extra: 1504/1334,
  35014. bottom: 518/2022
  35015. }
  35016. },
  35017. },
  35018. [
  35019. {
  35020. name: "Normal",
  35021. height: math.unit(3, "inches"),
  35022. default: true
  35023. },
  35024. ]
  35025. ))
  35026. characterMakers.push(() => makeCharacter(
  35027. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35028. {
  35029. front: {
  35030. height: math.unit(4 + 5/12, "feet"),
  35031. name: "Front",
  35032. image: {
  35033. source: "./media/characters/joey-raccoon/front.svg",
  35034. extra: 1273/1197,
  35035. bottom: 0/1273
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Normal",
  35042. height: math.unit(4 + 5/12, "feet"),
  35043. default: true
  35044. },
  35045. ]
  35046. ))
  35047. characterMakers.push(() => makeCharacter(
  35048. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35049. {
  35050. front: {
  35051. height: math.unit(8 + 4/12, "feet"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/vick/front.svg",
  35055. extra: 2187/2118,
  35056. bottom: 47/2234
  35057. }
  35058. },
  35059. },
  35060. [
  35061. {
  35062. name: "Normal",
  35063. height: math.unit(8 + 4/12, "feet"),
  35064. default: true
  35065. },
  35066. ]
  35067. ))
  35068. characterMakers.push(() => makeCharacter(
  35069. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35070. {
  35071. front: {
  35072. height: math.unit(5 + 5/12, "feet"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/mitsy/front.svg",
  35076. extra: 1842/1695,
  35077. bottom: 0/1842
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(5 + 5/12, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(6 + 3/12, "feet"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/silvy/front.svg",
  35097. extra: 1995/1836,
  35098. bottom: 225/2220
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(6 + 3/12, "feet"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35112. {
  35113. front: {
  35114. height: math.unit(3 + 8/12, "feet"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/rodney/front.svg",
  35118. extra: 1956/1747,
  35119. bottom: 31/1987
  35120. }
  35121. },
  35122. frontDressed: {
  35123. height: math.unit(2.9, "feet"),
  35124. name: "Front (Dressed)",
  35125. image: {
  35126. source: "./media/characters/rodney/front-dressed.svg",
  35127. extra: 1382/1241,
  35128. bottom: 385/1767
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Normal",
  35135. height: math.unit(3 + 8/12, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(5 + 9/12, "feet"),
  35145. weight: math.unit(194, "lbs"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/zakail-sudekai/front.svg",
  35149. extra: 2696/2533,
  35150. bottom: 248/2944
  35151. }
  35152. },
  35153. maw: {
  35154. height: math.unit(1.35, "feet"),
  35155. name: "Maw",
  35156. image: {
  35157. source: "./media/characters/zakail-sudekai/maw.svg"
  35158. }
  35159. },
  35160. },
  35161. [
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(5 + 9/12, "feet"),
  35165. default: true
  35166. },
  35167. ]
  35168. ))
  35169. characterMakers.push(() => makeCharacter(
  35170. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35171. {
  35172. front: {
  35173. height: math.unit(8 + 4/12, "feet"),
  35174. weight: math.unit(1200, "lb"),
  35175. name: "Front",
  35176. image: {
  35177. source: "./media/characters/eleanor/front.svg",
  35178. extra: 1226/1192,
  35179. bottom: 52/1278
  35180. }
  35181. },
  35182. back: {
  35183. height: math.unit(8 + 4/12, "feet"),
  35184. weight: math.unit(1200, "lb"),
  35185. name: "Back",
  35186. image: {
  35187. source: "./media/characters/eleanor/back.svg",
  35188. extra: 1242/1184,
  35189. bottom: 60/1302
  35190. }
  35191. },
  35192. head: {
  35193. height: math.unit(2.62, "feet"),
  35194. name: "Head",
  35195. image: {
  35196. source: "./media/characters/eleanor/head.svg"
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(8 + 4/12, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(8 + 4/12, "feet"),
  35213. weight: math.unit(750, "lb"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/tanya/front.svg",
  35217. extra: 1749/1615,
  35218. bottom: 33/1782
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Normal",
  35225. height: math.unit(8 + 4/12, "feet"),
  35226. default: true
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35232. {
  35233. front: {
  35234. height: math.unit(5, "feet"),
  35235. weight: math.unit(225, "lb"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/cindy/front.svg",
  35239. extra: 1320/1250,
  35240. bottom: 42/1362
  35241. }
  35242. },
  35243. frontDressed: {
  35244. height: math.unit(5, "feet"),
  35245. weight: math.unit(225, "lb"),
  35246. name: "Front (Dressed)",
  35247. image: {
  35248. source: "./media/characters/cindy/front-dressed.svg",
  35249. extra: 1320/1250,
  35250. bottom: 42/1362
  35251. }
  35252. },
  35253. back: {
  35254. height: math.unit(5, "feet"),
  35255. weight: math.unit(225, "lb"),
  35256. name: "Back",
  35257. image: {
  35258. source: "./media/characters/cindy/back.svg",
  35259. extra: 1384/1346,
  35260. bottom: 14/1398
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(5, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(6 + 9/12, "feet"),
  35277. weight: math.unit(440, "lb"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/wilbur-owen/front.svg",
  35281. extra: 1575/1448,
  35282. bottom: 72/1647
  35283. }
  35284. },
  35285. back: {
  35286. height: math.unit(6 + 9/12, "feet"),
  35287. weight: math.unit(440, "lb"),
  35288. name: "Back",
  35289. image: {
  35290. source: "./media/characters/wilbur-owen/back.svg",
  35291. extra: 1578/1445,
  35292. bottom: 36/1614
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(6 + 9/12, "feet"),
  35300. default: true
  35301. },
  35302. ]
  35303. ))
  35304. characterMakers.push(() => makeCharacter(
  35305. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35306. {
  35307. front: {
  35308. height: math.unit(6 + 5/12, "feet"),
  35309. weight: math.unit(650, "lb"),
  35310. name: "Front",
  35311. image: {
  35312. source: "./media/characters/keegan/front.svg",
  35313. extra: 2387/2198,
  35314. bottom: 33/2420
  35315. }
  35316. },
  35317. side: {
  35318. height: math.unit(6 + 5/12, "feet"),
  35319. weight: math.unit(650, "lb"),
  35320. name: "Side",
  35321. image: {
  35322. source: "./media/characters/keegan/side.svg",
  35323. extra: 2390/2202,
  35324. bottom: 47/2437
  35325. }
  35326. },
  35327. back: {
  35328. height: math.unit(6 + 5/12, "feet"),
  35329. weight: math.unit(650, "lb"),
  35330. name: "Back",
  35331. image: {
  35332. source: "./media/characters/keegan/back.svg",
  35333. extra: 2418/2268,
  35334. bottom: 15/2433
  35335. }
  35336. },
  35337. frontSfw: {
  35338. height: math.unit(6 + 5/12, "feet"),
  35339. weight: math.unit(650, "lb"),
  35340. name: "Front (SFW)",
  35341. image: {
  35342. source: "./media/characters/keegan/front-sfw.svg",
  35343. extra: 2387/2198,
  35344. bottom: 33/2420
  35345. }
  35346. },
  35347. beans: {
  35348. height: math.unit(1.85, "feet"),
  35349. name: "Beans",
  35350. image: {
  35351. source: "./media/characters/keegan/beans.svg"
  35352. }
  35353. },
  35354. },
  35355. [
  35356. {
  35357. name: "Normal",
  35358. height: math.unit(6 + 5/12, "feet"),
  35359. default: true
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35365. {
  35366. front: {
  35367. height: math.unit(9, "feet"),
  35368. name: "Front",
  35369. image: {
  35370. source: "./media/characters/colton/front.svg",
  35371. extra: 1589/1326,
  35372. bottom: 139/1728
  35373. }
  35374. },
  35375. },
  35376. [
  35377. {
  35378. name: "Normal",
  35379. height: math.unit(9, "feet"),
  35380. default: true
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(2 + 9/12, "feet"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/bora/front.svg",
  35392. extra: 1265/1250,
  35393. bottom: 24/1289
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(2 + 9/12, "feet"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(8, "feet"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/myu-myu/front.svg",
  35413. extra: 1949/1857,
  35414. bottom: 90/2039
  35415. }
  35416. },
  35417. },
  35418. [
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(8, "feet"),
  35422. default: true
  35423. },
  35424. {
  35425. name: "Big",
  35426. height: math.unit(15, "feet")
  35427. },
  35428. {
  35429. name: "BIG",
  35430. height: math.unit(25, "feet")
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35436. {
  35437. side: {
  35438. height: math.unit(7 + 5/12, "feet"),
  35439. weight: math.unit(2800, "lb"),
  35440. name: "Side",
  35441. image: {
  35442. source: "./media/characters/haloren/side.svg",
  35443. extra: 1793/409,
  35444. bottom: 59/1852
  35445. }
  35446. },
  35447. frontPaw: {
  35448. height: math.unit(2.36, "feet"),
  35449. name: "Front paw",
  35450. image: {
  35451. source: "./media/characters/haloren/front-paw.svg"
  35452. }
  35453. },
  35454. hindPaw: {
  35455. height: math.unit(3.18, "feet"),
  35456. name: "Hind paw",
  35457. image: {
  35458. source: "./media/characters/haloren/hind-paw.svg"
  35459. }
  35460. },
  35461. maw: {
  35462. height: math.unit(5.05, "feet"),
  35463. name: "Maw",
  35464. image: {
  35465. source: "./media/characters/haloren/maw.svg"
  35466. }
  35467. },
  35468. dick: {
  35469. height: math.unit(2.90, "feet"),
  35470. name: "Dick",
  35471. image: {
  35472. source: "./media/characters/haloren/dick.svg"
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(7 + 5/12, "feet"),
  35480. default: true
  35481. },
  35482. {
  35483. name: "Enhanced",
  35484. height: math.unit(14 + 3/12, "feet")
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(171, "cm"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/kimmy/front.svg",
  35496. extra: 1491/1435,
  35497. bottom: 53/1544
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Small",
  35504. height: math.unit(9, "cm")
  35505. },
  35506. {
  35507. name: "Normal",
  35508. height: math.unit(171, "cm"),
  35509. default: true
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(8, "feet"),
  35518. weight: math.unit(300, "lb"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/galeboomer/front.svg",
  35522. extra: 4651/4415,
  35523. bottom: 162/4813
  35524. }
  35525. },
  35526. back: {
  35527. height: math.unit(8, "feet"),
  35528. weight: math.unit(300, "lb"),
  35529. name: "Back",
  35530. image: {
  35531. source: "./media/characters/galeboomer/back.svg",
  35532. extra: 4544/4314,
  35533. bottom: 16/4560
  35534. }
  35535. },
  35536. frontAlt: {
  35537. height: math.unit(8, "feet"),
  35538. weight: math.unit(300, "lb"),
  35539. name: "Front (Alt)",
  35540. image: {
  35541. source: "./media/characters/galeboomer/front-alt.svg",
  35542. extra: 4458/4228,
  35543. bottom: 68/4526
  35544. }
  35545. },
  35546. maw: {
  35547. height: math.unit(1.2, "feet"),
  35548. name: "Maw",
  35549. image: {
  35550. source: "./media/characters/galeboomer/maw.svg"
  35551. }
  35552. },
  35553. },
  35554. [
  35555. {
  35556. name: "Normal",
  35557. height: math.unit(8, "feet"),
  35558. default: true
  35559. },
  35560. ]
  35561. ))
  35562. characterMakers.push(() => makeCharacter(
  35563. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35564. {
  35565. front: {
  35566. height: math.unit(5 + 9/12, "feet"),
  35567. weight: math.unit(120, "lb"),
  35568. name: "Front",
  35569. image: {
  35570. source: "./media/characters/chyr/front.svg",
  35571. extra: 1323/1254,
  35572. bottom: 63/1386
  35573. }
  35574. },
  35575. back: {
  35576. height: math.unit(5 + 9/12, "feet"),
  35577. weight: math.unit(120, "lb"),
  35578. name: "Back",
  35579. image: {
  35580. source: "./media/characters/chyr/back.svg",
  35581. extra: 1323/1252,
  35582. bottom: 48/1371
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(5 + 9/12, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(7, "feet"),
  35599. weight: math.unit(310, "lb"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/solarus/front.svg",
  35603. extra: 2415/2021,
  35604. bottom: 103/2518
  35605. }
  35606. },
  35607. back: {
  35608. height: math.unit(7, "feet"),
  35609. weight: math.unit(310, "lb"),
  35610. name: "Back",
  35611. image: {
  35612. source: "./media/characters/solarus/back.svg",
  35613. extra: 2463/2089,
  35614. bottom: 79/2542
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(7, "feet"),
  35622. default: true
  35623. },
  35624. ]
  35625. ))
  35626. characterMakers.push(() => makeCharacter(
  35627. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35628. {
  35629. front: {
  35630. height: math.unit(16, "feet"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35634. extra: 1844/1780,
  35635. bottom: 58/1902
  35636. }
  35637. },
  35638. },
  35639. [
  35640. {
  35641. name: "Normal",
  35642. height: math.unit(16, "feet"),
  35643. default: true
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35649. {
  35650. front: {
  35651. height: math.unit(11 + 6/12, "feet"),
  35652. weight: math.unit(1366, "lb"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/lexor/front.svg",
  35656. extra: 1560/1481,
  35657. bottom: 211/1771
  35658. }
  35659. },
  35660. back: {
  35661. height: math.unit(11 + 6/12, "feet"),
  35662. weight: math.unit(1366, "lb"),
  35663. name: "Back",
  35664. image: {
  35665. source: "./media/characters/lexor/back.svg",
  35666. extra: 1614/1533,
  35667. bottom: 76/1690
  35668. }
  35669. },
  35670. maw: {
  35671. height: math.unit(3, "feet"),
  35672. name: "Maw",
  35673. image: {
  35674. source: "./media/characters/lexor/maw.svg"
  35675. }
  35676. },
  35677. dick: {
  35678. height: math.unit(2.59, "feet"),
  35679. name: "Dick",
  35680. image: {
  35681. source: "./media/characters/lexor/dick.svg"
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(11 + 6/12, "feet"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35695. {
  35696. front: {
  35697. height: math.unit(5 + 8/12, "feet"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/magnum/front.svg",
  35701. extra: 942/855,
  35702. bottom: 26/968
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(5 + 8/12, "feet"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35716. {
  35717. front: {
  35718. height: math.unit(18 + 4/12, "feet"),
  35719. weight: math.unit(1500, "kg"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/solas-sharpsman/front.svg",
  35723. extra: 1698/1589,
  35724. bottom: 0/1698
  35725. }
  35726. },
  35727. },
  35728. [
  35729. {
  35730. name: "Normal",
  35731. height: math.unit(18 + 4/12, "feet"),
  35732. default: true
  35733. },
  35734. ]
  35735. ))
  35736. characterMakers.push(() => makeCharacter(
  35737. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35738. {
  35739. front: {
  35740. height: math.unit(5 + 5/12, "feet"),
  35741. weight: math.unit(180, "lb"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/october/front.svg",
  35745. extra: 1800/1650,
  35746. bottom: 0/1800
  35747. }
  35748. },
  35749. frontNsfw: {
  35750. height: math.unit(5 + 5/12, "feet"),
  35751. weight: math.unit(180, "lb"),
  35752. name: "Front (NSFW)",
  35753. image: {
  35754. source: "./media/characters/october/front-nsfw.svg",
  35755. extra: 1392/1307,
  35756. bottom: 42/1434
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(5 + 5/12, "feet"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(8 + 6/12, "feet"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/essynkardi/front.svg",
  35776. extra: 1914/1846,
  35777. bottom: 22/1936
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(8 + 6/12, "feet"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(6 + 6/12, "feet"),
  35794. weight: math.unit(7, "lb"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/icky/front.svg",
  35798. extra: 813/782,
  35799. bottom: 66/879
  35800. }
  35801. },
  35802. back: {
  35803. height: math.unit(6 + 6/12, "feet"),
  35804. weight: math.unit(7, "lb"),
  35805. name: "Back",
  35806. image: {
  35807. source: "./media/characters/icky/back.svg",
  35808. extra: 754/735,
  35809. bottom: 56/810
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(6 + 6/12, "feet"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35823. {
  35824. front: {
  35825. height: math.unit(15, "feet"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/rojas/front.svg",
  35829. extra: 1462/1408,
  35830. bottom: 95/1557
  35831. }
  35832. },
  35833. back: {
  35834. height: math.unit(15, "feet"),
  35835. name: "Back",
  35836. image: {
  35837. source: "./media/characters/rojas/back.svg",
  35838. extra: 1023/954,
  35839. bottom: 28/1051
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(15, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35853. {
  35854. frontHuman: {
  35855. height: math.unit(5 + 7/12, "feet"),
  35856. name: "Front (Human)",
  35857. image: {
  35858. source: "./media/characters/alek-dryagan/front-human.svg",
  35859. extra: 1687/1667,
  35860. bottom: 69/1756
  35861. }
  35862. },
  35863. backHuman: {
  35864. height: math.unit(5 + 7/12, "feet"),
  35865. name: "Back (Human)",
  35866. image: {
  35867. source: "./media/characters/alek-dryagan/back-human.svg",
  35868. extra: 1670/1649,
  35869. bottom: 65/1735
  35870. }
  35871. },
  35872. frontDemi: {
  35873. height: math.unit(65, "feet"),
  35874. name: "Front (Demi)",
  35875. image: {
  35876. source: "./media/characters/alek-dryagan/front-demi.svg",
  35877. extra: 1669/1642,
  35878. bottom: 49/1718
  35879. }
  35880. },
  35881. backDemi: {
  35882. height: math.unit(65, "feet"),
  35883. name: "Back (Demi)",
  35884. image: {
  35885. source: "./media/characters/alek-dryagan/back-demi.svg",
  35886. extra: 1658/1637,
  35887. bottom: 40/1698
  35888. }
  35889. },
  35890. mawHuman: {
  35891. height: math.unit(0.3, "feet"),
  35892. name: "Maw (Human)",
  35893. image: {
  35894. source: "./media/characters/alek-dryagan/maw-human.svg"
  35895. }
  35896. },
  35897. mawDemi: {
  35898. height: math.unit(3.8, "feet"),
  35899. name: "Maw (Demi)",
  35900. image: {
  35901. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(5 + 7/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35915. {
  35916. frontHuman: {
  35917. height: math.unit(5 + 2/12, "feet"),
  35918. name: "Front (Human)",
  35919. image: {
  35920. source: "./media/characters/gen/front-human.svg",
  35921. extra: 1627/1538,
  35922. bottom: 71/1698
  35923. }
  35924. },
  35925. backHuman: {
  35926. height: math.unit(5 + 2/12, "feet"),
  35927. name: "Back (Human)",
  35928. image: {
  35929. source: "./media/characters/gen/back-human.svg",
  35930. extra: 1638/1548,
  35931. bottom: 69/1707
  35932. }
  35933. },
  35934. frontDemi: {
  35935. height: math.unit(5 + 2/12, "feet"),
  35936. name: "Front (Demi)",
  35937. image: {
  35938. source: "./media/characters/gen/front-demi.svg",
  35939. extra: 1627/1538,
  35940. bottom: 71/1698
  35941. }
  35942. },
  35943. backDemi: {
  35944. height: math.unit(5 + 2/12, "feet"),
  35945. name: "Back (Demi)",
  35946. image: {
  35947. source: "./media/characters/gen/back-demi.svg",
  35948. extra: 1638/1548,
  35949. bottom: 69/1707
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Normal",
  35956. height: math.unit(5 + 2/12, "feet"),
  35957. default: true
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35963. {
  35964. frontImp: {
  35965. height: math.unit(1 + 11/12, "feet"),
  35966. name: "Front (Imp)",
  35967. image: {
  35968. source: "./media/characters/max-kobold/front-imp.svg",
  35969. extra: 1238/1134,
  35970. bottom: 81/1319
  35971. }
  35972. },
  35973. backImp: {
  35974. height: math.unit(1 + 11/12, "feet"),
  35975. name: "Back (Imp)",
  35976. image: {
  35977. source: "./media/characters/max-kobold/back-imp.svg",
  35978. extra: 1334/1175,
  35979. bottom: 34/1368
  35980. }
  35981. },
  35982. frontDemi: {
  35983. height: math.unit(5 + 9/12, "feet"),
  35984. name: "Front (Demi)",
  35985. image: {
  35986. source: "./media/characters/max-kobold/front-demi.svg",
  35987. extra: 1715/1685,
  35988. bottom: 54/1769
  35989. }
  35990. },
  35991. backDemi: {
  35992. height: math.unit(5 + 9/12, "feet"),
  35993. name: "Back (Demi)",
  35994. image: {
  35995. source: "./media/characters/max-kobold/back-demi.svg",
  35996. extra: 1752/1729,
  35997. bottom: 41/1793
  35998. }
  35999. },
  36000. handImp: {
  36001. height: math.unit(0.45, "feet"),
  36002. name: "Hand (Imp)",
  36003. image: {
  36004. source: "./media/characters/max-kobold/hand.svg"
  36005. }
  36006. },
  36007. pawImp: {
  36008. height: math.unit(0.46, "feet"),
  36009. name: "Paw (Imp)",
  36010. image: {
  36011. source: "./media/characters/max-kobold/paw.svg"
  36012. }
  36013. },
  36014. handDemi: {
  36015. height: math.unit(0.80, "feet"),
  36016. name: "Hand (Demi)",
  36017. image: {
  36018. source: "./media/characters/max-kobold/hand.svg"
  36019. }
  36020. },
  36021. pawDemi: {
  36022. height: math.unit(1.1, "feet"),
  36023. name: "Paw (Demi)",
  36024. image: {
  36025. source: "./media/characters/max-kobold/paw.svg"
  36026. }
  36027. },
  36028. headImp: {
  36029. height: math.unit(1.33, "feet"),
  36030. name: "Head (Imp)",
  36031. image: {
  36032. source: "./media/characters/max-kobold/head-imp.svg"
  36033. }
  36034. },
  36035. mawImp: {
  36036. height: math.unit(0.75, "feet"),
  36037. name: "Maw (Imp)",
  36038. image: {
  36039. source: "./media/characters/max-kobold/maw-imp.svg"
  36040. }
  36041. },
  36042. mawDemi: {
  36043. height: math.unit(0.42, "feet"),
  36044. name: "Maw (Demi)",
  36045. image: {
  36046. source: "./media/characters/max-kobold/maw-demi.svg"
  36047. }
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "Normal",
  36053. height: math.unit(1 + 11/12, "feet"),
  36054. default: true
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36060. {
  36061. front: {
  36062. height: math.unit(7 + 5/12, "feet"),
  36063. name: "Front",
  36064. image: {
  36065. source: "./media/characters/carbon/front.svg",
  36066. extra: 1754/1689,
  36067. bottom: 65/1819
  36068. }
  36069. },
  36070. back: {
  36071. height: math.unit(7 + 5/12, "feet"),
  36072. name: "Back",
  36073. image: {
  36074. source: "./media/characters/carbon/back.svg",
  36075. extra: 1762/1695,
  36076. bottom: 24/1786
  36077. }
  36078. },
  36079. frontGigantamax: {
  36080. height: math.unit(150, "feet"),
  36081. name: "Front (Gigantamax)",
  36082. image: {
  36083. source: "./media/characters/carbon/front-gigantamax.svg",
  36084. extra: 1826/1669,
  36085. bottom: 59/1885
  36086. }
  36087. },
  36088. backGigantamax: {
  36089. height: math.unit(150, "feet"),
  36090. name: "Back (Gigantamax)",
  36091. image: {
  36092. source: "./media/characters/carbon/back-gigantamax.svg",
  36093. extra: 1796/1653,
  36094. bottom: 53/1849
  36095. }
  36096. },
  36097. maw: {
  36098. height: math.unit(0.48, "feet"),
  36099. name: "Maw",
  36100. image: {
  36101. source: "./media/characters/carbon/maw.svg"
  36102. }
  36103. },
  36104. mawGigantamax: {
  36105. height: math.unit(7.5, "feet"),
  36106. name: "Maw (Gigantamax)",
  36107. image: {
  36108. source: "./media/characters/carbon/maw-gigantamax.svg"
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(7 + 5/12, "feet"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(6, "feet"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/maverick/front.svg",
  36128. extra: 1672/1661,
  36129. bottom: 85/1757
  36130. }
  36131. },
  36132. back: {
  36133. height: math.unit(6, "feet"),
  36134. name: "Back",
  36135. image: {
  36136. source: "./media/characters/maverick/back.svg",
  36137. extra: 1642/1631,
  36138. bottom: 38/1680
  36139. }
  36140. },
  36141. },
  36142. [
  36143. {
  36144. name: "Normal",
  36145. height: math.unit(6, "feet"),
  36146. default: true
  36147. },
  36148. ]
  36149. ))
  36150. characterMakers.push(() => makeCharacter(
  36151. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36152. {
  36153. front: {
  36154. height: math.unit(15, "feet"),
  36155. weight: math.unit(615, "lb"),
  36156. name: "Front",
  36157. image: {
  36158. source: "./media/characters/grockle/front.svg",
  36159. extra: 1535/1427,
  36160. bottom: 56/1591
  36161. }
  36162. },
  36163. },
  36164. [
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(15, "feet"),
  36168. default: true
  36169. },
  36170. {
  36171. name: "Large",
  36172. height: math.unit(150, "feet")
  36173. },
  36174. {
  36175. name: "Macro",
  36176. height: math.unit(1876, "feet")
  36177. },
  36178. {
  36179. name: "Mega Macro",
  36180. height: math.unit(121940, "feet")
  36181. },
  36182. {
  36183. name: "Giga Macro",
  36184. height: math.unit(750, "km")
  36185. },
  36186. {
  36187. name: "Tera Macro",
  36188. height: math.unit(750000, "km")
  36189. },
  36190. {
  36191. name: "Galactic",
  36192. height: math.unit(1.4e5, "km")
  36193. },
  36194. {
  36195. name: "Godlike",
  36196. height: math.unit(9.8e280, "galaxies")
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36202. {
  36203. front: {
  36204. height: math.unit(11, "meters"),
  36205. weight: math.unit(20, "tonnes"),
  36206. name: "Front",
  36207. image: {
  36208. source: "./media/characters/alistair/front.svg",
  36209. extra: 1265/1009,
  36210. bottom: 93/1358
  36211. }
  36212. },
  36213. },
  36214. [
  36215. {
  36216. name: "Normal",
  36217. height: math.unit(11, "meters"),
  36218. default: true
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36224. {
  36225. front: {
  36226. height: math.unit(5 + 8/12, "feet"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/haruka/front.svg",
  36230. extra: 2012/1952,
  36231. bottom: 0/2012
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(5 + 8/12, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36245. {
  36246. back: {
  36247. height: math.unit(9, "feet"),
  36248. name: "Back",
  36249. image: {
  36250. source: "./media/characters/vivian-sylveon/back.svg",
  36251. extra: 1853/1714,
  36252. bottom: 0/1853
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(9, "feet"),
  36260. default: true
  36261. },
  36262. {
  36263. name: "Macro",
  36264. height: math.unit(500, "feet")
  36265. },
  36266. {
  36267. name: "Megamacro",
  36268. height: math.unit(600, "miles")
  36269. },
  36270. {
  36271. name: "Gigamacro",
  36272. height: math.unit(30000, "miles")
  36273. },
  36274. ]
  36275. ))
  36276. characterMakers.push(() => makeCharacter(
  36277. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36278. {
  36279. anthro: {
  36280. height: math.unit(5 + 10/12, "feet"),
  36281. weight: math.unit(100, "lb"),
  36282. name: "Anthro",
  36283. image: {
  36284. source: "./media/characters/daiki/anthro.svg",
  36285. extra: 1115/1027,
  36286. bottom: 69/1184
  36287. }
  36288. },
  36289. feral: {
  36290. height: math.unit(200, "feet"),
  36291. name: "Feral",
  36292. image: {
  36293. source: "./media/characters/daiki/feral.svg",
  36294. extra: 1256/313,
  36295. bottom: 39/1295
  36296. }
  36297. },
  36298. feralHead: {
  36299. height: math.unit(171, "feet"),
  36300. name: "Feral Head",
  36301. image: {
  36302. source: "./media/characters/daiki/feral-head.svg"
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(5 + 10/12, "feet"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36316. {
  36317. fullyEquippedFront: {
  36318. height: math.unit(3 + 1/12, "feet"),
  36319. weight: math.unit(24, "lb"),
  36320. name: "Fully Equipped (Front)",
  36321. image: {
  36322. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36323. extra: 687/605,
  36324. bottom: 18/705
  36325. }
  36326. },
  36327. fullyEquippedBack: {
  36328. height: math.unit(3 + 1/12, "feet"),
  36329. weight: math.unit(24, "lb"),
  36330. name: "Fully Equipped (Back)",
  36331. image: {
  36332. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36333. extra: 689/590,
  36334. bottom: 18/707
  36335. }
  36336. },
  36337. dailyWear: {
  36338. height: math.unit(3 + 1/12, "feet"),
  36339. weight: math.unit(24, "lb"),
  36340. name: "Daily Wear",
  36341. image: {
  36342. source: "./media/characters/tea-spot/daily-wear.svg",
  36343. extra: 701/620,
  36344. bottom: 21/722
  36345. }
  36346. },
  36347. maidWork: {
  36348. height: math.unit(3 + 1/12, "feet"),
  36349. weight: math.unit(24, "lb"),
  36350. name: "Maid Work",
  36351. image: {
  36352. source: "./media/characters/tea-spot/maid-work.svg",
  36353. extra: 693/609,
  36354. bottom: 15/708
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Normal",
  36361. height: math.unit(3 + 1/12, "feet"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36368. {
  36369. front: {
  36370. height: math.unit(175, "cm"),
  36371. weight: math.unit(75, "kg"),
  36372. name: "Front",
  36373. image: {
  36374. source: "./media/characters/chee/front.svg",
  36375. extra: 1796/1740,
  36376. bottom: 40/1836
  36377. }
  36378. },
  36379. },
  36380. [
  36381. {
  36382. name: "Micro-Micro",
  36383. height: math.unit(1, "nm")
  36384. },
  36385. {
  36386. name: "Micro-erst",
  36387. height: math.unit(1, "micrometer")
  36388. },
  36389. {
  36390. name: "Micro-er",
  36391. height: math.unit(1, "cm")
  36392. },
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(175, "cm"),
  36396. default: true
  36397. },
  36398. {
  36399. name: "Macro",
  36400. height: math.unit(100, "m")
  36401. },
  36402. {
  36403. name: "Macro-er",
  36404. height: math.unit(1, "km")
  36405. },
  36406. {
  36407. name: "Macro-erst",
  36408. height: math.unit(10, "km")
  36409. },
  36410. {
  36411. name: "Macro-Macro",
  36412. height: math.unit(100, "km")
  36413. },
  36414. ]
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36418. {
  36419. front: {
  36420. height: math.unit(11 + 9/12, "feet"),
  36421. weight: math.unit(935, "lb"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/kingsley/front.svg",
  36425. extra: 1803/1674,
  36426. bottom: 127/1930
  36427. }
  36428. },
  36429. frontNude: {
  36430. height: math.unit(11 + 9/12, "feet"),
  36431. weight: math.unit(935, "lb"),
  36432. name: "Front (Nude)",
  36433. image: {
  36434. source: "./media/characters/kingsley/front-nude.svg",
  36435. extra: 1803/1674,
  36436. bottom: 127/1930
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(11 + 9/12, "feet"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36450. {
  36451. side: {
  36452. height: math.unit(9, "feet"),
  36453. name: "Side",
  36454. image: {
  36455. source: "./media/characters/rymel/side.svg",
  36456. extra: 792/469,
  36457. bottom: 121/913
  36458. }
  36459. },
  36460. maw: {
  36461. height: math.unit(2.4, "meters"),
  36462. name: "Maw",
  36463. image: {
  36464. source: "./media/characters/rymel/maw.svg"
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "House Drake",
  36471. height: math.unit(2, "feet")
  36472. },
  36473. {
  36474. name: "Reduced",
  36475. height: math.unit(4.5, "feet")
  36476. },
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(9, "feet"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(1.74, "meters"),
  36489. weight: math.unit(55, "kg"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/rubus/front.svg",
  36493. extra: 1894/1742,
  36494. bottom: 44/1938
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(1.74, "meters"),
  36502. default: true
  36503. },
  36504. ]
  36505. ))
  36506. characterMakers.push(() => makeCharacter(
  36507. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36508. {
  36509. front: {
  36510. height: math.unit(5 + 2/12, "feet"),
  36511. weight: math.unit(112, "lb"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/cassie-kingston/front.svg",
  36515. extra: 1438/1390,
  36516. bottom: 47/1485
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Normal",
  36523. height: math.unit(5 + 2/12, "feet"),
  36524. default: true
  36525. },
  36526. {
  36527. name: "Macro",
  36528. height: math.unit(128, "feet")
  36529. },
  36530. {
  36531. name: "Megamacro",
  36532. height: math.unit(2.56, "miles")
  36533. },
  36534. ]
  36535. ))
  36536. characterMakers.push(() => makeCharacter(
  36537. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36538. {
  36539. front: {
  36540. height: math.unit(7, "feet"),
  36541. name: "Front",
  36542. image: {
  36543. source: "./media/characters/fox/front.svg",
  36544. extra: 1798/1703,
  36545. bottom: 55/1853
  36546. }
  36547. },
  36548. back: {
  36549. height: math.unit(7, "feet"),
  36550. name: "Back",
  36551. image: {
  36552. source: "./media/characters/fox/back.svg",
  36553. extra: 1748/1649,
  36554. bottom: 32/1780
  36555. }
  36556. },
  36557. head: {
  36558. height: math.unit(1.95, "feet"),
  36559. name: "Head",
  36560. image: {
  36561. source: "./media/characters/fox/head.svg"
  36562. }
  36563. },
  36564. dick: {
  36565. height: math.unit(1.33, "feet"),
  36566. name: "Dick",
  36567. image: {
  36568. source: "./media/characters/fox/dick.svg"
  36569. }
  36570. },
  36571. foot: {
  36572. height: math.unit(1, "feet"),
  36573. name: "Foot",
  36574. image: {
  36575. source: "./media/characters/fox/foot.svg"
  36576. }
  36577. },
  36578. paw: {
  36579. height: math.unit(0.92, "feet"),
  36580. name: "Paw",
  36581. image: {
  36582. source: "./media/characters/fox/paw.svg"
  36583. }
  36584. },
  36585. },
  36586. [
  36587. {
  36588. name: "Small",
  36589. height: math.unit(3, "inches")
  36590. },
  36591. {
  36592. name: "\"Realistic\"",
  36593. height: math.unit(7, "feet")
  36594. },
  36595. {
  36596. name: "Normal",
  36597. height: math.unit(150, "feet"),
  36598. default: true
  36599. },
  36600. {
  36601. name: "BIG",
  36602. height: math.unit(1200, "feet")
  36603. },
  36604. {
  36605. name: "👀",
  36606. height: math.unit(5, "miles")
  36607. },
  36608. {
  36609. name: "👀👀👀",
  36610. height: math.unit(64, "miles")
  36611. },
  36612. ]
  36613. ))
  36614. characterMakers.push(() => makeCharacter(
  36615. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36616. {
  36617. front: {
  36618. height: math.unit(625, "feet"),
  36619. name: "Front",
  36620. image: {
  36621. source: "./media/characters/asonja-rossa/front.svg",
  36622. extra: 1833/1686,
  36623. bottom: 24/1857
  36624. }
  36625. },
  36626. back: {
  36627. height: math.unit(625, "feet"),
  36628. name: "Back",
  36629. image: {
  36630. source: "./media/characters/asonja-rossa/back.svg",
  36631. extra: 1852/1753,
  36632. bottom: 26/1878
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Macro",
  36639. height: math.unit(625, "feet"),
  36640. default: true
  36641. },
  36642. ]
  36643. ))
  36644. characterMakers.push(() => makeCharacter(
  36645. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36646. {
  36647. side: {
  36648. height: math.unit(6, "feet"),
  36649. weight: math.unit(150, "lb"),
  36650. name: "Side",
  36651. image: {
  36652. source: "./media/characters/rezukii/side.svg",
  36653. extra: 979/542,
  36654. bottom: 87/1066
  36655. }
  36656. },
  36657. },
  36658. [
  36659. {
  36660. name: "Tiny",
  36661. height: math.unit(2, "feet")
  36662. },
  36663. {
  36664. name: "Smol",
  36665. height: math.unit(4, "feet")
  36666. },
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(8, "feet"),
  36670. default: true
  36671. },
  36672. {
  36673. name: "Big",
  36674. height: math.unit(12, "feet")
  36675. },
  36676. {
  36677. name: "Macro",
  36678. height: math.unit(30, "feet")
  36679. },
  36680. ]
  36681. ))
  36682. characterMakers.push(() => makeCharacter(
  36683. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36684. {
  36685. front: {
  36686. height: math.unit(14, "feet"),
  36687. weight: math.unit(9.5, "tonnes"),
  36688. name: "Front",
  36689. image: {
  36690. source: "./media/characters/dawnheart/front.svg",
  36691. extra: 2792/2675,
  36692. bottom: 64/2856
  36693. }
  36694. },
  36695. },
  36696. [
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(14, "feet"),
  36700. default: true
  36701. },
  36702. ]
  36703. ))
  36704. characterMakers.push(() => makeCharacter(
  36705. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36706. {
  36707. front: {
  36708. height: math.unit(1.7, "m"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/gladi/front.svg",
  36712. extra: 1460/1362,
  36713. bottom: 19/1479
  36714. }
  36715. },
  36716. back: {
  36717. height: math.unit(1.7, "m"),
  36718. name: "Back",
  36719. image: {
  36720. source: "./media/characters/gladi/back.svg",
  36721. extra: 1459/1357,
  36722. bottom: 12/1471
  36723. }
  36724. },
  36725. feral: {
  36726. height: math.unit(2.05, "m"),
  36727. name: "Feral",
  36728. image: {
  36729. source: "./media/characters/gladi/feral.svg",
  36730. extra: 821/557,
  36731. bottom: 91/912
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Shortest",
  36738. height: math.unit(70, "cm")
  36739. },
  36740. {
  36741. name: "Normal",
  36742. height: math.unit(1.7, "m")
  36743. },
  36744. {
  36745. name: "Macro",
  36746. height: math.unit(10, "m"),
  36747. default: true
  36748. },
  36749. {
  36750. name: "Tallest",
  36751. height: math.unit(200, "m")
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(5 + 7/12, "feet"),
  36760. weight: math.unit(92, "kg"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/erdno/front.svg",
  36764. extra: 1954/1889,
  36765. bottom: 22/1976
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(5 + 7/12, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(5 + 10/12, "feet"),
  36782. weight: math.unit(150, "lb"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/jamie/front.svg",
  36786. extra: 1908/1768,
  36787. bottom: 19/1927
  36788. }
  36789. },
  36790. },
  36791. [
  36792. {
  36793. name: "Minimum",
  36794. height: math.unit(2, "cm")
  36795. },
  36796. {
  36797. name: "Micro",
  36798. height: math.unit(3, "inches")
  36799. },
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(5 + 10/12, "feet"),
  36803. default: true
  36804. },
  36805. {
  36806. name: "Macro",
  36807. height: math.unit(150, "feet")
  36808. },
  36809. {
  36810. name: "Megamacro",
  36811. height: math.unit(10000, "m")
  36812. },
  36813. ]
  36814. ))
  36815. characterMakers.push(() => makeCharacter(
  36816. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36817. {
  36818. front: {
  36819. height: math.unit(2, "meters"),
  36820. weight: math.unit(100, "kg"),
  36821. name: "Front",
  36822. image: {
  36823. source: "./media/characters/shiron/front.svg",
  36824. extra: 2103/1985,
  36825. bottom: 98/2201
  36826. }
  36827. },
  36828. back: {
  36829. height: math.unit(2, "meters"),
  36830. weight: math.unit(100, "kg"),
  36831. name: "Back",
  36832. image: {
  36833. source: "./media/characters/shiron/back.svg",
  36834. extra: 2110/2015,
  36835. bottom: 89/2199
  36836. }
  36837. },
  36838. hand: {
  36839. height: math.unit(0.96, "feet"),
  36840. name: "Hand",
  36841. image: {
  36842. source: "./media/characters/shiron/hand.svg"
  36843. }
  36844. },
  36845. foot: {
  36846. height: math.unit(1.464, "feet"),
  36847. name: "Foot",
  36848. image: {
  36849. source: "./media/characters/shiron/foot.svg"
  36850. }
  36851. },
  36852. },
  36853. [
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(2, "meters")
  36857. },
  36858. {
  36859. name: "Macro",
  36860. height: math.unit(500, "meters"),
  36861. default: true
  36862. },
  36863. {
  36864. name: "Megamacro",
  36865. height: math.unit(20, "km")
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(6, "feet"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/sam/front.svg",
  36877. extra: 849/826,
  36878. bottom: 19/868
  36879. }
  36880. },
  36881. },
  36882. [
  36883. {
  36884. name: "Normal",
  36885. height: math.unit(6, "feet"),
  36886. default: true
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(8 + 4/12, "feet"),
  36895. weight: math.unit(122, "kg"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/namori-kurogawa/front.svg",
  36899. extra: 1894/1576,
  36900. bottom: 34/1928
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(8 + 4/12, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(9, "feet"),
  36917. weight: math.unit(621, "lb"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/unmru/front.svg",
  36921. extra: 1853/1747,
  36922. bottom: 73/1926
  36923. }
  36924. },
  36925. side: {
  36926. height: math.unit(9, "feet"),
  36927. weight: math.unit(621, "lb"),
  36928. name: "Side",
  36929. image: {
  36930. source: "./media/characters/unmru/side.svg",
  36931. extra: 1781/1671,
  36932. bottom: 127/1908
  36933. }
  36934. },
  36935. back: {
  36936. height: math.unit(9, "feet"),
  36937. weight: math.unit(621, "lb"),
  36938. name: "Back",
  36939. image: {
  36940. source: "./media/characters/unmru/back.svg",
  36941. extra: 1894/1765,
  36942. bottom: 75/1969
  36943. }
  36944. },
  36945. dick: {
  36946. height: math.unit(3, "feet"),
  36947. weight: math.unit(35, "lb"),
  36948. name: "Dick",
  36949. image: {
  36950. source: "./media/characters/unmru/dick.svg"
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(9, "feet")
  36958. },
  36959. {
  36960. name: "Natural",
  36961. height: math.unit(27, "feet"),
  36962. default: true
  36963. },
  36964. {
  36965. name: "Giant",
  36966. height: math.unit(90, "feet")
  36967. },
  36968. {
  36969. name: "Kaiju",
  36970. height: math.unit(270, "feet")
  36971. },
  36972. {
  36973. name: "Macro",
  36974. height: math.unit(900, "feet")
  36975. },
  36976. {
  36977. name: "Macro+",
  36978. height: math.unit(2700, "feet")
  36979. },
  36980. {
  36981. name: "Megamacro",
  36982. height: math.unit(9000, "feet")
  36983. },
  36984. {
  36985. name: "City-Crushing",
  36986. height: math.unit(27000, "feet")
  36987. },
  36988. {
  36989. name: "Mountain-Mashing",
  36990. height: math.unit(90000, "feet")
  36991. },
  36992. {
  36993. name: "Earth-Eclipsing",
  36994. height: math.unit(2.7e8, "feet")
  36995. },
  36996. {
  36997. name: "Sol-Swallowing",
  36998. height: math.unit(9e10, "feet")
  36999. },
  37000. {
  37001. name: "Majoris-Munching",
  37002. height: math.unit(2.7e13, "feet")
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37008. {
  37009. front: {
  37010. height: math.unit(1, "inch"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/squeaks-mouse/front.svg",
  37014. extra: 352/308,
  37015. bottom: 25/377
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Micro",
  37022. height: math.unit(1, "inch"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37029. {
  37030. side: {
  37031. height: math.unit(35, "feet"),
  37032. name: "Side",
  37033. image: {
  37034. source: "./media/characters/sayko/side.svg",
  37035. extra: 1697/1021,
  37036. bottom: 82/1779
  37037. }
  37038. },
  37039. head: {
  37040. height: math.unit(16, "feet"),
  37041. name: "Head",
  37042. image: {
  37043. source: "./media/characters/sayko/head.svg"
  37044. }
  37045. },
  37046. forepaw: {
  37047. height: math.unit(7.85, "feet"),
  37048. name: "Forepaw",
  37049. image: {
  37050. source: "./media/characters/sayko/forepaw.svg"
  37051. }
  37052. },
  37053. hindpaw: {
  37054. height: math.unit(8.8, "feet"),
  37055. name: "Hindpaw",
  37056. image: {
  37057. source: "./media/characters/sayko/hindpaw.svg"
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(35, "feet"),
  37065. default: true
  37066. },
  37067. {
  37068. name: "Colossus",
  37069. height: math.unit(100, "meters")
  37070. },
  37071. {
  37072. name: "\"Small\" Deity",
  37073. height: math.unit(1, "km")
  37074. },
  37075. {
  37076. name: "\"Large\" Deity",
  37077. height: math.unit(15, "km")
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(6, "feet"),
  37086. weight: math.unit(250, "lb"),
  37087. name: "Front",
  37088. image: {
  37089. source: "./media/characters/mukiro/front.svg",
  37090. extra: 1368/1310,
  37091. bottom: 34/1402
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(6, "feet"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(12 + 4/12, "feet"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37111. extra: 1346/1311,
  37112. bottom: 65/1411
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Base",
  37119. height: math.unit(12 + 4/12, "feet"),
  37120. default: true
  37121. },
  37122. {
  37123. name: "Macro",
  37124. height: math.unit(150, "feet")
  37125. },
  37126. {
  37127. name: "Mega",
  37128. height: math.unit(2, "miles")
  37129. },
  37130. {
  37131. name: "Demi God",
  37132. height: math.unit(4, "AU")
  37133. },
  37134. {
  37135. name: "God Size",
  37136. height: math.unit(1, "universe")
  37137. },
  37138. ]
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37142. {
  37143. front: {
  37144. height: math.unit(3 + 3/12, "feet"),
  37145. weight: math.unit(88, "lb"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/trey/front.svg",
  37149. extra: 1815/1509,
  37150. bottom: 60/1875
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(3 + 3/12, "feet"),
  37158. default: true
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37164. {
  37165. front: {
  37166. height: math.unit(4, "meters"),
  37167. name: "Front",
  37168. image: {
  37169. source: "./media/characters/adelonda/front.svg",
  37170. extra: 1942/1775,
  37171. bottom: 33/1975
  37172. }
  37173. },
  37174. back: {
  37175. height: math.unit(4, "meters"),
  37176. name: "Back",
  37177. image: {
  37178. source: "./media/characters/adelonda/back.svg",
  37179. extra: 1932/1780,
  37180. bottom: 42/1974
  37181. }
  37182. },
  37183. bust: {
  37184. height: math.unit(1.8, "meter"),
  37185. name: "Bust",
  37186. image: {
  37187. source: "./media/characters/adelonda/bust.svg"
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(4, "meters"),
  37195. default: true
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37201. {
  37202. front: {
  37203. height: math.unit(8 + 4/12, "feet"),
  37204. weight: math.unit(670, "lb"),
  37205. name: "Front",
  37206. image: {
  37207. source: "./media/characters/acadiel/front.svg",
  37208. extra: 1901/1595,
  37209. bottom: 142/2043
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(8 + 4/12, "feet"),
  37217. default: true
  37218. },
  37219. {
  37220. name: "Macro",
  37221. height: math.unit(200, "feet")
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(6 + 2/12, "feet"),
  37230. weight: math.unit(185, "lb"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/kayne-ein/front.svg",
  37234. extra: 1780/1560,
  37235. bottom: 81/1861
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Normal",
  37242. height: math.unit(6 + 2/12, "feet"),
  37243. default: true
  37244. },
  37245. {
  37246. name: "Transformation Stage",
  37247. height: math.unit(15, "feet")
  37248. },
  37249. {
  37250. name: "Macro",
  37251. height: math.unit(150, "feet")
  37252. },
  37253. {
  37254. name: "Earth's Shadow",
  37255. height: math.unit(6200, "miles")
  37256. },
  37257. {
  37258. name: "Universal Demon",
  37259. height: math.unit(28e9, "parsecs")
  37260. },
  37261. {
  37262. name: "Multiverse God",
  37263. height: math.unit(3, "multiverses")
  37264. },
  37265. ]
  37266. ))
  37267. characterMakers.push(() => makeCharacter(
  37268. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37269. {
  37270. front: {
  37271. height: math.unit(5 + 5/12, "feet"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/fawn/front.svg",
  37275. extra: 1873/1731,
  37276. bottom: 95/1968
  37277. }
  37278. },
  37279. back: {
  37280. height: math.unit(5 + 5/12, "feet"),
  37281. name: "Back",
  37282. image: {
  37283. source: "./media/characters/fawn/back.svg",
  37284. extra: 1813/1700,
  37285. bottom: 14/1827
  37286. }
  37287. },
  37288. hoof: {
  37289. height: math.unit(1.45, "feet"),
  37290. name: "Hoof",
  37291. image: {
  37292. source: "./media/characters/fawn/hoof.svg"
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(5 + 5/12, "feet"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(2 + 5/12, "feet"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/orion/front.svg",
  37312. extra: 1366/1304,
  37313. bottom: 43/1409
  37314. }
  37315. },
  37316. paw: {
  37317. height: math.unit(0.52, "feet"),
  37318. name: "Paw",
  37319. image: {
  37320. source: "./media/characters/orion/paw.svg"
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Normal",
  37327. height: math.unit(2 + 5/12, "feet"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(5 + 10/12, "feet"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/vera/front.svg",
  37340. extra: 1680/1575,
  37341. bottom: 49/1729
  37342. }
  37343. },
  37344. back: {
  37345. height: math.unit(5 + 10/12, "feet"),
  37346. name: "Back",
  37347. image: {
  37348. source: "./media/characters/vera/back.svg",
  37349. extra: 1700/1588,
  37350. bottom: 18/1718
  37351. }
  37352. },
  37353. arcanine: {
  37354. height: math.unit(6 + 8/12, "feet"),
  37355. name: "Arcanine",
  37356. image: {
  37357. source: "./media/characters/vera/arcanine.svg",
  37358. extra: 1590/1511,
  37359. bottom: 71/1661
  37360. }
  37361. },
  37362. maw: {
  37363. height: math.unit(0.82, "feet"),
  37364. name: "Maw",
  37365. image: {
  37366. source: "./media/characters/vera/maw.svg"
  37367. }
  37368. },
  37369. mawArcanine: {
  37370. height: math.unit(0.97, "feet"),
  37371. name: "Maw (Arcanine)",
  37372. image: {
  37373. source: "./media/characters/vera/maw-arcanine.svg"
  37374. }
  37375. },
  37376. paw: {
  37377. height: math.unit(0.75, "feet"),
  37378. name: "Paw",
  37379. image: {
  37380. source: "./media/characters/vera/paw.svg"
  37381. }
  37382. },
  37383. pawprint: {
  37384. height: math.unit(0.52, "feet"),
  37385. name: "Pawprint",
  37386. image: {
  37387. source: "./media/characters/vera/pawprint.svg"
  37388. }
  37389. },
  37390. },
  37391. [
  37392. {
  37393. name: "Normal",
  37394. height: math.unit(5 + 10/12, "feet"),
  37395. default: true
  37396. },
  37397. {
  37398. name: "Macro",
  37399. height: math.unit(75, "feet")
  37400. },
  37401. ]
  37402. ))
  37403. characterMakers.push(() => makeCharacter(
  37404. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37405. {
  37406. front: {
  37407. height: math.unit(4, "feet"),
  37408. weight: math.unit(40, "lb"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/orvan-rabbit/front.svg",
  37412. extra: 1896/1642,
  37413. bottom: 29/1925
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(4, "feet"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(6, "feet"),
  37430. weight: math.unit(168, "lb"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/lisa/front.svg",
  37434. extra: 2065/1867,
  37435. bottom: 46/2111
  37436. }
  37437. },
  37438. back: {
  37439. height: math.unit(6, "feet"),
  37440. weight: math.unit(168, "lb"),
  37441. name: "Back",
  37442. image: {
  37443. source: "./media/characters/lisa/back.svg",
  37444. extra: 1982/1838,
  37445. bottom: 29/2011
  37446. }
  37447. },
  37448. maw: {
  37449. height: math.unit(0.81, "feet"),
  37450. name: "Maw",
  37451. image: {
  37452. source: "./media/characters/lisa/maw.svg"
  37453. }
  37454. },
  37455. paw: {
  37456. height: math.unit(0.9, "feet"),
  37457. name: "Paw",
  37458. image: {
  37459. source: "./media/characters/lisa/paw.svg"
  37460. }
  37461. },
  37462. caribousune: {
  37463. height: math.unit(7 + 2/12, "feet"),
  37464. weight: math.unit(268, "lb"),
  37465. name: "Caribousune",
  37466. image: {
  37467. source: "./media/characters/lisa/caribousune.svg",
  37468. extra: 1843/1633,
  37469. bottom: 29/1872
  37470. }
  37471. },
  37472. frontCaribousune: {
  37473. height: math.unit(7 + 2/12, "feet"),
  37474. weight: math.unit(268, "lb"),
  37475. name: "Front (Caribousune)",
  37476. image: {
  37477. source: "./media/characters/lisa/front-caribousune.svg",
  37478. extra: 1818/1638,
  37479. bottom: 52/1870
  37480. }
  37481. },
  37482. sideCaribousune: {
  37483. height: math.unit(7 + 2/12, "feet"),
  37484. weight: math.unit(268, "lb"),
  37485. name: "Side (Caribousune)",
  37486. image: {
  37487. source: "./media/characters/lisa/side-caribousune.svg",
  37488. extra: 1851/1635,
  37489. bottom: 16/1867
  37490. }
  37491. },
  37492. backCaribousune: {
  37493. height: math.unit(7 + 2/12, "feet"),
  37494. weight: math.unit(268, "lb"),
  37495. name: "Back (Caribousune)",
  37496. image: {
  37497. source: "./media/characters/lisa/back-caribousune.svg",
  37498. extra: 1801/1604,
  37499. bottom: 44/1845
  37500. }
  37501. },
  37502. caribou: {
  37503. height: math.unit(7 + 2/12, "feet"),
  37504. weight: math.unit(268, "lb"),
  37505. name: "Caribou",
  37506. image: {
  37507. source: "./media/characters/lisa/caribou.svg",
  37508. extra: 1843/1633,
  37509. bottom: 29/1872
  37510. }
  37511. },
  37512. frontCaribou: {
  37513. height: math.unit(7 + 2/12, "feet"),
  37514. weight: math.unit(268, "lb"),
  37515. name: "Front (Caribou)",
  37516. image: {
  37517. source: "./media/characters/lisa/front-caribou.svg",
  37518. extra: 1818/1638,
  37519. bottom: 52/1870
  37520. }
  37521. },
  37522. sideCaribou: {
  37523. height: math.unit(7 + 2/12, "feet"),
  37524. weight: math.unit(268, "lb"),
  37525. name: "Side (Caribou)",
  37526. image: {
  37527. source: "./media/characters/lisa/side-caribou.svg",
  37528. extra: 1851/1635,
  37529. bottom: 16/1867
  37530. }
  37531. },
  37532. backCaribou: {
  37533. height: math.unit(7 + 2/12, "feet"),
  37534. weight: math.unit(268, "lb"),
  37535. name: "Back (Caribou)",
  37536. image: {
  37537. source: "./media/characters/lisa/back-caribou.svg",
  37538. extra: 1801/1604,
  37539. bottom: 44/1845
  37540. }
  37541. },
  37542. mawCaribou: {
  37543. height: math.unit(1.45, "feet"),
  37544. name: "Maw (Caribou)",
  37545. image: {
  37546. source: "./media/characters/lisa/maw-caribou.svg"
  37547. }
  37548. },
  37549. mawCaribousune: {
  37550. height: math.unit(1.45, "feet"),
  37551. name: "Maw (Caribousune)",
  37552. image: {
  37553. source: "./media/characters/lisa/maw-caribousune.svg"
  37554. }
  37555. },
  37556. pawCaribousune: {
  37557. height: math.unit(1.61, "feet"),
  37558. name: "Paw (Caribou)",
  37559. image: {
  37560. source: "./media/characters/lisa/paw-caribousune.svg"
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(6, "feet")
  37568. },
  37569. {
  37570. name: "God Size",
  37571. height: math.unit(72, "feet"),
  37572. default: true
  37573. },
  37574. {
  37575. name: "Towering",
  37576. height: math.unit(288, "feet")
  37577. },
  37578. {
  37579. name: "City Size",
  37580. height: math.unit(48384, "feet")
  37581. },
  37582. {
  37583. name: "Continental",
  37584. height: math.unit(4200, "miles")
  37585. },
  37586. {
  37587. name: "Planet Eater",
  37588. height: math.unit(42, "earths")
  37589. },
  37590. {
  37591. name: "Star Swallower",
  37592. height: math.unit(42, "solarradii")
  37593. },
  37594. {
  37595. name: "System Swallower",
  37596. height: math.unit(84000, "AU")
  37597. },
  37598. {
  37599. name: "Galaxy Gobbler",
  37600. height: math.unit(42, "galaxies")
  37601. },
  37602. {
  37603. name: "Universe Devourer",
  37604. height: math.unit(42, "universes")
  37605. },
  37606. {
  37607. name: "Multiverse Muncher",
  37608. height: math.unit(42, "multiverses")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(36, "feet"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/shadow-rat/front.svg",
  37620. extra: 1845/1758,
  37621. bottom: 83/1928
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Macro",
  37628. height: math.unit(36, "feet"),
  37629. default: true
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37635. {
  37636. side: {
  37637. height: math.unit(8, "feet"),
  37638. weight: math.unit(2630, "lb"),
  37639. name: "Side",
  37640. image: {
  37641. source: "./media/characters/torallia/side.svg",
  37642. extra: 2164/2021,
  37643. bottom: 371/2535
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Mortal Interaction",
  37650. height: math.unit(8, "feet")
  37651. },
  37652. {
  37653. name: "Natural",
  37654. height: math.unit(24, "feet"),
  37655. default: true
  37656. },
  37657. {
  37658. name: "Giant",
  37659. height: math.unit(80, "feet")
  37660. },
  37661. {
  37662. name: "Kaiju",
  37663. height: math.unit(240, "feet")
  37664. },
  37665. {
  37666. name: "Macro",
  37667. height: math.unit(800, "feet")
  37668. },
  37669. {
  37670. name: "Macro+",
  37671. height: math.unit(2400, "feet")
  37672. },
  37673. {
  37674. name: "Macro++",
  37675. height: math.unit(8000, "feet")
  37676. },
  37677. {
  37678. name: "City-Crushing",
  37679. height: math.unit(24000, "feet")
  37680. },
  37681. {
  37682. name: "Mountain-Mashing",
  37683. height: math.unit(80000, "feet")
  37684. },
  37685. {
  37686. name: "District Demolisher",
  37687. height: math.unit(240000, "feet")
  37688. },
  37689. {
  37690. name: "Tri-County Terror",
  37691. height: math.unit(800000, "feet")
  37692. },
  37693. {
  37694. name: "State Smasher",
  37695. height: math.unit(2.4e6, "feet")
  37696. },
  37697. {
  37698. name: "Nation Nemesis",
  37699. height: math.unit(8e6, "feet")
  37700. },
  37701. {
  37702. name: "Continent Cracker",
  37703. height: math.unit(2.4e7, "feet")
  37704. },
  37705. {
  37706. name: "Planet-Pillaging",
  37707. height: math.unit(8e7, "feet")
  37708. },
  37709. {
  37710. name: "Earth-Eclipsing",
  37711. height: math.unit(2.4e8, "feet")
  37712. },
  37713. {
  37714. name: "Jovian-Jostling",
  37715. height: math.unit(8e8, "feet")
  37716. },
  37717. {
  37718. name: "Gas Giant Gulper",
  37719. height: math.unit(2.4e9, "feet")
  37720. },
  37721. {
  37722. name: "Astral Annihilator",
  37723. height: math.unit(8e9, "feet")
  37724. },
  37725. {
  37726. name: "Celestial Conqueror",
  37727. height: math.unit(2.4e10, "feet")
  37728. },
  37729. {
  37730. name: "Sol-Swallowing",
  37731. height: math.unit(8e10, "feet")
  37732. },
  37733. {
  37734. name: "Hunter of the Heavens",
  37735. height: math.unit(2.4e13, "feet")
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(6 + 8/12, "feet"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/rebecca-pawlson/front.svg",
  37747. extra: 1737/1596,
  37748. bottom: 107/1844
  37749. }
  37750. },
  37751. back: {
  37752. height: math.unit(6 + 8/12, "feet"),
  37753. name: "Back",
  37754. image: {
  37755. source: "./media/characters/rebecca-pawlson/back.svg",
  37756. extra: 1702/1523,
  37757. bottom: 86/1788
  37758. }
  37759. },
  37760. },
  37761. [
  37762. {
  37763. name: "Normal",
  37764. height: math.unit(6 + 8/12, "feet")
  37765. },
  37766. {
  37767. name: "Mini Macro",
  37768. height: math.unit(10, "feet"),
  37769. default: true
  37770. },
  37771. {
  37772. name: "Macro",
  37773. height: math.unit(100, "feet")
  37774. },
  37775. {
  37776. name: "Mega Macro",
  37777. height: math.unit(2500, "feet")
  37778. },
  37779. {
  37780. name: "Giga Macro",
  37781. height: math.unit(50, "miles")
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37787. {
  37788. front: {
  37789. height: math.unit(7 + 6/12, "feet"),
  37790. weight: math.unit(600, "lb"),
  37791. name: "Front",
  37792. image: {
  37793. source: "./media/characters/moxie-nova/front.svg",
  37794. extra: 1734/1652,
  37795. bottom: 41/1775
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(7 + 6/12, "feet"),
  37803. default: true
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(5, "feet"),
  37812. weight: math.unit(150, "lb"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/tiffany/front.svg",
  37816. extra: 1941/1845,
  37817. bottom: 58/1999
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(5, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(8, "feet"),
  37834. weight: math.unit(300, "lb"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/raxinath/front.svg",
  37838. extra: 1407/1309,
  37839. bottom: 39/1446
  37840. }
  37841. },
  37842. back: {
  37843. height: math.unit(8, "feet"),
  37844. weight: math.unit(300, "lb"),
  37845. name: "Back",
  37846. image: {
  37847. source: "./media/characters/raxinath/back.svg",
  37848. extra: 1405/1315,
  37849. bottom: 9/1414
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Speck",
  37856. height: math.unit(0.5, "nm")
  37857. },
  37858. {
  37859. name: "Micro",
  37860. height: math.unit(3, "inches")
  37861. },
  37862. {
  37863. name: "Kobold",
  37864. height: math.unit(3, "feet")
  37865. },
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(8, "feet"),
  37869. default: true
  37870. },
  37871. {
  37872. name: "Giant",
  37873. height: math.unit(50, "feet")
  37874. },
  37875. {
  37876. name: "Macro",
  37877. height: math.unit(1000, "feet")
  37878. },
  37879. {
  37880. name: "Megamacro",
  37881. height: math.unit(1, "mile")
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(10, "feet"),
  37890. weight: math.unit(1442, "lb"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/mal-dragon/front.svg",
  37894. extra: 1515/1444,
  37895. bottom: 113/1628
  37896. }
  37897. },
  37898. back: {
  37899. height: math.unit(10, "feet"),
  37900. weight: math.unit(1442, "lb"),
  37901. name: "Back",
  37902. image: {
  37903. source: "./media/characters/mal-dragon/back.svg",
  37904. extra: 1527/1434,
  37905. bottom: 25/1552
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Mortal Interaction",
  37912. height: math.unit(10, "feet"),
  37913. default: true
  37914. },
  37915. {
  37916. name: "Large",
  37917. height: math.unit(30, "feet")
  37918. },
  37919. {
  37920. name: "Kaiju",
  37921. height: math.unit(300, "feet")
  37922. },
  37923. {
  37924. name: "Megamacro",
  37925. height: math.unit(10000, "feet")
  37926. },
  37927. {
  37928. name: "Continent Cracker",
  37929. height: math.unit(30000000, "feet")
  37930. },
  37931. {
  37932. name: "Sol-Swallowing",
  37933. height: math.unit(1e11, "feet")
  37934. },
  37935. {
  37936. name: "Light Universal",
  37937. height: math.unit(5, "universes")
  37938. },
  37939. {
  37940. name: "Universe Atoms",
  37941. height: math.unit(1.829e9, "universes")
  37942. },
  37943. {
  37944. name: "Light Multiversal",
  37945. height: math.unit(5, "multiverses")
  37946. },
  37947. {
  37948. name: "Multiverse Atoms",
  37949. height: math.unit(1.829e9, "multiverses")
  37950. },
  37951. {
  37952. name: "Fabric of Time",
  37953. height: math.unit(1e262, "multiverses")
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(9, "feet"),
  37962. weight: math.unit(1050, "lb"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/tabitha/front.svg",
  37966. extra: 2083/1994,
  37967. bottom: 68/2151
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Baseline",
  37974. height: math.unit(9, "feet"),
  37975. default: true
  37976. },
  37977. {
  37978. name: "Giant",
  37979. height: math.unit(90, "feet")
  37980. },
  37981. {
  37982. name: "Macro",
  37983. height: math.unit(900, "feet")
  37984. },
  37985. {
  37986. name: "Megamacro",
  37987. height: math.unit(9000, "feet")
  37988. },
  37989. {
  37990. name: "City-Crushing",
  37991. height: math.unit(27000, "feet")
  37992. },
  37993. {
  37994. name: "Mountain-Mashing",
  37995. height: math.unit(90000, "feet")
  37996. },
  37997. {
  37998. name: "Nation Nemesis",
  37999. height: math.unit(9e6, "feet")
  38000. },
  38001. {
  38002. name: "Continent Cracker",
  38003. height: math.unit(27e6, "feet")
  38004. },
  38005. {
  38006. name: "Earth-Eclipsing",
  38007. height: math.unit(2.7e8, "feet")
  38008. },
  38009. {
  38010. name: "Gas Giant Gulper",
  38011. height: math.unit(2.7e9, "feet")
  38012. },
  38013. {
  38014. name: "Sol-Swallowing",
  38015. height: math.unit(9e10, "feet")
  38016. },
  38017. {
  38018. name: "Galaxy Gulper",
  38019. height: math.unit(9, "galaxies")
  38020. },
  38021. {
  38022. name: "Cosmos Churner",
  38023. height: math.unit(9, "universes")
  38024. },
  38025. ]
  38026. ))
  38027. characterMakers.push(() => makeCharacter(
  38028. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38029. {
  38030. front: {
  38031. height: math.unit(160, "cm"),
  38032. weight: math.unit(55, "kg"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/tow/front.svg",
  38036. extra: 1751/1722,
  38037. bottom: 74/1825
  38038. }
  38039. },
  38040. },
  38041. [
  38042. {
  38043. name: "Norm",
  38044. height: math.unit(160, "cm")
  38045. },
  38046. {
  38047. name: "Casual",
  38048. height: math.unit(3200, "m"),
  38049. default: true
  38050. },
  38051. {
  38052. name: "Show-Off",
  38053. height: math.unit(160, "km")
  38054. },
  38055. ]
  38056. ))
  38057. characterMakers.push(() => makeCharacter(
  38058. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38059. {
  38060. front: {
  38061. height: math.unit(7 + 11/12, "feet"),
  38062. weight: math.unit(342.8, "lb"),
  38063. name: "Front",
  38064. image: {
  38065. source: "./media/characters/vivian-orca-dragon/front.svg",
  38066. extra: 1890/1865,
  38067. bottom: 28/1918
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Micro",
  38074. height: math.unit(5, "inches")
  38075. },
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(7 + 11/12, "feet"),
  38079. default: true
  38080. },
  38081. {
  38082. name: "Macro",
  38083. height: math.unit(395 + 7/12, "feet")
  38084. },
  38085. ]
  38086. ))
  38087. characterMakers.push(() => makeCharacter(
  38088. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38089. {
  38090. side: {
  38091. height: math.unit(10, "feet"),
  38092. weight: math.unit(1442, "lb"),
  38093. name: "Side",
  38094. image: {
  38095. source: "./media/characters/lotherakon/side.svg",
  38096. extra: 1604/1497,
  38097. bottom: 89/1693
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Mortal Interaction",
  38104. height: math.unit(10, "feet")
  38105. },
  38106. {
  38107. name: "Large",
  38108. height: math.unit(30, "feet"),
  38109. default: true
  38110. },
  38111. {
  38112. name: "Giant",
  38113. height: math.unit(100, "feet")
  38114. },
  38115. {
  38116. name: "Kaiju",
  38117. height: math.unit(300, "feet")
  38118. },
  38119. {
  38120. name: "Macro",
  38121. height: math.unit(1000, "feet")
  38122. },
  38123. {
  38124. name: "Macro+",
  38125. height: math.unit(3000, "feet")
  38126. },
  38127. {
  38128. name: "Megamacro",
  38129. height: math.unit(10000, "feet")
  38130. },
  38131. {
  38132. name: "City-Crushing",
  38133. height: math.unit(30000, "feet")
  38134. },
  38135. {
  38136. name: "Continent Cracker",
  38137. height: math.unit(30e6, "feet")
  38138. },
  38139. {
  38140. name: "Earth Eclipsing",
  38141. height: math.unit(3e8, "feet")
  38142. },
  38143. {
  38144. name: "Gas Giant Gulper",
  38145. height: math.unit(3e9, "feet")
  38146. },
  38147. {
  38148. name: "Sol-Swallowing",
  38149. height: math.unit(1e11, "feet")
  38150. },
  38151. {
  38152. name: "System Swallower",
  38153. height: math.unit(3e14, "feet")
  38154. },
  38155. {
  38156. name: "Galaxy Gulper",
  38157. height: math.unit(10, "galaxies")
  38158. },
  38159. {
  38160. name: "Light Universal",
  38161. height: math.unit(5, "universes")
  38162. },
  38163. {
  38164. name: "Universe Palm",
  38165. height: math.unit(20, "universes")
  38166. },
  38167. {
  38168. name: "Light Multiversal",
  38169. height: math.unit(5, "multiverses")
  38170. },
  38171. {
  38172. name: "Multiverse Palm",
  38173. height: math.unit(20, "multiverses")
  38174. },
  38175. {
  38176. name: "Inferno Incarnate",
  38177. height: math.unit(1e7, "multiverses")
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38183. {
  38184. front: {
  38185. height: math.unit(8, "feet"),
  38186. weight: math.unit(1200, "lb"),
  38187. name: "Front",
  38188. image: {
  38189. source: "./media/characters/malithee/front.svg",
  38190. extra: 1675/1640,
  38191. bottom: 162/1837
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Mortal Interaction",
  38198. height: math.unit(8, "feet"),
  38199. default: true
  38200. },
  38201. {
  38202. name: "Large",
  38203. height: math.unit(24, "feet")
  38204. },
  38205. {
  38206. name: "Kaiju",
  38207. height: math.unit(240, "feet")
  38208. },
  38209. {
  38210. name: "Megamacro",
  38211. height: math.unit(8000, "feet")
  38212. },
  38213. {
  38214. name: "Continent Cracker",
  38215. height: math.unit(24e6, "feet")
  38216. },
  38217. {
  38218. name: "Earth-Eclipsing",
  38219. height: math.unit(2.4e8, "feet")
  38220. },
  38221. {
  38222. name: "Sol-Swallowing",
  38223. height: math.unit(8e10, "feet")
  38224. },
  38225. {
  38226. name: "Galaxy Gulper",
  38227. height: math.unit(8, "galaxies")
  38228. },
  38229. {
  38230. name: "Light Universal",
  38231. height: math.unit(4, "universes")
  38232. },
  38233. {
  38234. name: "Universe Atoms",
  38235. height: math.unit(1.829e9, "universes")
  38236. },
  38237. {
  38238. name: "Light Multiversal",
  38239. height: math.unit(4, "multiverses")
  38240. },
  38241. {
  38242. name: "Multiverse Atoms",
  38243. height: math.unit(1.829e9, "multiverses")
  38244. },
  38245. {
  38246. name: "Nigh-Omnipresence",
  38247. height: math.unit(8e261, "multiverses")
  38248. },
  38249. ]
  38250. ))
  38251. characterMakers.push(() => makeCharacter(
  38252. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38253. {
  38254. front: {
  38255. height: math.unit(10, "feet"),
  38256. weight: math.unit(1500, "lb"),
  38257. name: "Front",
  38258. image: {
  38259. source: "./media/characters/miles-thestia/front.svg",
  38260. extra: 1812/1727,
  38261. bottom: 86/1898
  38262. }
  38263. },
  38264. back: {
  38265. height: math.unit(10, "feet"),
  38266. weight: math.unit(1500, "lb"),
  38267. name: "Back",
  38268. image: {
  38269. source: "./media/characters/miles-thestia/back.svg",
  38270. extra: 1799/1690,
  38271. bottom: 47/1846
  38272. }
  38273. },
  38274. frontNsfw: {
  38275. height: math.unit(10, "feet"),
  38276. weight: math.unit(1500, "lb"),
  38277. name: "Front (NSFW)",
  38278. image: {
  38279. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38280. extra: 1812/1727,
  38281. bottom: 86/1898
  38282. }
  38283. },
  38284. },
  38285. [
  38286. {
  38287. name: "Mini-Macro",
  38288. height: math.unit(10, "feet"),
  38289. default: true
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(25, "feet"),
  38298. name: "Front",
  38299. image: {
  38300. source: "./media/characters/titan-s-wulf/front.svg",
  38301. extra: 1560/1484,
  38302. bottom: 76/1636
  38303. }
  38304. },
  38305. },
  38306. [
  38307. {
  38308. name: "Smallest",
  38309. height: math.unit(25, "feet"),
  38310. default: true
  38311. },
  38312. {
  38313. name: "Normal",
  38314. height: math.unit(200, "feet")
  38315. },
  38316. {
  38317. name: "Macro",
  38318. height: math.unit(200000, "feet")
  38319. },
  38320. {
  38321. name: "Multiversal Original",
  38322. height: math.unit(10000, "multiverses")
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(8, "feet"),
  38331. weight: math.unit(553, "lb"),
  38332. name: "Front",
  38333. image: {
  38334. source: "./media/characters/tawendeh/front.svg",
  38335. extra: 2365/2268,
  38336. bottom: 83/2448
  38337. }
  38338. },
  38339. frontClothed: {
  38340. height: math.unit(8, "feet"),
  38341. weight: math.unit(553, "lb"),
  38342. name: "Front (Clothed)",
  38343. image: {
  38344. source: "./media/characters/tawendeh/front-clothed.svg",
  38345. extra: 2365/2268,
  38346. bottom: 83/2448
  38347. }
  38348. },
  38349. back: {
  38350. height: math.unit(8, "feet"),
  38351. weight: math.unit(553, "lb"),
  38352. name: "Back",
  38353. image: {
  38354. source: "./media/characters/tawendeh/back.svg",
  38355. extra: 2397/2294,
  38356. bottom: 42/2439
  38357. }
  38358. },
  38359. },
  38360. [
  38361. {
  38362. name: "Mortal Interaction",
  38363. height: math.unit(8, "feet"),
  38364. default: true
  38365. },
  38366. {
  38367. name: "Giant",
  38368. height: math.unit(80, "feet")
  38369. },
  38370. {
  38371. name: "Macro",
  38372. height: math.unit(800, "feet")
  38373. },
  38374. {
  38375. name: "Megamacro",
  38376. height: math.unit(8000, "feet")
  38377. },
  38378. {
  38379. name: "City-Crushing",
  38380. height: math.unit(24000, "feet")
  38381. },
  38382. {
  38383. name: "Mountain-Mashing",
  38384. height: math.unit(80000, "feet")
  38385. },
  38386. {
  38387. name: "Nation Nemesis",
  38388. height: math.unit(8e6, "feet")
  38389. },
  38390. {
  38391. name: "Continent Cracker",
  38392. height: math.unit(24e6, "feet")
  38393. },
  38394. {
  38395. name: "Earth-Eclipsing",
  38396. height: math.unit(2.4e8, "feet")
  38397. },
  38398. {
  38399. name: "Gas Giant Gulper",
  38400. height: math.unit(2.4e9, "feet")
  38401. },
  38402. {
  38403. name: "Sol-Swallowing",
  38404. height: math.unit(8e10, "feet")
  38405. },
  38406. {
  38407. name: "Galaxy Gulper",
  38408. height: math.unit(8, "galaxies")
  38409. },
  38410. {
  38411. name: "Cosmos Churner",
  38412. height: math.unit(8, "universes")
  38413. },
  38414. {
  38415. name: "Omnipotent Otter",
  38416. height: math.unit(80, "universes")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(2.6, "meters"),
  38425. weight: math.unit(900, "kg"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/neesha/front.svg",
  38429. extra: 1803/1653,
  38430. bottom: 128/1931
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(2.6, "meters"),
  38438. default: true
  38439. },
  38440. {
  38441. name: "Macro",
  38442. height: math.unit(50, "meters")
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(5, "feet"),
  38451. weight: math.unit(185, "lb"),
  38452. name: "Front",
  38453. image: {
  38454. source: "./media/characters/kyera/front.svg",
  38455. extra: 1875/1790,
  38456. bottom: 96/1971
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(5, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(7 + 6/12, "feet"),
  38473. weight: math.unit(540, "lb"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/yuko/front.svg",
  38477. extra: 1282/1222,
  38478. bottom: 101/1383
  38479. }
  38480. },
  38481. frontClothed: {
  38482. height: math.unit(7 + 6/12, "feet"),
  38483. weight: math.unit(540, "lb"),
  38484. name: "Front (Clothed)",
  38485. image: {
  38486. source: "./media/characters/yuko/front-clothed.svg",
  38487. extra: 1282/1222,
  38488. bottom: 101/1383
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(7 + 6/12, "feet"),
  38496. default: true
  38497. },
  38498. {
  38499. name: "Macro",
  38500. height: math.unit(26 + 9/12, "feet")
  38501. },
  38502. {
  38503. name: "Megamacro",
  38504. height: math.unit(300, "feet")
  38505. },
  38506. {
  38507. name: "Gigamacro",
  38508. height: math.unit(5000, "feet")
  38509. },
  38510. {
  38511. name: "Planetary",
  38512. height: math.unit(10000, "miles")
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(8 + 2/12, "feet"),
  38521. weight: math.unit(600, "lb"),
  38522. name: "Front",
  38523. image: {
  38524. source: "./media/characters/deam-nitrel/front.svg",
  38525. extra: 1308/1234,
  38526. bottom: 125/1433
  38527. }
  38528. },
  38529. },
  38530. [
  38531. {
  38532. name: "Normal",
  38533. height: math.unit(8 + 2/12, "feet"),
  38534. default: true
  38535. },
  38536. ]
  38537. ))
  38538. characterMakers.push(() => makeCharacter(
  38539. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38540. {
  38541. front: {
  38542. height: math.unit(6.1, "feet"),
  38543. weight: math.unit(180, "lb"),
  38544. name: "Front",
  38545. image: {
  38546. source: "./media/characters/skyress/front.svg",
  38547. extra: 1045/915,
  38548. bottom: 28/1073
  38549. }
  38550. },
  38551. maw: {
  38552. height: math.unit(1, "feet"),
  38553. name: "Maw",
  38554. image: {
  38555. source: "./media/characters/skyress/maw.svg"
  38556. }
  38557. },
  38558. },
  38559. [
  38560. {
  38561. name: "Normal",
  38562. height: math.unit(6.1, "feet"),
  38563. default: true
  38564. },
  38565. {
  38566. name: "Macro",
  38567. height: math.unit(200, "feet")
  38568. },
  38569. ]
  38570. ))
  38571. characterMakers.push(() => makeCharacter(
  38572. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38573. {
  38574. front: {
  38575. height: math.unit(4 + 2/12, "feet"),
  38576. weight: math.unit(40, "kg"),
  38577. name: "Front",
  38578. image: {
  38579. source: "./media/characters/amethyst-jones/front.svg",
  38580. extra: 1220/1150,
  38581. bottom: 101/1321
  38582. }
  38583. },
  38584. },
  38585. [
  38586. {
  38587. name: "Normal",
  38588. height: math.unit(4 + 2/12, "feet"),
  38589. default: true
  38590. },
  38591. ]
  38592. ))
  38593. characterMakers.push(() => makeCharacter(
  38594. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38595. {
  38596. front: {
  38597. height: math.unit(1.7, "m"),
  38598. weight: math.unit(135, "lb"),
  38599. name: "Front",
  38600. image: {
  38601. source: "./media/characters/jade/front.svg",
  38602. extra: 1818/1767,
  38603. bottom: 32/1850
  38604. }
  38605. },
  38606. back: {
  38607. height: math.unit(1.7, "m"),
  38608. weight: math.unit(135, "lb"),
  38609. name: "Back",
  38610. image: {
  38611. source: "./media/characters/jade/back.svg",
  38612. extra: 1869/1809,
  38613. bottom: 35/1904
  38614. }
  38615. },
  38616. hand: {
  38617. height: math.unit(0.24, "m"),
  38618. name: "Hand",
  38619. image: {
  38620. source: "./media/characters/jade/hand.svg"
  38621. }
  38622. },
  38623. foot: {
  38624. height: math.unit(0.263, "m"),
  38625. name: "Foot",
  38626. image: {
  38627. source: "./media/characters/jade/foot.svg"
  38628. }
  38629. },
  38630. dick: {
  38631. height: math.unit(0.47, "m"),
  38632. name: "Dick",
  38633. image: {
  38634. source: "./media/characters/jade/dick.svg"
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Micro",
  38641. height: math.unit(22, "cm")
  38642. },
  38643. {
  38644. name: "Normal",
  38645. height: math.unit(1.7, "m"),
  38646. default: true
  38647. },
  38648. {
  38649. name: "Macro",
  38650. height: math.unit(152, "m")
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(100, "miles"),
  38659. weight: math.unit(20000, "tons"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/cookie/front.svg",
  38663. extra: 1125/1070,
  38664. bottom: 30/1155
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Big",
  38671. height: math.unit(50, "feet")
  38672. },
  38673. {
  38674. name: "Macro",
  38675. height: math.unit(100, "miles"),
  38676. default: true
  38677. },
  38678. {
  38679. name: "Megamacro",
  38680. height: math.unit(90000, "miles")
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38686. {
  38687. front: {
  38688. height: math.unit(6, "feet"),
  38689. weight: math.unit(145, "lb"),
  38690. name: "Front",
  38691. image: {
  38692. source: "./media/characters/farzian/front.svg",
  38693. extra: 1902/1693,
  38694. bottom: 108/2010
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Macro",
  38701. height: math.unit(500, "feet"),
  38702. default: true
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(3 + 6/12, "feet"),
  38711. weight: math.unit(50, "lb"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/kimberly-tilson/front.svg",
  38715. extra: 1400/1322,
  38716. bottom: 36/1436
  38717. }
  38718. },
  38719. back: {
  38720. height: math.unit(3 + 6/12, "feet"),
  38721. weight: math.unit(50, "lb"),
  38722. name: "Back",
  38723. image: {
  38724. source: "./media/characters/kimberly-tilson/back.svg",
  38725. extra: 1370/1307,
  38726. bottom: 20/1390
  38727. }
  38728. },
  38729. },
  38730. [
  38731. {
  38732. name: "Normal",
  38733. height: math.unit(3 + 6/12, "feet"),
  38734. default: true
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(1148, "feet"),
  38743. weight: math.unit(34057, "lb"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/harthos/front.svg",
  38747. extra: 1391/1339,
  38748. bottom: 13/1404
  38749. }
  38750. },
  38751. },
  38752. [
  38753. {
  38754. name: "Macro",
  38755. height: math.unit(1148, "feet"),
  38756. default: true
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(15, "feet"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/hypatia/front.svg",
  38768. extra: 1653/1591,
  38769. bottom: 79/1732
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(15, "feet")
  38777. },
  38778. {
  38779. name: "Small",
  38780. height: math.unit(300, "feet")
  38781. },
  38782. {
  38783. name: "Macro",
  38784. height: math.unit(2500, "feet"),
  38785. default: true
  38786. },
  38787. {
  38788. name: "Mega Macro",
  38789. height: math.unit(1500, "miles")
  38790. },
  38791. {
  38792. name: "Giga Macro",
  38793. height: math.unit(1.5e6, "miles")
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(6, "feet"),
  38802. weight: math.unit(200, "lb"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/wulver/front.svg",
  38806. extra: 1724/1632,
  38807. bottom: 130/1854
  38808. }
  38809. },
  38810. frontNsfw: {
  38811. height: math.unit(6, "feet"),
  38812. weight: math.unit(200, "lb"),
  38813. name: "Front (NSFW)",
  38814. image: {
  38815. source: "./media/characters/wulver/front-nsfw.svg",
  38816. extra: 1724/1632,
  38817. bottom: 130/1854
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Human-Sized",
  38824. height: math.unit(6, "feet")
  38825. },
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(4, "meters"),
  38829. default: true
  38830. },
  38831. {
  38832. name: "Large",
  38833. height: math.unit(6, "m")
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38839. {
  38840. front: {
  38841. height: math.unit(7, "feet"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/maru/front.svg",
  38845. extra: 1595/1570,
  38846. bottom: 0/1595
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Normal",
  38853. height: math.unit(7, "feet"),
  38854. default: true
  38855. },
  38856. {
  38857. name: "Macro",
  38858. height: math.unit(700, "feet")
  38859. },
  38860. {
  38861. name: "Mega Macro",
  38862. height: math.unit(25, "miles")
  38863. },
  38864. ]
  38865. ))
  38866. characterMakers.push(() => makeCharacter(
  38867. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38868. {
  38869. front: {
  38870. height: math.unit(6, "feet"),
  38871. weight: math.unit(170, "lb"),
  38872. name: "Front",
  38873. image: {
  38874. source: "./media/characters/xenon/front.svg",
  38875. extra: 1376/1305,
  38876. bottom: 56/1432
  38877. }
  38878. },
  38879. back: {
  38880. height: math.unit(6, "feet"),
  38881. weight: math.unit(170, "lb"),
  38882. name: "Back",
  38883. image: {
  38884. source: "./media/characters/xenon/back.svg",
  38885. extra: 1328/1259,
  38886. bottom: 95/1423
  38887. }
  38888. },
  38889. maw: {
  38890. height: math.unit(0.52, "feet"),
  38891. name: "Maw",
  38892. image: {
  38893. source: "./media/characters/xenon/maw.svg"
  38894. }
  38895. },
  38896. hand: {
  38897. height: math.unit(0.82, "feet"),
  38898. name: "Hand",
  38899. image: {
  38900. source: "./media/characters/xenon/hand.svg"
  38901. }
  38902. },
  38903. foot: {
  38904. height: math.unit(1.13, "feet"),
  38905. name: "Foot",
  38906. image: {
  38907. source: "./media/characters/xenon/foot.svg"
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "Micro",
  38914. height: math.unit(0.8, "inches")
  38915. },
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(6, "feet")
  38919. },
  38920. {
  38921. name: "Macro",
  38922. height: math.unit(50, "feet"),
  38923. default: true
  38924. },
  38925. {
  38926. name: "Macro+",
  38927. height: math.unit(250, "feet")
  38928. },
  38929. {
  38930. name: "Megamacro",
  38931. height: math.unit(1500, "feet")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(7 + 5/12, "feet"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/zane/front.svg",
  38943. extra: 1260/1203,
  38944. bottom: 94/1354
  38945. }
  38946. },
  38947. back: {
  38948. height: math.unit(5.05, "feet"),
  38949. name: "Back",
  38950. image: {
  38951. source: "./media/characters/zane/back.svg",
  38952. extra: 893/829,
  38953. bottom: 30/923
  38954. }
  38955. },
  38956. werewolf: {
  38957. height: math.unit(11, "feet"),
  38958. name: "Werewolf",
  38959. image: {
  38960. source: "./media/characters/zane/werewolf.svg",
  38961. extra: 1383/1323,
  38962. bottom: 89/1472
  38963. }
  38964. },
  38965. foot: {
  38966. height: math.unit(1.46, "feet"),
  38967. name: "Foot",
  38968. image: {
  38969. source: "./media/characters/zane/foot.svg"
  38970. }
  38971. },
  38972. footFront: {
  38973. height: math.unit(0.784, "feet"),
  38974. name: "Foot (Front)",
  38975. image: {
  38976. source: "./media/characters/zane/foot-front.svg"
  38977. }
  38978. },
  38979. dick: {
  38980. height: math.unit(1.95, "feet"),
  38981. name: "Dick",
  38982. image: {
  38983. source: "./media/characters/zane/dick.svg"
  38984. }
  38985. },
  38986. dickWerewolf: {
  38987. height: math.unit(3.77, "feet"),
  38988. name: "Dick (Werewolf)",
  38989. image: {
  38990. source: "./media/characters/zane/dick.svg"
  38991. }
  38992. },
  38993. },
  38994. [
  38995. {
  38996. name: "Normal",
  38997. height: math.unit(7 + 5/12, "feet"),
  38998. default: true
  38999. },
  39000. ]
  39001. ))
  39002. characterMakers.push(() => makeCharacter(
  39003. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39004. {
  39005. front: {
  39006. height: math.unit(6 + 2/12, "feet"),
  39007. weight: math.unit(284, "lb"),
  39008. name: "Front",
  39009. image: {
  39010. source: "./media/characters/benni-desparque/front.svg",
  39011. extra: 1353/1126,
  39012. bottom: 69/1422
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Civilian",
  39019. height: math.unit(6 + 2/12, "feet")
  39020. },
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(98, "feet"),
  39024. default: true
  39025. },
  39026. {
  39027. name: "Kaiju Fighter",
  39028. height: math.unit(268, "feet")
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(5, "feet"),
  39037. weight: math.unit(105, "lb"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/maxine/front.svg",
  39041. extra: 1386/1250,
  39042. bottom: 71/1457
  39043. }
  39044. },
  39045. },
  39046. [
  39047. {
  39048. name: "Normal",
  39049. height: math.unit(5, "feet"),
  39050. default: true
  39051. },
  39052. ]
  39053. ))
  39054. characterMakers.push(() => makeCharacter(
  39055. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39056. {
  39057. front: {
  39058. height: math.unit(11 + 7/12, "feet"),
  39059. weight: math.unit(9576, "lb"),
  39060. name: "Front",
  39061. image: {
  39062. source: "./media/characters/scaly/front.svg",
  39063. extra: 888/867,
  39064. bottom: 36/924
  39065. }
  39066. },
  39067. },
  39068. [
  39069. {
  39070. name: "Normal",
  39071. height: math.unit(11 + 7/12, "feet"),
  39072. default: true
  39073. },
  39074. ]
  39075. ))
  39076. characterMakers.push(() => makeCharacter(
  39077. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39078. {
  39079. front: {
  39080. height: math.unit(9, "inches"),
  39081. name: "Front",
  39082. image: {
  39083. source: "./media/characters/saelria/front.svg",
  39084. extra: 662/621,
  39085. bottom: 12/674
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Tiny",
  39092. height: math.unit(9, "inches"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(80, "meters"),
  39102. weight: math.unit(7000, "tonnes"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/tef/front.svg",
  39106. extra: 2036/1991,
  39107. bottom: 54/2090
  39108. }
  39109. },
  39110. back: {
  39111. height: math.unit(80, "meters"),
  39112. weight: math.unit(7000, "tonnes"),
  39113. name: "Back",
  39114. image: {
  39115. source: "./media/characters/tef/back.svg",
  39116. extra: 2036/1991,
  39117. bottom: 54/2090
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Macro",
  39124. height: math.unit(80, "meters"),
  39125. default: true
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(13, "feet"),
  39134. weight: math.unit(6, "tons"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/rover/front.svg",
  39138. extra: 1233/1156,
  39139. bottom: 50/1283
  39140. }
  39141. },
  39142. back: {
  39143. height: math.unit(13, "feet"),
  39144. weight: math.unit(6, "tons"),
  39145. name: "Back",
  39146. image: {
  39147. source: "./media/characters/rover/back.svg",
  39148. extra: 1327/1258,
  39149. bottom: 39/1366
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(13, "feet"),
  39157. default: true
  39158. },
  39159. {
  39160. name: "Macro",
  39161. height: math.unit(1300, "feet")
  39162. },
  39163. {
  39164. name: "Megamacro",
  39165. height: math.unit(1300, "miles")
  39166. },
  39167. {
  39168. name: "Gigamacro",
  39169. height: math.unit(1300000, "miles")
  39170. },
  39171. ]
  39172. ))
  39173. characterMakers.push(() => makeCharacter(
  39174. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39175. {
  39176. front: {
  39177. height: math.unit(6, "feet"),
  39178. weight: math.unit(150, "lb"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/ariz/front.svg",
  39182. extra: 1401/1346,
  39183. bottom: 5/1406
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(10, "feet"),
  39191. default: true
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39197. {
  39198. front: {
  39199. height: math.unit(6, "feet"),
  39200. weight: math.unit(140, "lb"),
  39201. name: "Front",
  39202. image: {
  39203. source: "./media/characters/sigrun/front.svg",
  39204. extra: 1418/1359,
  39205. bottom: 27/1445
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "Macro",
  39212. height: math.unit(35, "feet"),
  39213. default: true
  39214. },
  39215. ]
  39216. ))
  39217. characterMakers.push(() => makeCharacter(
  39218. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39219. {
  39220. front: {
  39221. height: math.unit(6, "feet"),
  39222. weight: math.unit(150, "lb"),
  39223. name: "Front",
  39224. image: {
  39225. source: "./media/characters/numin/front.svg",
  39226. extra: 1433/1388,
  39227. bottom: 12/1445
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Macro",
  39234. height: math.unit(21.5, "km"),
  39235. default: true
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(6, "feet"),
  39244. weight: math.unit(463, "lb"),
  39245. name: "Front",
  39246. image: {
  39247. source: "./media/characters/melwa/front.svg",
  39248. extra: 1307/1248,
  39249. bottom: 93/1400
  39250. }
  39251. },
  39252. },
  39253. [
  39254. {
  39255. name: "Macro",
  39256. height: math.unit(50, "meters"),
  39257. default: true
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39263. {
  39264. front: {
  39265. height: math.unit(325, "feet"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/zorkaiju/front.svg",
  39269. extra: 1955/1814,
  39270. bottom: 40/1995
  39271. }
  39272. },
  39273. frontExtended: {
  39274. height: math.unit(325, "feet"),
  39275. name: "Front (Extended)",
  39276. image: {
  39277. source: "./media/characters/zorkaiju/front-extended.svg",
  39278. extra: 1955/1814,
  39279. bottom: 40/1995
  39280. }
  39281. },
  39282. side: {
  39283. height: math.unit(325, "feet"),
  39284. name: "Side",
  39285. image: {
  39286. source: "./media/characters/zorkaiju/side.svg",
  39287. extra: 1495/1396,
  39288. bottom: 17/1512
  39289. }
  39290. },
  39291. sideExtended: {
  39292. height: math.unit(325, "feet"),
  39293. name: "Side (Extended)",
  39294. image: {
  39295. source: "./media/characters/zorkaiju/side-extended.svg",
  39296. extra: 1495/1396,
  39297. bottom: 17/1512
  39298. }
  39299. },
  39300. back: {
  39301. height: math.unit(325, "feet"),
  39302. name: "Back",
  39303. image: {
  39304. source: "./media/characters/zorkaiju/back.svg",
  39305. extra: 1959/1821,
  39306. bottom: 31/1990
  39307. }
  39308. },
  39309. backExtended: {
  39310. height: math.unit(325, "feet"),
  39311. name: "Back (Extended)",
  39312. image: {
  39313. source: "./media/characters/zorkaiju/back-extended.svg",
  39314. extra: 1959/1821,
  39315. bottom: 31/1990
  39316. }
  39317. },
  39318. hand: {
  39319. height: math.unit(58.4, "feet"),
  39320. name: "Hand",
  39321. image: {
  39322. source: "./media/characters/zorkaiju/hand.svg"
  39323. }
  39324. },
  39325. handExtended: {
  39326. height: math.unit(61.4, "feet"),
  39327. name: "Hand (Extended)",
  39328. image: {
  39329. source: "./media/characters/zorkaiju/hand-extended.svg"
  39330. }
  39331. },
  39332. foot: {
  39333. height: math.unit(95, "feet"),
  39334. name: "Foot",
  39335. image: {
  39336. source: "./media/characters/zorkaiju/foot.svg"
  39337. }
  39338. },
  39339. leftArm: {
  39340. height: math.unit(59, "feet"),
  39341. name: "Left Arm",
  39342. image: {
  39343. source: "./media/characters/zorkaiju/left-arm.svg"
  39344. }
  39345. },
  39346. rightArm: {
  39347. height: math.unit(59, "feet"),
  39348. name: "Right Arm",
  39349. image: {
  39350. source: "./media/characters/zorkaiju/right-arm.svg"
  39351. }
  39352. },
  39353. tail: {
  39354. height: math.unit(104, "feet"),
  39355. name: "Tail",
  39356. image: {
  39357. source: "./media/characters/zorkaiju/tail.svg"
  39358. }
  39359. },
  39360. tailExtended: {
  39361. height: math.unit(104, "feet"),
  39362. name: "Tail (Extended)",
  39363. image: {
  39364. source: "./media/characters/zorkaiju/tail-extended.svg"
  39365. }
  39366. },
  39367. tailBottom: {
  39368. height: math.unit(104, "feet"),
  39369. name: "Tail Bottom",
  39370. image: {
  39371. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39372. }
  39373. },
  39374. crystal: {
  39375. height: math.unit(27.54, "feet"),
  39376. name: "Crystal",
  39377. image: {
  39378. source: "./media/characters/zorkaiju/crystal.svg"
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Kaiju",
  39385. height: math.unit(325, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(6 + 1/12, "feet"),
  39395. weight: math.unit(115, "lb"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/bailey-belfry/front.svg",
  39399. extra: 1240/1121,
  39400. bottom: 101/1341
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(6 + 1/12, "feet"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39414. {
  39415. side: {
  39416. height: math.unit(4, "meters"),
  39417. weight: math.unit(250, "kg"),
  39418. name: "Side",
  39419. image: {
  39420. source: "./media/characters/blacky/side.svg",
  39421. extra: 1027/919,
  39422. bottom: 43/1070
  39423. }
  39424. },
  39425. maw: {
  39426. height: math.unit(1, "meters"),
  39427. name: "Maw",
  39428. image: {
  39429. source: "./media/characters/blacky/maw.svg"
  39430. }
  39431. },
  39432. paw: {
  39433. height: math.unit(1, "meters"),
  39434. name: "Paw",
  39435. image: {
  39436. source: "./media/characters/blacky/paw.svg"
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Normal",
  39443. height: math.unit(4, "meters"),
  39444. default: true
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39450. {
  39451. front: {
  39452. height: math.unit(170, "cm"),
  39453. weight: math.unit(66, "kg"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/thux-ei/front.svg",
  39457. extra: 1109/1011,
  39458. bottom: 8/1117
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(170, "cm"),
  39466. default: true
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(5, "feet"),
  39475. weight: math.unit(120, "lb"),
  39476. name: "Front",
  39477. image: {
  39478. source: "./media/characters/roxanne-voltaire/front.svg",
  39479. extra: 1901/1779,
  39480. bottom: 53/1954
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Normal",
  39487. height: math.unit(5, "feet"),
  39488. default: true
  39489. },
  39490. {
  39491. name: "Giant",
  39492. height: math.unit(50, "feet")
  39493. },
  39494. {
  39495. name: "Titan",
  39496. height: math.unit(500, "feet")
  39497. },
  39498. {
  39499. name: "Macro",
  39500. height: math.unit(5000, "feet")
  39501. },
  39502. {
  39503. name: "Megamacro",
  39504. height: math.unit(50000, "feet")
  39505. },
  39506. {
  39507. name: "Gigamacro",
  39508. height: math.unit(500000, "feet")
  39509. },
  39510. {
  39511. name: "Teramacro",
  39512. height: math.unit(5e6, "feet")
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(6 + 2/12, "feet"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/squeaks/front.svg",
  39524. extra: 1823/1768,
  39525. bottom: 138/1961
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Micro",
  39532. height: math.unit(0.5, "inches")
  39533. },
  39534. {
  39535. name: "Normal",
  39536. height: math.unit(6 + 2/12, "feet"),
  39537. default: true
  39538. },
  39539. {
  39540. name: "Macro",
  39541. height: math.unit(600, "feet")
  39542. },
  39543. ]
  39544. ))
  39545. characterMakers.push(() => makeCharacter(
  39546. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39547. {
  39548. front: {
  39549. height: math.unit(1.72, "meters"),
  39550. name: "Front",
  39551. image: {
  39552. source: "./media/characters/archinger/front.svg",
  39553. extra: 1861/1675,
  39554. bottom: 125/1986
  39555. }
  39556. },
  39557. back: {
  39558. height: math.unit(1.72, "meters"),
  39559. name: "Back",
  39560. image: {
  39561. source: "./media/characters/archinger/back.svg",
  39562. extra: 1844/1701,
  39563. bottom: 104/1948
  39564. }
  39565. },
  39566. cock: {
  39567. height: math.unit(0.59, "feet"),
  39568. name: "Cock",
  39569. image: {
  39570. source: "./media/characters/archinger/cock.svg"
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(1.72, "meters"),
  39578. default: true
  39579. },
  39580. {
  39581. name: "Macro",
  39582. height: math.unit(84, "meters")
  39583. },
  39584. {
  39585. name: "Macro+",
  39586. height: math.unit(112, "meters")
  39587. },
  39588. {
  39589. name: "Macro++",
  39590. height: math.unit(960, "meters")
  39591. },
  39592. {
  39593. name: "Macro+++",
  39594. height: math.unit(4, "km")
  39595. },
  39596. {
  39597. name: "Macro++++",
  39598. height: math.unit(48, "km")
  39599. },
  39600. {
  39601. name: "Macro+++++",
  39602. height: math.unit(4500, "km")
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(5 + 5/12, "feet"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/alsnapz/front.svg",
  39614. extra: 1157/1065,
  39615. bottom: 42/1199
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Normal",
  39622. height: math.unit(5 + 5/12, "feet"),
  39623. default: true
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39629. {
  39630. side: {
  39631. height: math.unit(3.2, "earths"),
  39632. name: "Side",
  39633. image: {
  39634. source: "./media/characters/mag/side.svg",
  39635. extra: 1331/1008,
  39636. bottom: 52/1383
  39637. }
  39638. },
  39639. wing: {
  39640. height: math.unit(1.94, "earths"),
  39641. name: "Wing",
  39642. image: {
  39643. source: "./media/characters/mag/wing.svg"
  39644. }
  39645. },
  39646. dick: {
  39647. height: math.unit(1.8, "earths"),
  39648. name: "Dick",
  39649. image: {
  39650. source: "./media/characters/mag/dick.svg"
  39651. }
  39652. },
  39653. ass: {
  39654. height: math.unit(1.33, "earths"),
  39655. name: "Ass",
  39656. image: {
  39657. source: "./media/characters/mag/ass.svg"
  39658. }
  39659. },
  39660. head: {
  39661. height: math.unit(1.1, "earths"),
  39662. name: "Head",
  39663. image: {
  39664. source: "./media/characters/mag/head.svg"
  39665. }
  39666. },
  39667. maw: {
  39668. height: math.unit(1.62, "earths"),
  39669. name: "Maw",
  39670. image: {
  39671. source: "./media/characters/mag/maw.svg"
  39672. }
  39673. },
  39674. },
  39675. [
  39676. {
  39677. name: "Small",
  39678. height: math.unit(162, "feet")
  39679. },
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(3.2, "earths"),
  39683. default: true
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(512, "feet"),
  39692. weight: math.unit(63509, "tonnes"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/vorrel-harroc/front.svg",
  39696. extra: 1075/1063,
  39697. bottom: 62/1137
  39698. }
  39699. },
  39700. },
  39701. [
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(10, "feet")
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(512, "feet"),
  39709. default: true
  39710. },
  39711. {
  39712. name: "Megamacro",
  39713. height: math.unit(256, "miles")
  39714. },
  39715. {
  39716. name: "Gigamacro",
  39717. height: math.unit(4096, "miles")
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39723. {
  39724. side: {
  39725. height: math.unit(50, "feet"),
  39726. name: "Side",
  39727. image: {
  39728. source: "./media/characters/froimar/side.svg",
  39729. extra: 855/638,
  39730. bottom: 99/954
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Macro",
  39737. height: math.unit(50, "feet"),
  39738. default: true
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39744. {
  39745. front: {
  39746. height: math.unit(210, "miles"),
  39747. name: "Front",
  39748. image: {
  39749. source: "./media/characters/timothy/front.svg",
  39750. extra: 1007/943,
  39751. bottom: 62/1069
  39752. }
  39753. },
  39754. frontSkirt: {
  39755. height: math.unit(210, "miles"),
  39756. name: "Front (Skirt)",
  39757. image: {
  39758. source: "./media/characters/timothy/front-skirt.svg",
  39759. extra: 1007/943,
  39760. bottom: 62/1069
  39761. }
  39762. },
  39763. frontCoat: {
  39764. height: math.unit(210, "miles"),
  39765. name: "Front (Coat)",
  39766. image: {
  39767. source: "./media/characters/timothy/front-coat.svg",
  39768. extra: 1007/943,
  39769. bottom: 62/1069
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Macro",
  39776. height: math.unit(210, "miles"),
  39777. default: true
  39778. },
  39779. {
  39780. name: "Megamacro",
  39781. height: math.unit(210000, "miles")
  39782. },
  39783. ]
  39784. ))
  39785. characterMakers.push(() => makeCharacter(
  39786. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39787. {
  39788. front: {
  39789. height: math.unit(188, "feet"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/pyotr/front.svg",
  39793. extra: 1912/1826,
  39794. bottom: 18/1930
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Macro",
  39801. height: math.unit(188, "feet"),
  39802. default: true
  39803. },
  39804. {
  39805. name: "Megamacro",
  39806. height: math.unit(8, "miles")
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39812. {
  39813. side: {
  39814. height: math.unit(10, "feet"),
  39815. weight: math.unit(4500, "lb"),
  39816. name: "Side",
  39817. image: {
  39818. source: "./media/characters/ackart/side.svg",
  39819. extra: 1776/1668,
  39820. bottom: 116/1892
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(10, "feet"),
  39828. default: true
  39829. },
  39830. ]
  39831. ))
  39832. characterMakers.push(() => makeCharacter(
  39833. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39834. {
  39835. side: {
  39836. height: math.unit(21, "feet"),
  39837. name: "Side",
  39838. image: {
  39839. source: "./media/characters/nolow/side.svg",
  39840. extra: 1484/1434,
  39841. bottom: 85/1569
  39842. }
  39843. },
  39844. sideErect: {
  39845. height: math.unit(21, "feet"),
  39846. name: "Side-erect",
  39847. image: {
  39848. source: "./media/characters/nolow/side-erect.svg",
  39849. extra: 1484/1434,
  39850. bottom: 85/1569
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Regular",
  39857. height: math.unit(12, "feet")
  39858. },
  39859. {
  39860. name: "Big Chee",
  39861. height: math.unit(21, "feet"),
  39862. default: true
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(7, "feet"),
  39871. weight: math.unit(250, "lb"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/nines/front.svg",
  39875. extra: 1741/1607,
  39876. bottom: 41/1782
  39877. }
  39878. },
  39879. side: {
  39880. height: math.unit(7, "feet"),
  39881. weight: math.unit(250, "lb"),
  39882. name: "Side",
  39883. image: {
  39884. source: "./media/characters/nines/side.svg",
  39885. extra: 1854/1735,
  39886. bottom: 93/1947
  39887. }
  39888. },
  39889. back: {
  39890. height: math.unit(7, "feet"),
  39891. weight: math.unit(250, "lb"),
  39892. name: "Back",
  39893. image: {
  39894. source: "./media/characters/nines/back.svg",
  39895. extra: 1748/1615,
  39896. bottom: 20/1768
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Megamacro",
  39903. height: math.unit(99, "km"),
  39904. default: true
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(5 + 10/12, "feet"),
  39913. weight: math.unit(210, "lb"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/zenith/front.svg",
  39917. extra: 1531/1452,
  39918. bottom: 198/1729
  39919. }
  39920. },
  39921. back: {
  39922. height: math.unit(5 + 10/12, "feet"),
  39923. weight: math.unit(210, "lb"),
  39924. name: "Back",
  39925. image: {
  39926. source: "./media/characters/zenith/back.svg",
  39927. extra: 1571/1487,
  39928. bottom: 75/1646
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(5 + 10/12, "feet"),
  39936. default: true
  39937. }
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(4, "feet"),
  39945. weight: math.unit(60, "lb"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/jasper/front.svg",
  39949. extra: 1450/1379,
  39950. bottom: 19/1469
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(4, "feet"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(6 + 5/12, "feet"),
  39967. weight: math.unit(290, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/tiberius-thyben/front.svg",
  39971. extra: 757/739,
  39972. bottom: 39/796
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Micro",
  39979. height: math.unit(1.5, "inches")
  39980. },
  39981. {
  39982. name: "Normal",
  39983. height: math.unit(6 + 5/12, "feet"),
  39984. default: true
  39985. },
  39986. {
  39987. name: "Macro",
  39988. height: math.unit(300, "feet")
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  39994. {
  39995. front: {
  39996. height: math.unit(5 + 6/12, "feet"),
  39997. weight: math.unit(60, "kg"),
  39998. name: "Front",
  39999. image: {
  40000. source: "./media/characters/sabre/front.svg",
  40001. extra: 738/671,
  40002. bottom: 27/765
  40003. }
  40004. },
  40005. },
  40006. [
  40007. {
  40008. name: "Teeny",
  40009. height: math.unit(2, "inches")
  40010. },
  40011. {
  40012. name: "Smol",
  40013. height: math.unit(8, "inches")
  40014. },
  40015. {
  40016. name: "Normal",
  40017. height: math.unit(5 + 6/12, "feet"),
  40018. default: true
  40019. },
  40020. {
  40021. name: "Mini-Macro",
  40022. height: math.unit(15, "feet")
  40023. },
  40024. {
  40025. name: "Macro",
  40026. height: math.unit(50, "feet")
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(6 + 4/12, "feet"),
  40035. weight: math.unit(170, "lb"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/charlie/front.svg",
  40039. extra: 1348/1228,
  40040. bottom: 15/1363
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Macro",
  40047. height: math.unit(1700, "meters"),
  40048. default: true
  40049. },
  40050. {
  40051. name: "MegaMacro",
  40052. height: math.unit(20400, "meters")
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40058. {
  40059. front: {
  40060. height: math.unit(6 + 3/12, "feet"),
  40061. weight: math.unit(185, "lb"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/susan-grant/front.svg",
  40065. extra: 1351/1327,
  40066. bottom: 26/1377
  40067. }
  40068. },
  40069. },
  40070. [
  40071. {
  40072. name: "Normal",
  40073. height: math.unit(6 + 3/12, "feet"),
  40074. default: true
  40075. },
  40076. {
  40077. name: "Macro",
  40078. height: math.unit(225, "feet")
  40079. },
  40080. {
  40081. name: "Macro+",
  40082. height: math.unit(900, "feet")
  40083. },
  40084. {
  40085. name: "MegaMacro",
  40086. height: math.unit(14400, "feet")
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(5 + 4/12, "feet"),
  40095. weight: math.unit(110, "lb"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/axel-isanov/front.svg",
  40099. extra: 1096/1065,
  40100. bottom: 13/1109
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Normal",
  40107. height: math.unit(5 + 4/12, "feet"),
  40108. default: true
  40109. },
  40110. ]
  40111. ))
  40112. characterMakers.push(() => makeCharacter(
  40113. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40114. {
  40115. front: {
  40116. height: math.unit(9, "feet"),
  40117. weight: math.unit(467, "lb"),
  40118. name: "Front",
  40119. image: {
  40120. source: "./media/characters/necahual/front.svg",
  40121. extra: 920/873,
  40122. bottom: 26/946
  40123. }
  40124. },
  40125. back: {
  40126. height: math.unit(9, "feet"),
  40127. weight: math.unit(467, "lb"),
  40128. name: "Back",
  40129. image: {
  40130. source: "./media/characters/necahual/back.svg",
  40131. extra: 930/884,
  40132. bottom: 16/946
  40133. }
  40134. },
  40135. frontUnderwear: {
  40136. height: math.unit(9, "feet"),
  40137. weight: math.unit(467, "lb"),
  40138. name: "Front (Underwear)",
  40139. image: {
  40140. source: "./media/characters/necahual/front-underwear.svg",
  40141. extra: 920/873,
  40142. bottom: 26/946
  40143. }
  40144. },
  40145. frontDressed: {
  40146. height: math.unit(9, "feet"),
  40147. weight: math.unit(467, "lb"),
  40148. name: "Front (Dressed)",
  40149. image: {
  40150. source: "./media/characters/necahual/front-dressed.svg",
  40151. extra: 920/873,
  40152. bottom: 26/946
  40153. }
  40154. },
  40155. },
  40156. [
  40157. {
  40158. name: "Comprsesed",
  40159. height: math.unit(9, "feet")
  40160. },
  40161. {
  40162. name: "Natural",
  40163. height: math.unit(15, "feet"),
  40164. default: true
  40165. },
  40166. {
  40167. name: "Boosted",
  40168. height: math.unit(50, "feet")
  40169. },
  40170. {
  40171. name: "Boosted+",
  40172. height: math.unit(150, "feet")
  40173. },
  40174. {
  40175. name: "Max",
  40176. height: math.unit(500, "feet")
  40177. },
  40178. ]
  40179. ))
  40180. characterMakers.push(() => makeCharacter(
  40181. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40182. {
  40183. front: {
  40184. height: math.unit(22 + 1/12, "feet"),
  40185. weight: math.unit(3200, "lb"),
  40186. name: "Front",
  40187. image: {
  40188. source: "./media/characters/theo-acacia/front.svg",
  40189. extra: 1796/1741,
  40190. bottom: 83/1879
  40191. }
  40192. },
  40193. frontUnderwear: {
  40194. height: math.unit(22 + 1/12, "feet"),
  40195. weight: math.unit(3200, "lb"),
  40196. name: "Front (Underwear)",
  40197. image: {
  40198. source: "./media/characters/theo-acacia/front-underwear.svg",
  40199. extra: 1796/1741,
  40200. bottom: 83/1879
  40201. }
  40202. },
  40203. frontNude: {
  40204. height: math.unit(22 + 1/12, "feet"),
  40205. weight: math.unit(3200, "lb"),
  40206. name: "Front (Nude)",
  40207. image: {
  40208. source: "./media/characters/theo-acacia/front-nude.svg",
  40209. extra: 1796/1741,
  40210. bottom: 83/1879
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(22 + 1/12, "feet"),
  40218. default: true
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40224. {
  40225. front: {
  40226. height: math.unit(20, "feet"),
  40227. name: "Front",
  40228. image: {
  40229. source: "./media/characters/astra/front.svg",
  40230. extra: 1850/1714,
  40231. bottom: 106/1956
  40232. }
  40233. },
  40234. frontUndressed: {
  40235. height: math.unit(20, "feet"),
  40236. name: "Front (Undressed)",
  40237. image: {
  40238. source: "./media/characters/astra/front-undressed.svg",
  40239. extra: 1926/1749,
  40240. bottom: 0/1926
  40241. }
  40242. },
  40243. hand: {
  40244. height: math.unit(1.53, "feet"),
  40245. name: "Hand",
  40246. image: {
  40247. source: "./media/characters/astra/hand.svg"
  40248. }
  40249. },
  40250. paw: {
  40251. height: math.unit(1.53, "feet"),
  40252. name: "Paw",
  40253. image: {
  40254. source: "./media/characters/astra/paw.svg"
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Smallest",
  40261. height: math.unit(20, "feet")
  40262. },
  40263. {
  40264. name: "Normal",
  40265. height: math.unit(1e9, "miles"),
  40266. default: true
  40267. },
  40268. {
  40269. name: "Larger",
  40270. height: math.unit(5, "multiverses")
  40271. },
  40272. {
  40273. name: "Largest",
  40274. height: math.unit(1e9, "multiverses")
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(8, "feet"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/breanna/front.svg",
  40286. extra: 1912/1632,
  40287. bottom: 33/1945
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Smallest",
  40294. height: math.unit(8, "feet")
  40295. },
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(1, "mile"),
  40299. default: true
  40300. },
  40301. {
  40302. name: "Maximum",
  40303. height: math.unit(1500000000000, "lightyears")
  40304. },
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(5 + 11/12, "feet"),
  40312. weight: math.unit(155, "lb"),
  40313. name: "Front",
  40314. image: {
  40315. source: "./media/characters/cai/front.svg",
  40316. extra: 1823/1702,
  40317. bottom: 32/1855
  40318. }
  40319. },
  40320. back: {
  40321. height: math.unit(5 + 11/12, "feet"),
  40322. weight: math.unit(155, "lb"),
  40323. name: "Back",
  40324. image: {
  40325. source: "./media/characters/cai/back.svg",
  40326. extra: 1809/1708,
  40327. bottom: 31/1840
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(5 + 11/12, "feet"),
  40335. default: true
  40336. },
  40337. {
  40338. name: "Big",
  40339. height: math.unit(15, "feet")
  40340. },
  40341. {
  40342. name: "Macro",
  40343. height: math.unit(200, "feet")
  40344. },
  40345. ]
  40346. ))
  40347. characterMakers.push(() => makeCharacter(
  40348. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40349. {
  40350. front: {
  40351. height: math.unit(5 + 6/12, "feet"),
  40352. weight: math.unit(160, "lb"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40356. extra: 1227/1174,
  40357. bottom: 37/1264
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Macro",
  40364. height: math.unit(444, "meters"),
  40365. default: true
  40366. },
  40367. ]
  40368. ))
  40369. characterMakers.push(() => makeCharacter(
  40370. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40371. {
  40372. front: {
  40373. height: math.unit(18 + 7/12, "feet"),
  40374. name: "Front",
  40375. image: {
  40376. source: "./media/characters/rex/front.svg",
  40377. extra: 1941/1807,
  40378. bottom: 66/2007
  40379. }
  40380. },
  40381. back: {
  40382. height: math.unit(18 + 7/12, "feet"),
  40383. name: "Back",
  40384. image: {
  40385. source: "./media/characters/rex/back.svg",
  40386. extra: 1937/1822,
  40387. bottom: 42/1979
  40388. }
  40389. },
  40390. boot: {
  40391. height: math.unit(3.45, "feet"),
  40392. name: "Boot",
  40393. image: {
  40394. source: "./media/characters/rex/boot.svg"
  40395. }
  40396. },
  40397. paw: {
  40398. height: math.unit(4.17, "feet"),
  40399. name: "Paw",
  40400. image: {
  40401. source: "./media/characters/rex/paw.svg"
  40402. }
  40403. },
  40404. head: {
  40405. height: math.unit(6.728, "feet"),
  40406. name: "Head",
  40407. image: {
  40408. source: "./media/characters/rex/head.svg"
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Nano",
  40415. height: math.unit(18 + 7/12, "feet")
  40416. },
  40417. {
  40418. name: "Micro",
  40419. height: math.unit(1.5, "megameters")
  40420. },
  40421. {
  40422. name: "Normal",
  40423. height: math.unit(440, "megameters"),
  40424. default: true
  40425. },
  40426. {
  40427. name: "Macro",
  40428. height: math.unit(2.5, "gigameters")
  40429. },
  40430. {
  40431. name: "Gigamacro",
  40432. height: math.unit(2, "galaxies")
  40433. },
  40434. ]
  40435. ))
  40436. characterMakers.push(() => makeCharacter(
  40437. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40438. {
  40439. side: {
  40440. height: math.unit(32, "feet"),
  40441. weight: math.unit(250000, "lb"),
  40442. name: "Side",
  40443. image: {
  40444. source: "./media/characters/silverwing/side.svg",
  40445. extra: 1100/1019,
  40446. bottom: 204/1304
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Normal",
  40453. height: math.unit(32, "feet"),
  40454. default: true
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(6 + 6/12, "feet"),
  40463. weight: math.unit(350, "lb"),
  40464. name: "Front",
  40465. image: {
  40466. source: "./media/characters/tristan-hawthorne/front.svg",
  40467. extra: 1159/1124,
  40468. bottom: 37/1196
  40469. }
  40470. },
  40471. },
  40472. [
  40473. {
  40474. name: "Normal",
  40475. height: math.unit(6 + 6/12, "feet"),
  40476. default: true
  40477. },
  40478. ]
  40479. ))
  40480. //characters
  40481. function makeCharacters() {
  40482. const results = [];
  40483. characterMakers.forEach(character => {
  40484. results.push(character());
  40485. });
  40486. return results;
  40487. }