less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

42648 řádky
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", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. }
  1735. //species
  1736. function getSpeciesInfo(speciesList) {
  1737. let result = new Set();
  1738. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1739. result.add(entry)
  1740. });
  1741. return Array.from(result);
  1742. };
  1743. function getSpeciesInfoHelper(species) {
  1744. if (!speciesData[species]) {
  1745. console.warn(species + " doesn't exist");
  1746. return [];
  1747. }
  1748. if (speciesData[species].parents) {
  1749. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1750. } else {
  1751. return [species];
  1752. }
  1753. }
  1754. characterMakers.push(() => makeCharacter(
  1755. {
  1756. name: "Fen",
  1757. species: ["crux"],
  1758. description: {
  1759. title: "Bio",
  1760. text: "Very furry. Sheds on everything."
  1761. },
  1762. tags: [
  1763. "anthro",
  1764. "goo"
  1765. ]
  1766. },
  1767. {
  1768. back: {
  1769. height: math.unit(2.2428, "meter"),
  1770. weight: math.unit(124.738, "kg"),
  1771. name: "Back",
  1772. image: {
  1773. source: "./media/characters/fen/back.svg",
  1774. },
  1775. info: {
  1776. description: {
  1777. mode: "append",
  1778. text: "\n\nHe is not currently looking at you."
  1779. }
  1780. }
  1781. },
  1782. full: {
  1783. height: math.unit(1.34, "meter"),
  1784. weight: math.unit(225, "kg"),
  1785. name: "Full",
  1786. image: {
  1787. source: "./media/characters/fen/full.svg"
  1788. },
  1789. info: {
  1790. description: {
  1791. mode: "append",
  1792. text: "\n\nMunch."
  1793. }
  1794. }
  1795. },
  1796. kneeling: {
  1797. height: math.unit(5.4, "feet"),
  1798. weight: math.unit(124.738, "kg"),
  1799. name: "Kneeling",
  1800. image: {
  1801. source: "./media/characters/fen/kneeling.svg",
  1802. extra: 563 / 507
  1803. }
  1804. },
  1805. goo: {
  1806. height: math.unit(2.8, "feet"),
  1807. weight: math.unit(125, "kg"),
  1808. capacity: math.unit(1, "people"),
  1809. name: "Goo",
  1810. image: {
  1811. source: "./media/characters/fen/goo.svg",
  1812. bottom: 116 / 613
  1813. }
  1814. },
  1815. lounging: {
  1816. height: math.unit(6.5, "feet"),
  1817. weight: math.unit(125, "kg"),
  1818. name: "Lounging",
  1819. image: {
  1820. source: "./media/characters/fen/lounging.svg"
  1821. }
  1822. },
  1823. },
  1824. [
  1825. {
  1826. name: "Normal",
  1827. height: math.unit(2.2428, "meter")
  1828. },
  1829. {
  1830. name: "Big",
  1831. height: math.unit(12, "feet")
  1832. },
  1833. {
  1834. name: "Minimacro",
  1835. height: math.unit(40, "feet"),
  1836. default: true,
  1837. info: {
  1838. description: {
  1839. mode: "append",
  1840. text: "\n\nTOO DAMN BIG"
  1841. }
  1842. }
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(100, "feet"),
  1847. info: {
  1848. description: {
  1849. mode: "append",
  1850. text: "\n\nTOO DAMN BIG"
  1851. }
  1852. }
  1853. },
  1854. {
  1855. name: "Macro+",
  1856. height: math.unit(300, "feet")
  1857. },
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(2, "miles")
  1861. }
  1862. ]
  1863. ))
  1864. characterMakers.push(() => makeCharacter(
  1865. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1866. {
  1867. front: {
  1868. height: math.unit(183, "cm"),
  1869. weight: math.unit(80, "kg"),
  1870. name: "Front",
  1871. image: {
  1872. source: "./media/characters/sofia-fluttertail/front.svg",
  1873. bottom: 0.01,
  1874. extra: 2154 / 2081
  1875. }
  1876. },
  1877. frontAlt: {
  1878. height: math.unit(183, "cm"),
  1879. weight: math.unit(80, "kg"),
  1880. name: "Front (alt)",
  1881. image: {
  1882. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1883. }
  1884. },
  1885. back: {
  1886. height: math.unit(183, "cm"),
  1887. weight: math.unit(80, "kg"),
  1888. name: "Back",
  1889. image: {
  1890. source: "./media/characters/sofia-fluttertail/back.svg"
  1891. }
  1892. },
  1893. kneeling: {
  1894. height: math.unit(125, "cm"),
  1895. weight: math.unit(80, "kg"),
  1896. name: "Kneeling",
  1897. image: {
  1898. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1899. extra: 1033 / 977,
  1900. bottom: 23.7 / 1057
  1901. }
  1902. },
  1903. maw: {
  1904. height: math.unit(183 / 5, "cm"),
  1905. name: "Maw",
  1906. image: {
  1907. source: "./media/characters/sofia-fluttertail/maw.svg"
  1908. }
  1909. },
  1910. mawcloseup: {
  1911. height: math.unit(183 / 5 * 0.41, "cm"),
  1912. name: "Maw (Closeup)",
  1913. image: {
  1914. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1915. }
  1916. },
  1917. paws: {
  1918. height: math.unit(1.17, "feet"),
  1919. name: "Paws",
  1920. image: {
  1921. source: "./media/characters/sofia-fluttertail/paws.svg",
  1922. extra: 851 / 851,
  1923. bottom: 17 / 868
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(1.83, "meter")
  1931. },
  1932. {
  1933. name: "Size Thief",
  1934. height: math.unit(18, "feet")
  1935. },
  1936. {
  1937. name: "50 Foot Collie",
  1938. height: math.unit(50, "feet")
  1939. },
  1940. {
  1941. name: "Macro",
  1942. height: math.unit(96, "feet"),
  1943. default: true
  1944. },
  1945. {
  1946. name: "Megamerger",
  1947. height: math.unit(650, "feet")
  1948. },
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(100, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/march/front.svg",
  1960. extra: 1992/1851,
  1961. bottom: 39/2031
  1962. }
  1963. },
  1964. foot: {
  1965. height: math.unit(0.9, "feet"),
  1966. name: "Foot",
  1967. image: {
  1968. source: "./media/characters/march/foot.svg"
  1969. }
  1970. },
  1971. },
  1972. [
  1973. {
  1974. name: "Normal",
  1975. height: math.unit(7.9, "feet")
  1976. },
  1977. {
  1978. name: "Macro",
  1979. height: math.unit(220, "meters")
  1980. },
  1981. {
  1982. name: "Megamacro",
  1983. height: math.unit(2.98, "km"),
  1984. default: true
  1985. },
  1986. {
  1987. name: "Gigamacro",
  1988. height: math.unit(15963, "km")
  1989. },
  1990. {
  1991. name: "Teramacro",
  1992. height: math.unit(2980000000, "km")
  1993. },
  1994. {
  1995. name: "Examacro",
  1996. height: math.unit(250, "parsecs")
  1997. },
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2002. {
  2003. front: {
  2004. height: math.unit(6, "feet"),
  2005. weight: math.unit(60, "kg"),
  2006. name: "Front",
  2007. image: {
  2008. source: "./media/characters/noir/front.svg",
  2009. extra: 1,
  2010. bottom: 0.032
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Normal",
  2017. height: math.unit(6.6, "feet")
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(500, "feet")
  2022. },
  2023. {
  2024. name: "Megamacro",
  2025. height: math.unit(2.5, "km"),
  2026. default: true
  2027. },
  2028. {
  2029. name: "Gigamacro",
  2030. height: math.unit(22500, "km")
  2031. },
  2032. {
  2033. name: "Teramacro",
  2034. height: math.unit(2500000000, "km")
  2035. },
  2036. {
  2037. name: "Examacro",
  2038. height: math.unit(200, "parsecs")
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/okuri/front.svg",
  2051. extra: 1,
  2052. bottom: 0.037
  2053. }
  2054. },
  2055. back: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Back",
  2059. image: {
  2060. source: "./media/characters/okuri/back.svg",
  2061. extra: 1,
  2062. bottom: 0.007
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(100, "miles"),
  2070. default: true
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(100, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/manny/front.svg",
  2083. extra: 1,
  2084. bottom: 0.06
  2085. }
  2086. },
  2087. back: {
  2088. height: math.unit(7, "feet"),
  2089. weight: math.unit(100, "kg"),
  2090. name: "Back",
  2091. image: {
  2092. source: "./media/characters/manny/back.svg",
  2093. extra: 1,
  2094. bottom: 0.014
  2095. }
  2096. },
  2097. },
  2098. [
  2099. {
  2100. name: "Normal",
  2101. height: math.unit(7, "feet"),
  2102. },
  2103. {
  2104. name: "Macro",
  2105. height: math.unit(78, "feet"),
  2106. default: true
  2107. },
  2108. {
  2109. name: "Macro+",
  2110. height: math.unit(300, "meters")
  2111. },
  2112. {
  2113. name: "Macro++",
  2114. height: math.unit(2400, "meters")
  2115. },
  2116. {
  2117. name: "Megamacro",
  2118. height: math.unit(5167, "meters")
  2119. },
  2120. {
  2121. name: "Gigamacro",
  2122. height: math.unit(41769, "miles")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/adake/front-1.svg"
  2135. }
  2136. },
  2137. frontAlt: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Front (Alt)",
  2141. image: {
  2142. source: "./media/characters/adake/front-2.svg",
  2143. extra: 1,
  2144. bottom: 0.01
  2145. }
  2146. },
  2147. back: {
  2148. height: math.unit(7, "feet"),
  2149. weight: math.unit(100, "kg"),
  2150. name: "Back",
  2151. image: {
  2152. source: "./media/characters/adake/back.svg",
  2153. }
  2154. },
  2155. kneel: {
  2156. height: math.unit(5.385, "feet"),
  2157. weight: math.unit(100, "kg"),
  2158. name: "Kneeling",
  2159. image: {
  2160. source: "./media/characters/adake/kneel.svg",
  2161. bottom: 0.052
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Normal",
  2168. height: math.unit(7, "feet"),
  2169. },
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(78, "feet"),
  2173. default: true
  2174. },
  2175. {
  2176. name: "Macro+",
  2177. height: math.unit(300, "meters")
  2178. },
  2179. {
  2180. name: "Macro++",
  2181. height: math.unit(2400, "meters")
  2182. },
  2183. {
  2184. name: "Megamacro",
  2185. height: math.unit(5167, "meters")
  2186. },
  2187. {
  2188. name: "Gigamacro",
  2189. height: math.unit(41769, "miles")
  2190. },
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(1.65, "meters"),
  2198. weight: math.unit(50, "kg"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/elijah/front.svg",
  2202. extra: 858 / 830,
  2203. bottom: 95.5 / 953.8559
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(1.65, "meters"),
  2208. weight: math.unit(50, "kg"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/elijah/back.svg",
  2212. extra: 895 / 850,
  2213. bottom: 5.3 / 897.956
  2214. }
  2215. },
  2216. frontNsfw: {
  2217. height: math.unit(1.65, "meters"),
  2218. weight: math.unit(50, "kg"),
  2219. name: "Front (NSFW)",
  2220. image: {
  2221. source: "./media/characters/elijah/front-nsfw.svg",
  2222. extra: 858 / 830,
  2223. bottom: 95.5 / 953.8559
  2224. }
  2225. },
  2226. backNsfw: {
  2227. height: math.unit(1.65, "meters"),
  2228. weight: math.unit(50, "kg"),
  2229. name: "Back (NSFW)",
  2230. image: {
  2231. source: "./media/characters/elijah/back-nsfw.svg",
  2232. extra: 895 / 850,
  2233. bottom: 5.3 / 897.956
  2234. }
  2235. },
  2236. dick: {
  2237. height: math.unit(1, "feet"),
  2238. name: "Dick",
  2239. image: {
  2240. source: "./media/characters/elijah/dick.svg"
  2241. }
  2242. },
  2243. beakOpen: {
  2244. height: math.unit(1.25, "feet"),
  2245. name: "Beak (Open)",
  2246. image: {
  2247. source: "./media/characters/elijah/beak-open.svg"
  2248. }
  2249. },
  2250. beakShut: {
  2251. height: math.unit(1.25, "feet"),
  2252. name: "Beak (Shut)",
  2253. image: {
  2254. source: "./media/characters/elijah/beak-shut.svg"
  2255. }
  2256. },
  2257. footFlexing: {
  2258. height: math.unit(1.61, "feet"),
  2259. name: "Foot (Flexing)",
  2260. image: {
  2261. source: "./media/characters/elijah/foot-flexing.svg"
  2262. }
  2263. },
  2264. footStepping: {
  2265. height: math.unit(1.44, "feet"),
  2266. name: "Foot (Stepping)",
  2267. image: {
  2268. source: "./media/characters/elijah/foot-stepping.svg"
  2269. }
  2270. },
  2271. plantigradeLeg: {
  2272. height: math.unit(2.34, "feet"),
  2273. name: "Plantigrade Leg",
  2274. image: {
  2275. source: "./media/characters/elijah/plantigrade-leg.svg"
  2276. }
  2277. },
  2278. plantigradeFootLeft: {
  2279. height: math.unit(0.9, "feet"),
  2280. name: "Plantigrade Foot (Left)",
  2281. image: {
  2282. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2283. }
  2284. },
  2285. plantigradeFootRight: {
  2286. height: math.unit(0.9, "feet"),
  2287. name: "Plantigrade Foot (Right)",
  2288. image: {
  2289. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Normal",
  2296. height: math.unit(1.65, "meters")
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(55, "meters"),
  2301. default: true
  2302. },
  2303. {
  2304. name: "Macro+",
  2305. height: math.unit(105, "meters")
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(11, "feet"),
  2314. weight: math.unit(320, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/rai/front.svg",
  2318. extra: 1802/1696,
  2319. bottom: 68/1870
  2320. }
  2321. },
  2322. frontDressed: {
  2323. height: math.unit(11, "feet"),
  2324. weight: math.unit(320, "kg"),
  2325. name: "Front (Dressed)",
  2326. image: {
  2327. source: "./media/characters/rai/front-dressed.svg",
  2328. extra: 1802/1696,
  2329. bottom: 68/1870
  2330. }
  2331. },
  2332. side: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(320, "kg"),
  2335. name: "Side",
  2336. image: {
  2337. source: "./media/characters/rai/side.svg",
  2338. extra: 1789/1710,
  2339. bottom: 115/1904
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(11, "feet"),
  2344. weight: math.unit(320, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/rai/back.svg",
  2348. extra: 1770/1707,
  2349. bottom: 28/1798
  2350. }
  2351. },
  2352. feral: {
  2353. height: math.unit(11, "feet"),
  2354. weight: math.unit(640, "kg"),
  2355. name: "Feral",
  2356. image: {
  2357. source: "./media/characters/rai/feral.svg",
  2358. extra: 1035/642,
  2359. bottom: 86/1121
  2360. }
  2361. },
  2362. dragon: {
  2363. height: math.unit(23, "feet"),
  2364. weight: math.unit(50000, "lb"),
  2365. name: "Dragon",
  2366. image: {
  2367. source: "./media/characters/rai/dragon.svg",
  2368. extra: 2498 / 2030,
  2369. bottom: 85.2 / 2584
  2370. }
  2371. },
  2372. maw: {
  2373. height: math.unit(6 / 3.81416, "feet"),
  2374. name: "Maw",
  2375. image: {
  2376. source: "./media/characters/rai/maw.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Normal",
  2383. height: math.unit(11, "feet")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(302, "feet"),
  2388. default: true
  2389. },
  2390. ]
  2391. ))
  2392. characterMakers.push(() => makeCharacter(
  2393. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2394. {
  2395. frontDressed: {
  2396. height: math.unit(216, "feet"),
  2397. weight: math.unit(7000000, "lb"),
  2398. name: "Front (Dressed)",
  2399. image: {
  2400. source: "./media/characters/jazzy/front-dressed.svg",
  2401. extra: 2738 / 2651,
  2402. bottom: 41.8 / 2786
  2403. }
  2404. },
  2405. backDressed: {
  2406. height: math.unit(216, "feet"),
  2407. weight: math.unit(7000000, "lb"),
  2408. name: "Back (Dressed)",
  2409. image: {
  2410. source: "./media/characters/jazzy/back-dressed.svg",
  2411. extra: 2775 / 2673,
  2412. bottom: 36.8 / 2817
  2413. }
  2414. },
  2415. front: {
  2416. height: math.unit(216, "feet"),
  2417. weight: math.unit(7000000, "lb"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/jazzy/front.svg",
  2421. extra: 2738 / 2651,
  2422. bottom: 41.8 / 2786
  2423. }
  2424. },
  2425. back: {
  2426. height: math.unit(216, "feet"),
  2427. weight: math.unit(7000000, "lb"),
  2428. name: "Back",
  2429. image: {
  2430. source: "./media/characters/jazzy/back.svg",
  2431. extra: 2775 / 2673,
  2432. bottom: 36.8 / 2817
  2433. }
  2434. },
  2435. maw: {
  2436. height: math.unit(20, "feet"),
  2437. name: "Maw",
  2438. image: {
  2439. source: "./media/characters/jazzy/maw.svg"
  2440. }
  2441. },
  2442. paws: {
  2443. height: math.unit(27.5, "feet"),
  2444. name: "Paws",
  2445. image: {
  2446. source: "./media/characters/jazzy/paws.svg"
  2447. }
  2448. },
  2449. eye: {
  2450. height: math.unit(4.4, "feet"),
  2451. name: "Eye",
  2452. image: {
  2453. source: "./media/characters/jazzy/eye.svg"
  2454. }
  2455. },
  2456. droneOffense: {
  2457. height: math.unit(9.5, "inches"),
  2458. name: "Drone (Offense)",
  2459. image: {
  2460. source: "./media/characters/jazzy/drone-offense.svg"
  2461. }
  2462. },
  2463. droneRecon: {
  2464. height: math.unit(9.5, "inches"),
  2465. name: "Drone (Recon)",
  2466. image: {
  2467. source: "./media/characters/jazzy/drone-recon.svg"
  2468. }
  2469. },
  2470. droneDefense: {
  2471. height: math.unit(9.5, "inches"),
  2472. name: "Drone (Defense)",
  2473. image: {
  2474. source: "./media/characters/jazzy/drone-defense.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(216, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(9 + 6/12, "feet"),
  2491. weight: math.unit(700, "lb"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/flamm/front.svg",
  2495. extra: 1751/1632,
  2496. bottom: 46/1797
  2497. }
  2498. },
  2499. buff: {
  2500. height: math.unit(9 + 6/12, "feet"),
  2501. weight: math.unit(950, "lb"),
  2502. name: "Buff",
  2503. image: {
  2504. source: "./media/characters/flamm/buff.svg",
  2505. extra: 3018/2874,
  2506. bottom: 221/3239
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Normal",
  2513. height: math.unit(9.5, "feet")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(200, "feet"),
  2518. default: true
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(5 + 3/12, "feet"),
  2527. weight: math.unit(60, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/zephiro/front.svg",
  2531. extra: 2309 / 2162,
  2532. bottom: 0.069
  2533. }
  2534. },
  2535. side: {
  2536. height: math.unit(5 + 3/12, "feet"),
  2537. weight: math.unit(60, "kg"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/zephiro/side.svg",
  2541. extra: 2403 / 2279,
  2542. bottom: 0.015
  2543. }
  2544. },
  2545. back: {
  2546. height: math.unit(5 + 3/12, "feet"),
  2547. weight: math.unit(60, "kg"),
  2548. name: "Back",
  2549. image: {
  2550. source: "./media/characters/zephiro/back.svg",
  2551. extra: 2373 / 2244,
  2552. bottom: 0.013
  2553. }
  2554. },
  2555. hand: {
  2556. height: math.unit(0.68, "feet"),
  2557. name: "Hand",
  2558. image: {
  2559. source: "./media/characters/zephiro/hand.svg"
  2560. }
  2561. },
  2562. paw: {
  2563. height: math.unit(1, "feet"),
  2564. name: "Paw",
  2565. image: {
  2566. source: "./media/characters/zephiro/paw.svg"
  2567. }
  2568. },
  2569. beans: {
  2570. height: math.unit(0.93, "feet"),
  2571. name: "Beans",
  2572. image: {
  2573. source: "./media/characters/zephiro/beans.svg"
  2574. }
  2575. },
  2576. },
  2577. [
  2578. {
  2579. name: "Micro",
  2580. height: math.unit(3, "inches")
  2581. },
  2582. {
  2583. name: "Normal",
  2584. height: math.unit(5 + 3 / 12, "feet"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(118, "feet")
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(5, "feet"),
  2598. weight: math.unit(90, "kg"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/fory/front.svg",
  2602. extra: 2862 / 2674,
  2603. bottom: 180 / 3043.8
  2604. }
  2605. },
  2606. back: {
  2607. height: math.unit(5, "feet"),
  2608. weight: math.unit(90, "kg"),
  2609. name: "Back",
  2610. image: {
  2611. source: "./media/characters/fory/back.svg",
  2612. extra: 2962 / 2791,
  2613. bottom: 106 / 3071.8
  2614. }
  2615. },
  2616. foot: {
  2617. height: math.unit(2.14, "feet"),
  2618. name: "Foot",
  2619. image: {
  2620. source: "./media/characters/fory/foot.svg"
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(5, "feet")
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(50, "feet"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(10, "miles")
  2637. },
  2638. {
  2639. name: "Gigamacro",
  2640. height: math.unit(5, "earths")
  2641. },
  2642. ]
  2643. ))
  2644. characterMakers.push(() => makeCharacter(
  2645. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2646. {
  2647. front: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(90, "kg"),
  2650. name: "Front",
  2651. image: {
  2652. source: "./media/characters/kurrikage/front.svg",
  2653. extra: 1,
  2654. bottom: 0.035
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(7, "feet"),
  2659. weight: math.unit(90, "lb"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/kurrikage/back.svg"
  2663. }
  2664. },
  2665. paw: {
  2666. height: math.unit(1.5, "feet"),
  2667. name: "Paw",
  2668. image: {
  2669. source: "./media/characters/kurrikage/paw.svg"
  2670. }
  2671. },
  2672. staff: {
  2673. height: math.unit(6.7, "feet"),
  2674. name: "Staff",
  2675. image: {
  2676. source: "./media/characters/kurrikage/staff.svg"
  2677. }
  2678. },
  2679. peek: {
  2680. height: math.unit(1.05, "feet"),
  2681. name: "Peeking",
  2682. image: {
  2683. source: "./media/characters/kurrikage/peek.svg",
  2684. bottom: 0.08
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Big",
  2696. height: math.unit(20, "feet")
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(500, "feet")
  2701. },
  2702. {
  2703. name: "Megamacro",
  2704. height: math.unit(20, "miles")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(6, "feet"),
  2713. weight: math.unit(75, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/shingo/front.svg",
  2717. extra: 1900/1825,
  2718. bottom: 82/1982
  2719. }
  2720. },
  2721. side: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Side",
  2725. image: {
  2726. source: "./media/characters/shingo/side.svg",
  2727. extra: 1930/1865,
  2728. bottom: 16/1946
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/shingo/back.svg",
  2737. extra: 1922/1852,
  2738. bottom: 16/1938
  2739. }
  2740. },
  2741. frontDressed: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(150, "lb"),
  2744. name: "Front-dressed",
  2745. image: {
  2746. source: "./media/characters/shingo/front-dressed.svg",
  2747. extra: 1900/1825,
  2748. bottom: 82/1982
  2749. }
  2750. },
  2751. paw: {
  2752. height: math.unit(1.29, "feet"),
  2753. name: "Paw",
  2754. image: {
  2755. source: "./media/characters/shingo/paw.svg"
  2756. }
  2757. },
  2758. hand: {
  2759. height: math.unit(1.07, "feet"),
  2760. name: "Hand",
  2761. image: {
  2762. source: "./media/characters/shingo/hand.svg"
  2763. }
  2764. },
  2765. frontAlt: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front (Alt)",
  2769. image: {
  2770. source: "./media/characters/shingo/front-alt.svg",
  2771. extra: 3511 / 3338,
  2772. bottom: 0.005
  2773. }
  2774. },
  2775. frontAlt2: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front (Alt 2)",
  2779. image: {
  2780. source: "./media/characters/shingo/front-alt-2.svg",
  2781. extra: 706/681,
  2782. bottom: 11/717
  2783. }
  2784. },
  2785. pawAlt: {
  2786. height: math.unit(1, "feet"),
  2787. name: "Paw (Alt)",
  2788. image: {
  2789. source: "./media/characters/shingo/paw-alt.svg"
  2790. }
  2791. },
  2792. },
  2793. [
  2794. {
  2795. name: "Micro",
  2796. height: math.unit(4, "inches")
  2797. },
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(6, "feet"),
  2801. default: true
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(108, "feet")
  2806. },
  2807. {
  2808. name: "Macro+",
  2809. height: math.unit(1500, "feet")
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2815. {
  2816. side: {
  2817. height: math.unit(6, "feet"),
  2818. weight: math.unit(75, "kg"),
  2819. name: "Side",
  2820. image: {
  2821. source: "./media/characters/aigey/side.svg"
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(200, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(100, "miles")
  2834. },
  2835. ]
  2836. )
  2837. )
  2838. characterMakers.push(() => makeCharacter(
  2839. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2840. {
  2841. front: {
  2842. height: math.unit(5 + 5 / 12, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front",
  2845. image: {
  2846. source: "./media/characters/natasha/front.svg",
  2847. extra: 859 / 824,
  2848. bottom: 23 / 879.6
  2849. }
  2850. },
  2851. frontNsfw: {
  2852. height: math.unit(5 + 5 / 12, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Front (NSFW)",
  2855. image: {
  2856. source: "./media/characters/natasha/front-nsfw.svg",
  2857. extra: 859 / 824,
  2858. bottom: 23 / 879.6
  2859. }
  2860. },
  2861. frontErect: {
  2862. height: math.unit(5 + 5 / 12, "feet"),
  2863. weight: math.unit(75, "kg"),
  2864. name: "Front (Erect)",
  2865. image: {
  2866. source: "./media/characters/natasha/front-erect.svg",
  2867. extra: 859 / 824,
  2868. bottom: 23 / 879.6
  2869. }
  2870. },
  2871. back: {
  2872. height: math.unit(5 + 5 / 12, "feet"),
  2873. weight: math.unit(75, "kg"),
  2874. name: "Back",
  2875. image: {
  2876. source: "./media/characters/natasha/back.svg",
  2877. extra: 887.9 / 852.6,
  2878. bottom: 9.7 / 896.4
  2879. }
  2880. },
  2881. backAlt: {
  2882. height: math.unit(5 + 5 / 12, "feet"),
  2883. weight: math.unit(75, "kg"),
  2884. name: "Back (Alt)",
  2885. image: {
  2886. source: "./media/characters/natasha/back-alt.svg",
  2887. extra: 1236.7 / 1192,
  2888. bottom: 22.3 / 1258.2
  2889. }
  2890. },
  2891. dick: {
  2892. height: math.unit(1.772, "feet"),
  2893. name: "Dick",
  2894. image: {
  2895. source: "./media/characters/natasha/dick.svg"
  2896. }
  2897. },
  2898. paw: {
  2899. height: math.unit(0.250, "meters"),
  2900. name: "Paw",
  2901. image: {
  2902. source: "./media/characters/natasha/paw.svg"
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(5 + 5 / 12, "feet")
  2910. },
  2911. {
  2912. name: "Large",
  2913. height: math.unit(12, "feet")
  2914. },
  2915. {
  2916. name: "Macro",
  2917. height: math.unit(100, "feet"),
  2918. default: true
  2919. },
  2920. {
  2921. name: "Macro+",
  2922. height: math.unit(260, "feet")
  2923. },
  2924. {
  2925. name: "Macro++",
  2926. height: math.unit(1, "mile")
  2927. },
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2932. {
  2933. front: {
  2934. height: math.unit(6, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Front",
  2937. image: {
  2938. source: "./media/characters/malik/front.svg"
  2939. }
  2940. },
  2941. side: {
  2942. height: math.unit(6, "feet"),
  2943. weight: math.unit(75, "kg"),
  2944. name: "Side",
  2945. image: {
  2946. source: "./media/characters/malik/side.svg",
  2947. extra: 1.1539
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/malik/back.svg"
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(156, "feet"),
  2963. default: true
  2964. },
  2965. {
  2966. name: "Macro+",
  2967. height: math.unit(1188, "feet")
  2968. },
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2973. {
  2974. front: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front",
  2978. image: {
  2979. source: "./media/characters/sefer/front.svg",
  2980. extra: 848 / 659,
  2981. bottom: 28.3 / 876.442
  2982. }
  2983. },
  2984. back: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Back",
  2988. image: {
  2989. source: "./media/characters/sefer/back.svg",
  2990. extra: 864 / 695,
  2991. bottom: 10 / 871
  2992. }
  2993. },
  2994. frontDressed: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front (Dressed)",
  2998. image: {
  2999. source: "./media/characters/sefer/front-dressed.svg",
  3000. extra: 839 / 653,
  3001. bottom: 37.6 / 878
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(6, "feet"),
  3009. default: true
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3015. {
  3016. body: {
  3017. height: math.unit(2.2428, "meter"),
  3018. weight: math.unit(124.738, "kg"),
  3019. name: "Body",
  3020. image: {
  3021. extra: 1225 / 1050,
  3022. source: "./media/characters/north/front.svg"
  3023. }
  3024. }
  3025. },
  3026. [
  3027. {
  3028. name: "Micro",
  3029. height: math.unit(4, "inches")
  3030. },
  3031. {
  3032. name: "Macro",
  3033. height: math.unit(63, "meters")
  3034. },
  3035. {
  3036. name: "Megamacro",
  3037. height: math.unit(101, "miles"),
  3038. default: true
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3044. {
  3045. angled: {
  3046. height: math.unit(4, "meter"),
  3047. weight: math.unit(150, "kg"),
  3048. name: "Angled",
  3049. image: {
  3050. source: "./media/characters/talan/angled-sfw.svg",
  3051. bottom: 29 / 3734
  3052. }
  3053. },
  3054. angledNsfw: {
  3055. height: math.unit(4, "meter"),
  3056. weight: math.unit(150, "kg"),
  3057. name: "Angled (NSFW)",
  3058. image: {
  3059. source: "./media/characters/talan/angled-nsfw.svg",
  3060. bottom: 29 / 3734
  3061. }
  3062. },
  3063. frontNsfw: {
  3064. height: math.unit(4, "meter"),
  3065. weight: math.unit(150, "kg"),
  3066. name: "Front (NSFW)",
  3067. image: {
  3068. source: "./media/characters/talan/front-nsfw.svg",
  3069. bottom: 29 / 3734
  3070. }
  3071. },
  3072. sideNsfw: {
  3073. height: math.unit(4, "meter"),
  3074. weight: math.unit(150, "kg"),
  3075. name: "Side (NSFW)",
  3076. image: {
  3077. source: "./media/characters/talan/side-nsfw.svg",
  3078. bottom: 29 / 3734
  3079. }
  3080. },
  3081. back: {
  3082. height: math.unit(4, "meter"),
  3083. weight: math.unit(150, "kg"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/talan/back.svg"
  3087. }
  3088. },
  3089. dickBottom: {
  3090. height: math.unit(0.621, "meter"),
  3091. name: "Dick (Bottom)",
  3092. image: {
  3093. source: "./media/characters/talan/dick-bottom.svg"
  3094. }
  3095. },
  3096. dickTop: {
  3097. height: math.unit(0.621, "meter"),
  3098. name: "Dick (Top)",
  3099. image: {
  3100. source: "./media/characters/talan/dick-top.svg"
  3101. }
  3102. },
  3103. dickSide: {
  3104. height: math.unit(0.305, "meter"),
  3105. name: "Dick (Side)",
  3106. image: {
  3107. source: "./media/characters/talan/dick-side.svg"
  3108. }
  3109. },
  3110. dickFront: {
  3111. height: math.unit(0.305, "meter"),
  3112. name: "Dick (Front)",
  3113. image: {
  3114. source: "./media/characters/talan/dick-front.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Normal",
  3121. height: math.unit(4, "meters")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(100, "meters")
  3126. },
  3127. {
  3128. name: "Megamacro",
  3129. height: math.unit(2, "miles"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Gigamacro",
  3134. height: math.unit(5000, "miles")
  3135. },
  3136. {
  3137. name: "Teramacro",
  3138. height: math.unit(100, "parsecs")
  3139. }
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(2, "meter"),
  3147. weight: math.unit(90, "kg"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/gael'rathus/front.svg"
  3151. }
  3152. },
  3153. frontAlt: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(90, "kg"),
  3156. name: "Front (alt)",
  3157. image: {
  3158. source: "./media/characters/gael'rathus/front-alt.svg"
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(90, "kg"),
  3164. name: "Front (alt 2)",
  3165. image: {
  3166. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3167. }
  3168. }
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Large",
  3178. height: math.unit(25, "feet")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(0.25, "miles")
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(10, "miles")
  3187. }
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3192. {
  3193. side: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(140, "kg"),
  3196. name: "Side",
  3197. image: {
  3198. source: "./media/characters/sosha/side.svg",
  3199. bottom: 0.042
  3200. }
  3201. },
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(12, "feet"),
  3207. default: true
  3208. }
  3209. ]
  3210. ))
  3211. characterMakers.push(() => makeCharacter(
  3212. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3213. {
  3214. side: {
  3215. height: math.unit(5 + 5 / 12, "feet"),
  3216. weight: math.unit(170, "kg"),
  3217. name: "Side",
  3218. image: {
  3219. source: "./media/characters/runnola/side.svg",
  3220. extra: 741 / 448,
  3221. bottom: 0.05
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Small",
  3228. height: math.unit(3, "feet")
  3229. },
  3230. {
  3231. name: "Normal",
  3232. height: math.unit(5 + 5 / 12, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Big",
  3237. height: math.unit(10, "feet")
  3238. },
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(50, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/kurribird/front.svg",
  3250. bottom: 0.015
  3251. }
  3252. },
  3253. frontAlt: {
  3254. height: math.unit(1.5, "meter"),
  3255. weight: math.unit(50, "kg"),
  3256. name: "Front (Alt)",
  3257. image: {
  3258. source: "./media/characters/kurribird/front-alt.svg",
  3259. extra: 1.45
  3260. }
  3261. },
  3262. },
  3263. [
  3264. {
  3265. name: "Normal",
  3266. height: math.unit(7, "feet")
  3267. },
  3268. {
  3269. name: "Big",
  3270. height: math.unit(12, "feet"),
  3271. default: true
  3272. },
  3273. {
  3274. name: "Macro",
  3275. height: math.unit(1500, "feet")
  3276. },
  3277. {
  3278. name: "Megamacro",
  3279. height: math.unit(2, "miles")
  3280. }
  3281. ]
  3282. ))
  3283. characterMakers.push(() => makeCharacter(
  3284. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3285. {
  3286. front: {
  3287. height: math.unit(2, "meter"),
  3288. weight: math.unit(80, "kg"),
  3289. name: "Front",
  3290. image: {
  3291. source: "./media/characters/elbial/front.svg",
  3292. extra: 1643 / 1556,
  3293. bottom: 60.2 / 1696
  3294. }
  3295. },
  3296. side: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(80, "kg"),
  3299. name: "Side",
  3300. image: {
  3301. source: "./media/characters/elbial/side.svg",
  3302. extra: 1630 / 1565,
  3303. bottom: 71.5 / 1697
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(80, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/elbial/back.svg",
  3312. extra: 1668 / 1595,
  3313. bottom: 5.6 / 1672
  3314. }
  3315. },
  3316. frontDressed: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(80, "kg"),
  3319. name: "Front (Dressed)",
  3320. image: {
  3321. source: "./media/characters/elbial/front-dressed.svg",
  3322. extra: 1653 / 1584,
  3323. bottom: 57 / 1708
  3324. }
  3325. },
  3326. genitals: {
  3327. height: math.unit(2 / 3.367, "meter"),
  3328. name: "Genitals",
  3329. image: {
  3330. source: "./media/characters/elbial/genitals.svg"
  3331. }
  3332. },
  3333. },
  3334. [
  3335. {
  3336. name: "Large",
  3337. height: math.unit(100, "feet")
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(500, "feet"),
  3342. default: true
  3343. },
  3344. {
  3345. name: "Megamacro",
  3346. height: math.unit(10, "miles")
  3347. },
  3348. {
  3349. name: "Gigamacro",
  3350. height: math.unit(25000, "miles")
  3351. },
  3352. {
  3353. name: "Full-Size",
  3354. height: math.unit(8000000, "gigaparsecs")
  3355. }
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3360. {
  3361. front: {
  3362. height: math.unit(2, "meter"),
  3363. weight: math.unit(60, "kg"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/noah/front.svg"
  3367. }
  3368. },
  3369. talons: {
  3370. height: math.unit(0.315, "meter"),
  3371. name: "Talons",
  3372. image: {
  3373. source: "./media/characters/noah/talons.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Large",
  3380. height: math.unit(50, "feet")
  3381. },
  3382. {
  3383. name: "Macro",
  3384. height: math.unit(750, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Megamacro",
  3389. height: math.unit(50, "miles")
  3390. },
  3391. {
  3392. name: "Gigamacro",
  3393. height: math.unit(100000, "miles")
  3394. },
  3395. {
  3396. name: "Full-Size",
  3397. height: math.unit(3000000000, "miles")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(80, "kg"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/natalya/front.svg"
  3410. }
  3411. },
  3412. back: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(80, "kg"),
  3415. name: "Back",
  3416. image: {
  3417. source: "./media/characters/natalya/back.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(150, "feet"),
  3425. default: true
  3426. },
  3427. {
  3428. name: "Megamacro",
  3429. height: math.unit(5, "miles")
  3430. },
  3431. {
  3432. name: "Full-Size",
  3433. height: math.unit(600, "kiloparsecs")
  3434. }
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3439. {
  3440. front: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(50, "kg"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/erestrebah/front.svg",
  3446. extra: 208 / 193,
  3447. bottom: 0.055
  3448. }
  3449. },
  3450. back: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(50, "kg"),
  3453. name: "Back",
  3454. image: {
  3455. source: "./media/characters/erestrebah/back.svg",
  3456. extra: 1.3
  3457. }
  3458. }
  3459. },
  3460. [
  3461. {
  3462. name: "Normal",
  3463. height: math.unit(10, "feet")
  3464. },
  3465. {
  3466. name: "Large",
  3467. height: math.unit(50, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(300, "feet")
  3473. },
  3474. {
  3475. name: "Macro+",
  3476. height: math.unit(750, "feet")
  3477. },
  3478. {
  3479. name: "Megamacro",
  3480. height: math.unit(3, "miles")
  3481. }
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/jennifer/front.svg",
  3493. bottom: 0.11,
  3494. extra: 1.16
  3495. }
  3496. },
  3497. frontAlt: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Front (Alt)",
  3501. image: {
  3502. source: "./media/characters/jennifer/front-alt.svg"
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Canon Height",
  3509. height: math.unit(120, "feet"),
  3510. default: true
  3511. },
  3512. {
  3513. name: "Macro+",
  3514. height: math.unit(300, "feet")
  3515. },
  3516. {
  3517. name: "Megamacro",
  3518. height: math.unit(20000, "feet")
  3519. }
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3524. {
  3525. front: {
  3526. height: math.unit(2, "meter"),
  3527. weight: math.unit(50, "kg"),
  3528. name: "Front",
  3529. image: {
  3530. source: "./media/characters/kalista/front.svg",
  3531. extra: 1947 / 1700,
  3532. bottom: 76.6 / 1412.98
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(50, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/kalista/back.svg",
  3541. extra: 1366 / 1156,
  3542. bottom: 33.9 / 1362.78
  3543. }
  3544. }
  3545. },
  3546. [
  3547. {
  3548. name: "Uncomfortably Small",
  3549. height: math.unit(10, "feet")
  3550. },
  3551. {
  3552. name: "Small",
  3553. height: math.unit(30, "feet")
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(100, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro+",
  3562. height: math.unit(2000, "feet")
  3563. },
  3564. {
  3565. name: "True Form",
  3566. height: math.unit(8924, "miles")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(120, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/ggv/front.svg"
  3579. }
  3580. },
  3581. side: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(120, "kg"),
  3584. name: "Side",
  3585. image: {
  3586. source: "./media/characters/ggv/side.svg"
  3587. }
  3588. }
  3589. },
  3590. [
  3591. {
  3592. name: "Extremely Puny",
  3593. height: math.unit(9 + 5 / 12, "feet")
  3594. },
  3595. {
  3596. name: "Horribly Small",
  3597. height: math.unit(47.7, "miles"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Reasonably Sized",
  3602. height: math.unit(25000, "parsecs")
  3603. },
  3604. {
  3605. name: "Slightly Uncompressed",
  3606. height: math.unit(7.77e31, "parsecs")
  3607. },
  3608. {
  3609. name: "Omniversal",
  3610. height: math.unit(1e300, "meters")
  3611. },
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(75, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/napalm/front.svg"
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(75, "lb"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/napalm/back.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Standard",
  3637. height: math.unit(55, "feet"),
  3638. default: true
  3639. }
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(7 + 5 / 6, "feet"),
  3647. weight: math.unit(325, "lb"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/asana/front.svg",
  3651. extra: 1133 / 1060,
  3652. bottom: 15.2 / 1148.6
  3653. }
  3654. },
  3655. back: {
  3656. height: math.unit(7 + 5 / 6, "feet"),
  3657. weight: math.unit(325, "lb"),
  3658. name: "Back",
  3659. image: {
  3660. source: "./media/characters/asana/back.svg",
  3661. extra: 1114 / 1043,
  3662. bottom: 5 / 1120
  3663. }
  3664. },
  3665. dressedDark: {
  3666. height: math.unit(7 + 5 / 6, "feet"),
  3667. weight: math.unit(325, "lb"),
  3668. name: "Dressed (Dark)",
  3669. image: {
  3670. source: "./media/characters/asana/dressed-dark.svg",
  3671. extra: 1133 / 1060,
  3672. bottom: 15.2 / 1148.6
  3673. }
  3674. },
  3675. dressedLight: {
  3676. height: math.unit(7 + 5 / 6, "feet"),
  3677. weight: math.unit(325, "lb"),
  3678. name: "Dressed (Light)",
  3679. image: {
  3680. source: "./media/characters/asana/dressed-light.svg",
  3681. extra: 1133 / 1060,
  3682. bottom: 15.2 / 1148.6
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Standard",
  3689. height: math.unit(7 + 5 / 6, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Large",
  3694. height: math.unit(10, "meters")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(2500, "meters")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(5e6, "meters")
  3703. },
  3704. {
  3705. name: "Examacro",
  3706. height: math.unit(5e12, "lightyears")
  3707. },
  3708. {
  3709. name: "Max Size",
  3710. height: math.unit(1e31, "lightyears")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(60, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/ebony/front.svg",
  3723. bottom: 0.03,
  3724. extra: 1045 / 810 + 0.03
  3725. }
  3726. },
  3727. side: {
  3728. height: math.unit(2, "meter"),
  3729. weight: math.unit(60, "kg"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/ebony/side.svg",
  3733. bottom: 0.03,
  3734. extra: 1045 / 810 + 0.03
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(60, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/ebony/back.svg",
  3743. bottom: 0.01,
  3744. extra: 1045 / 810 + 0.01
  3745. }
  3746. },
  3747. },
  3748. [
  3749. // TODO check why I did this lol
  3750. {
  3751. name: "Standard",
  3752. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3753. default: true
  3754. },
  3755. {
  3756. name: "Macro",
  3757. height: math.unit(200, "feet")
  3758. },
  3759. {
  3760. name: "Gigamacro",
  3761. height: math.unit(13000, "km")
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(175, "lb"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/mountain/front.svg",
  3774. extra: 972 / 955,
  3775. bottom: 64 / 1036.6
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(175, "lb"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/mountain/back.svg",
  3784. extra: 970 / 950,
  3785. bottom: 28.25 / 999
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Large",
  3792. height: math.unit(20, "meters")
  3793. },
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(300, "meters")
  3797. },
  3798. {
  3799. name: "Gigamacro",
  3800. height: math.unit(10000, "km"),
  3801. default: true
  3802. },
  3803. {
  3804. name: "Examacro",
  3805. height: math.unit(10e9, "lightyears")
  3806. }
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(8, "feet"),
  3814. weight: math.unit(500, "lb"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/rick/front.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Normal",
  3824. height: math.unit(8, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(5, "km")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(8, "feet"),
  3838. weight: math.unit(120, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/ona/front.svg"
  3842. }
  3843. },
  3844. frontAlt: {
  3845. height: math.unit(8, "feet"),
  3846. weight: math.unit(120, "lb"),
  3847. name: "Front (Alt)",
  3848. image: {
  3849. source: "./media/characters/ona/front-alt.svg"
  3850. }
  3851. },
  3852. back: {
  3853. height: math.unit(8, "feet"),
  3854. weight: math.unit(120, "lb"),
  3855. name: "Back",
  3856. image: {
  3857. source: "./media/characters/ona/back.svg"
  3858. }
  3859. },
  3860. foot: {
  3861. height: math.unit(1.1, "feet"),
  3862. name: "Foot",
  3863. image: {
  3864. source: "./media/characters/ona/foot.svg"
  3865. }
  3866. }
  3867. },
  3868. [
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(70, "km"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Gigamacro",
  3876. height: math.unit(681818, "miles")
  3877. },
  3878. {
  3879. name: "Examacro",
  3880. height: math.unit(3800000, "lightyears")
  3881. },
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(12, "feet"),
  3889. weight: math.unit(3000, "lb"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/mech/front.svg",
  3893. extra: 2900 / 2770,
  3894. bottom: 110 / 3010
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(12, "feet"),
  3899. weight: math.unit(3000, "lb"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/mech/back.svg",
  3903. extra: 3011 / 2890,
  3904. bottom: 94 / 3105
  3905. }
  3906. },
  3907. maw: {
  3908. height: math.unit(3.07, "feet"),
  3909. name: "Maw",
  3910. image: {
  3911. source: "./media/characters/mech/maw.svg"
  3912. }
  3913. },
  3914. head: {
  3915. height: math.unit(2.82, "feet"),
  3916. name: "Head",
  3917. image: {
  3918. source: "./media/characters/mech/head.svg"
  3919. }
  3920. },
  3921. dick: {
  3922. height: math.unit(1.43, "feet"),
  3923. name: "Dick",
  3924. image: {
  3925. source: "./media/characters/mech/dick.svg"
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Normal",
  3932. height: math.unit(12, "feet")
  3933. },
  3934. {
  3935. name: "Macro",
  3936. height: math.unit(300, "feet"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "Macro+",
  3941. height: math.unit(1500, "feet")
  3942. },
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3947. {
  3948. front: {
  3949. height: math.unit(1.3, "meter"),
  3950. weight: math.unit(30, "kg"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/gregory/front.svg",
  3954. }
  3955. }
  3956. },
  3957. [
  3958. {
  3959. name: "Normal",
  3960. height: math.unit(1.3, "meter"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(20, "meter")
  3966. }
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(2.8, "meter"),
  3974. weight: math.unit(200, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/elory/front.svg",
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(2.8, "meter"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(38, "meter")
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(470, "feet"),
  3998. weight: math.unit(924, "tons"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/angelpatamon/front.svg",
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(470, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Deity Size I",
  4013. height: math.unit(28651.2, "km")
  4014. },
  4015. {
  4016. name: "Deity Size II",
  4017. height: math.unit(171907.2, "km")
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4023. {
  4024. side: {
  4025. height: math.unit(7.2, "meter"),
  4026. weight: math.unit(8.2, "tons"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/cryae/side.svg",
  4030. extra: 3500 / 1500
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(7.2, "meter"),
  4038. default: true
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(175, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/xera/front.svg",
  4051. extra: 2377 / 1972,
  4052. bottom: 75.5 / 2452
  4053. }
  4054. },
  4055. side: {
  4056. height: math.unit(6, "feet"),
  4057. weight: math.unit(175, "lb"),
  4058. name: "Side",
  4059. image: {
  4060. source: "./media/characters/xera/side.svg",
  4061. extra: 2345 / 2019,
  4062. bottom: 39.7 / 2384
  4063. }
  4064. },
  4065. back: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Back",
  4069. image: {
  4070. source: "./media/characters/xera/back.svg",
  4071. extra: 2095 / 1984,
  4072. bottom: 67 / 2166
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Small",
  4079. height: math.unit(10, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(500, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Macro+",
  4088. height: math.unit(10, "km")
  4089. },
  4090. {
  4091. name: "Gigamacro",
  4092. height: math.unit(25000, "km")
  4093. },
  4094. {
  4095. name: "Teramacro",
  4096. height: math.unit(3e6, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/nebula/front.svg",
  4109. extra: 2566 / 2362,
  4110. bottom: 81 / 2644
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Small",
  4117. height: math.unit(4.5, "meters")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(1500, "meters"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(150, "km")
  4127. },
  4128. {
  4129. name: "Gigamacro",
  4130. height: math.unit(27000, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(6, "feet"),
  4139. weight: math.unit(225, "lb"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/abysgar/front.svg"
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Small",
  4149. height: math.unit(4.5, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(1250, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(125, "km")
  4159. },
  4160. {
  4161. name: "Gigamacro",
  4162. height: math.unit(26000, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(180, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/yakuz/front.svg"
  4175. }
  4176. }
  4177. },
  4178. [
  4179. {
  4180. name: "Small",
  4181. height: math.unit(5, "meters")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(1500, "meters"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Megamacro",
  4190. height: math.unit(200, "km")
  4191. },
  4192. {
  4193. name: "Gigamacro",
  4194. height: math.unit(100000, "km")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(6, "feet"),
  4203. weight: math.unit(175, "lb"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/mirova/front.svg",
  4207. extra: 3334 / 3071,
  4208. bottom: 42 / 3375.6
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(900, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(135, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(20000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4234. {
  4235. side: {
  4236. height: math.unit(28.35, "feet"),
  4237. weight: math.unit(99.75, "tons"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/asana-mech/side.svg",
  4241. extra: 923 / 699,
  4242. bottom: 50 / 975
  4243. }
  4244. },
  4245. chaingun: {
  4246. height: math.unit(7, "feet"),
  4247. weight: math.unit(2400, "lb"),
  4248. name: "Chaingun",
  4249. image: {
  4250. source: "./media/characters/asana-mech/chaingun.svg"
  4251. }
  4252. },
  4253. laser: {
  4254. height: math.unit(7.12, "feet"),
  4255. weight: math.unit(2000, "lb"),
  4256. name: "Laser",
  4257. image: {
  4258. source: "./media/characters/asana-mech/laser.svg"
  4259. }
  4260. },
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(28.35, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(2500, "feet")
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(25, "miles")
  4275. },
  4276. {
  4277. name: "Examacro",
  4278. height: math.unit(6e8, "lightyears")
  4279. },
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(5, "meters"),
  4287. weight: math.unit(1000, "kg"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/asche/front.svg",
  4291. extra: 1258 / 1190,
  4292. bottom: 47 / 1305
  4293. }
  4294. },
  4295. frontUnderwear: {
  4296. height: math.unit(5, "meters"),
  4297. weight: math.unit(1000, "kg"),
  4298. name: "Front (Underwear)",
  4299. image: {
  4300. source: "./media/characters/asche/front-underwear.svg",
  4301. extra: 1258 / 1190,
  4302. bottom: 47 / 1305
  4303. }
  4304. },
  4305. frontDressed: {
  4306. height: math.unit(5, "meters"),
  4307. weight: math.unit(1000, "kg"),
  4308. name: "Front (Dressed)",
  4309. image: {
  4310. source: "./media/characters/asche/front-dressed.svg",
  4311. extra: 1258 / 1190,
  4312. bottom: 47 / 1305
  4313. }
  4314. },
  4315. frontArmor: {
  4316. height: math.unit(5, "meters"),
  4317. weight: math.unit(1000, "kg"),
  4318. name: "Front (Armored)",
  4319. image: {
  4320. source: "./media/characters/asche/front-armored.svg",
  4321. extra: 1374 / 1308,
  4322. bottom: 23 / 1397
  4323. }
  4324. },
  4325. mp724: {
  4326. height: math.unit(0.96, "meters"),
  4327. weight: math.unit(38, "kg"),
  4328. name: "H&K MP724",
  4329. image: {
  4330. source: "./media/characters/asche/h&k-mp724.svg"
  4331. }
  4332. },
  4333. side: {
  4334. height: math.unit(5, "meters"),
  4335. weight: math.unit(1000, "kg"),
  4336. name: "Side",
  4337. image: {
  4338. source: "./media/characters/asche/side.svg",
  4339. extra: 1717 / 1609,
  4340. bottom: 0.005
  4341. }
  4342. },
  4343. back: {
  4344. height: math.unit(5, "meters"),
  4345. weight: math.unit(1000, "kg"),
  4346. name: "Back",
  4347. image: {
  4348. source: "./media/characters/asche/back.svg",
  4349. extra: 1570 / 1501
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "DEFCON 5",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "DEFCON 4",
  4360. height: math.unit(500, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "DEFCON 3",
  4365. height: math.unit(5, "km")
  4366. },
  4367. {
  4368. name: "DEFCON 2",
  4369. height: math.unit(500, "km")
  4370. },
  4371. {
  4372. name: "DEFCON 1",
  4373. height: math.unit(500000, "km")
  4374. },
  4375. {
  4376. name: "DEFCON 0",
  4377. height: math.unit(3, "gigaparsecs")
  4378. },
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4383. {
  4384. front: {
  4385. height: math.unit(2, "meters"),
  4386. weight: math.unit(76, "kg"),
  4387. name: "Front",
  4388. image: {
  4389. source: "./media/characters/gale/front.svg"
  4390. }
  4391. },
  4392. frontAlt1: {
  4393. height: math.unit(2, "meters"),
  4394. weight: math.unit(76, "kg"),
  4395. name: "Front (Alt 1)",
  4396. image: {
  4397. source: "./media/characters/gale/front-alt-1.svg"
  4398. }
  4399. },
  4400. frontAlt2: {
  4401. height: math.unit(2, "meters"),
  4402. weight: math.unit(76, "kg"),
  4403. name: "Front (Alt 2)",
  4404. image: {
  4405. source: "./media/characters/gale/front-alt-2.svg"
  4406. }
  4407. },
  4408. },
  4409. [
  4410. {
  4411. name: "Normal",
  4412. height: math.unit(7, "feet")
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(150, "feet"),
  4417. default: true
  4418. },
  4419. {
  4420. name: "Macro+",
  4421. height: math.unit(300, "feet")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(76, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/draylen/front.svg"
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(150, "feet"),
  4441. default: true
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(7 + 9 / 12, "feet"),
  4450. weight: math.unit(379, "lbs"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/chez/front.svg"
  4454. }
  4455. },
  4456. side: {
  4457. height: math.unit(7 + 9 / 12, "feet"),
  4458. weight: math.unit(379, "lbs"),
  4459. name: "Side",
  4460. image: {
  4461. source: "./media/characters/chez/side.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(7 + 9 / 12, "feet"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "God King",
  4473. height: math.unit(9750000, "meters")
  4474. }
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(6, "feet"),
  4482. weight: math.unit(275, "lbs"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/kaylum/front.svg",
  4486. bottom: 0.01,
  4487. extra: 1166 / 1031
  4488. }
  4489. },
  4490. frontWingless: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(275, "lbs"),
  4493. name: "Front (Wingless)",
  4494. image: {
  4495. source: "./media/characters/kaylum/front-wingless.svg",
  4496. bottom: 0.01,
  4497. extra: 1117 / 1031
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(3.05, "meters")
  4505. },
  4506. {
  4507. name: "Master",
  4508. height: math.unit(5.5, "meters")
  4509. },
  4510. {
  4511. name: "Rampage",
  4512. height: math.unit(19, "meters")
  4513. },
  4514. {
  4515. name: "Macro Lite",
  4516. height: math.unit(37, "meters")
  4517. },
  4518. {
  4519. name: "Hyper Predator",
  4520. height: math.unit(61, "meters")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(138, "meters"),
  4525. default: true
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(150, "lbs"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/geta/front.svg"
  4538. }
  4539. }
  4540. },
  4541. [
  4542. {
  4543. name: "Micro",
  4544. height: math.unit(3, "inches"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(5 + 5 / 12, "feet")
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(300, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/tyrnn/front.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Main Height",
  4568. height: math.unit(355, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Fave. Height",
  4573. height: math.unit(2400, "feet")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(300, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/appledectomy/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(2500, "feet")
  4593. },
  4594. {
  4595. name: "Megamacro",
  4596. height: math.unit(50, "miles"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Gigamacro",
  4601. height: math.unit(5000, "miles")
  4602. },
  4603. {
  4604. name: "Teramacro",
  4605. height: math.unit(250000, "miles")
  4606. },
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(200, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/vulpes/front.svg",
  4618. extra: 573 / 543,
  4619. bottom: 0.033
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(200, "lbs"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/vulpes/side.svg",
  4628. extra: 577 / 549,
  4629. bottom: 11 / 588
  4630. }
  4631. },
  4632. back: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(200, "lbs"),
  4635. name: "Back",
  4636. image: {
  4637. source: "./media/characters/vulpes/back.svg",
  4638. extra: 573 / 549,
  4639. bottom: 20 / 593
  4640. }
  4641. },
  4642. feet: {
  4643. height: math.unit(1.276, "feet"),
  4644. name: "Feet",
  4645. image: {
  4646. source: "./media/characters/vulpes/feet.svg"
  4647. }
  4648. },
  4649. maw: {
  4650. height: math.unit(1.18, "feet"),
  4651. name: "Maw",
  4652. image: {
  4653. source: "./media/characters/vulpes/maw.svg"
  4654. }
  4655. },
  4656. },
  4657. [
  4658. {
  4659. name: "Micro",
  4660. height: math.unit(2, "inches")
  4661. },
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(6.3, "feet")
  4665. },
  4666. {
  4667. name: "Macro",
  4668. height: math.unit(850, "feet")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(7500, "feet"),
  4673. default: true
  4674. },
  4675. {
  4676. name: "Gigamacro",
  4677. height: math.unit(570000, "miles")
  4678. }
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(210, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/rain-fallen/front.svg"
  4690. }
  4691. },
  4692. side: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(210, "lbs"),
  4695. name: "Side",
  4696. image: {
  4697. source: "./media/characters/rain-fallen/side.svg"
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(210, "lbs"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/rain-fallen/back.svg"
  4706. }
  4707. },
  4708. feral: {
  4709. height: math.unit(9, "feet"),
  4710. weight: math.unit(700, "lbs"),
  4711. name: "Feral",
  4712. image: {
  4713. source: "./media/characters/rain-fallen/feral.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Meddling with Mortals",
  4720. height: math.unit(8 + 8/12, "feet")
  4721. },
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(5, "meter")
  4725. },
  4726. {
  4727. name: "Macro",
  4728. height: math.unit(150, "meter"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Megamacro",
  4733. height: math.unit(278e6, "meter")
  4734. },
  4735. {
  4736. name: "Gigamacro",
  4737. height: math.unit(2e9, "meter")
  4738. },
  4739. {
  4740. name: "Teramacro",
  4741. height: math.unit(8e12, "meter")
  4742. },
  4743. {
  4744. name: "Devourer",
  4745. height: math.unit(14, "zettameters")
  4746. },
  4747. {
  4748. name: "Scarlet King",
  4749. height: math.unit(18, "yottameters")
  4750. },
  4751. {
  4752. name: "Void",
  4753. height: math.unit(1e88, "yottameters")
  4754. }
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4759. {
  4760. standing: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(180, "lbs"),
  4763. name: "Standing",
  4764. image: {
  4765. source: "./media/characters/zaakira/standing.svg",
  4766. extra: 1599/1504,
  4767. bottom: 39/1638
  4768. }
  4769. },
  4770. laying: {
  4771. height: math.unit(3, "feet"),
  4772. weight: math.unit(180, "lbs"),
  4773. name: "Laying",
  4774. image: {
  4775. source: "./media/characters/zaakira/laying.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(12, "feet")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(279, "feet"),
  4787. default: true
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4793. {
  4794. femSfw: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(350, "lb"),
  4797. name: "Fem",
  4798. image: {
  4799. source: "./media/characters/sigvald/fem-sfw.svg",
  4800. extra: 182 / 164,
  4801. bottom: 8.7 / 190.5
  4802. }
  4803. },
  4804. femNsfw: {
  4805. height: math.unit(8, "feet"),
  4806. weight: math.unit(350, "lb"),
  4807. name: "Fem (NSFW)",
  4808. image: {
  4809. source: "./media/characters/sigvald/fem-nsfw.svg",
  4810. extra: 182 / 164,
  4811. bottom: 8.7 / 190.5
  4812. }
  4813. },
  4814. maleNsfw: {
  4815. height: math.unit(8, "feet"),
  4816. weight: math.unit(350, "lb"),
  4817. name: "Male (NSFW)",
  4818. image: {
  4819. source: "./media/characters/sigvald/male-nsfw.svg",
  4820. extra: 182 / 164,
  4821. bottom: 8.7 / 190.5
  4822. }
  4823. },
  4824. hermNsfw: {
  4825. height: math.unit(8, "feet"),
  4826. weight: math.unit(350, "lb"),
  4827. name: "Herm (NSFW)",
  4828. image: {
  4829. source: "./media/characters/sigvald/herm-nsfw.svg",
  4830. extra: 182 / 164,
  4831. bottom: 8.7 / 190.5
  4832. }
  4833. },
  4834. dick: {
  4835. height: math.unit(2.36, "feet"),
  4836. name: "Dick",
  4837. image: {
  4838. source: "./media/characters/sigvald/dick.svg"
  4839. }
  4840. },
  4841. eye: {
  4842. height: math.unit(0.31, "feet"),
  4843. name: "Eye",
  4844. image: {
  4845. source: "./media/characters/sigvald/eye.svg"
  4846. }
  4847. },
  4848. mouth: {
  4849. height: math.unit(0.92, "feet"),
  4850. name: "Mouth",
  4851. image: {
  4852. source: "./media/characters/sigvald/mouth.svg"
  4853. }
  4854. },
  4855. paws: {
  4856. height: math.unit(2.2, "feet"),
  4857. name: "Paws",
  4858. image: {
  4859. source: "./media/characters/sigvald/paws.svg"
  4860. }
  4861. }
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(8, "feet")
  4867. },
  4868. {
  4869. name: "Large",
  4870. height: math.unit(12, "feet")
  4871. },
  4872. {
  4873. name: "Larger",
  4874. height: math.unit(20, "feet")
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(150, "feet")
  4879. },
  4880. {
  4881. name: "Macro+",
  4882. height: math.unit(200, "feet"),
  4883. default: true
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4889. {
  4890. side: {
  4891. height: math.unit(12, "feet"),
  4892. weight: math.unit(2000, "kg"),
  4893. name: "Side",
  4894. image: {
  4895. source: "./media/characters/scott/side.svg",
  4896. extra: 754 / 724,
  4897. bottom: 0.069
  4898. }
  4899. },
  4900. upright: {
  4901. height: math.unit(12, "feet"),
  4902. weight: math.unit(2000, "kg"),
  4903. name: "Upright",
  4904. image: {
  4905. source: "./media/characters/scott/upright.svg",
  4906. extra: 3881 / 3722,
  4907. bottom: 0.05
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(12, "feet"),
  4915. default: true
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4921. {
  4922. side: {
  4923. height: math.unit(8, "meters"),
  4924. weight: math.unit(84755, "lbs"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/tobias/side.svg",
  4928. extra: 1474 / 1096,
  4929. bottom: 38.9 / 1513.1235
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(8, "meters"),
  4937. default: true
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4943. {
  4944. front: {
  4945. height: math.unit(5.5, "feet"),
  4946. weight: math.unit(400, "lbs"),
  4947. name: "Front",
  4948. image: {
  4949. source: "./media/characters/kieran/front.svg",
  4950. extra: 2694 / 2364,
  4951. bottom: 217 / 2908
  4952. }
  4953. },
  4954. side: {
  4955. height: math.unit(5.5, "feet"),
  4956. weight: math.unit(400, "lbs"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/kieran/side.svg",
  4960. extra: 875 / 777,
  4961. bottom: 84.6 / 959
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(5.5, "feet"),
  4969. default: true
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4975. {
  4976. side: {
  4977. height: math.unit(2, "meters"),
  4978. weight: math.unit(70, "kg"),
  4979. name: "Side",
  4980. image: {
  4981. source: "./media/characters/sanya/side.svg",
  4982. bottom: 0.02,
  4983. extra: 1.02
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Small",
  4990. height: math.unit(2, "meters")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(3, "meters")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(16, "meters"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(120, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/miranda/front.svg",
  5012. extra: 195 / 185,
  5013. bottom: 10.9 / 206.5
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(2, "meters"),
  5018. weight: math.unit(120, "kg"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/miranda/back.svg",
  5022. extra: 201 / 193,
  5023. bottom: 2.3 / 203.7
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(10, "feet"),
  5031. default: true
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "James", species: ["deer"], tags: ["anthro"] },
  5037. {
  5038. side: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(100, "kg"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/james/front.svg",
  5044. extra: 10 / 8.5
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(8.5, "feet"),
  5052. default: true
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5058. {
  5059. side: {
  5060. height: math.unit(9.5, "feet"),
  5061. weight: math.unit(2500, "lbs"),
  5062. name: "Side",
  5063. image: {
  5064. source: "./media/characters/heather/side.svg"
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(9.5, "feet"),
  5072. default: true
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5078. {
  5079. side: {
  5080. height: math.unit(6.5, "feet"),
  5081. weight: math.unit(400, "lbs"),
  5082. name: "Side",
  5083. image: {
  5084. source: "./media/characters/lukas/side.svg",
  5085. extra: 7.25 / 6.5
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(6.5, "feet"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5099. {
  5100. side: {
  5101. height: math.unit(5, "feet"),
  5102. weight: math.unit(3000, "lbs"),
  5103. name: "Side",
  5104. image: {
  5105. source: "./media/characters/louise/side.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(5, "feet"),
  5113. default: true
  5114. }
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5119. {
  5120. side: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(150, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/ramona/side.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(5.3, "meters"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(20, "stories")
  5138. },
  5139. {
  5140. name: "Macro+",
  5141. height: math.unit(50, "stories")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5147. {
  5148. standing: {
  5149. height: math.unit(5.75, "feet"),
  5150. weight: math.unit(160, "lbs"),
  5151. name: "Standing",
  5152. image: {
  5153. source: "./media/characters/deerpuff/standing.svg",
  5154. extra: 682 / 624
  5155. }
  5156. },
  5157. sitting: {
  5158. height: math.unit(5.75 / 1.79, "feet"),
  5159. weight: math.unit(160, "lbs"),
  5160. name: "Sitting",
  5161. image: {
  5162. source: "./media/characters/deerpuff/sitting.svg",
  5163. bottom: 44 / 400,
  5164. extra: 1
  5165. }
  5166. },
  5167. taurLaying: {
  5168. height: math.unit(6, "feet"),
  5169. weight: math.unit(400, "lbs"),
  5170. name: "Taur (Laying)",
  5171. image: {
  5172. source: "./media/characters/deerpuff/taur-laying.svg"
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Puffball",
  5179. height: math.unit(6, "inches")
  5180. },
  5181. {
  5182. name: "Normalpuff",
  5183. height: math.unit(5.75, "feet")
  5184. },
  5185. {
  5186. name: "Macropuff",
  5187. height: math.unit(1500, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Megapuff",
  5192. height: math.unit(500, "miles")
  5193. },
  5194. {
  5195. name: "Gigapuff",
  5196. height: math.unit(250000, "miles")
  5197. },
  5198. {
  5199. name: "Omegapuff",
  5200. height: math.unit(1000, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5206. {
  5207. stomping: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(170, "lbs"),
  5210. name: "Stomping",
  5211. image: {
  5212. source: "./media/characters/vivian/stomping.svg"
  5213. }
  5214. },
  5215. sitting: {
  5216. height: math.unit(6 / 1.75, "feet"),
  5217. weight: math.unit(170, "lbs"),
  5218. name: "Sitting",
  5219. image: {
  5220. source: "./media/characters/vivian/sitting.svg",
  5221. bottom: 1 / 6.4,
  5222. extra: 1,
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(7, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(10, "stories")
  5235. },
  5236. {
  5237. name: "Macro+",
  5238. height: math.unit(30, "stories")
  5239. },
  5240. {
  5241. name: "Megamacro",
  5242. height: math.unit(10, "miles")
  5243. },
  5244. {
  5245. name: "Megamacro+",
  5246. height: math.unit(2750000, "meters")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(160, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/prince/front.svg",
  5259. extra: 3400 / 3000
  5260. }
  5261. },
  5262. jumping: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(160, "lbs"),
  5265. name: "Jumping",
  5266. image: {
  5267. source: "./media/characters/prince/jump.svg",
  5268. extra: 2555 / 2134
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7.75, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Not cute",
  5280. height: math.unit(17, "feet")
  5281. },
  5282. {
  5283. name: "I said NOT",
  5284. height: math.unit(91, "feet")
  5285. },
  5286. {
  5287. name: "Please stop",
  5288. height: math.unit(560, "feet")
  5289. },
  5290. {
  5291. name: "What have you done",
  5292. height: math.unit(2200, "feet")
  5293. },
  5294. {
  5295. name: "Deer God",
  5296. height: math.unit(3.6, "miles")
  5297. },
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5302. {
  5303. standing: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(300, "lbs"),
  5306. name: "Standing",
  5307. image: {
  5308. source: "./media/characters/psymon/standing.svg",
  5309. extra: 1888 / 1810,
  5310. bottom: 0.05
  5311. }
  5312. },
  5313. slithering: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(300, "lbs"),
  5316. name: "Slithering",
  5317. image: {
  5318. source: "./media/characters/psymon/slithering.svg",
  5319. extra: 1330 / 1224
  5320. }
  5321. },
  5322. slitheringAlt: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(300, "lbs"),
  5325. name: "Slithering (Alt)",
  5326. image: {
  5327. source: "./media/characters/psymon/slithering-alt.svg",
  5328. extra: 1330 / 1224
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(11.25, "feet"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Large",
  5340. height: math.unit(27, "feet")
  5341. },
  5342. {
  5343. name: "Giant",
  5344. height: math.unit(87, "feet")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(365, "feet")
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(3, "miles")
  5353. },
  5354. {
  5355. name: "World Serpent",
  5356. height: math.unit(8000, "miles")
  5357. },
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(180, "lbs"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/daimos/front.svg",
  5369. extra: 4160 / 3897,
  5370. bottom: 0.021
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(8, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Big Dog",
  5382. height: math.unit(22, "feet")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(127, "feet")
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(3600, "feet")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5396. {
  5397. side: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Side",
  5401. image: {
  5402. source: "./media/characters/blake/side.svg",
  5403. extra: 1212 / 1120,
  5404. bottom: 0.05
  5405. }
  5406. },
  5407. crouched: {
  5408. height: math.unit(6 * 0.57, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Crouched",
  5411. image: {
  5412. source: "./media/characters/blake/crouched.svg",
  5413. extra: 840 / 587,
  5414. bottom: 0.04
  5415. }
  5416. },
  5417. bent: {
  5418. height: math.unit(6 * 0.75, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Bent",
  5421. image: {
  5422. source: "./media/characters/blake/bent.svg",
  5423. extra: 592 / 544,
  5424. bottom: 0.035
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(8 + 1 / 6, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Big Backside",
  5436. height: math.unit(37, "feet")
  5437. },
  5438. {
  5439. name: "Subway Shredder",
  5440. height: math.unit(72, "feet")
  5441. },
  5442. {
  5443. name: "City Carver",
  5444. height: math.unit(1675, "feet")
  5445. },
  5446. {
  5447. name: "Tectonic Tweaker",
  5448. height: math.unit(2300, "miles")
  5449. },
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5454. {
  5455. front: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(180, "lbs"),
  5458. name: "Front",
  5459. image: {
  5460. source: "./media/characters/guisetto/front.svg",
  5461. extra: 856 / 817,
  5462. bottom: 0.06
  5463. }
  5464. },
  5465. airborne: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Airborne",
  5469. image: {
  5470. source: "./media/characters/guisetto/airborne.svg",
  5471. extra: 584 / 525
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(10 + 11 / 12, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(35, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(475, "feet")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(180, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/luxor/front.svg",
  5500. extra: 2940 / 2152
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(180, "lbs"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/luxor/back.svg",
  5509. extra: 1083 / 960
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(5 + 5 / 6, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Lamp",
  5521. height: math.unit(50, "feet")
  5522. },
  5523. {
  5524. name: "Lämp",
  5525. height: math.unit(300, "feet")
  5526. },
  5527. {
  5528. name: "The sun is a lamp",
  5529. height: math.unit(250000, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(50, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/huoyan/front.svg"
  5542. }
  5543. },
  5544. side: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Side",
  5548. image: {
  5549. source: "./media/characters/huoyan/side.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Chef",
  5556. height: math.unit(9, "feet")
  5557. },
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(65, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(780, "feet")
  5566. },
  5567. {
  5568. name: "Flaming Mountain",
  5569. height: math.unit(4.8, "miles")
  5570. },
  5571. {
  5572. name: "Celestial",
  5573. height: math.unit(765000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(5 + 3 / 4, "feet"),
  5582. weight: math.unit(120, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/tails/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(5 + 3 / 4, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(4, "feet"),
  5602. weight: math.unit(50, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/rainy/front.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(800, "feet"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(150, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/rainier/front.svg"
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Micro",
  5632. height: math.unit(2, "mm"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(8 + 4/12, "feet"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/andy-renard/front.svg",
  5645. extra: 1839/1726,
  5646. bottom: 134/1973
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(8 + 4/12, "feet"),
  5651. name: "Back",
  5652. image: {
  5653. source: "./media/characters/andy-renard/back.svg",
  5654. extra: 1838/1710,
  5655. bottom: 105/1943
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Tall",
  5662. height: math.unit(8 + 4/12, "feet")
  5663. },
  5664. {
  5665. name: "Mini Macro",
  5666. height: math.unit(15, "feet"),
  5667. default: true
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(100, "feet")
  5672. },
  5673. {
  5674. name: "Mega Macro",
  5675. height: math.unit(1000, "feet")
  5676. },
  5677. {
  5678. name: "Giga Macro",
  5679. height: math.unit(10, "miles")
  5680. },
  5681. {
  5682. name: "God Macro",
  5683. height: math.unit(1, "multiverse")
  5684. },
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(210, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/cimmaron/front-sfw.svg",
  5696. extra: 701 / 676,
  5697. bottom: 0.046
  5698. }
  5699. },
  5700. back: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(210, "lbs"),
  5703. name: "Back",
  5704. image: {
  5705. source: "./media/characters/cimmaron/back-sfw.svg",
  5706. extra: 701 / 676,
  5707. bottom: 0.046
  5708. }
  5709. },
  5710. frontNsfw: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(210, "lbs"),
  5713. name: "Front (NSFW)",
  5714. image: {
  5715. source: "./media/characters/cimmaron/front-nsfw.svg",
  5716. extra: 701 / 676,
  5717. bottom: 0.046
  5718. }
  5719. },
  5720. backNsfw: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Back (NSFW)",
  5724. image: {
  5725. source: "./media/characters/cimmaron/back-nsfw.svg",
  5726. extra: 701 / 676,
  5727. bottom: 0.046
  5728. }
  5729. },
  5730. dick: {
  5731. height: math.unit(1.714, "feet"),
  5732. name: "Dick",
  5733. image: {
  5734. source: "./media/characters/cimmaron/dick.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(6, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Macro Mayor",
  5746. height: math.unit(350, "meters")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(200, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/akari/front.svg",
  5759. extra: 962 / 901,
  5760. bottom: 0.04
  5761. }
  5762. }
  5763. },
  5764. [
  5765. {
  5766. name: "Micro",
  5767. height: math.unit(5, "inches"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(7, "feet")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(140, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/cynosura/front.svg",
  5785. extra: 896 / 847
  5786. }
  5787. },
  5788. back: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(140, "lbs"),
  5791. name: "Back",
  5792. image: {
  5793. source: "./media/characters/cynosura/back.svg",
  5794. extra: 1365 / 1250
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Micro",
  5801. height: math.unit(4, "inches")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(5.75, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Tall",
  5810. height: math.unit(10, "feet")
  5811. },
  5812. {
  5813. name: "Big",
  5814. height: math.unit(20, "feet")
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(50, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(13 + 2/12, "feet"),
  5827. weight: math.unit(800, "kg"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/gin/front.svg",
  5831. extra: 1312/1191,
  5832. bottom: 45/1357
  5833. }
  5834. },
  5835. mouth: {
  5836. height: math.unit(2.39 * 1.8, "feet"),
  5837. name: "Mouth",
  5838. image: {
  5839. source: "./media/characters/gin/mouth.svg"
  5840. }
  5841. },
  5842. hand: {
  5843. height: math.unit(1.57 * 2.19, "feet"),
  5844. name: "Hand",
  5845. image: {
  5846. source: "./media/characters/gin/hand.svg"
  5847. }
  5848. },
  5849. foot: {
  5850. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5851. name: "Foot",
  5852. image: {
  5853. source: "./media/characters/gin/foot.svg"
  5854. }
  5855. },
  5856. sole: {
  5857. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5858. name: "Sole",
  5859. image: {
  5860. source: "./media/characters/gin/sole.svg"
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Very Small",
  5867. height: math.unit(13 + 2 / 12, "feet")
  5868. },
  5869. {
  5870. name: "Micro",
  5871. height: math.unit(600, "miles")
  5872. },
  5873. {
  5874. name: "Regular",
  5875. height: math.unit(20, "earths"),
  5876. default: true
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(2.2, "solarradii")
  5881. },
  5882. {
  5883. name: "Teramacro",
  5884. height: math.unit(1.2, "galaxies")
  5885. },
  5886. {
  5887. name: "Omegamacro",
  5888. height: math.unit(200, "universes")
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5894. {
  5895. front: {
  5896. height: math.unit(6 + 1 / 6, "feet"),
  5897. weight: math.unit(178, "lbs"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/guy/front.svg"
  5901. }
  5902. }
  5903. },
  5904. [
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(6 + 1 / 6, "feet"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Large",
  5912. height: math.unit(25 + 7 / 12, "feet")
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(60 + 9 / 12, "feet")
  5917. },
  5918. {
  5919. name: "Macro+",
  5920. height: math.unit(246, "feet")
  5921. },
  5922. {
  5923. name: "Macro++",
  5924. height: math.unit(878, "feet")
  5925. }
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(9, "feet"),
  5933. weight: math.unit(800, "lbs"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/tiberius/front.svg",
  5937. extra: 2295 / 2071
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(9, "feet"),
  5942. weight: math.unit(800, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/tiberius/back.svg",
  5946. extra: 2373 / 2160
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(9, "feet"),
  5954. default: true
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5960. {
  5961. front: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(600, "lbs"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/surgo/front.svg",
  5967. extra: 3591 / 2227
  5968. }
  5969. },
  5970. back: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(600, "lbs"),
  5973. name: "Back",
  5974. image: {
  5975. source: "./media/characters/surgo/back.svg",
  5976. extra: 3557 / 2228
  5977. }
  5978. },
  5979. laying: {
  5980. height: math.unit(6 * 0.85, "feet"),
  5981. weight: math.unit(600, "lbs"),
  5982. name: "Laying",
  5983. image: {
  5984. source: "./media/characters/surgo/laying.svg"
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(6, "feet"),
  5992. default: true
  5993. }
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5998. {
  5999. side: {
  6000. height: math.unit(6, "feet"),
  6001. weight: math.unit(150, "lbs"),
  6002. name: "Side",
  6003. image: {
  6004. source: "./media/characters/cibus/side.svg",
  6005. extra: 800 / 400
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(6, "feet"),
  6013. default: true
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(240, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/nibbles/front.svg"
  6026. }
  6027. },
  6028. side: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(240, "lbs"),
  6031. name: "Side",
  6032. image: {
  6033. source: "./media/characters/nibbles/side.svg"
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(9, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6047. {
  6048. side: {
  6049. height: math.unit(5 + 1 / 6, "feet"),
  6050. weight: math.unit(130, "lbs"),
  6051. name: "Side",
  6052. image: {
  6053. source: "./media/characters/rikky/side.svg",
  6054. extra: 851 / 801
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(5 + 1 / 6, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(152, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Megamacro",
  6070. height: math.unit(7, "miles")
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6076. {
  6077. side: {
  6078. height: math.unit(370, "cm"),
  6079. weight: math.unit(350, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/malfressa/side.svg"
  6083. }
  6084. },
  6085. walking: {
  6086. height: math.unit(370, "cm"),
  6087. weight: math.unit(350, "lbs"),
  6088. name: "Walking",
  6089. image: {
  6090. source: "./media/characters/malfressa/walking.svg"
  6091. }
  6092. },
  6093. feral: {
  6094. height: math.unit(2500, "cm"),
  6095. weight: math.unit(100000, "lbs"),
  6096. name: "Feral",
  6097. image: {
  6098. source: "./media/characters/malfressa/feral.svg",
  6099. extra: 2108 / 837,
  6100. bottom: 0.02
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(370, "cm")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(300, "meters"),
  6112. default: true
  6113. }
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(60, "kg"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/jaro/front.svg"
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(60, "kg"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/jaro/back.svg"
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Micro",
  6139. height: math.unit(7, "inches")
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(5.5, "feet"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Minimacro",
  6148. height: math.unit(20, "feet")
  6149. },
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(200, "meters")
  6153. }
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(195, "lb"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/rogue/front.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(90, "feet"),
  6172. default: true
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(5 + 8 / 12, "feet"),
  6181. weight: math.unit(140, "lb"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/piper/front.svg",
  6185. extra: 3948/3655,
  6186. bottom: 0/3948
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(2, "inches")
  6194. },
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(5 + 8 / 12, "feet")
  6198. },
  6199. {
  6200. name: "Macro",
  6201. height: math.unit(250, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Megamacro",
  6206. height: math.unit(7, "miles")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(220, "lb"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/gemini/front.svg"
  6219. }
  6220. },
  6221. back: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(220, "lb"),
  6224. name: "Back",
  6225. image: {
  6226. source: "./media/characters/gemini/back.svg"
  6227. }
  6228. },
  6229. kneeling: {
  6230. height: math.unit(6 / 1.5, "feet"),
  6231. weight: math.unit(220, "lb"),
  6232. name: "Kneeling",
  6233. image: {
  6234. source: "./media/characters/gemini/kneeling.svg",
  6235. bottom: 0.02
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(300, "meters"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Megamacro",
  6247. height: math.unit(6900, "meters")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6253. {
  6254. anthro: {
  6255. height: math.unit(2.35, "meters"),
  6256. weight: math.unit(73, "kg"),
  6257. name: "Anthro",
  6258. image: {
  6259. source: "./media/characters/alicia/anthro.svg",
  6260. extra: 2571 / 2385,
  6261. bottom: 75 / 2648
  6262. }
  6263. },
  6264. paw: {
  6265. height: math.unit(1.32, "feet"),
  6266. name: "Paw",
  6267. image: {
  6268. source: "./media/characters/alicia/paw.svg"
  6269. }
  6270. },
  6271. feral: {
  6272. height: math.unit(1.69, "meters"),
  6273. weight: math.unit(73, "kg"),
  6274. name: "Feral",
  6275. image: {
  6276. source: "./media/characters/alicia/feral.svg",
  6277. extra: 2123 / 1715,
  6278. bottom: 222 / 2349
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(2.35, "meters")
  6286. },
  6287. {
  6288. name: "Macro",
  6289. height: math.unit(60, "meters"),
  6290. default: true
  6291. },
  6292. {
  6293. name: "Megamacro",
  6294. height: math.unit(10000, "kilometers")
  6295. },
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6300. {
  6301. front: {
  6302. height: math.unit(7, "feet"),
  6303. weight: math.unit(250, "lbs"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/archy/front.svg"
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(1, "inch")
  6314. },
  6315. {
  6316. name: "Shorty",
  6317. height: math.unit(5, "feet")
  6318. },
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(7, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(600, "meters"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Megamacro",
  6330. height: math.unit(1, "mile")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(1.65, "meters"),
  6339. weight: math.unit(74, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/berri/front.svg",
  6343. extra: 857 / 837,
  6344. bottom: 18 / 877
  6345. }
  6346. },
  6347. bum: {
  6348. height: math.unit(1.46, "feet"),
  6349. name: "Bum",
  6350. image: {
  6351. source: "./media/characters/berri/bum.svg"
  6352. }
  6353. },
  6354. mouth: {
  6355. height: math.unit(0.44, "feet"),
  6356. name: "Mouth",
  6357. image: {
  6358. source: "./media/characters/berri/mouth.svg"
  6359. }
  6360. },
  6361. paw: {
  6362. height: math.unit(0.826, "feet"),
  6363. name: "Paw",
  6364. image: {
  6365. source: "./media/characters/berri/paw.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(1.65, "meters")
  6373. },
  6374. {
  6375. name: "Macro",
  6376. height: math.unit(60, "m"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Megamacro",
  6381. height: math.unit(9.213, "km")
  6382. },
  6383. {
  6384. name: "Planet Eater",
  6385. height: math.unit(489, "megameters")
  6386. },
  6387. {
  6388. name: "Teramacro",
  6389. height: math.unit(2471635000000, "meters")
  6390. },
  6391. {
  6392. name: "Examacro",
  6393. height: math.unit(8.0624e+26, "meters")
  6394. }
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(1.72, "meters"),
  6402. weight: math.unit(68, "kg"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/lexi/front.svg"
  6406. }
  6407. }
  6408. },
  6409. [
  6410. {
  6411. name: "Very Smol",
  6412. height: math.unit(10, "mm")
  6413. },
  6414. {
  6415. name: "Micro",
  6416. height: math.unit(6.8, "cm"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(1.72, "m")
  6422. }
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(1.69, "meters"),
  6430. weight: math.unit(68, "kg"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/martin/front.svg",
  6434. extra: 596 / 581
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Micro",
  6441. height: math.unit(6.85, "cm"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(1.69, "m")
  6447. }
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(1.69, "meters"),
  6455. weight: math.unit(68, "kg"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/juno/front.svg"
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(7, "cm")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(1.89, "m")
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(353, "meters"),
  6474. default: true
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(1.93, "meters"),
  6483. weight: math.unit(83, "kg"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/samantha/front.svg"
  6487. }
  6488. },
  6489. frontClothed: {
  6490. height: math.unit(1.93, "meters"),
  6491. weight: math.unit(83, "kg"),
  6492. name: "Front (Clothed)",
  6493. image: {
  6494. source: "./media/characters/samantha/front-clothed.svg"
  6495. }
  6496. },
  6497. back: {
  6498. height: math.unit(1.93, "meters"),
  6499. weight: math.unit(83, "kg"),
  6500. name: "Back",
  6501. image: {
  6502. source: "./media/characters/samantha/back.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(1.93, "m")
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(74, "meters"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Macro+",
  6518. height: math.unit(223, "meters"),
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(8381, "meters"),
  6523. },
  6524. {
  6525. name: "Megamacro+",
  6526. height: math.unit(12000, "kilometers")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(1.92, "meters"),
  6535. weight: math.unit(80, "kg"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/dr-clay/front.svg"
  6539. }
  6540. },
  6541. frontClothed: {
  6542. height: math.unit(1.92, "meters"),
  6543. weight: math.unit(80, "kg"),
  6544. name: "Front (Clothed)",
  6545. image: {
  6546. source: "./media/characters/dr-clay/front-clothed.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.92, "m")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(214, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro+",
  6562. height: math.unit(12.237, "meters"),
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(557, "megameters"),
  6567. },
  6568. {
  6569. name: "Unimaginable",
  6570. height: math.unit(120e9, "lightyears")
  6571. },
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(2, "meters"),
  6579. weight: math.unit(80, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Teramacro",
  6589. height: math.unit(500000, "lightyears"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6596. {
  6597. crux: {
  6598. height: math.unit(2, "meters"),
  6599. weight: math.unit(150, "kg"),
  6600. name: "Crux",
  6601. image: {
  6602. source: "./media/characters/vemus/crux.svg",
  6603. extra: 1074/936,
  6604. bottom: 23/1097
  6605. }
  6606. },
  6607. skunkTanuki: {
  6608. height: math.unit(2, "meters"),
  6609. weight: math.unit(150, "kg"),
  6610. name: "Skunk-Tanuki",
  6611. image: {
  6612. source: "./media/characters/vemus/skunk-tanuki.svg",
  6613. extra: 926/893,
  6614. bottom: 20/946
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(3.75, "meters"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Big",
  6626. height: math.unit(8, "meters")
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(100, "meters")
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(1500, "meters")
  6635. },
  6636. {
  6637. name: "Stellar",
  6638. height: math.unit(14e8, "meters")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(2, "meters"),
  6647. weight: math.unit(70, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/beherit/front.svg",
  6651. extra: 1408 / 1242
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(6, "feet")
  6659. },
  6660. {
  6661. name: "Lorg",
  6662. height: math.unit(25, "feet"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Lorger",
  6667. height: math.unit(75, "feet")
  6668. },
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(200, "meters")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(2, "meters"),
  6680. weight: math.unit(150, "kg"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/everett/front.svg",
  6684. extra: 2038 / 1737,
  6685. bottom: 0.03
  6686. }
  6687. },
  6688. paw: {
  6689. height: math.unit(2 / 3.6, "meters"),
  6690. name: "Paw",
  6691. image: {
  6692. source: "./media/characters/everett/paw.svg"
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(15, "feet"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Lorg",
  6704. height: math.unit(70, "feet"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Lorger",
  6709. height: math.unit(250, "feet")
  6710. },
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(500, "meters")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(2, "meters"),
  6722. weight: math.unit(86, "kg"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/rose/front.svg",
  6726. extra: 1785/1636,
  6727. bottom: 30/1815
  6728. }
  6729. },
  6730. frontSporty: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(86, "kg"),
  6733. name: "Front (Sporty)",
  6734. image: {
  6735. source: "./media/characters/rose/front-sporty.svg",
  6736. extra: 350/335,
  6737. bottom: 10/360
  6738. }
  6739. },
  6740. frontAlt: {
  6741. height: math.unit(1.6, "meters"),
  6742. weight: math.unit(86, "kg"),
  6743. name: "Front (Alt)",
  6744. image: {
  6745. source: "./media/characters/rose/front-alt.svg",
  6746. extra: 299/283,
  6747. bottom: 3/302
  6748. }
  6749. },
  6750. plush: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(86/3, "kg"),
  6753. name: "Plush",
  6754. image: {
  6755. source: "./media/characters/rose/plush.svg",
  6756. extra: 361/337,
  6757. bottom: 11/372
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "True Micro",
  6764. height: math.unit(9, "cm")
  6765. },
  6766. {
  6767. name: "Micro",
  6768. height: math.unit(16, "cm")
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(1.85, "meters"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Mini-Macro",
  6777. height: math.unit(5, "meters")
  6778. },
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(15, "meters")
  6782. },
  6783. {
  6784. name: "True Macro",
  6785. height: math.unit(40, "meters")
  6786. },
  6787. {
  6788. name: "City Scale",
  6789. height: math.unit(1, "km")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(2, "meters"),
  6798. weight: math.unit(350, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/regal/front.svg"
  6802. }
  6803. },
  6804. back: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(350, "lbs"),
  6807. name: "Back",
  6808. image: {
  6809. source: "./media/characters/regal/back.svg"
  6810. }
  6811. },
  6812. },
  6813. [
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(350, "feet"),
  6817. default: true
  6818. }
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(4 + 11 / 12, "feet"),
  6826. weight: math.unit(100, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/opal/front.svg"
  6830. }
  6831. },
  6832. frontAlt: {
  6833. height: math.unit(4 + 11 / 12, "feet"),
  6834. weight: math.unit(100, "lbs"),
  6835. name: "Front (Alt)",
  6836. image: {
  6837. source: "./media/characters/opal/front-alt.svg"
  6838. }
  6839. },
  6840. },
  6841. [
  6842. {
  6843. name: "Small",
  6844. height: math.unit(4 + 11 / 12, "feet")
  6845. },
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(20, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(120, "feet")
  6854. },
  6855. {
  6856. name: "Megamacro",
  6857. height: math.unit(80, "miles")
  6858. },
  6859. {
  6860. name: "True Size",
  6861. height: math.unit(100000, "lightyears")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(200, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/vector-wuff/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(2.8, "meters")
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(450, "meters"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Megamacro",
  6889. height: math.unit(15, "kilometers")
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(256, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/dannik/front.svg"
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(69.57, "meters"),
  6909. default: true
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(120, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/azura-saharah/front.svg"
  6922. }
  6923. },
  6924. back: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lbs"),
  6927. name: "Back",
  6928. image: {
  6929. source: "./media/characters/azura-saharah/back.svg"
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Macro",
  6936. height: math.unit(100, "feet"),
  6937. default: true
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6943. {
  6944. side: {
  6945. height: math.unit(5 + 4 / 12, "feet"),
  6946. weight: math.unit(163, "lbs"),
  6947. name: "Side",
  6948. image: {
  6949. source: "./media/characters/kennedy/side.svg"
  6950. }
  6951. }
  6952. },
  6953. [
  6954. {
  6955. name: "Standard Doggo",
  6956. height: math.unit(5 + 4 / 12, "feet")
  6957. },
  6958. {
  6959. name: "Big Doggo",
  6960. height: math.unit(25 + 3 / 12, "feet"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(90, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/odi-lunar/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Micro",
  6980. height: math.unit(3, "inches"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(5.5, "feet")
  6986. }
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6991. {
  6992. back: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(220, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/mandake/back.svg"
  6998. }
  6999. }
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(7, "feet"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(78, "feet")
  7010. },
  7011. {
  7012. name: "Macro+",
  7013. height: math.unit(300, "meters")
  7014. },
  7015. {
  7016. name: "Macro++",
  7017. height: math.unit(2400, "feet")
  7018. },
  7019. {
  7020. name: "Megamacro",
  7021. height: math.unit(5167, "meters")
  7022. },
  7023. {
  7024. name: "Gigamacro",
  7025. height: math.unit(41769, "miles")
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(120, "lbs"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/yozey/front.svg"
  7038. }
  7039. },
  7040. frontAlt: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(120, "lbs"),
  7043. name: "Front (Alt)",
  7044. image: {
  7045. source: "./media/characters/yozey/front-alt.svg"
  7046. }
  7047. },
  7048. side: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(120, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/yozey/side.svg"
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(3, "inches"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(6, "feet")
  7066. }
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(103, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/valeska-voss/front.svg"
  7078. }
  7079. }
  7080. },
  7081. [
  7082. {
  7083. name: "Mini-Sized Sub",
  7084. height: math.unit(3.1, "inches")
  7085. },
  7086. {
  7087. name: "Mid-Sized Sub",
  7088. height: math.unit(6.2, "inches")
  7089. },
  7090. {
  7091. name: "Full-Sized Sub",
  7092. height: math.unit(9.3, "inches")
  7093. },
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(5 + 2 / 12, "foot"),
  7097. default: true
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(160, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/gene-zeta/front.svg",
  7110. extra: 3006 / 2826,
  7111. bottom: 182 / 3188
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(6, "inches")
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(5 + 11 / 12, "foot"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(140, "feet")
  7128. },
  7129. {
  7130. name: "Supercharged",
  7131. height: math.unit(2500, "feet")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(350, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/razinox/front.svg",
  7144. extra: 1686 / 1548,
  7145. bottom: 28.2 / 1868
  7146. }
  7147. },
  7148. back: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(350, "lbs"),
  7151. name: "Back",
  7152. image: {
  7153. source: "./media/characters/razinox/back.svg",
  7154. extra: 1660 / 1590,
  7155. bottom: 15 / 1665
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Normal",
  7162. height: math.unit(10 + 8 / 12, "foot")
  7163. },
  7164. {
  7165. name: "Minimacro",
  7166. height: math.unit(15, "foot")
  7167. },
  7168. {
  7169. name: "Macro",
  7170. height: math.unit(60, "foot"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Megamacro",
  7175. height: math.unit(5, "miles")
  7176. },
  7177. {
  7178. name: "Gigamacro",
  7179. height: math.unit(6000, "miles")
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(150, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/cobalt/front.svg"
  7192. }
  7193. }
  7194. },
  7195. [
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(8 + 1 / 12, "foot")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(111, "foot"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Supracosmic",
  7207. height: math.unit(1e42, "feet")
  7208. },
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7213. {
  7214. front: {
  7215. height: math.unit(6, "feet"),
  7216. weight: math.unit(140, "lbs"),
  7217. name: "Front",
  7218. image: {
  7219. source: "./media/characters/amanda/front.svg"
  7220. }
  7221. }
  7222. },
  7223. [
  7224. {
  7225. name: "Micro",
  7226. height: math.unit(5, "inches"),
  7227. default: true
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2.75, "meters"),
  7236. weight: math.unit(1200, "lb"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/teal/front.svg",
  7240. extra: 2463 / 2320,
  7241. bottom: 166 / 2629
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(2.75, "meters"),
  7246. weight: math.unit(1200, "lb"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/teal/back.svg",
  7250. extra: 2580 / 2489,
  7251. bottom: 151 / 2731
  7252. }
  7253. },
  7254. sitting: {
  7255. height: math.unit(1.9, "meters"),
  7256. weight: math.unit(1200, "lb"),
  7257. name: "Sitting",
  7258. image: {
  7259. source: "./media/characters/teal/sitting.svg",
  7260. extra: 623 / 590,
  7261. bottom: 121 / 744
  7262. }
  7263. },
  7264. standing: {
  7265. height: math.unit(2.75, "meters"),
  7266. weight: math.unit(1200, "lb"),
  7267. name: "Standing",
  7268. image: {
  7269. source: "./media/characters/teal/standing.svg",
  7270. extra: 923 / 893,
  7271. bottom: 60 / 983
  7272. }
  7273. },
  7274. stretching: {
  7275. height: math.unit(3.65, "meters"),
  7276. weight: math.unit(1200, "lb"),
  7277. name: "Stretching",
  7278. image: {
  7279. source: "./media/characters/teal/stretching.svg",
  7280. extra: 1276 / 1244,
  7281. bottom: 0 / 1276
  7282. }
  7283. },
  7284. legged: {
  7285. height: math.unit(1.3, "meters"),
  7286. weight: math.unit(100, "lb"),
  7287. name: "Legged",
  7288. image: {
  7289. source: "./media/characters/teal/legged.svg",
  7290. extra: 462 / 437,
  7291. bottom: 24 / 486
  7292. }
  7293. },
  7294. naga: {
  7295. height: math.unit(5.4, "meters"),
  7296. weight: math.unit(4000, "lb"),
  7297. name: "Naga",
  7298. image: {
  7299. source: "./media/characters/teal/naga.svg",
  7300. extra: 1902 / 1858,
  7301. bottom: 0 / 1902
  7302. }
  7303. },
  7304. hand: {
  7305. height: math.unit(0.52, "meters"),
  7306. name: "Hand",
  7307. image: {
  7308. source: "./media/characters/teal/hand.svg"
  7309. }
  7310. },
  7311. maw: {
  7312. height: math.unit(0.43, "meters"),
  7313. name: "Maw",
  7314. image: {
  7315. source: "./media/characters/teal/maw.svg"
  7316. }
  7317. },
  7318. slit: {
  7319. height: math.unit(0.25, "meters"),
  7320. name: "Slit",
  7321. image: {
  7322. source: "./media/characters/teal/slit.svg"
  7323. }
  7324. },
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(2.75, "meters"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(300, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(2000, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7344. {
  7345. frontCat: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(180, "lbs"),
  7348. name: "Front (Cat)",
  7349. image: {
  7350. source: "./media/characters/ravin-amulet/front-cat.svg"
  7351. }
  7352. },
  7353. frontCatAlt: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(180, "lbs"),
  7356. name: "Front (Alt, Cat)",
  7357. image: {
  7358. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7359. }
  7360. },
  7361. frontWerewolf: {
  7362. height: math.unit(6 * 1.2, "feet"),
  7363. weight: math.unit(225, "lbs"),
  7364. name: "Front (Werewolf)",
  7365. image: {
  7366. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7367. }
  7368. },
  7369. backWerewolf: {
  7370. height: math.unit(6 * 1.2, "feet"),
  7371. weight: math.unit(225, "lbs"),
  7372. name: "Back (Werewolf)",
  7373. image: {
  7374. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Nano",
  7381. height: math.unit(1, "micrometer")
  7382. },
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(1, "inch")
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(6, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(60, "feet")
  7395. }
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(165, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/fluoresce/front.svg"
  7407. }
  7408. }
  7409. },
  7410. [
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(6, "cm")
  7414. },
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(5 + 7 / 12, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(56, "feet")
  7423. },
  7424. {
  7425. name: "Megamacro",
  7426. height: math.unit(1.9, "miles")
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(9 + 6 / 12, "feet"),
  7435. weight: math.unit(523, "lbs"),
  7436. name: "Side",
  7437. image: {
  7438. source: "./media/characters/aurora/side.svg"
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(9 + 6 / 12, "feet")
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(96, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Macro+",
  7454. height: math.unit(243, "feet")
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(194, "cm"),
  7463. weight: math.unit(90, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/ranek/front.svg"
  7467. }
  7468. },
  7469. side: {
  7470. height: math.unit(194, "cm"),
  7471. weight: math.unit(90, "kg"),
  7472. name: "Side",
  7473. image: {
  7474. source: "./media/characters/ranek/side.svg"
  7475. }
  7476. },
  7477. back: {
  7478. height: math.unit(194, "cm"),
  7479. weight: math.unit(90, "kg"),
  7480. name: "Back",
  7481. image: {
  7482. source: "./media/characters/ranek/back.svg"
  7483. }
  7484. },
  7485. feral: {
  7486. height: math.unit(30, "cm"),
  7487. weight: math.unit(1.6, "lbs"),
  7488. name: "Feral",
  7489. image: {
  7490. source: "./media/characters/ranek/feral.svg"
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(194, "cm"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(100, "meters")
  7503. },
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(5 + 6 / 12, "feet"),
  7511. weight: math.unit(153, "lbs"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/andrew-cooper/front.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Nano",
  7521. height: math.unit(1, "mm")
  7522. },
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(2, "inches")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(5 + 6 / 12, "feet"),
  7530. default: true
  7531. }
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(180, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/akane-sato/front.svg",
  7543. extra: 1219 / 1140
  7544. }
  7545. },
  7546. back: {
  7547. height: math.unit(6, "feet"),
  7548. weight: math.unit(180, "lbs"),
  7549. name: "Back",
  7550. image: {
  7551. source: "./media/characters/akane-sato/back.svg",
  7552. extra: 1219 / 1170
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(2.5, "meters")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(250, "meters"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Megamacro",
  7568. height: math.unit(25, "km")
  7569. },
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(65, "kg"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/rook/front.svg",
  7581. extra: 960 / 950
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(8.8, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(88, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(8, "miles")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(12 + 2 / 12, "feet"),
  7606. weight: math.unit(808, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/prodigy/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(12 + 2 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(143, "feet")
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(400, "feet")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(225, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/daniel/front.svg"
  7638. }
  7639. },
  7640. leaning: {
  7641. height: math.unit(6, "feet"),
  7642. weight: math.unit(225, "lbs"),
  7643. name: "Leaning",
  7644. image: {
  7645. source: "./media/characters/daniel/leaning.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(1000, "feet"),
  7653. default: true
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(88, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/chiros/front.svg",
  7666. extra: 306 / 226
  7667. }
  7668. },
  7669. side: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(88, "lbs"),
  7672. name: "Side",
  7673. image: {
  7674. source: "./media/characters/chiros/side.svg",
  7675. extra: 306 / 226
  7676. }
  7677. },
  7678. },
  7679. [
  7680. {
  7681. name: "Normal",
  7682. height: math.unit(6, "cm"),
  7683. default: true
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7689. {
  7690. front: {
  7691. height: math.unit(6, "feet"),
  7692. weight: math.unit(100, "lbs"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/selka/front.svg",
  7696. extra: 947 / 887
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(5, "cm"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(8 + 3 / 12, "feet"),
  7713. weight: math.unit(424, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/verin/front.svg",
  7717. extra: 1845 / 1550
  7718. }
  7719. },
  7720. frontArmored: {
  7721. height: math.unit(8 + 3 / 12, "feet"),
  7722. weight: math.unit(424, "lbs"),
  7723. name: "Front (Armored)",
  7724. image: {
  7725. source: "./media/characters/verin/front-armor.svg",
  7726. extra: 1845 / 1550,
  7727. bottom: 0.01
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(8 + 3 / 12, "feet"),
  7732. weight: math.unit(424, "lbs"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/verin/back.svg",
  7736. bottom: 0.1,
  7737. extra: 1
  7738. }
  7739. },
  7740. foot: {
  7741. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7742. name: "Foot",
  7743. image: {
  7744. source: "./media/characters/verin/foot.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(8 + 3 / 12, "feet")
  7752. },
  7753. {
  7754. name: "Minimacro",
  7755. height: math.unit(21, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(626, "feet")
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(2.718, "meters"),
  7769. weight: math.unit(150, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/sovrim-terraquian/front.svg"
  7773. }
  7774. },
  7775. back: {
  7776. height: math.unit(2.718, "meters"),
  7777. weight: math.unit(150, "lbs"),
  7778. name: "Back",
  7779. image: {
  7780. source: "./media/characters/sovrim-terraquian/back.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(2, "inches")
  7788. },
  7789. {
  7790. name: "Small",
  7791. height: math.unit(1, "meter")
  7792. },
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(Math.E, "meters"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(20, "meters")
  7801. },
  7802. {
  7803. name: "Macro+",
  7804. height: math.unit(400, "meters")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(7, "feet"),
  7813. weight: math.unit(489, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/reece-silvermane/front.svg",
  7817. bottom: 0.02,
  7818. extra: 1
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(1.5, "miles"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(78, "kg"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/kane/front.svg",
  7839. extra: 978 / 899
  7840. }
  7841. },
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(2.1, "m"),
  7847. },
  7848. {
  7849. name: "Macro",
  7850. height: math.unit(1, "km"),
  7851. default: true
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(6, "feet"),
  7860. weight: math.unit(200, "kg"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/tegon/front.svg",
  7864. bottom: 0.01,
  7865. extra: 1
  7866. }
  7867. },
  7868. },
  7869. [
  7870. {
  7871. name: "Micro",
  7872. height: math.unit(1, "inch")
  7873. },
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(6 + 3 / 12, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(300, "feet")
  7882. },
  7883. {
  7884. name: "Megamacro",
  7885. height: math.unit(69, "miles")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7891. {
  7892. side: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(2304, "lbs"),
  7895. name: "Side",
  7896. image: {
  7897. source: "./media/characters/arcturax/side.svg",
  7898. extra: 790 / 376,
  7899. bottom: 0.01
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(2, "inch")
  7907. },
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(6, "feet")
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(39, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Megamacro",
  7919. height: math.unit(7, "miles")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(50, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/sentri/front.svg",
  7932. extra: 1750 / 1570,
  7933. bottom: 0.025
  7934. }
  7935. },
  7936. frontAlt: {
  7937. height: math.unit(6, "feet"),
  7938. weight: math.unit(50, "lbs"),
  7939. name: "Front (Alt)",
  7940. image: {
  7941. source: "./media/characters/sentri/front-alt.svg",
  7942. extra: 1750 / 1570,
  7943. bottom: 0.025
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(15, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(2500, "feet")
  7956. }
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(5 + 8 / 12, "feet"),
  7964. weight: math.unit(130, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/corvin/front.svg",
  7968. extra: 1803 / 1629
  7969. }
  7970. },
  7971. frontShirt: {
  7972. height: math.unit(5 + 8 / 12, "feet"),
  7973. weight: math.unit(130, "lbs"),
  7974. name: "Front (Shirt)",
  7975. image: {
  7976. source: "./media/characters/corvin/front-shirt.svg",
  7977. extra: 1803 / 1629
  7978. }
  7979. },
  7980. frontPoncho: {
  7981. height: math.unit(5 + 8 / 12, "feet"),
  7982. weight: math.unit(130, "lbs"),
  7983. name: "Front (Poncho)",
  7984. image: {
  7985. source: "./media/characters/corvin/front-poncho.svg",
  7986. extra: 1803 / 1629
  7987. }
  7988. },
  7989. side: {
  7990. height: math.unit(5 + 8 / 12, "feet"),
  7991. weight: math.unit(130, "lbs"),
  7992. name: "Side",
  7993. image: {
  7994. source: "./media/characters/corvin/side.svg",
  7995. extra: 1012 / 945
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(5 + 8 / 12, "feet"),
  8000. weight: math.unit(130, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/corvin/back.svg",
  8004. extra: 1803 / 1629
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(3, "inches")
  8012. },
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(5 + 8 / 12, "feet")
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(300, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Megamacro",
  8024. height: math.unit(500, "miles")
  8025. }
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(135, "lbs"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/q/front.svg",
  8037. extra: 854 / 752,
  8038. bottom: 0.005
  8039. }
  8040. },
  8041. back: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(130, "lbs"),
  8044. name: "Back",
  8045. image: {
  8046. source: "./media/characters/q/back.svg",
  8047. extra: 854 / 752
  8048. }
  8049. },
  8050. },
  8051. [
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(90, "feet"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "Extra Macro",
  8059. height: math.unit(300, "feet"),
  8060. },
  8061. {
  8062. name: "BIG WALF",
  8063. height: math.unit(750, "feet"),
  8064. },
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(6, "feet"),
  8072. weight: math.unit(150, "lbs"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/carley/front.svg",
  8076. extra: 3927 / 3540,
  8077. bottom: 29.2 / 735
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(6 + 3 / 12, "feet")
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(185, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Megamacro",
  8093. height: math.unit(8, "miles"),
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(3, "feet"),
  8102. weight: math.unit(28, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/citrine/front.svg"
  8106. }
  8107. }
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(3, "feet"),
  8113. default: true
  8114. }
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8119. {
  8120. front: {
  8121. height: math.unit(14, "feet"),
  8122. weight: math.unit(1450, "kg"),
  8123. capacity: math.unit(15, "people"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/aura-starwind/front.svg",
  8127. extra: 1455 / 1335
  8128. }
  8129. },
  8130. side: {
  8131. height: math.unit(14, "feet"),
  8132. weight: math.unit(1450, "kg"),
  8133. capacity: math.unit(15, "people"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/aura-starwind/side.svg",
  8137. extra: 1654 / 1497
  8138. }
  8139. },
  8140. taur: {
  8141. height: math.unit(18, "feet"),
  8142. weight: math.unit(5500, "kg"),
  8143. capacity: math.unit(50, "people"),
  8144. name: "Taur",
  8145. image: {
  8146. source: "./media/characters/aura-starwind/taur.svg",
  8147. extra: 1760 / 1650
  8148. }
  8149. },
  8150. feral: {
  8151. height: math.unit(46, "feet"),
  8152. weight: math.unit(25000, "kg"),
  8153. capacity: math.unit(120, "people"),
  8154. name: "Feral",
  8155. image: {
  8156. source: "./media/characters/aura-starwind/feral.svg"
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(14, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(50, "meters")
  8169. },
  8170. {
  8171. name: "Megamacro",
  8172. height: math.unit(5000, "meters")
  8173. },
  8174. {
  8175. name: "Gigamacro",
  8176. height: math.unit(100000, "kilometers")
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(2 + 7 / 12, "feet"),
  8185. weight: math.unit(32, "lbs"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/rivet/front.svg",
  8189. extra: 1716 / 1658,
  8190. bottom: 0.03
  8191. }
  8192. },
  8193. foot: {
  8194. height: math.unit(0.551, "feet"),
  8195. name: "Rivet's Foot",
  8196. image: {
  8197. source: "./media/characters/rivet/foot.svg"
  8198. },
  8199. rename: true
  8200. }
  8201. },
  8202. [
  8203. {
  8204. name: "Micro",
  8205. height: math.unit(1.5, "inches"),
  8206. },
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(2 + 7 / 12, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(85, "feet")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(2.2, "km")
  8219. }
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(5 + 9 / 12, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/coffee/front.svg",
  8231. extra: 3666 / 3032,
  8232. bottom: 0.04
  8233. }
  8234. },
  8235. foot: {
  8236. height: math.unit(1.29, "feet"),
  8237. name: "Foot",
  8238. image: {
  8239. source: "./media/characters/coffee/foot.svg"
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inches"),
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(5 + 9 / 12, "feet"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(800, "feet")
  8256. },
  8257. {
  8258. name: "Megamacro",
  8259. height: math.unit(25, "miles")
  8260. }
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(200, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/chari-gal/front.svg",
  8272. extra: 1568 / 1385,
  8273. bottom: 0.047
  8274. }
  8275. },
  8276. gigantamax: {
  8277. height: math.unit(6 * 16, "feet"),
  8278. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8279. name: "Gigantamax",
  8280. image: {
  8281. source: "./media/characters/chari-gal/gigantamax.svg",
  8282. extra: 1124 / 888,
  8283. bottom: 0.03
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(5 + 7 / 12, "feet")
  8291. },
  8292. {
  8293. name: "Macro",
  8294. height: math.unit(200, "feet"),
  8295. default: true
  8296. }
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(6, "feet"),
  8304. weight: math.unit(150, "lbs"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/nova/front.svg",
  8308. extra: 5000 / 4722,
  8309. bottom: 0.02
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Micro-",
  8316. height: math.unit(0.8, "inches")
  8317. },
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inches"),
  8321. default: true
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(3 + 1 / 12, "feet"),
  8330. weight: math.unit(21.7, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/argent/front.svg",
  8334. extra: 1471 / 1331,
  8335. bottom: 100.8 / 1575.5
  8336. }
  8337. }
  8338. },
  8339. [
  8340. {
  8341. name: "Micro",
  8342. height: math.unit(2, "inches")
  8343. },
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(3 + 1 / 12, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(120, "feet")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8357. {
  8358. lamp: {
  8359. height: math.unit(7 * 1559 / 989, "feet"),
  8360. name: "Magic Lamp",
  8361. image: {
  8362. source: "./media/characters/mira-al-cul/lamp.svg",
  8363. extra: 1617 / 1559
  8364. }
  8365. },
  8366. front: {
  8367. height: math.unit(7, "feet"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/mira-al-cul/front.svg",
  8371. extra: 1044 / 990
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Heavily Restricted",
  8378. height: math.unit(7 * 1559 / 989, "feet")
  8379. },
  8380. {
  8381. name: "Freshly Freed",
  8382. height: math.unit(50 * 1559 / 989, "feet")
  8383. },
  8384. {
  8385. name: "World Encompassing",
  8386. height: math.unit(10000 * 1559 / 989, "miles")
  8387. },
  8388. {
  8389. name: "Galactic",
  8390. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8391. },
  8392. {
  8393. name: "Palmed Universe",
  8394. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Multiversal Matriarch",
  8399. height: math.unit(8.87e10, "yottameters")
  8400. },
  8401. {
  8402. name: "Void Mother",
  8403. height: math.unit(3.14e110, "yottaparsecs")
  8404. },
  8405. {
  8406. name: "Toying with Transcendence",
  8407. height: math.unit(1e307, "meters")
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8413. {
  8414. front: {
  8415. height: math.unit(17 + 1 / 12, "feet"),
  8416. weight: math.unit(476.2 * 5, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/kuro-shi-uchū/front.svg",
  8420. extra: 2329 / 1835,
  8421. bottom: 0.02
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Micro",
  8428. height: math.unit(2, "inches")
  8429. },
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(12, "meters")
  8433. },
  8434. {
  8435. name: "Planetary",
  8436. height: math.unit(0.00929, "AU"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Universal",
  8441. height: math.unit(20, "gigaparsecs")
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(5 + 2 / 12, "feet"),
  8450. weight: math.unit(120, "lbs"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/katherine/front.svg",
  8454. extra: 2075 / 1969
  8455. }
  8456. },
  8457. dress: {
  8458. height: math.unit(5 + 2 / 12, "feet"),
  8459. weight: math.unit(120, "lbs"),
  8460. name: "Dress",
  8461. image: {
  8462. source: "./media/characters/katherine/dress.svg",
  8463. extra: 2258 / 2064
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(1, "inches"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Normal",
  8475. height: math.unit(5 + 2 / 12, "feet")
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(100, "meters")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(80, "miles")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(7 + 8 / 12, "feet"),
  8492. weight: math.unit(250, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/yevis/front.svg",
  8496. extra: 1938 / 1755
  8497. }
  8498. }
  8499. },
  8500. [
  8501. {
  8502. name: "Mortal",
  8503. height: math.unit(7 + 8 / 12, "feet")
  8504. },
  8505. {
  8506. name: "Battle",
  8507. height: math.unit(25 + 11 / 12, "feet")
  8508. },
  8509. {
  8510. name: "Wrath",
  8511. height: math.unit(1654 + 11 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Planet Destroyer",
  8515. height: math.unit(12000, "miles")
  8516. },
  8517. {
  8518. name: "Galaxy Conqueror",
  8519. height: math.unit(1.45, "zettameters"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Universal War",
  8524. height: math.unit(184, "gigaparsecs")
  8525. },
  8526. {
  8527. name: "Eternity War",
  8528. height: math.unit(1.98e55, "yottaparsecs")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(5 + 8 / 12, "feet"),
  8537. weight: math.unit(63, "kg"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/xavier/front.svg",
  8541. extra: 944 / 883
  8542. }
  8543. },
  8544. frontStretch: {
  8545. height: math.unit(5 + 8 / 12, "feet"),
  8546. weight: math.unit(63, "kg"),
  8547. name: "Stretching",
  8548. image: {
  8549. source: "./media/characters/xavier/front-stretch.svg",
  8550. extra: 962 / 820
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(5 + 8 / 12, "feet")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(100, "meters"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "McLargeHuge",
  8566. height: math.unit(10, "miles")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(5 + 5 / 12, "feet"),
  8575. weight: math.unit(150, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/joshii/front.svg",
  8579. extra: 765 / 653,
  8580. bottom: 51 / 816
  8581. }
  8582. },
  8583. foot: {
  8584. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8585. name: "Foot",
  8586. image: {
  8587. source: "./media/characters/joshii/foot.svg"
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Micro",
  8594. height: math.unit(2, "inches"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(5 + 5 / 12, "feet")
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(785, "feet")
  8604. },
  8605. {
  8606. name: "Megamacro",
  8607. height: math.unit(24.5, "miles")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(150, "lb"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/goddess-elizabeth/front.svg",
  8620. extra: 1800 / 1525,
  8621. bottom: 0.005
  8622. }
  8623. },
  8624. foot: {
  8625. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8626. name: "Foot",
  8627. image: {
  8628. source: "./media/characters/goddess-elizabeth/foot.svg"
  8629. }
  8630. },
  8631. mouth: {
  8632. height: math.unit(6, "feet"),
  8633. name: "Mouth",
  8634. image: {
  8635. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Micro",
  8642. height: math.unit(12, "feet")
  8643. },
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(80, "miles"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(15000, "parsecs")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(5 + 9 / 12, "feet"),
  8660. weight: math.unit(144, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/kara/front.svg"
  8664. }
  8665. },
  8666. feet: {
  8667. height: math.unit(6 / 6.765, "feet"),
  8668. name: "Kara's Feet",
  8669. rename: true,
  8670. image: {
  8671. source: "./media/characters/kara/feet.svg"
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(5 + 9 / 12, "feet")
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(174, "feet"),
  8683. default: true
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(18, "feet"),
  8692. weight: math.unit(4050, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/tyrone/front.svg",
  8696. extra: 2405 / 2270,
  8697. bottom: 182 / 2587
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(18, "feet"),
  8705. default: true
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(300, "feet")
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(15, "km")
  8714. },
  8715. {
  8716. name: "Gigamacro",
  8717. height: math.unit(500, "km")
  8718. },
  8719. {
  8720. name: "Teramacro",
  8721. height: math.unit(0.5, "gigameters")
  8722. },
  8723. {
  8724. name: "Omnimacro",
  8725. height: math.unit(1e252, "yottauniverse")
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(7 + 8 / 12, "feet"),
  8734. weight: math.unit(120, "lb"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/danny/front.svg",
  8738. extra: 1490 / 1350
  8739. }
  8740. },
  8741. back: {
  8742. height: math.unit(7 + 8 / 12, "feet"),
  8743. weight: math.unit(120, "lb"),
  8744. name: "Back",
  8745. image: {
  8746. source: "./media/characters/danny/back.svg",
  8747. extra: 1490 / 1350
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(7 + 8 / 12, "feet"),
  8755. default: true
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(3.5, "inches"),
  8764. weight: math.unit(19, "grams"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/mallow/front.svg",
  8768. extra: 471 / 431
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(3.5, "inches"),
  8773. weight: math.unit(19, "grams"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/mallow/back.svg",
  8777. extra: 471 / 431
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(3.5, "inches"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(9, "feet"),
  8794. weight: math.unit(230, "kg"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/starry-aqua/front.svg"
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(9, "feet"),
  8802. weight: math.unit(230, "kg"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/starry-aqua/back.svg"
  8806. }
  8807. },
  8808. hand: {
  8809. height: math.unit(9 * 0.1168, "feet"),
  8810. name: "Hand",
  8811. image: {
  8812. source: "./media/characters/starry-aqua/hand.svg"
  8813. }
  8814. },
  8815. foot: {
  8816. height: math.unit(9 * 0.18, "feet"),
  8817. name: "Foot",
  8818. image: {
  8819. source: "./media/characters/starry-aqua/foot.svg"
  8820. }
  8821. }
  8822. },
  8823. [
  8824. {
  8825. name: "Micro",
  8826. height: math.unit(3, "inches")
  8827. },
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(9, "feet")
  8831. },
  8832. {
  8833. name: "Macro",
  8834. height: math.unit(300, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(3200, "feet")
  8840. }
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(230, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/luka/front.svg",
  8852. extra: 1,
  8853. bottom: 0.025
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(12 + 8 / 12, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Minimacro",
  8865. height: math.unit(20, "feet")
  8866. },
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(250, "feet")
  8870. },
  8871. {
  8872. name: "Megamacro",
  8873. height: math.unit(5, "miles")
  8874. },
  8875. {
  8876. name: "Gigamacro",
  8877. height: math.unit(8000, "miles")
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(150, "lb"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/natalie-nightring/front.svg",
  8890. extra: 1,
  8891. bottom: 0.06
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Uh Oh",
  8898. height: math.unit(0.1, "mm")
  8899. },
  8900. {
  8901. name: "Small",
  8902. height: math.unit(3, "inches")
  8903. },
  8904. {
  8905. name: "Human Scale",
  8906. height: math.unit(6, "feet")
  8907. },
  8908. {
  8909. name: "Librarian",
  8910. height: math.unit(50, "feet"),
  8911. default: true
  8912. },
  8913. {
  8914. name: "Immense",
  8915. height: math.unit(200, "miles")
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(180, "lbs"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/danni-rosie/front.svg",
  8928. extra: 1260 / 1128,
  8929. bottom: 0.022
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Micro",
  8936. height: math.unit(2, "inches"),
  8937. default: true
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(5 + 9 / 12, "feet"),
  8946. weight: math.unit(220, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/samantha-kruse/front.svg",
  8950. extra: (985 / 935),
  8951. bottom: 0.03
  8952. }
  8953. },
  8954. frontUndressed: {
  8955. height: math.unit(5 + 9 / 12, "feet"),
  8956. weight: math.unit(220, "lb"),
  8957. name: "Front (Undressed)",
  8958. image: {
  8959. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8960. extra: (973 / 923),
  8961. bottom: 0.025
  8962. }
  8963. },
  8964. fat: {
  8965. height: math.unit(5 + 9 / 12, "feet"),
  8966. weight: math.unit(900, "lb"),
  8967. name: "Front (Fat)",
  8968. image: {
  8969. source: "./media/characters/samantha-kruse/fat.svg",
  8970. extra: 2688 / 2561
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(5 + 9 / 12, "feet"),
  8978. default: true
  8979. }
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8984. {
  8985. back: {
  8986. height: math.unit(5 + 4 / 12, "feet"),
  8987. weight: math.unit(4963, "lb"),
  8988. name: "Back",
  8989. image: {
  8990. source: "./media/characters/amelia-rosie/back.svg",
  8991. extra: 1113 / 963,
  8992. bottom: 0.01
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Level 0",
  8999. height: math.unit(5 + 4 / 12, "feet")
  9000. },
  9001. {
  9002. name: "Level 1",
  9003. height: math.unit(164597, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Level 2",
  9008. height: math.unit(956243, "miles")
  9009. },
  9010. {
  9011. name: "Level 3",
  9012. height: math.unit(29421709423, "miles")
  9013. },
  9014. {
  9015. name: "Level 4",
  9016. height: math.unit(154, "lightyears")
  9017. },
  9018. {
  9019. name: "Level 5",
  9020. height: math.unit(4738272, "lightyears")
  9021. },
  9022. {
  9023. name: "Level 6",
  9024. height: math.unit(145787152896, "lightyears")
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(5 + 11 / 12, "feet"),
  9033. weight: math.unit(65, "kg"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/rook-kitara/front.svg",
  9037. extra: 1347 / 1274,
  9038. bottom: 0.005
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Totally Unfair",
  9045. height: math.unit(1.8, "mm")
  9046. },
  9047. {
  9048. name: "Lap Rookie",
  9049. height: math.unit(1.4, "feet")
  9050. },
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(5 + 11 / 12, "feet"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "How Did This Happen",
  9058. height: math.unit(80, "miles")
  9059. }
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(7, "feet"),
  9067. weight: math.unit(300, "lb"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/pisces/front.svg",
  9071. extra: 2255 / 2115,
  9072. bottom: 0.03
  9073. }
  9074. },
  9075. back: {
  9076. height: math.unit(7, "feet"),
  9077. weight: math.unit(300, "lb"),
  9078. name: "Back",
  9079. image: {
  9080. source: "./media/characters/pisces/back.svg",
  9081. extra: 2146 / 2055,
  9082. bottom: 0.04
  9083. }
  9084. },
  9085. },
  9086. [
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(7, "feet"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "Swimming Pool",
  9094. height: math.unit(12.2, "meters")
  9095. },
  9096. {
  9097. name: "Olympic Swimming Pool",
  9098. height: math.unit(56.3, "meters")
  9099. },
  9100. {
  9101. name: "Lake Superior",
  9102. height: math.unit(93900, "meters")
  9103. },
  9104. {
  9105. name: "Mediterranean Sea",
  9106. height: math.unit(644457, "meters")
  9107. },
  9108. {
  9109. name: "World's Oceans",
  9110. height: math.unit(4567491, "meters")
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(2.3, "meters"),
  9119. weight: math.unit(120, "kg"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/zelas/front.svg"
  9123. }
  9124. },
  9125. side: {
  9126. height: math.unit(2.3, "meters"),
  9127. weight: math.unit(120, "kg"),
  9128. name: "Side",
  9129. image: {
  9130. source: "./media/characters/zelas/side.svg"
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(2.3, "meters"),
  9135. weight: math.unit(120, "kg"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/zelas/back.svg"
  9139. }
  9140. },
  9141. foot: {
  9142. height: math.unit(1.116, "feet"),
  9143. name: "Foot",
  9144. image: {
  9145. source: "./media/characters/zelas/foot.svg"
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(2.3, "meters")
  9153. },
  9154. {
  9155. name: "Macro",
  9156. height: math.unit(30, "meters"),
  9157. default: true
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9163. {
  9164. front: {
  9165. height: math.unit(1, "inch"),
  9166. weight: math.unit(0.21, "grams"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/talbot/front.svg",
  9170. extra: 594 / 544
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Micro",
  9177. height: math.unit(1, "inch"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9184. {
  9185. front: {
  9186. height: math.unit(3 + 3 / 12, "feet"),
  9187. weight: math.unit(51.8, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/fliss/front.svg",
  9191. extra: 840 / 640
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Teeny Tiny",
  9198. height: math.unit(1, "mm")
  9199. },
  9200. {
  9201. name: "Small",
  9202. height: math.unit(1, "inch"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Standard Sylveon",
  9207. height: math.unit(3 + 3 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Large Nuisance",
  9211. height: math.unit(33, "feet")
  9212. },
  9213. {
  9214. name: "City Filler",
  9215. height: math.unit(3000, "feet")
  9216. },
  9217. {
  9218. name: "New Horizon",
  9219. height: math.unit(6000, "miles")
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(5, "cm"),
  9228. weight: math.unit(1.94, "g"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/fleta/front.svg",
  9232. extra: 835 / 803
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(5, "cm"),
  9237. weight: math.unit(1.94, "g"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/fleta/back.svg",
  9241. extra: 835 / 803
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Micro",
  9248. height: math.unit(5, "cm"),
  9249. default: true
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(225, "lb"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/dominic/front.svg",
  9262. extra: 1770 / 1620,
  9263. bottom: 0.025
  9264. }
  9265. },
  9266. back: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(225, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/dominic/back.svg",
  9272. extra: 1745 / 1620,
  9273. bottom: 0.065
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Nano",
  9280. height: math.unit(0.1, "mm")
  9281. },
  9282. {
  9283. name: "Micro-",
  9284. height: math.unit(1, "mm")
  9285. },
  9286. {
  9287. name: "Micro",
  9288. height: math.unit(4, "inches")
  9289. },
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(6 + 4 / 12, "feet"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(115, "feet")
  9298. },
  9299. {
  9300. name: "Macro+",
  9301. height: math.unit(955, "feet")
  9302. },
  9303. {
  9304. name: "Megamacro",
  9305. height: math.unit(8990, "feet")
  9306. },
  9307. {
  9308. name: "Gigmacro",
  9309. height: math.unit(9310, "miles")
  9310. },
  9311. {
  9312. name: "Teramacro",
  9313. height: math.unit(1567005010, "miles")
  9314. },
  9315. {
  9316. name: "Examacro",
  9317. height: math.unit(1425, "parsecs")
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(400, "feet"),
  9326. weight: math.unit(44444444, "lb"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/major-colonel/front.svg"
  9330. }
  9331. },
  9332. back: {
  9333. height: math.unit(400, "feet"),
  9334. weight: math.unit(44444444, "lb"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/major-colonel/back.svg"
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(400, "feet"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9351. {
  9352. catFront: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(120, "lb"),
  9355. name: "Front (Cat Side)",
  9356. image: {
  9357. source: "./media/characters/axel-lycan/cat-front.svg",
  9358. extra: 430 / 402,
  9359. bottom: 43 / 472.35
  9360. }
  9361. },
  9362. catBack: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(120, "lb"),
  9365. name: "Back (Cat Side)",
  9366. image: {
  9367. source: "./media/characters/axel-lycan/cat-back.svg",
  9368. extra: 447 / 419,
  9369. bottom: 23.3 / 469
  9370. }
  9371. },
  9372. wolfFront: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(120, "lb"),
  9375. name: "Front (Wolf Side)",
  9376. image: {
  9377. source: "./media/characters/axel-lycan/wolf-front.svg",
  9378. extra: 485 / 456,
  9379. bottom: 19 / 504
  9380. }
  9381. },
  9382. wolfBack: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(120, "lb"),
  9385. name: "Back (Wolf Side)",
  9386. image: {
  9387. source: "./media/characters/axel-lycan/wolf-back.svg",
  9388. extra: 475 / 438,
  9389. bottom: 39.2 / 514
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Macro",
  9396. height: math.unit(1, "km"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(5 + 9 / 12, "feet"),
  9406. weight: math.unit(175, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/vanrel-hyena/front.svg",
  9410. extra: 1086 / 1010,
  9411. bottom: 0.04
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(5 + 9 / 12, "feet"),
  9419. default: true
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(103, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/abbott-absol/front.svg",
  9432. extra: 2010 / 1842
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Megamicro",
  9439. height: math.unit(0.1, "mm")
  9440. },
  9441. {
  9442. name: "Micro",
  9443. height: math.unit(1, "inch")
  9444. },
  9445. {
  9446. name: "Normal",
  9447. height: math.unit(6, "feet"),
  9448. default: true
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9454. {
  9455. front: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(264, "lb"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/hector/front.svg",
  9461. extra: 2280 / 2130,
  9462. bottom: 0.07
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(12.25, "foot"),
  9470. default: true
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(160, "feet")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/sal/front.svg",
  9487. extra: 1846 / 1699,
  9488. bottom: 0.04
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(10, "miles"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9502. {
  9503. front: {
  9504. height: math.unit(3, "meters"),
  9505. weight: math.unit(450, "kg"),
  9506. name: "front",
  9507. image: {
  9508. source: "./media/characters/ranger/front.svg",
  9509. extra: 2401 / 2243,
  9510. bottom: 0.05
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(3, "meters"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(14, "feet"),
  9527. weight: math.unit(800, "kg"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/theresa/front.svg",
  9531. extra: 3575 / 3346,
  9532. bottom: 0.03
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(14, "feet"),
  9540. default: true
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(3, "kg"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/ine/front.svg",
  9553. extra: 678 / 539,
  9554. bottom: 0.023
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(2.265, "feet"),
  9562. default: true
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5, "feet"),
  9571. weight: math.unit(30, "kg"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/vial/front.svg",
  9575. extra: 1365 / 1277,
  9576. bottom: 0.04
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(5, "feet"),
  9584. default: true
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9590. {
  9591. side: {
  9592. height: math.unit(3.4, "meters"),
  9593. weight: math.unit(1000, "lb"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/rovoska/side.svg",
  9597. extra: 4403 / 1515
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(3.4, "meters"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(8, "feet"),
  9614. weight: math.unit(315, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/gunner-rotthbauer/front.svg"
  9618. }
  9619. },
  9620. back: {
  9621. height: math.unit(8, "feet"),
  9622. weight: math.unit(315, "lb"),
  9623. name: "Back",
  9624. image: {
  9625. source: "./media/characters/gunner-rotthbauer/back.svg"
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Micro",
  9632. height: math.unit(3.5, "inches")
  9633. },
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(8, "feet"),
  9637. default: true
  9638. },
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(250, "feet")
  9642. },
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(1, "AU")
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(5 + 5 / 12, "feet"),
  9654. weight: math.unit(140, "lb"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/allatia/front.svg",
  9658. extra: 1227 / 1180,
  9659. bottom: 0.027
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(5 + 5 / 12, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(250, "feet"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(8, "miles")
  9676. }
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(120, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/tene/front.svg",
  9688. extra: 1728 / 1578,
  9689. bottom: 0.022
  9690. }
  9691. },
  9692. stomping: {
  9693. height: math.unit(2.025, "meters"),
  9694. weight: math.unit(120, "lb"),
  9695. name: "Stomping",
  9696. image: {
  9697. source: "./media/characters/tene/stomping.svg",
  9698. extra: 938 / 873,
  9699. bottom: 0.01
  9700. }
  9701. },
  9702. sitting: {
  9703. height: math.unit(1, "meter"),
  9704. weight: math.unit(120, "lb"),
  9705. name: "Sitting",
  9706. image: {
  9707. source: "./media/characters/tene/sitting.svg",
  9708. extra: 437 / 415,
  9709. bottom: 0.1
  9710. }
  9711. },
  9712. feral: {
  9713. height: math.unit(3.9, "feet"),
  9714. weight: math.unit(250, "lb"),
  9715. name: "Feral",
  9716. image: {
  9717. source: "./media/characters/tene/feral.svg",
  9718. extra: 717 / 458,
  9719. bottom: 0.179
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(6, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(300, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(5, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9741. {
  9742. side: {
  9743. height: math.unit(6, "feet"),
  9744. name: "Side",
  9745. image: {
  9746. source: "./media/characters/evander/side.svg",
  9747. extra: 877 / 477
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(0.83, "meters"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(12, "feet"),
  9764. weight: math.unit(1000, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9768. extra: 1762 / 1611
  9769. }
  9770. },
  9771. back: {
  9772. height: math.unit(12, "feet"),
  9773. weight: math.unit(1000, "lb"),
  9774. name: "Back",
  9775. image: {
  9776. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9777. extra: 1762 / 1611
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(12, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Kaiju",
  9789. height: math.unit(150, "feet")
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(150, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/zero-alurus/front.svg"
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(150, "lb"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/zero-alurus/back.svg"
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(5 + 10 / 12, "feet")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(60, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro+",
  9825. height: math.unit(450, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(200, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/mega-shi/front.svg",
  9838. extra: 1279 / 1250,
  9839. bottom: 0.02
  9840. }
  9841. },
  9842. back: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(200, "lb"),
  9845. name: "Back",
  9846. image: {
  9847. source: "./media/characters/mega-shi/back.svg",
  9848. extra: 1279 / 1250,
  9849. bottom: 0.02
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(16 + 6 / 12, "feet")
  9857. },
  9858. {
  9859. name: "Third Dimension",
  9860. height: math.unit(40, "meters")
  9861. },
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(660, "feet"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(10, "miles")
  9870. },
  9871. {
  9872. name: "Planetary Launch",
  9873. height: math.unit(500, "miles")
  9874. },
  9875. {
  9876. name: "Interstellar",
  9877. height: math.unit(1e9, "miles")
  9878. },
  9879. {
  9880. name: "Leaving the Universe",
  9881. height: math.unit(1, "gigaparsec")
  9882. },
  9883. {
  9884. name: "Travelling Universes",
  9885. height: math.unit(30e15, "parsecs")
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9891. {
  9892. front: {
  9893. height: math.unit(6, "feet"),
  9894. weight: math.unit(150, "lb"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/odyssey/front.svg",
  9898. extra: 1782 / 1582,
  9899. bottom: 0.01
  9900. }
  9901. },
  9902. side: {
  9903. height: math.unit(5.7, "feet"),
  9904. weight: math.unit(140, "lb"),
  9905. name: "Side",
  9906. image: {
  9907. source: "./media/characters/odyssey/side.svg",
  9908. extra: 6462 / 5700
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(5 + 4 / 12, "feet")
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(1, "km")
  9920. },
  9921. {
  9922. name: "Megamacro",
  9923. height: math.unit(3000, "km")
  9924. },
  9925. {
  9926. name: "Gigamacro",
  9927. height: math.unit(1, "AU"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Omniversal",
  9932. height: math.unit(100e14, "lightyears")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(300, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/mekuto/front.svg",
  9945. extra: 921 / 832,
  9946. bottom: 0.03
  9947. }
  9948. },
  9949. hand: {
  9950. height: math.unit(6 / 10.24, "feet"),
  9951. name: "Hand",
  9952. image: {
  9953. source: "./media/characters/mekuto/hand.svg"
  9954. }
  9955. },
  9956. foot: {
  9957. height: math.unit(6 / 5.05, "feet"),
  9958. name: "Foot",
  9959. image: {
  9960. source: "./media/characters/mekuto/foot.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Minimicro",
  9967. height: math.unit(0.2, "inches")
  9968. },
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(1.5, "inches")
  9972. },
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(5 + 11 / 12, "feet"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Minimacro",
  9980. height: math.unit(17 + 9 / 12, "feet")
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(177.5, "feet")
  9985. },
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(152, "miles")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6.5, "inches"),
  9997. weight: math.unit(13, "oz"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/dafydd-tomos/front.svg",
  10001. extra: 2990 / 2603,
  10002. bottom: 0.03
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(6.5, "inches"),
  10010. default: true
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10016. {
  10017. front: {
  10018. height: math.unit(6, "feet"),
  10019. weight: math.unit(150, "lb"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/splinter/front.svg",
  10023. extra: 2990 / 2882,
  10024. bottom: 0.04
  10025. }
  10026. },
  10027. back: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(150, "lb"),
  10030. name: "Back",
  10031. image: {
  10032. source: "./media/characters/splinter/back.svg",
  10033. extra: 2990 / 2882,
  10034. bottom: 0.04
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(6, "feet")
  10042. },
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(230, "meters"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(4 + 10 / 12, "feet"),
  10055. weight: math.unit(480, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/snow-gabumon/front.svg",
  10059. extra: 1140 / 963,
  10060. bottom: 0.058
  10061. }
  10062. },
  10063. back: {
  10064. height: math.unit(4 + 10 / 12, "feet"),
  10065. weight: math.unit(480, "lb"),
  10066. name: "Back",
  10067. image: {
  10068. source: "./media/characters/snow-gabumon/back.svg",
  10069. extra: 1115 / 962,
  10070. bottom: 0.041
  10071. }
  10072. },
  10073. frontUndresed: {
  10074. height: math.unit(4 + 10 / 12, "feet"),
  10075. weight: math.unit(480, "lb"),
  10076. name: "Front (Undressed)",
  10077. image: {
  10078. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10079. extra: 1061 / 960,
  10080. bottom: 0.045
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Micro",
  10087. height: math.unit(1, "inch")
  10088. },
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(4 + 10 / 12, "feet"),
  10092. default: true
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(200, "feet")
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(120, "miles")
  10101. },
  10102. {
  10103. name: "Gigamacro",
  10104. height: math.unit(9800, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(1.7, "meters"),
  10113. weight: math.unit(140, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/moody/front.svg",
  10117. extra: 3226 / 3007,
  10118. bottom: 0.087
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(1, "mm")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(1.7, "meters"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(80, "meters")
  10135. },
  10136. {
  10137. name: "Macro+",
  10138. height: math.unit(500, "meters")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/zyas/front.svg",
  10151. extra: 1180 / 1120,
  10152. bottom: 0.045
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(10, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(500, "feet")
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(5, "miles")
  10169. },
  10170. {
  10171. name: "Teramacro",
  10172. height: math.unit(150000, "miles")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/cuon/front.svg",
  10185. extra: 1390 / 1320,
  10186. bottom: 0.008
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Micro",
  10193. height: math.unit(3, "inches")
  10194. },
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(18 + 9 / 12, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(360, "feet")
  10203. },
  10204. {
  10205. name: "Megamacro",
  10206. height: math.unit(360, "miles")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(2.4, "meters"),
  10215. weight: math.unit(70, "kg"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/nyanuxk/front.svg",
  10219. extra: 1172 / 1084,
  10220. bottom: 0.065
  10221. }
  10222. },
  10223. side: {
  10224. height: math.unit(2.4, "meters"),
  10225. weight: math.unit(70, "kg"),
  10226. name: "Side",
  10227. image: {
  10228. source: "./media/characters/nyanuxk/side.svg",
  10229. extra: 1190 / 1132,
  10230. bottom: 0.007
  10231. }
  10232. },
  10233. back: {
  10234. height: math.unit(2.4, "meters"),
  10235. weight: math.unit(70, "kg"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/nyanuxk/back.svg",
  10239. extra: 1200 / 1141,
  10240. bottom: 0.015
  10241. }
  10242. },
  10243. foot: {
  10244. height: math.unit(0.52, "meters"),
  10245. name: "Foot",
  10246. image: {
  10247. source: "./media/characters/nyanuxk/foot.svg"
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Micro",
  10254. height: math.unit(2, "cm")
  10255. },
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(2.4, "meters"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Smaller Macro",
  10263. height: math.unit(120, "meters")
  10264. },
  10265. {
  10266. name: "Bigger Macro",
  10267. height: math.unit(1.2, "km")
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(15, "kilometers")
  10272. },
  10273. {
  10274. name: "Gigamacro",
  10275. height: math.unit(2000, "km")
  10276. },
  10277. {
  10278. name: "Teramacro",
  10279. height: math.unit(500000, "km")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10285. {
  10286. side: {
  10287. height: math.unit(6, "feet"),
  10288. name: "Side",
  10289. image: {
  10290. source: "./media/characters/ailbhe/side.svg",
  10291. extra: 757 / 464,
  10292. bottom: 0.041
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(1.07, "meters"),
  10300. default: true
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(120, "kg"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/zevulfius/front.svg",
  10313. extra: 965 / 903
  10314. }
  10315. },
  10316. side: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(120, "kg"),
  10319. name: "Side",
  10320. image: {
  10321. source: "./media/characters/zevulfius/side.svg",
  10322. extra: 939 / 900
  10323. }
  10324. },
  10325. back: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(120, "kg"),
  10328. name: "Back",
  10329. image: {
  10330. source: "./media/characters/zevulfius/back.svg",
  10331. extra: 918 / 854,
  10332. bottom: 0.005
  10333. }
  10334. },
  10335. foot: {
  10336. height: math.unit(6 / 3.72, "feet"),
  10337. name: "Foot",
  10338. image: {
  10339. source: "./media/characters/zevulfius/foot.svg"
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(750, "meters")
  10347. },
  10348. {
  10349. name: "Megamacro",
  10350. height: math.unit(20, "km"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(2000, "km")
  10356. },
  10357. {
  10358. name: "Teramacro",
  10359. height: math.unit(250000, "km")
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(100, "feet"),
  10368. weight: math.unit(350, "kg"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/rikes/front.svg",
  10372. extra: 1565 / 1483,
  10373. bottom: 0.017
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Macro",
  10380. height: math.unit(100, "feet"),
  10381. default: true
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10387. {
  10388. anthro: {
  10389. height: math.unit(8, "feet"),
  10390. weight: math.unit(120, "kg"),
  10391. name: "Anthro",
  10392. image: {
  10393. source: "./media/characters/adam-silver-mane/anthro.svg",
  10394. extra: 5743 / 5339,
  10395. bottom: 0.07
  10396. }
  10397. },
  10398. taur: {
  10399. height: math.unit(16, "feet"),
  10400. weight: math.unit(1500, "kg"),
  10401. name: "Taur",
  10402. image: {
  10403. source: "./media/characters/adam-silver-mane/taur.svg",
  10404. extra: 1713 / 1571,
  10405. bottom: 0.01
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(8, "feet")
  10413. },
  10414. {
  10415. name: "Minimacro",
  10416. height: math.unit(80, "feet")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(800, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(8000, "feet")
  10426. },
  10427. {
  10428. name: "Gigamacro",
  10429. height: math.unit(800, "miles")
  10430. },
  10431. {
  10432. name: "Teramacro",
  10433. height: math.unit(80000, "miles")
  10434. },
  10435. {
  10436. name: "Celestial",
  10437. height: math.unit(8e6, "miles")
  10438. },
  10439. {
  10440. name: "Star Dragon",
  10441. height: math.unit(800000, "parsecs")
  10442. },
  10443. {
  10444. name: "Godly",
  10445. height: math.unit(800, "teraparsecs")
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(6, "feet"),
  10454. weight: math.unit(150, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/ky'owin/front.svg",
  10458. extra: 3888 / 3068,
  10459. bottom: 0.015
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(6 + 8 / 12, "feet")
  10467. },
  10468. {
  10469. name: "Large",
  10470. height: math.unit(68, "feet")
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(132, "feet")
  10475. },
  10476. {
  10477. name: "Macro+",
  10478. height: math.unit(340, "feet")
  10479. },
  10480. {
  10481. name: "Macro++",
  10482. height: math.unit(680, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Megamacro",
  10487. height: math.unit(1, "mile")
  10488. },
  10489. {
  10490. name: "Megamacro+",
  10491. height: math.unit(10, "miles")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(4, "feet"),
  10500. weight: math.unit(50, "lb"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/mal/front.svg",
  10504. extra: 785 / 724,
  10505. bottom: 0.07
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Micro",
  10512. height: math.unit(4, "inches")
  10513. },
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(4, "feet"),
  10517. default: true
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(200, "feet")
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(150, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/jordan-deware/front.svg",
  10534. extra: 1191 / 1012
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Nano",
  10541. height: math.unit(0.01, "mm")
  10542. },
  10543. {
  10544. name: "Minimicro",
  10545. height: math.unit(1, "mm")
  10546. },
  10547. {
  10548. name: "Micro",
  10549. height: math.unit(0.5, "inches")
  10550. },
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(4, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Minimacro",
  10558. height: math.unit(40, "meters")
  10559. },
  10560. {
  10561. name: "Small Macro",
  10562. height: math.unit(400, "meters")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(4, "miles")
  10567. },
  10568. {
  10569. name: "Megamacro",
  10570. height: math.unit(40, "miles")
  10571. },
  10572. {
  10573. name: "Megamacro+",
  10574. height: math.unit(400, "miles")
  10575. },
  10576. {
  10577. name: "Gigamacro",
  10578. height: math.unit(400000, "miles")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10584. {
  10585. side: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(150, "lb"),
  10588. name: "Side",
  10589. image: {
  10590. source: "./media/characters/kimiko/side.svg",
  10591. extra: 600 / 358
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(15, "feet"),
  10599. default: true
  10600. },
  10601. {
  10602. name: "Macro",
  10603. height: math.unit(220, "feet")
  10604. },
  10605. {
  10606. name: "Macro+",
  10607. height: math.unit(1450, "feet")
  10608. },
  10609. {
  10610. name: "Megamacro",
  10611. height: math.unit(11500, "feet")
  10612. },
  10613. {
  10614. name: "Gigamacro",
  10615. height: math.unit(9500, "miles")
  10616. },
  10617. {
  10618. name: "Teramacro",
  10619. height: math.unit(2208005005, "miles")
  10620. },
  10621. {
  10622. name: "Examacro",
  10623. height: math.unit(2750, "parsecs")
  10624. },
  10625. {
  10626. name: "Zettamacro",
  10627. height: math.unit(101500, "parsecs")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(70, "kg"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/andrew-sleepy/front.svg"
  10640. }
  10641. },
  10642. side: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(70, "kg"),
  10645. name: "Side",
  10646. image: {
  10647. source: "./media/characters/andrew-sleepy/side.svg"
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Micro",
  10654. height: math.unit(1, "mm"),
  10655. default: true
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(150, "lb"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/judio/front.svg",
  10668. extra: 1258 / 1110
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(5 + 6 / 12, "feet")
  10676. },
  10677. {
  10678. name: "Macro",
  10679. height: math.unit(1000, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(10, "miles")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(68, "kg"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/nomaxice/front.svg",
  10697. extra: 1498 / 1073,
  10698. bottom: 0.075
  10699. }
  10700. },
  10701. foot: {
  10702. height: math.unit(1.1, "feet"),
  10703. name: "Foot",
  10704. image: {
  10705. source: "./media/characters/nomaxice/foot.svg"
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Micro",
  10712. height: math.unit(8, "cm")
  10713. },
  10714. {
  10715. name: "Norm",
  10716. height: math.unit(1.82, "m")
  10717. },
  10718. {
  10719. name: "Norm+",
  10720. height: math.unit(8.8, "feet")
  10721. },
  10722. {
  10723. name: "Big",
  10724. height: math.unit(8, "meters"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(18, "meters")
  10730. },
  10731. {
  10732. name: "Macro+",
  10733. height: math.unit(88, "meters")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(12, "feet"),
  10742. weight: math.unit(1.5, "tons"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/dydros/front.svg",
  10746. extra: 863 / 800,
  10747. bottom: 0.015
  10748. }
  10749. },
  10750. back: {
  10751. height: math.unit(12, "feet"),
  10752. weight: math.unit(1.5, "tons"),
  10753. name: "Back",
  10754. image: {
  10755. source: "./media/characters/dydros/back.svg",
  10756. extra: 900 / 843,
  10757. bottom: 0.005
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(12, "feet"),
  10765. default: true
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(100, "kg"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/riggi/front.svg",
  10778. extra: 5787 / 5303
  10779. }
  10780. },
  10781. hyper: {
  10782. height: math.unit(6 * 5 / 3, "feet"),
  10783. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10784. name: "Hyper",
  10785. image: {
  10786. source: "./media/characters/riggi/hyper.svg",
  10787. extra: 3595 / 3485
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Small Macro",
  10794. height: math.unit(50, "feet")
  10795. },
  10796. {
  10797. name: "Default",
  10798. height: math.unit(200, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Loom",
  10803. height: math.unit(10000, "feet")
  10804. },
  10805. {
  10806. name: "Cruising Altitude",
  10807. height: math.unit(30000, "feet")
  10808. },
  10809. {
  10810. name: "Megamacro",
  10811. height: math.unit(100, "miles")
  10812. },
  10813. {
  10814. name: "Continent Sized",
  10815. height: math.unit(2800, "miles")
  10816. },
  10817. {
  10818. name: "Earth Sized",
  10819. height: math.unit(8000, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(250, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/alexi/front.svg",
  10832. extra: 3483 / 3291,
  10833. bottom: 0.04
  10834. }
  10835. },
  10836. back: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(250, "lb"),
  10839. name: "Back",
  10840. image: {
  10841. source: "./media/characters/alexi/back.svg",
  10842. extra: 3533 / 3356,
  10843. bottom: 0.021
  10844. }
  10845. },
  10846. frontTransforming: {
  10847. height: math.unit(8.58, "feet"),
  10848. weight: math.unit(1300, "lb"),
  10849. name: "Transforming",
  10850. image: {
  10851. source: "./media/characters/alexi/front-transforming.svg",
  10852. extra: 437 / 409,
  10853. bottom: 19 / 458.66
  10854. }
  10855. },
  10856. frontTransformed: {
  10857. height: math.unit(12.5, "feet"),
  10858. weight: math.unit(4000, "lb"),
  10859. name: "Transformed",
  10860. image: {
  10861. source: "./media/characters/alexi/front-transformed.svg",
  10862. extra: 639 / 614,
  10863. bottom: 30.55 / 671
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(14, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Minimacro",
  10875. height: math.unit(30, "meters")
  10876. },
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(500, "meters")
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(9000, "km")
  10884. },
  10885. {
  10886. name: "Teramacro",
  10887. height: math.unit(384000, "km")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/kayroo/front.svg",
  10900. extra: 1153 / 1038,
  10901. bottom: 0.06
  10902. }
  10903. },
  10904. foot: {
  10905. height: math.unit(6, "feet"),
  10906. weight: math.unit(150, "lb"),
  10907. name: "Foot",
  10908. image: {
  10909. source: "./media/characters/kayroo/foot.svg"
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(8, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Minimacro",
  10921. height: math.unit(250, "feet")
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(2800, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(5200, "feet")
  10930. },
  10931. {
  10932. name: "Gigamacro",
  10933. height: math.unit(27000, "feet")
  10934. },
  10935. {
  10936. name: "Omega",
  10937. height: math.unit(45000, "feet")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(18, "feet"),
  10946. weight: math.unit(5800, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/rhys/front.svg",
  10950. extra: 3386 / 3090,
  10951. bottom: 0.07
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(18, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Working Size",
  10963. height: math.unit(200, "feet")
  10964. },
  10965. {
  10966. name: "Demolition Size",
  10967. height: math.unit(2000, "feet")
  10968. },
  10969. {
  10970. name: "Maximum Licensed Size",
  10971. height: math.unit(5, "miles")
  10972. },
  10973. {
  10974. name: "Maximum Observed Size",
  10975. height: math.unit(10, "yottameters")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(250, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/toto/front.svg",
  10988. extra: 527 / 479,
  10989. bottom: 0.05
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(3, "feet")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(10, "feet")
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(150, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(1200, "feet")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "King", species: ["lion"], tags: ["anthro"] },
  11015. {
  11016. back: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Back",
  11020. image: {
  11021. source: "./media/characters/king/back.svg"
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(2, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(8, "feet")
  11033. },
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(200, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(50, "miles")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11047. {
  11048. anthro: {
  11049. height: math.unit(6 + 5 / 12, "feet"),
  11050. weight: math.unit(280, "lb"),
  11051. name: "Anthro",
  11052. image: {
  11053. source: "./media/characters/cordite/anthro.svg",
  11054. extra: 1986 / 1905,
  11055. bottom: 0.025
  11056. }
  11057. },
  11058. feral: {
  11059. height: math.unit(2, "feet"),
  11060. weight: math.unit(90, "lb"),
  11061. name: "Feral",
  11062. image: {
  11063. source: "./media/characters/cordite/feral.svg",
  11064. extra: 1260 / 755,
  11065. bottom: 0.05
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(6 + 5 / 12, "feet"),
  11073. default: true
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6, "feet"),
  11082. weight: math.unit(150, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/pianostrong/front.svg",
  11086. extra: 6577 / 6254,
  11087. bottom: 0.02
  11088. }
  11089. },
  11090. side: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(150, "lb"),
  11093. name: "Side",
  11094. image: {
  11095. source: "./media/characters/pianostrong/side.svg",
  11096. extra: 6106 / 5730
  11097. }
  11098. },
  11099. back: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Back",
  11103. image: {
  11104. source: "./media/characters/pianostrong/back.svg",
  11105. extra: 6085 / 5733,
  11106. bottom: 0.01
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(100, "feet")
  11114. },
  11115. {
  11116. name: "Macro+",
  11117. height: math.unit(300, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Macro++",
  11122. height: math.unit(1000, "feet")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/kona/front.svg",
  11135. extra: 2960 / 2629,
  11136. bottom: 0.005
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(11 + 8 / 12, "feet")
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(850, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro+",
  11152. height: math.unit(1.5, "km"),
  11153. default: true
  11154. },
  11155. {
  11156. name: "Megamacro",
  11157. height: math.unit(80, "miles")
  11158. },
  11159. {
  11160. name: "Gigamacro",
  11161. height: math.unit(3500, "miles")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11167. {
  11168. side: {
  11169. height: math.unit(1.9, "meters"),
  11170. weight: math.unit(326, "kg"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/levi/side.svg",
  11174. extra: 1704 / 1334,
  11175. bottom: 0.02
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(1.9, "meters"),
  11183. default: true
  11184. },
  11185. {
  11186. name: "Macro",
  11187. height: math.unit(20, "meters")
  11188. },
  11189. {
  11190. name: "Macro+",
  11191. height: math.unit(200, "meters")
  11192. },
  11193. {
  11194. name: "Megamacro",
  11195. height: math.unit(2, "km")
  11196. },
  11197. {
  11198. name: "Megamacro+",
  11199. height: math.unit(20, "km")
  11200. },
  11201. {
  11202. name: "Gigamacro",
  11203. height: math.unit(2500, "km")
  11204. },
  11205. {
  11206. name: "Gigamacro+",
  11207. height: math.unit(120000, "km")
  11208. },
  11209. {
  11210. name: "Teramacro",
  11211. height: math.unit(7.77e6, "km")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6 + 4 / 12, "feet"),
  11220. weight: math.unit(188, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/bmc/front.svg",
  11224. extra: 1067 / 1022,
  11225. bottom: 0.047
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Human-sized",
  11232. height: math.unit(6 + 4 / 12, "feet")
  11233. },
  11234. {
  11235. name: "Small",
  11236. height: math.unit(250, "feet")
  11237. },
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(1250, "feet"),
  11241. default: true
  11242. },
  11243. {
  11244. name: "Good Day",
  11245. height: math.unit(88, "miles")
  11246. },
  11247. {
  11248. name: "Largest Measured Size",
  11249. height: math.unit(11.2e6, "lightyears")
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11255. {
  11256. front: {
  11257. height: math.unit(20, "feet"),
  11258. weight: math.unit(2016, "kg"),
  11259. name: "Front",
  11260. image: {
  11261. source: "./media/characters/sven-the-kaiju/front.svg",
  11262. extra: 1277/1250,
  11263. bottom: 35/1312
  11264. }
  11265. },
  11266. mouth: {
  11267. height: math.unit(1.85, "feet"),
  11268. name: "Mouth",
  11269. image: {
  11270. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Fairy",
  11277. height: math.unit(6, "inches")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(20, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Rampage",
  11286. height: math.unit(200, "feet")
  11287. },
  11288. {
  11289. name: "Archfey Forest Guardian",
  11290. height: math.unit(1, "mile")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(4, "meters"),
  11299. weight: math.unit(2, "tons"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/marik/front.svg",
  11303. extra: 1057 / 1003,
  11304. bottom: 0.08
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(4, "meters"),
  11312. default: true
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(20, "meters")
  11317. },
  11318. {
  11319. name: "Megamacro",
  11320. height: math.unit(50, "km")
  11321. },
  11322. {
  11323. name: "Gigamacro",
  11324. height: math.unit(100, "km")
  11325. },
  11326. {
  11327. name: "Alpha Macro",
  11328. height: math.unit(7.88e7, "yottameters")
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(110, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/mel/front.svg",
  11341. extra: 736 / 617,
  11342. bottom: 0.017
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Pico",
  11349. height: math.unit(3, "pm")
  11350. },
  11351. {
  11352. name: "Nano",
  11353. height: math.unit(3, "nm")
  11354. },
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(0.3, "mm"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Micro+",
  11362. height: math.unit(3, "mm")
  11363. },
  11364. {
  11365. name: "Normal",
  11366. height: math.unit(5 + 10.5 / 12, "feet")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11372. {
  11373. kaiju: {
  11374. height: math.unit(1.75, "meters"),
  11375. weight: math.unit(55, "kg"),
  11376. name: "Kaiju",
  11377. image: {
  11378. source: "./media/characters/lykonous/kaiju.svg",
  11379. extra: 1055 / 946,
  11380. bottom: 0.135
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(2.5, "meters"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Kaiju Dragon",
  11392. height: math.unit(60, "meters")
  11393. },
  11394. {
  11395. name: "Mega Kaiju",
  11396. height: math.unit(120, "km")
  11397. },
  11398. {
  11399. name: "Giga Kaiju",
  11400. height: math.unit(200, "megameters")
  11401. },
  11402. {
  11403. name: "Terra Kaiju",
  11404. height: math.unit(400, "gigameters")
  11405. },
  11406. {
  11407. name: "Kaiju Dragon God",
  11408. height: math.unit(13000, "exaparsecs")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/blü/front.svg",
  11421. extra: 1883 / 1564,
  11422. bottom: 0.031
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(13, "feet"),
  11430. default: true
  11431. },
  11432. {
  11433. name: "Big Boi",
  11434. height: math.unit(150, "meters")
  11435. },
  11436. {
  11437. name: "Mini Stomper",
  11438. height: math.unit(300, "meters")
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(1000, "meters")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(11000, "meters")
  11447. },
  11448. {
  11449. name: "Gigamacro",
  11450. height: math.unit(11000, "km")
  11451. },
  11452. {
  11453. name: "Teramacro",
  11454. height: math.unit(420000, "km")
  11455. },
  11456. {
  11457. name: "Examacro",
  11458. height: math.unit(120, "parsecs")
  11459. },
  11460. {
  11461. name: "God Tho",
  11462. height: math.unit(98000000000, "parsecs")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11468. {
  11469. taurFront: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(200, "lb"),
  11472. name: "Taur (Front)",
  11473. image: {
  11474. source: "./media/characters/scales/taur-front.svg",
  11475. extra: 1,
  11476. bottom: 0.05
  11477. }
  11478. },
  11479. taurBack: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(200, "lb"),
  11482. name: "Taur (Back)",
  11483. image: {
  11484. source: "./media/characters/scales/taur-back.svg",
  11485. extra: 1,
  11486. bottom: 0.08
  11487. }
  11488. },
  11489. anthro: {
  11490. height: math.unit(6 * 7 / 12, "feet"),
  11491. weight: math.unit(100, "lb"),
  11492. name: "Anthro",
  11493. image: {
  11494. source: "./media/characters/scales/anthro.svg",
  11495. extra: 1,
  11496. bottom: 0.06
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Normal",
  11503. height: math.unit(12, "feet"),
  11504. default: true
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/koragos/front.svg",
  11517. extra: 841 / 794,
  11518. bottom: 0.035
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/koragos/back.svg",
  11527. extra: 841 / 810,
  11528. bottom: 0.022
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(6 + 11 / 12, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(490, "feet")
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(10, "miles")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(50, "miles")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(6, "feet"),
  11557. weight: math.unit(250, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/xylrem/front.svg",
  11561. extra: 3323 / 3050,
  11562. bottom: 0.065
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Micro",
  11569. height: math.unit(4, "feet")
  11570. },
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(16, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(2720, "feet")
  11579. },
  11580. {
  11581. name: "Megamacro",
  11582. height: math.unit(25000, "miles")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(8, "feet"),
  11591. weight: math.unit(250, "kg"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/ikideru/front.svg",
  11595. extra: 930 / 870,
  11596. bottom: 0.087
  11597. }
  11598. },
  11599. back: {
  11600. height: math.unit(8, "feet"),
  11601. weight: math.unit(250, "kg"),
  11602. name: "Back",
  11603. image: {
  11604. source: "./media/characters/ikideru/back.svg",
  11605. extra: 919 / 852,
  11606. bottom: 0.055
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Rare",
  11613. height: math.unit(8, "feet"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Playful Loom",
  11618. height: math.unit(80, "feet")
  11619. },
  11620. {
  11621. name: "City Leaner",
  11622. height: math.unit(230, "feet")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(2500, "feet")
  11627. },
  11628. {
  11629. name: "Gigamacro",
  11630. height: math.unit(26400, "feet")
  11631. },
  11632. {
  11633. name: "Tectonic Shifter",
  11634. height: math.unit(1.7, "megameters")
  11635. },
  11636. {
  11637. name: "Planet Carer",
  11638. height: math.unit(21, "megameters")
  11639. },
  11640. {
  11641. name: "God",
  11642. height: math.unit(11157.22, "parsecs")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(120, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/neo/front.svg"
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Micro",
  11661. height: math.unit(2, "inches"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Human Size",
  11666. height: math.unit(5 + 8 / 12, "feet")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(13 + 10 / 12, "feet"),
  11675. weight: math.unit(5320, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/chauncey-chantz/front.svg",
  11679. extra: 1587 / 1435,
  11680. bottom: 0.02
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(13 + 10 / 12, "feet"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(45, "feet")
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(250, "miles")
  11697. },
  11698. {
  11699. name: "Planetary",
  11700. height: math.unit(10000, "miles")
  11701. },
  11702. {
  11703. name: "Galactic",
  11704. height: math.unit(40000, "parsecs")
  11705. },
  11706. {
  11707. name: "Universal",
  11708. height: math.unit(1, "yottameter")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11714. {
  11715. front: {
  11716. height: math.unit(6, "feet"),
  11717. weight: math.unit(150, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/epifox/front.svg",
  11721. extra: 1,
  11722. bottom: 0.075
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Micro",
  11729. height: math.unit(6, "inches")
  11730. },
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(12, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Macro",
  11738. height: math.unit(3810, "feet")
  11739. },
  11740. {
  11741. name: "Megamacro",
  11742. height: math.unit(500, "miles")
  11743. },
  11744. ]
  11745. ))
  11746. characterMakers.push(() => makeCharacter(
  11747. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11748. {
  11749. front: {
  11750. height: math.unit(1.8796, "m"),
  11751. weight: math.unit(230, "lb"),
  11752. name: "Front",
  11753. image: {
  11754. source: "./media/characters/colin-t/front.svg",
  11755. extra: 1272 / 1193,
  11756. bottom: 0.07
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Micro",
  11763. height: math.unit(0.571, "meters")
  11764. },
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(1.8796, "meters"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Tall",
  11772. height: math.unit(4, "meters")
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(67.241, "meters")
  11777. },
  11778. {
  11779. name: "Megamacro",
  11780. height: math.unit(371.856, "meters")
  11781. },
  11782. {
  11783. name: "Planetary",
  11784. height: math.unit(12631.5689, "km")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(1.85, "meters"),
  11793. weight: math.unit(80, "kg"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/matvei/front.svg",
  11797. extra: 614 / 594,
  11798. bottom: 0.01
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(1.85, "meters"),
  11806. default: true
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(5 + 9 / 12, "feet"),
  11815. weight: math.unit(70, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/quincy/front.svg",
  11819. extra: 3041 / 2751
  11820. }
  11821. },
  11822. back: {
  11823. height: math.unit(5 + 9 / 12, "feet"),
  11824. weight: math.unit(70, "lb"),
  11825. name: "Back",
  11826. image: {
  11827. source: "./media/characters/quincy/back.svg",
  11828. extra: 3041 / 2751
  11829. }
  11830. },
  11831. flying: {
  11832. height: math.unit(5 + 4 / 12, "feet"),
  11833. weight: math.unit(70, "lb"),
  11834. name: "Flying",
  11835. image: {
  11836. source: "./media/characters/quincy/flying.svg",
  11837. extra: 1044 / 930
  11838. }
  11839. },
  11840. },
  11841. [
  11842. {
  11843. name: "Micro",
  11844. height: math.unit(3, "cm")
  11845. },
  11846. {
  11847. name: "Normal",
  11848. height: math.unit(5 + 9 / 12, "feet")
  11849. },
  11850. {
  11851. name: "Macro",
  11852. height: math.unit(200, "meters"),
  11853. default: true
  11854. },
  11855. {
  11856. name: "Megamacro",
  11857. height: math.unit(1000, "meters")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(3 + 11/12, "feet"),
  11866. weight: math.unit(50, "lb"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/vanrel/front.svg",
  11870. extra: 1104/949,
  11871. bottom: 52/1156
  11872. }
  11873. },
  11874. back: {
  11875. height: math.unit(3 + 11/12, "feet"),
  11876. weight: math.unit(50, "lb"),
  11877. name: "Back",
  11878. image: {
  11879. source: "./media/characters/vanrel/back.svg",
  11880. extra: 1119/976,
  11881. bottom: 37/1156
  11882. }
  11883. },
  11884. tome: {
  11885. height: math.unit(1.35, "feet"),
  11886. weight: math.unit(10, "lb"),
  11887. name: "Vanrel's Tome",
  11888. rename: true,
  11889. image: {
  11890. source: "./media/characters/vanrel/tome.svg"
  11891. }
  11892. },
  11893. beans: {
  11894. height: math.unit(0.89, "feet"),
  11895. name: "Beans",
  11896. image: {
  11897. source: "./media/characters/vanrel/beans.svg"
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(3 + 11/12, "feet"),
  11905. default: true
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(7 + 5 / 12, "feet"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/kuiper-vanrel/front.svg",
  11917. extra: 1219/1169,
  11918. bottom: 69/1288
  11919. }
  11920. },
  11921. back: {
  11922. height: math.unit(7 + 5 / 12, "feet"),
  11923. name: "Back",
  11924. image: {
  11925. source: "./media/characters/kuiper-vanrel/back.svg",
  11926. extra: 1236/1193,
  11927. bottom: 27/1263
  11928. }
  11929. },
  11930. foot: {
  11931. height: math.unit(0.55, "meters"),
  11932. name: "Foot",
  11933. image: {
  11934. source: "./media/characters/kuiper-vanrel/foot.svg",
  11935. }
  11936. },
  11937. battle: {
  11938. height: math.unit(6.824, "feet"),
  11939. name: "Battle",
  11940. image: {
  11941. source: "./media/characters/kuiper-vanrel/battle.svg",
  11942. extra: 1466 / 1327,
  11943. bottom: 29 / 1492.5
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(7 + 5 / 12, "feet"),
  11951. default: true
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(8 + 5 / 12, "feet"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/keset-vanrel/front.svg",
  11963. extra: 1231/1148,
  11964. bottom: 82/1313
  11965. }
  11966. },
  11967. back: {
  11968. height: math.unit(8 + 5 / 12, "feet"),
  11969. name: "Back",
  11970. image: {
  11971. source: "./media/characters/keset-vanrel/back.svg",
  11972. extra: 1240/1174,
  11973. bottom: 33/1273
  11974. }
  11975. },
  11976. hand: {
  11977. height: math.unit(0.6, "meters"),
  11978. name: "Hand",
  11979. image: {
  11980. source: "./media/characters/keset-vanrel/hand.svg"
  11981. }
  11982. },
  11983. foot: {
  11984. height: math.unit(0.94978, "meters"),
  11985. name: "Foot",
  11986. image: {
  11987. source: "./media/characters/keset-vanrel/foot.svg"
  11988. }
  11989. },
  11990. battle: {
  11991. height: math.unit(7.408, "feet"),
  11992. name: "Battle",
  11993. image: {
  11994. source: "./media/characters/keset-vanrel/battle.svg",
  11995. extra: 1890 / 1386,
  11996. bottom: 73.28 / 1970
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(8 + 5 / 12, "feet"),
  12004. default: true
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12010. {
  12011. front: {
  12012. height: math.unit(6, "feet"),
  12013. weight: math.unit(150, "lb"),
  12014. name: "Front",
  12015. image: {
  12016. source: "./media/characters/neos/front.svg",
  12017. extra: 1696 / 992,
  12018. bottom: 0.14
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(54, "cm"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(100, "m")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(10, "km")
  12035. },
  12036. {
  12037. name: "Megamacro+",
  12038. height: math.unit(100, "km")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(100, "Mm")
  12043. },
  12044. {
  12045. name: "Teramacro",
  12046. height: math.unit(100, "Gm")
  12047. },
  12048. {
  12049. name: "Examacro",
  12050. height: math.unit(100, "Em")
  12051. },
  12052. {
  12053. name: "Godly",
  12054. height: math.unit(10000, "Ym")
  12055. },
  12056. {
  12057. name: "Beyond Godly",
  12058. height: math.unit(25, "multiverses")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12064. {
  12065. feminine: {
  12066. height: math.unit(5, "feet"),
  12067. weight: math.unit(100, "lb"),
  12068. name: "Feminine",
  12069. image: {
  12070. source: "./media/characters/sammy-mouse/feminine.svg",
  12071. extra: 2526 / 2425,
  12072. bottom: 0.123
  12073. }
  12074. },
  12075. masculine: {
  12076. height: math.unit(5, "feet"),
  12077. weight: math.unit(100, "lb"),
  12078. name: "Masculine",
  12079. image: {
  12080. source: "./media/characters/sammy-mouse/masculine.svg",
  12081. extra: 2526 / 2425,
  12082. bottom: 0.123
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Micro",
  12089. height: math.unit(5, "inches")
  12090. },
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(5, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Macro",
  12098. height: math.unit(60, "feet")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(4, "feet"),
  12107. weight: math.unit(50, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/kole/front.svg",
  12111. extra: 1423 / 1303,
  12112. bottom: 0.025
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(4, "feet"),
  12117. weight: math.unit(50, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/kole/back.svg",
  12121. extra: 1426 / 1280,
  12122. bottom: 0.02
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(4, "feet"),
  12130. default: true
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(2.5, "feet"),
  12139. weight: math.unit(32, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/rufran/front.svg",
  12143. extra: 1313/885,
  12144. bottom: 94/1407
  12145. }
  12146. },
  12147. side: {
  12148. height: math.unit(2.5, "feet"),
  12149. weight: math.unit(32, "lb"),
  12150. name: "Side",
  12151. image: {
  12152. source: "./media/characters/rufran/side.svg",
  12153. extra: 1109/852,
  12154. bottom: 118/1227
  12155. }
  12156. },
  12157. back: {
  12158. height: math.unit(2.5, "feet"),
  12159. weight: math.unit(32, "lb"),
  12160. name: "Back",
  12161. image: {
  12162. source: "./media/characters/rufran/back.svg",
  12163. extra: 1280/878,
  12164. bottom: 131/1411
  12165. }
  12166. },
  12167. mouth: {
  12168. height: math.unit(1.13, "feet"),
  12169. name: "Mouth",
  12170. image: {
  12171. source: "./media/characters/rufran/mouth.svg"
  12172. }
  12173. },
  12174. foot: {
  12175. height: math.unit(1.33, "feet"),
  12176. name: "Foot",
  12177. image: {
  12178. source: "./media/characters/rufran/foot.svg"
  12179. }
  12180. },
  12181. koboldFront: {
  12182. height: math.unit(2 + 6 / 12, "feet"),
  12183. weight: math.unit(20, "lb"),
  12184. name: "Front (Kobold)",
  12185. image: {
  12186. source: "./media/characters/rufran/kobold-front.svg",
  12187. extra: 2041 / 1839,
  12188. bottom: 0.055
  12189. }
  12190. },
  12191. koboldBack: {
  12192. height: math.unit(2 + 6 / 12, "feet"),
  12193. weight: math.unit(20, "lb"),
  12194. name: "Back (Kobold)",
  12195. image: {
  12196. source: "./media/characters/rufran/kobold-back.svg",
  12197. extra: 2054 / 1839,
  12198. bottom: 0.01
  12199. }
  12200. },
  12201. koboldHand: {
  12202. height: math.unit(0.2166, "meters"),
  12203. name: "Hand (Kobold)",
  12204. image: {
  12205. source: "./media/characters/rufran/kobold-hand.svg"
  12206. }
  12207. },
  12208. koboldFoot: {
  12209. height: math.unit(0.185, "meters"),
  12210. name: "Foot (Kobold)",
  12211. image: {
  12212. source: "./media/characters/rufran/kobold-foot.svg"
  12213. }
  12214. },
  12215. },
  12216. [
  12217. {
  12218. name: "Micro",
  12219. height: math.unit(1, "inch")
  12220. },
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(2 + 6 / 12, "feet"),
  12224. default: true
  12225. },
  12226. {
  12227. name: "Big",
  12228. height: math.unit(60, "feet")
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(325, "feet")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(0.3, "meters"),
  12241. weight: math.unit(3.5, "kg"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/chip/front.svg",
  12245. extra: 748 / 674
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Micro",
  12252. height: math.unit(1, "inch"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12259. {
  12260. side: {
  12261. height: math.unit(2.3, "meters"),
  12262. weight: math.unit(3500, "lb"),
  12263. name: "Side",
  12264. image: {
  12265. source: "./media/characters/torvid/side.svg",
  12266. extra: 1972 / 722,
  12267. bottom: 0.035
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(2.3, "meters"),
  12275. default: true
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12281. {
  12282. front: {
  12283. height: math.unit(2, "meters"),
  12284. weight: math.unit(150.5, "kg"),
  12285. name: "Front",
  12286. image: {
  12287. source: "./media/characters/susan/front.svg",
  12288. extra: 693 / 635,
  12289. bottom: 0.05
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Megamacro",
  12296. height: math.unit(505, "miles"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(6, "feet"),
  12306. weight: math.unit(150, "lb"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/raindrops/front.svg",
  12310. extra: 2655 / 2461,
  12311. bottom: 49 / 2705
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(150, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/raindrops/back.svg",
  12320. extra: 2574 / 2400,
  12321. bottom: 65 / 2634
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Micro",
  12328. height: math.unit(6, "inches")
  12329. },
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(6 + 2 / 12, "feet")
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(131, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(15, "miles")
  12342. },
  12343. {
  12344. name: "Gigamacro",
  12345. height: math.unit(4000, "miles")
  12346. },
  12347. {
  12348. name: "Teramacro",
  12349. height: math.unit(315000, "miles")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(2.794, "meters"),
  12358. weight: math.unit(325, "kg"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/tezwa/front.svg",
  12362. extra: 2083 / 1906,
  12363. bottom: 0.031
  12364. }
  12365. },
  12366. foot: {
  12367. height: math.unit(0.687, "meters"),
  12368. name: "Foot",
  12369. image: {
  12370. source: "./media/characters/tezwa/foot.svg"
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(9 + 2 / 12, "feet"),
  12378. default: true
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(58, "feet"),
  12387. weight: math.unit(89000, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/typhus/front.svg",
  12391. extra: 816 / 800,
  12392. bottom: 0.065
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(58, "feet"),
  12400. default: true
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(12, "feet"),
  12409. weight: math.unit(6, "tonnes"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/lyra-von-wulf/front.svg",
  12413. extra: 1,
  12414. bottom: 0.10
  12415. }
  12416. },
  12417. frontMecha: {
  12418. height: math.unit(12, "feet"),
  12419. weight: math.unit(12, "tonnes"),
  12420. name: "Front (Mecha)",
  12421. image: {
  12422. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12423. extra: 1,
  12424. bottom: 0.042
  12425. }
  12426. },
  12427. maw: {
  12428. height: math.unit(2.2, "feet"),
  12429. name: "Maw",
  12430. image: {
  12431. source: "./media/characters/lyra-von-wulf/maw.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(12, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Classic",
  12443. height: math.unit(50, "feet")
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(500, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(1, "mile")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(400, "miles")
  12456. },
  12457. {
  12458. name: "Teramacro",
  12459. height: math.unit(22000, "miles")
  12460. },
  12461. {
  12462. name: "Solarmacro",
  12463. height: math.unit(8600000, "miles")
  12464. },
  12465. {
  12466. name: "Galactic",
  12467. height: math.unit(1057000, "lightyears")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6 + 10 / 12, "feet"),
  12476. weight: math.unit(150, "lb"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/dixon/front.svg",
  12480. extra: 3361 / 3209,
  12481. bottom: 0.01
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(6 + 10 / 12, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Big",
  12493. height: math.unit(12, "meters")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(500, "meters")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(2, "km")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(185, "cm"),
  12510. weight: math.unit(68, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/kauko/front.svg",
  12514. extra: 1455 / 1421,
  12515. bottom: 0.03
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(185, "cm"),
  12520. weight: math.unit(68, "kg"),
  12521. name: "Back",
  12522. image: {
  12523. source: "./media/characters/kauko/back.svg",
  12524. extra: 1455 / 1421,
  12525. bottom: 0.004
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(185, "cm"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(150, "kg"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/varg/front.svg",
  12546. extra: 1108 / 1018,
  12547. bottom: 0.0375
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(5, "meters")
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(200, "meters")
  12559. },
  12560. {
  12561. name: "Megamacro",
  12562. height: math.unit(20, "kilometers")
  12563. },
  12564. {
  12565. name: "True Size",
  12566. height: math.unit(211, "km"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Gigamacro",
  12571. height: math.unit(1000, "km")
  12572. },
  12573. {
  12574. name: "Gigamacro+",
  12575. height: math.unit(8000, "km")
  12576. },
  12577. {
  12578. name: "Teramacro",
  12579. height: math.unit(1000000, "km")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(7 + 7 / 12, "feet"),
  12588. weight: math.unit(267, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/dayza/front.svg",
  12592. extra: 1262 / 1200,
  12593. bottom: 0.035
  12594. }
  12595. },
  12596. side: {
  12597. height: math.unit(7 + 7 / 12, "feet"),
  12598. weight: math.unit(267, "lb"),
  12599. name: "Side",
  12600. image: {
  12601. source: "./media/characters/dayza/side.svg",
  12602. extra: 1295 / 1245,
  12603. bottom: 0.05
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(7 + 7 / 12, "feet"),
  12608. weight: math.unit(267, "lb"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/dayza/back.svg",
  12612. extra: 1241 / 1170
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(7 + 7 / 12, "feet"),
  12620. default: true
  12621. },
  12622. {
  12623. name: "Macro",
  12624. height: math.unit(155, "feet")
  12625. },
  12626. ]
  12627. ))
  12628. characterMakers.push(() => makeCharacter(
  12629. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12630. {
  12631. front: {
  12632. height: math.unit(6 + 5 / 12, "feet"),
  12633. weight: math.unit(160, "lb"),
  12634. name: "Front",
  12635. image: {
  12636. source: "./media/characters/xanthos/front.svg",
  12637. extra: 1,
  12638. bottom: 0.04
  12639. }
  12640. },
  12641. back: {
  12642. height: math.unit(6 + 5 / 12, "feet"),
  12643. weight: math.unit(160, "lb"),
  12644. name: "Back",
  12645. image: {
  12646. source: "./media/characters/xanthos/back.svg",
  12647. extra: 1,
  12648. bottom: 0.03
  12649. }
  12650. },
  12651. hand: {
  12652. height: math.unit(0.928, "feet"),
  12653. name: "Hand",
  12654. image: {
  12655. source: "./media/characters/xanthos/hand.svg"
  12656. }
  12657. },
  12658. foot: {
  12659. height: math.unit(1.286, "feet"),
  12660. name: "Foot",
  12661. image: {
  12662. source: "./media/characters/xanthos/foot.svg"
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Normal",
  12669. height: math.unit(6 + 5 / 12, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Normal+",
  12674. height: math.unit(6, "meters")
  12675. },
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(40, "feet")
  12679. },
  12680. {
  12681. name: "Macro+",
  12682. height: math.unit(200, "meters")
  12683. },
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(20, "km")
  12687. },
  12688. {
  12689. name: "Megamacro+",
  12690. height: math.unit(100, "km")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6 + 3 / 12, "feet"),
  12699. weight: math.unit(215, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/grynn/front.svg",
  12703. extra: 4627 / 4209,
  12704. bottom: 0.047
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Micro",
  12711. height: math.unit(6, "inches")
  12712. },
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(6 + 3 / 12, "feet"),
  12716. default: true
  12717. },
  12718. {
  12719. name: "Big",
  12720. height: math.unit(104, "feet")
  12721. },
  12722. {
  12723. name: "Macro",
  12724. height: math.unit(944, "feet")
  12725. },
  12726. {
  12727. name: "Macro+",
  12728. height: math.unit(9480, "feet")
  12729. },
  12730. {
  12731. name: "Megamacro",
  12732. height: math.unit(78752, "feet")
  12733. },
  12734. {
  12735. name: "Megamacro+",
  12736. height: math.unit(630128, "feet")
  12737. },
  12738. {
  12739. name: "Megamacro++",
  12740. height: math.unit(3150695, "feet")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(7 + 5 / 12, "feet"),
  12749. weight: math.unit(450, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/mocha-aura/front.svg",
  12753. extra: 1907 / 1817,
  12754. bottom: 0.04
  12755. }
  12756. },
  12757. back: {
  12758. height: math.unit(7 + 5 / 12, "feet"),
  12759. weight: math.unit(450, "lb"),
  12760. name: "Back",
  12761. image: {
  12762. source: "./media/characters/mocha-aura/back.svg",
  12763. extra: 1900 / 1825,
  12764. bottom: 0.045
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Nano",
  12771. height: math.unit(1, "nm")
  12772. },
  12773. {
  12774. name: "Megamicro",
  12775. height: math.unit(1, "mm")
  12776. },
  12777. {
  12778. name: "Micro",
  12779. height: math.unit(3, "inches")
  12780. },
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(7 + 5 / 12, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(30, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(3500, "feet")
  12793. },
  12794. {
  12795. name: "Teramacro",
  12796. height: math.unit(500000, "miles")
  12797. },
  12798. {
  12799. name: "Petamacro",
  12800. height: math.unit(50000000000000000, "parsecs")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/ilisha-devya/front.svg",
  12813. extra: 1,
  12814. bottom: 0.175
  12815. }
  12816. },
  12817. back: {
  12818. height: math.unit(6, "feet"),
  12819. weight: math.unit(150, "lb"),
  12820. name: "Back",
  12821. image: {
  12822. source: "./media/characters/ilisha-devya/back.svg",
  12823. extra: 1,
  12824. bottom: 0.015
  12825. }
  12826. },
  12827. },
  12828. [
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(500, "feet"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(10, "miles")
  12837. },
  12838. {
  12839. name: "Gigamacro",
  12840. height: math.unit(100000, "miles")
  12841. },
  12842. {
  12843. name: "Examacro",
  12844. height: math.unit(1e9, "lightyears")
  12845. },
  12846. {
  12847. name: "Omniversal",
  12848. height: math.unit(1e33, "lightyears")
  12849. },
  12850. {
  12851. name: "Beyond Infinite",
  12852. height: math.unit(1e100, "lightyears")
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12858. {
  12859. Side: {
  12860. height: math.unit(6, "feet"),
  12861. weight: math.unit(150, "lb"),
  12862. name: "Side",
  12863. image: {
  12864. source: "./media/characters/mira/side.svg",
  12865. extra: 900 / 799,
  12866. bottom: 0.02
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Human Size",
  12873. height: math.unit(6, "feet")
  12874. },
  12875. {
  12876. name: "Macro",
  12877. height: math.unit(100, "feet"),
  12878. default: true
  12879. },
  12880. {
  12881. name: "Megamacro",
  12882. height: math.unit(10, "miles")
  12883. },
  12884. {
  12885. name: "Gigamacro",
  12886. height: math.unit(25000, "miles")
  12887. },
  12888. {
  12889. name: "Teramacro",
  12890. height: math.unit(300, "AU")
  12891. },
  12892. {
  12893. name: "Full Size",
  12894. height: math.unit(4.5e10, "lightyears")
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/holly/front.svg",
  12907. extra: 639 / 606
  12908. }
  12909. },
  12910. back: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(150, "lb"),
  12913. name: "Back",
  12914. image: {
  12915. source: "./media/characters/holly/back.svg",
  12916. extra: 623 / 598
  12917. }
  12918. },
  12919. frontWorking: {
  12920. height: math.unit(6, "feet"),
  12921. weight: math.unit(150, "lb"),
  12922. name: "Front (Working)",
  12923. image: {
  12924. source: "./media/characters/holly/front-working.svg",
  12925. extra: 607 / 577,
  12926. bottom: 0.048
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(12 + 3 / 12, "feet"),
  12934. default: true
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(150, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/porter/front.svg",
  12947. extra: 1,
  12948. bottom: 0.01
  12949. }
  12950. },
  12951. frontRobes: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Front (Robes)",
  12955. image: {
  12956. source: "./media/characters/porter/front-robes.svg",
  12957. extra: 1.01,
  12958. bottom: 0.01
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(11 + 9 / 12, "feet"),
  12966. default: true
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12972. {
  12973. legendary: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Legendary",
  12977. image: {
  12978. source: "./media/characters/lucy/legendary.svg",
  12979. extra: 1355 / 1100,
  12980. bottom: 0.045
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Legendary",
  12987. height: math.unit(86882 * 2, "miles"),
  12988. default: true
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(150, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/drusilla/front.svg",
  13001. extra: 678 / 635,
  13002. bottom: 0.03
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(150, "lb"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/drusilla/back.svg",
  13011. extra: 678 / 635,
  13012. bottom: 0.005
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(100, "feet")
  13020. },
  13021. {
  13022. name: "Canon Height",
  13023. height: math.unit(2000, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(180, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/renard-thatch/front.svg",
  13037. extra: 2411 / 2275,
  13038. bottom: 0.01
  13039. }
  13040. },
  13041. frontPosing: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(180, "lb"),
  13044. name: "Front (Posing)",
  13045. image: {
  13046. source: "./media/characters/renard-thatch/front-posing.svg",
  13047. extra: 2381 / 2261,
  13048. bottom: 0.01
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(180, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/renard-thatch/back.svg",
  13057. extra: 2428 / 2288
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Micro",
  13064. height: math.unit(3, "inches")
  13065. },
  13066. {
  13067. name: "Default",
  13068. height: math.unit(6, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Macro",
  13073. height: math.unit(75, "feet")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(1450, "feet"),
  13082. weight: math.unit(1.21e6, "tons"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/sekvra/front.svg",
  13086. extra: 1,
  13087. bottom: 0.03
  13088. }
  13089. },
  13090. frontClothed: {
  13091. height: math.unit(1450, "feet"),
  13092. weight: math.unit(1.21e6, "tons"),
  13093. name: "Front (Clothed)",
  13094. image: {
  13095. source: "./media/characters/sekvra/front-clothed.svg",
  13096. extra: 1,
  13097. bottom: 0.03
  13098. }
  13099. },
  13100. side: {
  13101. height: math.unit(1450, "feet"),
  13102. weight: math.unit(1.21e6, "tons"),
  13103. name: "Side",
  13104. image: {
  13105. source: "./media/characters/sekvra/side.svg",
  13106. extra: 1,
  13107. bottom: 0.025
  13108. }
  13109. },
  13110. back: {
  13111. height: math.unit(1450, "feet"),
  13112. weight: math.unit(1.21e6, "tons"),
  13113. name: "Back",
  13114. image: {
  13115. source: "./media/characters/sekvra/back.svg",
  13116. extra: 1,
  13117. bottom: 0.005
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Macro",
  13124. height: math.unit(1450, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(15000, "feet")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(6, "feet"),
  13138. weight: math.unit(150, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/carmine/front.svg",
  13142. extra: 1,
  13143. bottom: 0.035
  13144. }
  13145. },
  13146. frontArmor: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front (Armor)",
  13150. image: {
  13151. source: "./media/characters/carmine/front-armor.svg",
  13152. extra: 1,
  13153. bottom: 0.035
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Large",
  13160. height: math.unit(1, "mile")
  13161. },
  13162. {
  13163. name: "Huge",
  13164. height: math.unit(40, "miles"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Colossal",
  13169. height: math.unit(2500, "miles")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(6, "feet"),
  13178. weight: math.unit(150, "lb"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/elyssia/front.svg",
  13182. extra: 2201 / 2035,
  13183. bottom: 0.05
  13184. }
  13185. },
  13186. frontClothed: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front (Clothed)",
  13190. image: {
  13191. source: "./media/characters/elyssia/front-clothed.svg",
  13192. extra: 2201 / 2035,
  13193. bottom: 0.05
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/elyssia/back.svg",
  13202. extra: 2201 / 2035,
  13203. bottom: 0.013
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Smaller",
  13210. height: math.unit(150, "feet")
  13211. },
  13212. {
  13213. name: "Standard",
  13214. height: math.unit(1400, "feet"),
  13215. default: true
  13216. },
  13217. {
  13218. name: "Distracted",
  13219. height: math.unit(15000, "feet")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(7 + 4 / 12, "feet"),
  13228. weight: math.unit(500, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/geno-maxwell/front.svg",
  13232. extra: 2207 / 2040,
  13233. bottom: 0.015
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(3, "inches")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(7 + 4 / 12, "feet"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(220, "feet")
  13250. },
  13251. {
  13252. name: "Megamacro",
  13253. height: math.unit(11, "miles")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13259. {
  13260. front: {
  13261. height: math.unit(7 + 4 / 12, "feet"),
  13262. weight: math.unit(500, "lb"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/regena-maxwell/front.svg",
  13266. extra: 3115 / 2770,
  13267. bottom: 0.02
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(7 + 4 / 12, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(220, "feet")
  13280. },
  13281. {
  13282. name: "Megamacro",
  13283. height: math.unit(11, "miles")
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(150, "lb"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13296. extra: 860 / 690,
  13297. bottom: 0.03
  13298. }
  13299. },
  13300. },
  13301. [
  13302. {
  13303. name: "Normal",
  13304. height: math.unit(1.7, "meters"),
  13305. default: true
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/quilly/front.svg",
  13318. extra: 890 / 776
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Gigamacro",
  13325. height: math.unit(404090, "miles"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(7 + 8 / 12, "feet"),
  13335. weight: math.unit(350, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/tempest/front.svg",
  13339. extra: 1175 / 1086,
  13340. bottom: 0.02
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(7 + 8 / 12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13354. {
  13355. side: {
  13356. height: math.unit(4 + 5 / 12, "feet"),
  13357. weight: math.unit(80, "lb"),
  13358. name: "Side",
  13359. image: {
  13360. source: "./media/characters/rodger/side.svg",
  13361. extra: 1235 / 1118
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(1, "inch")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(4 + 5 / 12, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(120, "feet")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/danyel/front.svg",
  13390. extra: 1185 / 1123,
  13391. bottom: 0.05
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Shrunken",
  13398. height: math.unit(0.5, "mm")
  13399. },
  13400. {
  13401. name: "Micro",
  13402. height: math.unit(1, "mm"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Upsized",
  13407. height: math.unit(5 + 5 / 12, "feet")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(5 + 6 / 12, "feet"),
  13416. weight: math.unit(200, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/vivian-bijoux/front.svg",
  13420. extra: 1,
  13421. bottom: 0.072
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(5 + 6 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Bad Dream",
  13433. height: math.unit(500, "feet")
  13434. },
  13435. {
  13436. name: "Nightmare",
  13437. height: math.unit(500, "miles")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6 + 1 / 12, "feet"),
  13446. weight: math.unit(260, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/zeta/front.svg",
  13450. extra: 1968 / 1889,
  13451. bottom: 0.06
  13452. }
  13453. },
  13454. back: {
  13455. height: math.unit(6 + 1 / 12, "feet"),
  13456. weight: math.unit(260, "lb"),
  13457. name: "Back",
  13458. image: {
  13459. source: "./media/characters/zeta/back.svg",
  13460. extra: 1944 / 1858,
  13461. bottom: 0.03
  13462. }
  13463. },
  13464. hand: {
  13465. height: math.unit(1.112, "feet"),
  13466. name: "Hand",
  13467. image: {
  13468. source: "./media/characters/zeta/hand.svg"
  13469. }
  13470. },
  13471. foot: {
  13472. height: math.unit(1.48, "feet"),
  13473. name: "Foot",
  13474. image: {
  13475. source: "./media/characters/zeta/foot.svg"
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Micro",
  13482. height: math.unit(6, "inches")
  13483. },
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(6 + 1 / 12, "feet"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(20, "feet")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/jamie-larsen/front.svg",
  13504. extra: 962 / 933,
  13505. bottom: 0.02
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(6, "feet"),
  13510. weight: math.unit(150, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/jamie-larsen/back.svg",
  13514. extra: 997 / 946
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Macro",
  13521. height: math.unit(28 + 7 / 12, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Macro+",
  13526. height: math.unit(180, "feet")
  13527. },
  13528. {
  13529. name: "Megamacro",
  13530. height: math.unit(10, "miles")
  13531. },
  13532. {
  13533. name: "Gigamacro",
  13534. height: math.unit(200000, "miles")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(120, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/vance/front.svg",
  13547. extra: 1980 / 1890,
  13548. bottom: 0.09
  13549. }
  13550. },
  13551. back: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(120, "lb"),
  13554. name: "Back",
  13555. image: {
  13556. source: "./media/characters/vance/back.svg",
  13557. extra: 2081 / 1994,
  13558. bottom: 0.014
  13559. }
  13560. },
  13561. hand: {
  13562. height: math.unit(0.88, "feet"),
  13563. name: "Hand",
  13564. image: {
  13565. source: "./media/characters/vance/hand.svg"
  13566. }
  13567. },
  13568. foot: {
  13569. height: math.unit(0.64, "feet"),
  13570. name: "Foot",
  13571. image: {
  13572. source: "./media/characters/vance/foot.svg"
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Small",
  13579. height: math.unit(90, "feet"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(100, "meters")
  13585. },
  13586. {
  13587. name: "Megamacro",
  13588. height: math.unit(15, "miles")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(180, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/xochitl/front.svg",
  13601. extra: 2297 / 2261,
  13602. bottom: 0.065
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(180, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/xochitl/back.svg",
  13611. extra: 2386 / 2354,
  13612. bottom: 0.01
  13613. }
  13614. },
  13615. foot: {
  13616. height: math.unit(6 / 5 * 1.15, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Foot",
  13619. image: {
  13620. source: "./media/characters/xochitl/foot.svg"
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Macro",
  13627. height: math.unit(80, "feet")
  13628. },
  13629. {
  13630. name: "Macro+",
  13631. height: math.unit(400, "feet"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Gigamacro",
  13636. height: math.unit(80000, "miles")
  13637. },
  13638. {
  13639. name: "Gigamacro+",
  13640. height: math.unit(400000, "miles")
  13641. },
  13642. {
  13643. name: "Teramacro",
  13644. height: math.unit(300, "AU")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/vincent/front.svg",
  13657. extra: 1130 / 1080,
  13658. bottom: 0.055
  13659. }
  13660. },
  13661. beak: {
  13662. height: math.unit(6 * 0.1, "feet"),
  13663. name: "Beak",
  13664. image: {
  13665. source: "./media/characters/vincent/beak.svg"
  13666. }
  13667. },
  13668. hand: {
  13669. height: math.unit(6 * 0.85, "feet"),
  13670. weight: math.unit(150, "lb"),
  13671. name: "Hand",
  13672. image: {
  13673. source: "./media/characters/vincent/hand.svg"
  13674. }
  13675. },
  13676. foot: {
  13677. height: math.unit(6 * 0.19, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Foot",
  13680. image: {
  13681. source: "./media/characters/vincent/foot.svg"
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Base",
  13688. height: math.unit(6 + 5 / 12, "feet"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(300, "feet")
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(2, "miles")
  13698. },
  13699. {
  13700. name: "Gigamacro",
  13701. height: math.unit(1000, "miles")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(2, "meters"),
  13710. weight: math.unit(500, "kg"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/coatl/front.svg",
  13714. extra: 3948 / 3500,
  13715. bottom: 0.082
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(4, "meters")
  13723. },
  13724. {
  13725. name: "Macro",
  13726. height: math.unit(100, "meters"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Macro+",
  13731. height: math.unit(300, "meters")
  13732. },
  13733. {
  13734. name: "Megamacro",
  13735. height: math.unit(3, "gigameters")
  13736. },
  13737. {
  13738. name: "Megamacro+",
  13739. height: math.unit(300, "terameters")
  13740. },
  13741. {
  13742. name: "Megamacro++",
  13743. height: math.unit(3, "lightyears")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(50, "kg"),
  13753. name: "front",
  13754. image: {
  13755. source: "./media/characters/shiroryu/front.svg",
  13756. extra: 1990 / 1935
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Mortal Mingling",
  13763. height: math.unit(3, "meters")
  13764. },
  13765. {
  13766. name: "Kaiju-ish",
  13767. height: math.unit(250, "meters")
  13768. },
  13769. {
  13770. name: "Somewhat Godly",
  13771. height: math.unit(400, "km"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Planetary",
  13776. height: math.unit(300, "megameters")
  13777. },
  13778. {
  13779. name: "Galaxy-dwarfing",
  13780. height: math.unit(450, "kiloparsecs")
  13781. },
  13782. {
  13783. name: "Universe Eater",
  13784. height: math.unit(150, "gigaparsecs")
  13785. },
  13786. {
  13787. name: "Almost Immeasurable",
  13788. height: math.unit(1.3e266, "yottaparsecs")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/umeko/front.svg",
  13801. extra: 1,
  13802. bottom: 0.019
  13803. }
  13804. },
  13805. frontArmored: {
  13806. height: math.unit(6, "feet"),
  13807. weight: math.unit(150, "lb"),
  13808. name: "Front (Armored)",
  13809. image: {
  13810. source: "./media/characters/umeko/front-armored.svg",
  13811. extra: 1,
  13812. bottom: 0.021
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Macro",
  13819. height: math.unit(220, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Guardian Dragon",
  13824. height: math.unit(50, "miles")
  13825. },
  13826. {
  13827. name: "Cosmic",
  13828. height: math.unit(800000, "miles")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/cassidy/front.svg",
  13841. extra: 1,
  13842. bottom: 0.043
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Canon Height",
  13849. height: math.unit(120, "feet"),
  13850. default: true
  13851. },
  13852. {
  13853. name: "Macro+",
  13854. height: math.unit(400, "feet")
  13855. },
  13856. {
  13857. name: "Macro++",
  13858. height: math.unit(4000, "feet")
  13859. },
  13860. {
  13861. name: "Megamacro",
  13862. height: math.unit(3, "miles")
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13868. {
  13869. front: {
  13870. height: math.unit(6, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/isaac/front.svg",
  13875. extra: 896 / 815,
  13876. bottom: 0.11
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Human Size",
  13883. height: math.unit(8, "feet"),
  13884. default: true
  13885. },
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(400, "feet")
  13889. },
  13890. {
  13891. name: "Megamacro",
  13892. height: math.unit(50, "miles")
  13893. },
  13894. {
  13895. name: "Canon Height",
  13896. height: math.unit(200, "AU")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(72, "kg"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/sleekit/front.svg",
  13909. extra: 4693 / 4487,
  13910. bottom: 0.012
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Minimum Height",
  13917. height: math.unit(10, "meters")
  13918. },
  13919. {
  13920. name: "Smaller",
  13921. height: math.unit(25, "meters")
  13922. },
  13923. {
  13924. name: "Larger",
  13925. height: math.unit(38, "meters"),
  13926. default: true
  13927. },
  13928. {
  13929. name: "Maximum height",
  13930. height: math.unit(100, "meters")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/nillia/front.svg",
  13943. extra: 2195 / 2037,
  13944. bottom: 0.005
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(150, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/nillia/back.svg",
  13953. extra: 2195 / 2037,
  13954. bottom: 0.005
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Canon Height",
  13961. height: math.unit(489, "feet"),
  13962. default: true
  13963. }
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/mesmyriza/front.svg",
  13975. extra: 2067 / 1784,
  13976. bottom: 0.035
  13977. }
  13978. },
  13979. foot: {
  13980. height: math.unit(6 / (250 / 35), "feet"),
  13981. name: "Foot",
  13982. image: {
  13983. source: "./media/characters/mesmyriza/foot.svg"
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(457, "meters"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(8, "megameters")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(6, "feet"),
  14004. weight: math.unit(250, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/saudade/front.svg",
  14008. extra: 1172 / 1139,
  14009. bottom: 0.035
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Micro",
  14016. height: math.unit(3, "inches")
  14017. },
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(6, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro",
  14025. height: math.unit(50, "feet")
  14026. },
  14027. {
  14028. name: "Megamacro",
  14029. height: math.unit(2800, "feet")
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14035. {
  14036. front: {
  14037. height: math.unit(5 + 4 / 12, "feet"),
  14038. weight: math.unit(100, "lb"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/keireer/front.svg",
  14042. extra: 716 / 666,
  14043. bottom: 0.05
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(5 + 4 / 12, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(90, "kg"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/mirja/front.svg",
  14064. extra: 1789 / 1683,
  14065. bottom: 0.05
  14066. }
  14067. },
  14068. frontDressed: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(90, "lb"),
  14071. name: "Front (Dressed)",
  14072. image: {
  14073. source: "./media/characters/mirja/front-dressed.svg",
  14074. extra: 1789 / 1683,
  14075. bottom: 0.05
  14076. }
  14077. },
  14078. back: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(90, "lb"),
  14081. name: "Back",
  14082. image: {
  14083. source: "./media/characters/mirja/back.svg",
  14084. extra: 953 / 917,
  14085. bottom: 0.017
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "\"Incognito\"",
  14092. height: math.unit(3, "meters")
  14093. },
  14094. {
  14095. name: "Strolling Size",
  14096. height: math.unit(15, "km")
  14097. },
  14098. {
  14099. name: "Larger Strolling Size",
  14100. height: math.unit(400, "km")
  14101. },
  14102. {
  14103. name: "Preferred Size",
  14104. height: math.unit(5000, "km")
  14105. },
  14106. {
  14107. name: "True Size",
  14108. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(15, "feet"),
  14118. weight: math.unit(880, "kg"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/nightraver/front.svg",
  14122. extra: 2444 / 2160,
  14123. bottom: 0.027
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(15, "feet"),
  14128. weight: math.unit(880, "kg"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/nightraver/back.svg",
  14132. extra: 2309 / 2180,
  14133. bottom: 0.005
  14134. }
  14135. },
  14136. sole: {
  14137. height: math.unit(2.878, "feet"),
  14138. name: "Sole",
  14139. image: {
  14140. source: "./media/characters/nightraver/sole.svg"
  14141. }
  14142. },
  14143. foot: {
  14144. height: math.unit(2.285, "feet"),
  14145. name: "Foot",
  14146. image: {
  14147. source: "./media/characters/nightraver/foot.svg"
  14148. }
  14149. },
  14150. maw: {
  14151. height: math.unit(2.67, "feet"),
  14152. name: "Maw",
  14153. image: {
  14154. source: "./media/characters/nightraver/maw.svg"
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(1, "cm")
  14162. },
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(15, "feet"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Macro",
  14170. height: math.unit(300, "feet")
  14171. },
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(300, "miles")
  14175. },
  14176. {
  14177. name: "Gigamacro",
  14178. height: math.unit(10000, "miles")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14184. {
  14185. side: {
  14186. height: math.unit(2, "inches"),
  14187. weight: math.unit(5, "grams"),
  14188. name: "Side",
  14189. image: {
  14190. source: "./media/characters/arc/side.svg"
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(2, "inches"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(1.1938, "meters"),
  14207. weight: math.unit(54, "kg"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/nebula-shahar/front.svg",
  14211. extra: 1642 / 1436,
  14212. bottom: 0.06
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Megamicro",
  14219. height: math.unit(0.3, "mm")
  14220. },
  14221. {
  14222. name: "Micro",
  14223. height: math.unit(3, "cm")
  14224. },
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(138, "cm"),
  14228. default: true
  14229. },
  14230. {
  14231. name: "Macro",
  14232. height: math.unit(30, "m")
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(5.24, "feet"),
  14241. weight: math.unit(150, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/shayla/front.svg",
  14245. extra: 1512 / 1414,
  14246. bottom: 0.01
  14247. }
  14248. },
  14249. back: {
  14250. height: math.unit(5.24, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/shayla/back.svg",
  14255. extra: 1512 / 1414
  14256. }
  14257. },
  14258. hand: {
  14259. height: math.unit(0.7781496062992126, "feet"),
  14260. name: "Hand",
  14261. image: {
  14262. source: "./media/characters/shayla/hand.svg"
  14263. }
  14264. },
  14265. foot: {
  14266. height: math.unit(1.4206036745406823, "feet"),
  14267. name: "Foot",
  14268. image: {
  14269. source: "./media/characters/shayla/foot.svg"
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Micro",
  14276. height: math.unit(0.32, "feet")
  14277. },
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(5.24, "feet"),
  14281. default: true
  14282. },
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(492.12, "feet")
  14286. },
  14287. {
  14288. name: "Megamacro",
  14289. height: math.unit(186.41, "miles")
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(2.2, "m"),
  14298. weight: math.unit(120, "kg"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/pia-jr/front.svg",
  14302. extra: 1000 / 970,
  14303. bottom: 0.035
  14304. }
  14305. },
  14306. hand: {
  14307. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14308. name: "Hand",
  14309. image: {
  14310. source: "./media/characters/pia-jr/hand.svg"
  14311. }
  14312. },
  14313. paw: {
  14314. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14315. name: "Paw",
  14316. image: {
  14317. source: "./media/characters/pia-jr/paw.svg"
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Micro",
  14324. height: math.unit(1.2, "cm")
  14325. },
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(2.2, "m"),
  14329. default: true
  14330. },
  14331. {
  14332. name: "Macro",
  14333. height: math.unit(180, "m")
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(420, "km")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(2, "m"),
  14346. weight: math.unit(115, "kg"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/pia-sr/front.svg",
  14350. extra: 760 / 730,
  14351. bottom: 0.015
  14352. }
  14353. },
  14354. back: {
  14355. height: math.unit(2, "m"),
  14356. weight: math.unit(115, "kg"),
  14357. name: "Back",
  14358. image: {
  14359. source: "./media/characters/pia-sr/back.svg",
  14360. extra: 760 / 730,
  14361. bottom: 0.01
  14362. }
  14363. },
  14364. hand: {
  14365. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14366. name: "Hand",
  14367. image: {
  14368. source: "./media/characters/pia-sr/hand.svg"
  14369. }
  14370. },
  14371. foot: {
  14372. height: math.unit(1.83, "feet"),
  14373. name: "Foot",
  14374. image: {
  14375. source: "./media/characters/pia-sr/foot.svg"
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Micro",
  14382. height: math.unit(88, "mm")
  14383. },
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(2, "m"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(200, "m")
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(420, "km")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(8 + 2 / 12, "feet"),
  14404. weight: math.unit(300, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/kibibyte/front.svg",
  14408. extra: 2221 / 2098,
  14409. bottom: 0.04
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(8 + 2 / 12, "feet"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Socialable Macro",
  14421. height: math.unit(50, "feet")
  14422. },
  14423. {
  14424. name: "Macro",
  14425. height: math.unit(300, "feet")
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(500, "miles")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(150, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/felix/front.svg",
  14442. extra: 762 / 722,
  14443. bottom: 0.02
  14444. }
  14445. },
  14446. frontClothed: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Front (Clothed)",
  14450. image: {
  14451. source: "./media/characters/felix/front-clothed.svg",
  14452. extra: 762 / 722,
  14453. bottom: 0.02
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(6 + 8 / 12, "feet"),
  14461. default: true
  14462. },
  14463. {
  14464. name: "Macro",
  14465. height: math.unit(2600, "feet")
  14466. },
  14467. {
  14468. name: "Megamacro",
  14469. height: math.unit(450, "miles")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6 + 1 / 12, "feet"),
  14478. weight: math.unit(250, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/tobo/front.svg",
  14482. extra: 608 / 586,
  14483. bottom: 0.023
  14484. }
  14485. },
  14486. back: {
  14487. height: math.unit(6 + 1 / 12, "feet"),
  14488. weight: math.unit(250, "lb"),
  14489. name: "Back",
  14490. image: {
  14491. source: "./media/characters/tobo/back.svg",
  14492. extra: 608 / 586
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Nano",
  14499. height: math.unit(2, "nm")
  14500. },
  14501. {
  14502. name: "Megamicro",
  14503. height: math.unit(0.1, "mm")
  14504. },
  14505. {
  14506. name: "Micro",
  14507. height: math.unit(1, "inch"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Human-sized",
  14512. height: math.unit(6 + 1 / 12, "feet")
  14513. },
  14514. {
  14515. name: "Macro",
  14516. height: math.unit(250, "feet")
  14517. },
  14518. {
  14519. name: "Megamacro",
  14520. height: math.unit(75, "miles")
  14521. },
  14522. {
  14523. name: "Texas-sized",
  14524. height: math.unit(750, "miles")
  14525. },
  14526. {
  14527. name: "Teramacro",
  14528. height: math.unit(50000, "miles")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(269, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/danny-kapowsky/front.svg",
  14541. extra: 766 / 736,
  14542. bottom: 0.044
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(269, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/danny-kapowsky/back.svg",
  14551. extra: 797 / 760,
  14552. bottom: 0.025
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Macro",
  14559. height: math.unit(150, "feet"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Macro+",
  14564. height: math.unit(200, "feet")
  14565. },
  14566. {
  14567. name: "Macro++",
  14568. height: math.unit(300, "feet")
  14569. },
  14570. {
  14571. name: "Macro+++",
  14572. height: math.unit(400, "feet")
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14578. {
  14579. side: {
  14580. height: math.unit(6, "feet"),
  14581. weight: math.unit(170, "lb"),
  14582. name: "Side",
  14583. image: {
  14584. source: "./media/characters/finn/side.svg",
  14585. extra: 1953 / 1807,
  14586. bottom: 0.057
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Megamacro",
  14593. height: math.unit(14445, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(5 + 6 / 12, "feet"),
  14603. weight: math.unit(125, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/roy/front.svg",
  14607. extra: 1,
  14608. bottom: 0.11
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Micro",
  14615. height: math.unit(3, "inches"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(5 + 6 / 12, "feet")
  14621. },
  14622. {
  14623. name: "Lesser Macro",
  14624. height: math.unit(60, "feet")
  14625. },
  14626. {
  14627. name: "Greater Macro",
  14628. height: math.unit(120, "feet")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(100, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/aevsivs/front.svg",
  14641. extra: 1,
  14642. bottom: 0.03
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(100, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/aevsivs/back.svg"
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Micro",
  14657. height: math.unit(2, "inches"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(5, "feet")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(5 + 7 / 12, "feet"),
  14671. weight: math.unit(159, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/hildegard/front.svg",
  14675. extra: 289 / 269,
  14676. bottom: 7.63 / 297.8
  14677. }
  14678. },
  14679. back: {
  14680. height: math.unit(5 + 7 / 12, "feet"),
  14681. weight: math.unit(159, "lb"),
  14682. name: "Back",
  14683. image: {
  14684. source: "./media/characters/hildegard/back.svg",
  14685. extra: 280 / 260,
  14686. bottom: 2.3 / 282
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(5 + 7 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14700. {
  14701. bernard: {
  14702. height: math.unit(2 + 7 / 12, "feet"),
  14703. weight: math.unit(66, "lb"),
  14704. name: "Bernard",
  14705. rename: true,
  14706. image: {
  14707. source: "./media/characters/bernard-wilder/bernard.svg",
  14708. extra: 192 / 128,
  14709. bottom: 0.05
  14710. }
  14711. },
  14712. wilder: {
  14713. height: math.unit(5 + 8 / 12, "feet"),
  14714. weight: math.unit(143, "lb"),
  14715. name: "Wilder",
  14716. rename: true,
  14717. image: {
  14718. source: "./media/characters/bernard-wilder/wilder.svg",
  14719. extra: 361 / 312,
  14720. bottom: 0.02
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(2 + 7 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14734. {
  14735. anthro: {
  14736. height: math.unit(6 + 1 / 12, "feet"),
  14737. weight: math.unit(155, "lb"),
  14738. name: "Anthro",
  14739. image: {
  14740. source: "./media/characters/hearth/anthro.svg",
  14741. extra: 260 / 250,
  14742. bottom: 0.02
  14743. }
  14744. },
  14745. feral: {
  14746. height: math.unit(3.78, "feet"),
  14747. weight: math.unit(35, "kg"),
  14748. name: "Feral",
  14749. image: {
  14750. source: "./media/characters/hearth/feral.svg",
  14751. extra: 153 / 135,
  14752. bottom: 0.03
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6 + 1 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(6, "feet"),
  14769. weight: math.unit(182, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/ingrid/front.svg",
  14773. extra: 294 / 268,
  14774. bottom: 0.027
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(6, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14788. {
  14789. eevee: {
  14790. height: math.unit(2 + 10 / 12, "feet"),
  14791. weight: math.unit(86, "lb"),
  14792. name: "Malgam",
  14793. image: {
  14794. source: "./media/characters/malgam/eevee.svg",
  14795. extra: 218 / 180,
  14796. bottom: 0.2
  14797. }
  14798. },
  14799. sylveon: {
  14800. height: math.unit(4, "feet"),
  14801. weight: math.unit(101, "lb"),
  14802. name: "Future Malgam",
  14803. rename: true,
  14804. image: {
  14805. source: "./media/characters/malgam/sylveon.svg",
  14806. extra: 371 / 325,
  14807. bottom: 0.015
  14808. }
  14809. },
  14810. gigantamax: {
  14811. height: math.unit(50, "feet"),
  14812. name: "Gigantamax Malgam",
  14813. rename: true,
  14814. image: {
  14815. source: "./media/characters/malgam/gigantamax.svg"
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(2 + 10 / 12, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(5 + 11 / 12, "feet"),
  14832. weight: math.unit(188, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/fleur/front.svg",
  14836. extra: 309 / 283,
  14837. bottom: 0.007
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(5 + 11 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(5 + 4 / 12, "feet"),
  14854. weight: math.unit(122, "lb"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/jude/front.svg",
  14858. extra: 288 / 273,
  14859. bottom: 0.03
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(5 + 4 / 12, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(5 + 11 / 12, "feet"),
  14876. weight: math.unit(190, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/seara/front.svg",
  14880. extra: 1,
  14881. bottom: 0.05
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(5 + 11 / 12, "feet"),
  14889. default: true
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(16 + 5 / 12, "feet"),
  14898. weight: math.unit(524, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/caspian/front.svg",
  14902. extra: 1,
  14903. bottom: 0.04
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(16 + 5 / 12, "feet"),
  14911. default: true
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(5 + 7 / 12, "feet"),
  14920. weight: math.unit(170, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/mika/front.svg",
  14924. extra: 1,
  14925. bottom: 0.016
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(5 + 7 / 12, "feet"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(6 + 2 / 12, "feet"),
  14942. weight: math.unit(268, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/sol/front.svg",
  14946. extra: 247 / 231,
  14947. bottom: 0.05
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(6 + 2 / 12, "feet"),
  14955. default: true
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14961. {
  14962. buizel: {
  14963. height: math.unit(2 + 5 / 12, "feet"),
  14964. weight: math.unit(87, "lb"),
  14965. name: "Buizel",
  14966. image: {
  14967. source: "./media/characters/umiko/buizel.svg",
  14968. extra: 172 / 157,
  14969. bottom: 0.01
  14970. }
  14971. },
  14972. floatzel: {
  14973. height: math.unit(5 + 9 / 12, "feet"),
  14974. weight: math.unit(250, "lb"),
  14975. name: "Floatzel",
  14976. image: {
  14977. source: "./media/characters/umiko/floatzel.svg",
  14978. extra: 262 / 248
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(2 + 5 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(6 + 2 / 12, "feet"),
  14995. weight: math.unit(146, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/iliac/front.svg",
  14999. extra: 389 / 365,
  15000. bottom: 0.035
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(6 + 2 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(170, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/topaz/front.svg",
  15021. extra: 317 / 303,
  15022. bottom: 0.055
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(6, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(5 + 11 / 12, "feet"),
  15039. weight: math.unit(144, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/gabriel/front.svg",
  15043. extra: 285 / 262,
  15044. bottom: 0.004
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 11 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15058. {
  15059. side: {
  15060. height: math.unit(6 + 5 / 12, "feet"),
  15061. weight: math.unit(300, "lb"),
  15062. name: "Side",
  15063. image: {
  15064. source: "./media/characters/tempest-suicune/side.svg",
  15065. extra: 195 / 154,
  15066. bottom: 0.04
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(6 + 5 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(7 + 2 / 12, "feet"),
  15083. weight: math.unit(322, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/vulcan/front.svg",
  15087. extra: 154 / 147,
  15088. bottom: 0.04
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(7 + 2 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 10 / 12, "feet"),
  15105. weight: math.unit(264, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/gault/front.svg",
  15109. extra: 161 / 140,
  15110. bottom: 0.028
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 10 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(150, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/shard/front.svg",
  15131. extra: 273 / 238,
  15132. bottom: 0.02
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(3 + 6 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(5 + 11 / 12, "feet"),
  15149. weight: math.unit(146, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/ashe/front.svg",
  15153. extra: 400 / 373,
  15154. bottom: 0.01
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(5 + 11 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(5 + 5 / 12, "feet"),
  15171. weight: math.unit(135, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/beatrix/front.svg",
  15175. extra: 392 / 379,
  15176. bottom: 0.01
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(6, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(150, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/ignatius/front.svg",
  15197. extra: 245 / 222,
  15198. bottom: 0.01
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(5 + 5 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(6 + 2 / 12, "feet"),
  15215. weight: math.unit(138, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/mei-li/front.svg",
  15219. extra: 237 / 229,
  15220. bottom: 0.03
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(6 + 2 / 12, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(2 + 4 / 12, "feet"),
  15237. weight: math.unit(62, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/puru/front.svg",
  15241. extra: 206 / 149,
  15242. bottom: 0.06
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(2 + 4 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15256. {
  15257. anthro: {
  15258. height: math.unit(5 + 8/12, "feet"),
  15259. weight: math.unit(200, "lb"),
  15260. energyNeed: math.unit(2000, "kcal"),
  15261. name: "Anthro",
  15262. image: {
  15263. source: "./media/characters/kee/anthro.svg",
  15264. extra: 3251/3184,
  15265. bottom: 250/3501
  15266. }
  15267. },
  15268. taur: {
  15269. height: math.unit(11, "feet"),
  15270. weight: math.unit(500, "lb"),
  15271. energyNeed: math.unit(5000, "kcal"),
  15272. name: "Taur",
  15273. image: {
  15274. source: "./media/characters/kee/taur.svg",
  15275. extra: 1362/1320,
  15276. bottom: 83/1445
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(5 + 8/12, "feet"),
  15284. default: true
  15285. },
  15286. {
  15287. name: "Macro",
  15288. height: math.unit(35, "feet")
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15294. {
  15295. anthro: {
  15296. height: math.unit(7, "feet"),
  15297. weight: math.unit(190, "lb"),
  15298. name: "Anthro",
  15299. image: {
  15300. source: "./media/characters/cobalt-dracha/anthro.svg",
  15301. extra: 231 / 225,
  15302. bottom: 0.04
  15303. }
  15304. },
  15305. feral: {
  15306. height: math.unit(9 + 7 / 12, "feet"),
  15307. weight: math.unit(294, "lb"),
  15308. name: "Feral",
  15309. image: {
  15310. source: "./media/characters/cobalt-dracha/feral.svg",
  15311. extra: 692 / 633,
  15312. bottom: 0.05
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(7, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15326. {
  15327. fallen: {
  15328. height: math.unit(11 + 8 / 12, "feet"),
  15329. weight: math.unit(485, "lb"),
  15330. name: "Java (Fallen)",
  15331. rename: true,
  15332. image: {
  15333. source: "./media/characters/java/fallen.svg",
  15334. extra: 226 / 208,
  15335. bottom: 0.005
  15336. }
  15337. },
  15338. godkin: {
  15339. height: math.unit(10 + 6 / 12, "feet"),
  15340. weight: math.unit(328, "lb"),
  15341. name: "Java (Godkin)",
  15342. rename: true,
  15343. image: {
  15344. source: "./media/characters/java/godkin.svg",
  15345. extra: 270 / 262,
  15346. bottom: 0.02
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(11 + 8 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(7 + 8 / 12, "feet"),
  15363. weight: math.unit(320, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/skoll/front.svg",
  15367. extra: 232 / 220,
  15368. bottom: 0.02
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(7 + 8 / 12, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(5 + 9 / 12, "feet"),
  15385. weight: math.unit(170, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/purna/front.svg",
  15389. extra: 239 / 229,
  15390. bottom: 0.01
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(5 + 9 / 12, "feet"),
  15398. default: true
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(5 + 9 / 12, "feet"),
  15407. weight: math.unit(142, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/kuva/front.svg",
  15411. extra: 281 / 271,
  15412. bottom: 0.006
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(5 + 9 / 12, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15426. {
  15427. anthro: {
  15428. height: math.unit(9 + 2 / 12, "feet"),
  15429. weight: math.unit(270, "lb"),
  15430. name: "Anthro",
  15431. image: {
  15432. source: "./media/characters/embra/anthro.svg",
  15433. extra: 200 / 187,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. feral: {
  15438. height: math.unit(18 + 8 / 12, "feet"),
  15439. weight: math.unit(576, "lb"),
  15440. name: "Feral",
  15441. image: {
  15442. source: "./media/characters/embra/feral.svg",
  15443. extra: 152 / 137,
  15444. bottom: 0.037
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(9 + 2 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15458. {
  15459. anthro: {
  15460. height: math.unit(10 + 9 / 12, "feet"),
  15461. weight: math.unit(224, "lb"),
  15462. name: "Anthro",
  15463. image: {
  15464. source: "./media/characters/grottos/anthro.svg",
  15465. extra: 350 / 332,
  15466. bottom: 0.045
  15467. }
  15468. },
  15469. feral: {
  15470. height: math.unit(20 + 7 / 12, "feet"),
  15471. weight: math.unit(629, "lb"),
  15472. name: "Feral",
  15473. image: {
  15474. source: "./media/characters/grottos/feral.svg",
  15475. extra: 207 / 190,
  15476. bottom: 0.05
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(10 + 9 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(9 + 6 / 12, "feet"),
  15493. weight: math.unit(298, "lb"),
  15494. name: "Anthro",
  15495. image: {
  15496. source: "./media/characters/frifna/anthro.svg",
  15497. extra: 282 / 269,
  15498. bottom: 0.015
  15499. }
  15500. },
  15501. feral: {
  15502. height: math.unit(16 + 2 / 12, "feet"),
  15503. weight: math.unit(624, "lb"),
  15504. name: "Feral",
  15505. image: {
  15506. source: "./media/characters/frifna/feral.svg"
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(9 + 6 / 12, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6 + 2 / 12, "feet"),
  15523. weight: math.unit(168, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/elise/front.svg",
  15527. extra: 276 / 271
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Normal",
  15534. height: math.unit(6 + 2 / 12, "feet"),
  15535. default: true
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(5 + 10 / 12, "feet"),
  15544. weight: math.unit(210, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/glade/front.svg",
  15548. extra: 258 / 247,
  15549. bottom: 0.008
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(5 + 10 / 12, "feet"),
  15557. default: true
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15563. {
  15564. front: {
  15565. height: math.unit(5 + 10 / 12, "feet"),
  15566. weight: math.unit(129, "lb"),
  15567. name: "Front",
  15568. image: {
  15569. source: "./media/characters/rina/front.svg",
  15570. extra: 266 / 255,
  15571. bottom: 0.005
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(5 + 10 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(6 + 1 / 12, "feet"),
  15588. weight: math.unit(192, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/veronica/front.svg",
  15592. extra: 319 / 309,
  15593. bottom: 0.005
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(6 + 1 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(9 + 3 / 12, "feet"),
  15610. weight: math.unit(1100, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/braxton/front.svg",
  15614. extra: 1057 / 984,
  15615. bottom: 0.05
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(9 + 3 / 12, "feet")
  15623. },
  15624. {
  15625. name: "Giant",
  15626. height: math.unit(300, "feet"),
  15627. default: true
  15628. },
  15629. {
  15630. name: "Macro",
  15631. height: math.unit(700, "feet")
  15632. },
  15633. {
  15634. name: "Megamacro",
  15635. height: math.unit(6000, "feet")
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6 + 7 / 12, "feet"),
  15644. weight: math.unit(150, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/blue-feyonics/front.svg",
  15648. extra: 1403 / 1306,
  15649. bottom: 0.047
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(6 + 7 / 12, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(1.8, "meters"),
  15666. weight: math.unit(60, "kg"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/maxwell/front.svg",
  15670. extra: 2060 / 1873
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Micro",
  15677. height: math.unit(1, "mm")
  15678. },
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(1.8, "meter"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro",
  15686. height: math.unit(30, "meters")
  15687. },
  15688. {
  15689. name: "Megamacro",
  15690. height: math.unit(10, "km")
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(6, "feet"),
  15699. weight: math.unit(150, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/jack/front.svg",
  15703. extra: 1754 / 1640,
  15704. bottom: 0.01
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(80000, "feet"),
  15712. default: true
  15713. },
  15714. {
  15715. name: "Max size",
  15716. height: math.unit(10, "lightyears")
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15722. {
  15723. urban: {
  15724. height: math.unit(5, "feet"),
  15725. weight: math.unit(240, "lb"),
  15726. name: "Urban",
  15727. image: {
  15728. source: "./media/characters/cafat/urban.svg",
  15729. extra: 1223/1126,
  15730. bottom: 205/1428
  15731. }
  15732. },
  15733. summer: {
  15734. height: math.unit(5, "feet"),
  15735. weight: math.unit(240, "lb"),
  15736. name: "Summer",
  15737. image: {
  15738. source: "./media/characters/cafat/summer.svg",
  15739. extra: 1223/1126,
  15740. bottom: 205/1428
  15741. }
  15742. },
  15743. winter: {
  15744. height: math.unit(5, "feet"),
  15745. weight: math.unit(240, "lb"),
  15746. name: "Winter",
  15747. image: {
  15748. source: "./media/characters/cafat/winter.svg",
  15749. extra: 1223/1126,
  15750. bottom: 205/1428
  15751. }
  15752. },
  15753. lingerie: {
  15754. height: math.unit(5, "feet"),
  15755. weight: math.unit(240, "lb"),
  15756. name: "Lingerie",
  15757. image: {
  15758. source: "./media/characters/cafat/lingerie.svg",
  15759. extra: 1223/1126,
  15760. bottom: 205/1428
  15761. }
  15762. },
  15763. upright: {
  15764. height: math.unit(6.3, "feet"),
  15765. weight: math.unit(240, "lb"),
  15766. name: "Upright",
  15767. image: {
  15768. source: "./media/characters/cafat/upright.svg",
  15769. bottom: 0.01
  15770. }
  15771. },
  15772. uprightFull: {
  15773. height: math.unit(6.3, "feet"),
  15774. weight: math.unit(240, "lb"),
  15775. name: "Upright (Full)",
  15776. image: {
  15777. source: "./media/characters/cafat/upright-full.svg",
  15778. bottom: 0.01
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Small",
  15785. height: math.unit(5, "feet"),
  15786. default: true
  15787. },
  15788. {
  15789. name: "Large",
  15790. height: math.unit(13, "feet")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/verin-raharra/front.svg",
  15803. extra: 5019 / 4835,
  15804. bottom: 0.023
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(7 + 5 / 12, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Upsized",
  15816. height: math.unit(20, "feet")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(7, "feet"),
  15825. weight: math.unit(230, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/nakata/front.svg",
  15829. extra: 1.005,
  15830. bottom: 0.01
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(7, "feet"),
  15838. default: true
  15839. },
  15840. {
  15841. name: "Big",
  15842. height: math.unit(14, "feet")
  15843. },
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(400, "feet")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(4.91, "feet"),
  15855. weight: math.unit(100, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/lily/front.svg",
  15859. extra: 1585 / 1415,
  15860. bottom: 0.02
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(4.91, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15874. {
  15875. laying: {
  15876. height: math.unit(4 + 4 / 12, "feet"),
  15877. weight: math.unit(600, "lb"),
  15878. name: "Laying",
  15879. image: {
  15880. source: "./media/characters/sheila/laying.svg",
  15881. extra: 1333 / 1265,
  15882. bottom: 0.16
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(4 + 4 / 12, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(190, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/sax/front.svg",
  15903. extra: 1187 / 973,
  15904. bottom: 0.042
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(4, "inches"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/pandora/front.svg",
  15925. extra: 2720 / 2556,
  15926. bottom: 0.015
  15927. }
  15928. },
  15929. back: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(150, "lb"),
  15932. name: "Back",
  15933. image: {
  15934. source: "./media/characters/pandora/back.svg",
  15935. extra: 2720 / 2556,
  15936. bottom: 0.01
  15937. }
  15938. },
  15939. beans: {
  15940. height: math.unit(6 / 8, "feet"),
  15941. name: "Beans",
  15942. image: {
  15943. source: "./media/characters/pandora/beans.svg"
  15944. }
  15945. },
  15946. collar: {
  15947. height: math.unit(0.31, "feet"),
  15948. name: "Collar",
  15949. image: {
  15950. source: "./media/characters/pandora/collar.svg"
  15951. }
  15952. },
  15953. skirt: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Skirt",
  15957. image: {
  15958. source: "./media/characters/pandora/skirt.svg",
  15959. extra: 1622 / 1525,
  15960. bottom: 0.015
  15961. }
  15962. },
  15963. hoodie: {
  15964. height: math.unit(6, "feet"),
  15965. weight: math.unit(150, "lb"),
  15966. name: "Hoodie",
  15967. image: {
  15968. source: "./media/characters/pandora/hoodie.svg",
  15969. extra: 1622 / 1525,
  15970. bottom: 0.015
  15971. }
  15972. },
  15973. casual: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Casual",
  15977. image: {
  15978. source: "./media/characters/pandora/casual.svg",
  15979. extra: 1622 / 1525,
  15980. bottom: 0.015
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(6, "feet")
  15988. },
  15989. {
  15990. name: "Big Steppy",
  15991. height: math.unit(1, "km"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Galactic Steppy",
  15996. height: math.unit(2, "gigameters")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16002. {
  16003. side: {
  16004. height: math.unit(10, "feet"),
  16005. weight: math.unit(800, "kg"),
  16006. name: "Side",
  16007. image: {
  16008. source: "./media/characters/venio-darcony/side.svg",
  16009. extra: 1373 / 1003,
  16010. bottom: 0.037
  16011. }
  16012. },
  16013. front: {
  16014. height: math.unit(19, "feet"),
  16015. weight: math.unit(800, "kg"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/venio-darcony/front.svg"
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(19, "feet"),
  16023. weight: math.unit(800, "kg"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/venio-darcony/back.svg"
  16027. }
  16028. },
  16029. sideNsfw: {
  16030. height: math.unit(10, "feet"),
  16031. weight: math.unit(800, "kg"),
  16032. name: "Side (NSFW)",
  16033. image: {
  16034. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16035. extra: 1373 / 1003,
  16036. bottom: 0.037
  16037. }
  16038. },
  16039. frontNsfw: {
  16040. height: math.unit(19, "feet"),
  16041. weight: math.unit(800, "kg"),
  16042. name: "Front (NSFW)",
  16043. image: {
  16044. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16045. }
  16046. },
  16047. backNsfw: {
  16048. height: math.unit(19, "feet"),
  16049. weight: math.unit(800, "kg"),
  16050. name: "Back (NSFW)",
  16051. image: {
  16052. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16053. }
  16054. },
  16055. sideArmored: {
  16056. height: math.unit(10, "feet"),
  16057. weight: math.unit(800, "kg"),
  16058. name: "Side (Armored)",
  16059. image: {
  16060. source: "./media/characters/venio-darcony/side-armored.svg",
  16061. extra: 1373 / 1003,
  16062. bottom: 0.037
  16063. }
  16064. },
  16065. frontArmored: {
  16066. height: math.unit(19, "feet"),
  16067. weight: math.unit(900, "kg"),
  16068. name: "Front (Armored)",
  16069. image: {
  16070. source: "./media/characters/venio-darcony/front-armored.svg"
  16071. }
  16072. },
  16073. backArmored: {
  16074. height: math.unit(19, "feet"),
  16075. weight: math.unit(900, "kg"),
  16076. name: "Back (Armored)",
  16077. image: {
  16078. source: "./media/characters/venio-darcony/back-armored.svg"
  16079. }
  16080. },
  16081. sword: {
  16082. height: math.unit(10, "feet"),
  16083. weight: math.unit(50, "lb"),
  16084. name: "Sword",
  16085. image: {
  16086. source: "./media/characters/venio-darcony/sword.svg"
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(10, "feet")
  16094. },
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(130, "feet"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Macro+",
  16102. height: math.unit(240, "feet")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/veski/front.svg",
  16115. extra: 1299 / 1225,
  16116. bottom: 0.04
  16117. }
  16118. },
  16119. back: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Back",
  16123. image: {
  16124. source: "./media/characters/veski/back.svg",
  16125. extra: 1299 / 1225,
  16126. bottom: 0.008
  16127. }
  16128. },
  16129. maw: {
  16130. height: math.unit(1.5 * 1.21, "feet"),
  16131. name: "Maw",
  16132. image: {
  16133. source: "./media/characters/veski/maw.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(2, "km"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(5 + 7 / 12, "feet"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/isabelle/front.svg",
  16153. extra: 2130 / 1976,
  16154. bottom: 0.05
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Supermicro",
  16161. height: math.unit(10, "micrometers")
  16162. },
  16163. {
  16164. name: "Micro",
  16165. height: math.unit(1, "inch")
  16166. },
  16167. {
  16168. name: "Tiny",
  16169. height: math.unit(5, "inches")
  16170. },
  16171. {
  16172. name: "Standard",
  16173. height: math.unit(5 + 7 / 12, "inches")
  16174. },
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(80, "meters"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Megamacro",
  16182. height: math.unit(250, "meters")
  16183. },
  16184. {
  16185. name: "Gigamacro",
  16186. height: math.unit(5, "km")
  16187. },
  16188. {
  16189. name: "Cosmic",
  16190. height: math.unit(2.5e6, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/hanzo/front.svg",
  16203. extra: 374 / 344,
  16204. bottom: 0.02
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(8, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(7, "feet"),
  16221. weight: math.unit(130, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/anna/front.svg",
  16225. extra: 169 / 145,
  16226. bottom: 0.06
  16227. }
  16228. },
  16229. full: {
  16230. height: math.unit(4.96, "feet"),
  16231. weight: math.unit(220, "lb"),
  16232. name: "Full",
  16233. image: {
  16234. source: "./media/characters/anna/full.svg",
  16235. extra: 138 / 114,
  16236. bottom: 0.15
  16237. }
  16238. },
  16239. tongue: {
  16240. height: math.unit(2.53, "feet"),
  16241. name: "Tongue",
  16242. image: {
  16243. source: "./media/characters/anna/tongue.svg"
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(7, "feet"),
  16251. default: true
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(7, "feet"),
  16260. weight: math.unit(150, "lb"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/ian-corvid/front.svg",
  16264. extra: 150 / 142,
  16265. bottom: 0.02
  16266. }
  16267. },
  16268. back: {
  16269. height: math.unit(7, "feet"),
  16270. weight: math.unit(150, "lb"),
  16271. name: "Back",
  16272. image: {
  16273. source: "./media/characters/ian-corvid/back.svg",
  16274. extra: 150 / 143,
  16275. bottom: 0.01
  16276. }
  16277. },
  16278. stomping: {
  16279. height: math.unit(7, "feet"),
  16280. weight: math.unit(150, "lb"),
  16281. name: "Stomping",
  16282. image: {
  16283. source: "./media/characters/ian-corvid/stomping.svg",
  16284. extra: 76 / 72
  16285. }
  16286. },
  16287. sitting: {
  16288. height: math.unit(7 / 1.8, "feet"),
  16289. weight: math.unit(150, "lb"),
  16290. name: "Sitting",
  16291. image: {
  16292. source: "./media/characters/ian-corvid/sitting.svg",
  16293. extra: 1400 / 1269,
  16294. bottom: 0.15
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Tiny Microw",
  16301. height: math.unit(1, "inch")
  16302. },
  16303. {
  16304. name: "Microw",
  16305. height: math.unit(6, "inches")
  16306. },
  16307. {
  16308. name: "Crow",
  16309. height: math.unit(7 + 1 / 12, "feet"),
  16310. default: true
  16311. },
  16312. {
  16313. name: "Macrow",
  16314. height: math.unit(176, "feet")
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(5 + 7 / 12, "feet"),
  16323. weight: math.unit(147, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/natalie-kellon/front.svg",
  16327. extra: 1214 / 1141,
  16328. bottom: 0.02
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Micro",
  16335. height: math.unit(1 / 16, "inch")
  16336. },
  16337. {
  16338. name: "Tiny",
  16339. height: math.unit(4, "inches")
  16340. },
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(5 + 7 / 12, "feet"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Amazon",
  16348. height: math.unit(12, "feet")
  16349. },
  16350. {
  16351. name: "Giantess",
  16352. height: math.unit(160, "meters")
  16353. },
  16354. {
  16355. name: "Titaness",
  16356. height: math.unit(800, "meters")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/alluria/front.svg",
  16369. extra: 806 / 738,
  16370. bottom: 0.01
  16371. }
  16372. },
  16373. side: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Side",
  16377. image: {
  16378. source: "./media/characters/alluria/side.svg",
  16379. extra: 800 / 750,
  16380. }
  16381. },
  16382. back: {
  16383. height: math.unit(6, "feet"),
  16384. weight: math.unit(150, "lb"),
  16385. name: "Back",
  16386. image: {
  16387. source: "./media/characters/alluria/back.svg",
  16388. extra: 806 / 738,
  16389. }
  16390. },
  16391. frontMaid: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Front (Maid)",
  16395. image: {
  16396. source: "./media/characters/alluria/front-maid.svg",
  16397. extra: 806 / 738,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. sideMaid: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(150, "lb"),
  16404. name: "Side (Maid)",
  16405. image: {
  16406. source: "./media/characters/alluria/side-maid.svg",
  16407. extra: 800 / 750,
  16408. bottom: 0.005
  16409. }
  16410. },
  16411. backMaid: {
  16412. height: math.unit(6, "feet"),
  16413. weight: math.unit(150, "lb"),
  16414. name: "Back (Maid)",
  16415. image: {
  16416. source: "./media/characters/alluria/back-maid.svg",
  16417. extra: 806 / 738,
  16418. }
  16419. },
  16420. },
  16421. [
  16422. {
  16423. name: "Micro",
  16424. height: math.unit(6, "inches"),
  16425. default: true
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16431. {
  16432. front: {
  16433. height: math.unit(6, "feet"),
  16434. weight: math.unit(150, "lb"),
  16435. name: "Front",
  16436. image: {
  16437. source: "./media/characters/kyle/front.svg",
  16438. extra: 1069 / 962,
  16439. bottom: 77.228 / 1727.45
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Macro",
  16446. height: math.unit(150, "feet"),
  16447. default: true
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(6, "feet"),
  16456. weight: math.unit(300, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/duncan/front.svg",
  16460. extra: 1650 / 1482,
  16461. bottom: 0.05
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(100, "feet"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(5 + 4 / 12, "feet"),
  16478. weight: math.unit(220, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/memory/front.svg",
  16482. extra: 3641 / 3545,
  16483. bottom: 0.03
  16484. }
  16485. },
  16486. back: {
  16487. height: math.unit(5 + 4 / 12, "feet"),
  16488. weight: math.unit(220, "lb"),
  16489. name: "Back",
  16490. image: {
  16491. source: "./media/characters/memory/back.svg",
  16492. extra: 3641 / 3545,
  16493. bottom: 0.025
  16494. }
  16495. },
  16496. frontSkirt: {
  16497. height: math.unit(5 + 4 / 12, "feet"),
  16498. weight: math.unit(220, "lb"),
  16499. name: "Front (Skirt)",
  16500. image: {
  16501. source: "./media/characters/memory/front-skirt.svg",
  16502. extra: 3641 / 3545,
  16503. bottom: 0.03
  16504. }
  16505. },
  16506. frontDress: {
  16507. height: math.unit(5 + 4 / 12, "feet"),
  16508. weight: math.unit(220, "lb"),
  16509. name: "Front (Dress)",
  16510. image: {
  16511. source: "./media/characters/memory/front-dress.svg",
  16512. extra: 3641 / 3545,
  16513. bottom: 0.03
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Micro",
  16520. height: math.unit(6, "inches"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(5 + 4 / 12, "feet")
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(4 + 11 / 12, "feet"),
  16534. weight: math.unit(100, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/luno/front.svg",
  16538. extra: 1535 / 1487,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Micro",
  16546. height: math.unit(3, "inches")
  16547. },
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(4 + 11 / 12, "feet"),
  16551. default: true
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(300, "feet")
  16556. },
  16557. {
  16558. name: "Megamacro",
  16559. height: math.unit(700, "miles")
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(6 + 2 / 12, "feet"),
  16568. weight: math.unit(170, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/jamesy/front.svg",
  16572. extra: 440 / 382,
  16573. bottom: 0.005
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Micro",
  16580. height: math.unit(3, "inches")
  16581. },
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6 + 2 / 12, "feet"),
  16585. default: true
  16586. },
  16587. {
  16588. name: "Macro",
  16589. height: math.unit(300, "feet")
  16590. },
  16591. {
  16592. name: "Megamacro",
  16593. height: math.unit(700, "miles")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(160, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/mark/front.svg",
  16606. extra: 3300 / 3100,
  16607. bottom: 136.42 / 3440.47
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Macro",
  16614. height: math.unit(120, "meters")
  16615. },
  16616. {
  16617. name: "Bigger Macro",
  16618. height: math.unit(350, "meters")
  16619. },
  16620. {
  16621. name: "Megamacro",
  16622. height: math.unit(8, "km"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Continental",
  16627. height: math.unit(4550, "km")
  16628. },
  16629. {
  16630. name: "Planetary",
  16631. height: math.unit(65000, "km")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(6, "feet"),
  16640. weight: math.unit(400, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/mac/front.svg",
  16644. extra: 1048 / 987.7,
  16645. bottom: 60 / 1107.6,
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Macro",
  16652. height: math.unit(500, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16659. {
  16660. front: {
  16661. height: math.unit(5 + 2 / 12, "feet"),
  16662. weight: math.unit(190, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/bari/front.svg",
  16666. extra: 3156 / 2880,
  16667. bottom: 0.03
  16668. }
  16669. },
  16670. back: {
  16671. height: math.unit(5 + 2 / 12, "feet"),
  16672. weight: math.unit(190, "lb"),
  16673. name: "Back",
  16674. image: {
  16675. source: "./media/characters/bari/back.svg",
  16676. extra: 3260 / 2834,
  16677. bottom: 0.025
  16678. }
  16679. },
  16680. frontPlush: {
  16681. height: math.unit(5 + 2 / 12, "feet"),
  16682. weight: math.unit(190, "lb"),
  16683. name: "Front (Plush)",
  16684. image: {
  16685. source: "./media/characters/bari/front-plush.svg",
  16686. extra: 1112 / 1061,
  16687. bottom: 0.002
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Micro",
  16694. height: math.unit(3, "inches")
  16695. },
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 2 / 12, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Macro",
  16703. height: math.unit(20, "feet")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(6 + 1 / 12, "feet"),
  16712. weight: math.unit(275, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/hunter-misha-raven/front.svg"
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Mortal",
  16722. height: math.unit(6 + 1 / 12, "feet")
  16723. },
  16724. {
  16725. name: "Divine",
  16726. height: math.unit(1.12134e34, "parsecs"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(6 + 3 / 12, "feet"),
  16736. weight: math.unit(220, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/max-calore/front.svg",
  16740. extra: 1700 / 1648,
  16741. bottom: 0.01
  16742. }
  16743. },
  16744. back: {
  16745. height: math.unit(6 + 3 / 12, "feet"),
  16746. weight: math.unit(220, "lb"),
  16747. name: "Back",
  16748. image: {
  16749. source: "./media/characters/max-calore/back.svg",
  16750. extra: 1700 / 1648,
  16751. bottom: 0.01
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(6 + 3 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16765. {
  16766. side: {
  16767. height: math.unit(2 + 8 / 12, "feet"),
  16768. weight: math.unit(99, "lb"),
  16769. name: "Side",
  16770. image: {
  16771. source: "./media/characters/aspen/side.svg",
  16772. extra: 152 / 138,
  16773. bottom: 0.032
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(2 + 8 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16787. {
  16788. side: {
  16789. height: math.unit(3 + 2 / 12, "feet"),
  16790. weight: math.unit(224, "lb"),
  16791. name: "Side",
  16792. image: {
  16793. source: "./media/characters/sheila-feral-wolf/side.svg",
  16794. extra: 179 / 166,
  16795. bottom: 0.03
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(3 + 2 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16809. {
  16810. side: {
  16811. height: math.unit(1 + 9 / 12, "feet"),
  16812. weight: math.unit(38, "lb"),
  16813. name: "Side",
  16814. image: {
  16815. source: "./media/characters/michelle/side.svg",
  16816. extra: 147 / 136.7,
  16817. bottom: 0.03
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(1 + 9 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(1 + 1 / 12, "feet"),
  16834. weight: math.unit(18, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/nino/front.svg"
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(1 + 1 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(1, "feet"),
  16854. weight: math.unit(16, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/viola/front.svg"
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(1, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6 + 5 / 12, "feet"),
  16874. weight: math.unit(580, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/atlas/front.svg",
  16878. extra: 298.5 / 290,
  16879. bottom: 0.015
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(6 + 5 / 12, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16893. {
  16894. side: {
  16895. height: math.unit(1 + 10 / 12, "feet"),
  16896. weight: math.unit(25, "lb"),
  16897. name: "Side",
  16898. image: {
  16899. source: "./media/characters/davy/side.svg",
  16900. extra: 200 / 170,
  16901. bottom: 0.01
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(1 + 10 / 12, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16915. {
  16916. side: {
  16917. height: math.unit(4 + 8 / 12, "feet"),
  16918. weight: math.unit(166, "lb"),
  16919. name: "Side",
  16920. image: {
  16921. source: "./media/characters/fiona/side.svg",
  16922. extra: 232 / 220,
  16923. bottom: 0.03
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(4 + 8 / 12, "feet"),
  16931. default: true
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16937. {
  16938. front: {
  16939. height: math.unit(2, "feet"),
  16940. weight: math.unit(62, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/lyla/front.svg",
  16944. bottom: 0.1
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(2, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16958. {
  16959. side: {
  16960. height: math.unit(1.8, "feet"),
  16961. weight: math.unit(44, "lb"),
  16962. name: "Side",
  16963. image: {
  16964. source: "./media/characters/perseus/side.svg",
  16965. bottom: 0.21
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(1.8, "feet"),
  16973. default: true
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16979. {
  16980. side: {
  16981. height: math.unit(4 + 2 / 12, "feet"),
  16982. weight: math.unit(20, "lb"),
  16983. name: "Side",
  16984. image: {
  16985. source: "./media/characters/remus/side.svg"
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(4 + 2 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(4 + 11 / 12, "feet"),
  17002. weight: math.unit(114, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/raf/front.svg",
  17006. bottom: 20.5 / 1863
  17007. }
  17008. },
  17009. side: {
  17010. height: math.unit(4 + 11 / 12, "feet"),
  17011. weight: math.unit(114, "lb"),
  17012. name: "Side",
  17013. image: {
  17014. source: "./media/characters/raf/side.svg",
  17015. bottom: 22 / 1822
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Micro",
  17022. height: math.unit(2, "inches")
  17023. },
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(4 + 11 / 12, "feet"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Macro",
  17031. height: math.unit(70, "feet")
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(1.5, "meters"),
  17040. weight: math.unit(68, "kg"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/liam-einarr/front.svg",
  17044. extra: 2822 / 2666
  17045. }
  17046. },
  17047. back: {
  17048. height: math.unit(1.5, "meters"),
  17049. weight: math.unit(68, "kg"),
  17050. name: "Back",
  17051. image: {
  17052. source: "./media/characters/liam-einarr/back.svg",
  17053. extra: 2822 / 2666,
  17054. bottom: 0.015
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(1.5, "meters"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(150, "meters")
  17067. },
  17068. {
  17069. name: "Megamacro",
  17070. height: math.unit(35, "km")
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(75, "kg"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/linda/front.svg",
  17083. extra: 930 / 874,
  17084. bottom: 0.004
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(6, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(6 + 8 / 12, "feet"),
  17101. weight: math.unit(220, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/caylex/front.svg",
  17105. extra: 821 / 772,
  17106. bottom: 0.07
  17107. }
  17108. },
  17109. back: {
  17110. height: math.unit(6 + 8 / 12, "feet"),
  17111. weight: math.unit(220, "lb"),
  17112. name: "Back",
  17113. image: {
  17114. source: "./media/characters/caylex/back.svg",
  17115. extra: 821 / 772,
  17116. bottom: 0.022
  17117. }
  17118. },
  17119. hand: {
  17120. height: math.unit(1.25, "feet"),
  17121. name: "Hand",
  17122. image: {
  17123. source: "./media/characters/caylex/hand.svg"
  17124. }
  17125. },
  17126. foot: {
  17127. height: math.unit(1.6, "feet"),
  17128. name: "Foot",
  17129. image: {
  17130. source: "./media/characters/caylex/foot.svg"
  17131. }
  17132. },
  17133. armored: {
  17134. height: math.unit(6 + 8 / 12, "feet"),
  17135. weight: math.unit(250, "lb"),
  17136. name: "Armored",
  17137. image: {
  17138. source: "./media/characters/caylex/armored.svg",
  17139. extra: 1420 / 1310,
  17140. bottom: 0.045
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6 + 8 / 12, "feet"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Normal+",
  17152. height: math.unit(12, "feet")
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(7 + 6 / 12, "feet"),
  17161. weight: math.unit(288, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/alana/front.svg",
  17165. extra: 679 / 653,
  17166. bottom: 22.5 / 701
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(7 + 6 / 12, "feet")
  17174. },
  17175. {
  17176. name: "Large",
  17177. height: math.unit(50, "feet")
  17178. },
  17179. {
  17180. name: "Macro",
  17181. height: math.unit(100, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Macro+",
  17186. height: math.unit(200, "feet")
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(6 + 1 / 12, "feet"),
  17195. weight: math.unit(210, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/hasani/front.svg",
  17199. extra: 244 / 232,
  17200. bottom: 0.01
  17201. }
  17202. },
  17203. back: {
  17204. height: math.unit(6 + 1 / 12, "feet"),
  17205. weight: math.unit(210, "lb"),
  17206. name: "Back",
  17207. image: {
  17208. source: "./media/characters/hasani/back.svg",
  17209. extra: 244 / 232,
  17210. bottom: 0.01
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(6 + 1 / 12, "feet")
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(175, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(1.82, "meters"),
  17231. weight: math.unit(140, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/nita/front.svg",
  17235. extra: 2473 / 2363,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(1.82, "m")
  17244. },
  17245. {
  17246. name: "Macro",
  17247. height: math.unit(300, "m")
  17248. },
  17249. {
  17250. name: "Mistake Canon",
  17251. height: math.unit(0.5, "miles"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Big Mistake",
  17256. height: math.unit(13, "miles")
  17257. },
  17258. {
  17259. name: "Playing God",
  17260. height: math.unit(2450, "miles")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(4, "feet"),
  17269. weight: math.unit(120, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/shiriko/front.svg",
  17273. extra: 970/934,
  17274. bottom: 5/975
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(4, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(6, "feet"),
  17291. name: "front",
  17292. image: {
  17293. source: "./media/characters/deja/front.svg",
  17294. extra: 926 / 840,
  17295. bottom: 0.07
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Planck Length",
  17302. height: math.unit(1.6e-35, "meters")
  17303. },
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(30.48, "meters"),
  17307. default: true
  17308. },
  17309. {
  17310. name: "Universal",
  17311. height: math.unit(8.8e26, "meters")
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17317. {
  17318. side: {
  17319. height: math.unit(8, "feet"),
  17320. weight: math.unit(6300, "lb"),
  17321. name: "Side",
  17322. image: {
  17323. source: "./media/characters/anima/side.svg",
  17324. bottom: 0.035
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(8, "feet"),
  17332. default: true
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(8, "feet"),
  17341. weight: math.unit(350, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/bianca/front.svg",
  17345. extra: 234 / 225,
  17346. bottom: 0.03
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(8, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(6, "feet"),
  17363. weight: math.unit(150, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/adinia/front.svg",
  17367. extra: 1845 / 1672,
  17368. bottom: 0.02
  17369. }
  17370. },
  17371. back: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(150, "lb"),
  17374. name: "Back",
  17375. image: {
  17376. source: "./media/characters/adinia/back.svg",
  17377. extra: 1845 / 1672,
  17378. bottom: 0.002
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(11 + 5 / 12, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(3, "meters"),
  17395. weight: math.unit(200, "kg"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/lykasa/front.svg",
  17399. extra: 1076 / 976,
  17400. bottom: 0.06
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(3, "meters")
  17408. },
  17409. {
  17410. name: "Kaiju",
  17411. height: math.unit(120, "meters"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Mega Kaiju",
  17416. height: math.unit(240, "km")
  17417. },
  17418. {
  17419. name: "Giga Kaiju",
  17420. height: math.unit(400, "megameters")
  17421. },
  17422. {
  17423. name: "Tera Kaiju",
  17424. height: math.unit(800, "gigameters")
  17425. },
  17426. {
  17427. name: "Kaiju Dragon Goddess",
  17428. height: math.unit(26, "zettaparsecs")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17434. {
  17435. side: {
  17436. height: math.unit(283 / 124 * 6, "feet"),
  17437. weight: math.unit(35000, "lb"),
  17438. name: "Side",
  17439. image: {
  17440. source: "./media/characters/malfaren/side.svg",
  17441. extra: 2500 / 1010,
  17442. bottom: 0.01
  17443. }
  17444. },
  17445. front: {
  17446. height: math.unit(22.36, "feet"),
  17447. weight: math.unit(35000, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/malfaren/front.svg",
  17451. extra: 1631 / 1476,
  17452. bottom: 0.01
  17453. }
  17454. },
  17455. maw: {
  17456. height: math.unit(6.9, "feet"),
  17457. name: "Maw",
  17458. image: {
  17459. source: "./media/characters/malfaren/maw.svg"
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Big",
  17466. height: math.unit(283 / 162 * 6, "feet"),
  17467. },
  17468. {
  17469. name: "Bigger",
  17470. height: math.unit(283 / 124 * 6, "feet")
  17471. },
  17472. {
  17473. name: "Massive",
  17474. height: math.unit(283 / 92 * 6, "feet"),
  17475. default: true
  17476. },
  17477. {
  17478. name: "👀💦",
  17479. height: math.unit(283 / 73 * 6, "feet"),
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(1.7, "m"),
  17488. weight: math.unit(70, "kg"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/kernel/front.svg",
  17492. extra: 222 / 210,
  17493. bottom: 0.007
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Nano",
  17500. height: math.unit(17, "micrometers")
  17501. },
  17502. {
  17503. name: "Micro",
  17504. height: math.unit(1.7, "mm")
  17505. },
  17506. {
  17507. name: "Small",
  17508. height: math.unit(1.7, "cm")
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(1.7, "m"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17519. {
  17520. front: {
  17521. height: math.unit(1.75, "meters"),
  17522. weight: math.unit(65, "kg"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/jayne-folest/front.svg",
  17526. extra: 2115 / 2007,
  17527. bottom: 0.02
  17528. }
  17529. },
  17530. back: {
  17531. height: math.unit(1.75, "meters"),
  17532. weight: math.unit(65, "kg"),
  17533. name: "Back",
  17534. image: {
  17535. source: "./media/characters/jayne-folest/back.svg",
  17536. extra: 2115 / 2007,
  17537. bottom: 0.005
  17538. }
  17539. },
  17540. frontClothed: {
  17541. height: math.unit(1.75, "meters"),
  17542. weight: math.unit(65, "kg"),
  17543. name: "Front (Clothed)",
  17544. image: {
  17545. source: "./media/characters/jayne-folest/front-clothed.svg",
  17546. extra: 2115 / 2007,
  17547. bottom: 0.035
  17548. }
  17549. },
  17550. hand: {
  17551. height: math.unit(1 / 1.260, "feet"),
  17552. name: "Hand",
  17553. image: {
  17554. source: "./media/characters/jayne-folest/hand.svg"
  17555. }
  17556. },
  17557. foot: {
  17558. height: math.unit(1 / 0.918, "feet"),
  17559. name: "Foot",
  17560. image: {
  17561. source: "./media/characters/jayne-folest/foot.svg"
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Micro",
  17568. height: math.unit(4, "cm")
  17569. },
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(1.75, "meters")
  17573. },
  17574. {
  17575. name: "Macro",
  17576. height: math.unit(47.5, "meters"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(180, "cm"),
  17586. weight: math.unit(70, "kg"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/algier/front.svg",
  17590. extra: 596 / 572,
  17591. bottom: 0.04
  17592. }
  17593. },
  17594. back: {
  17595. height: math.unit(180, "cm"),
  17596. weight: math.unit(70, "kg"),
  17597. name: "Back",
  17598. image: {
  17599. source: "./media/characters/algier/back.svg",
  17600. extra: 596 / 572,
  17601. bottom: 0.025
  17602. }
  17603. },
  17604. frontdressed: {
  17605. height: math.unit(180, "cm"),
  17606. weight: math.unit(150, "kg"),
  17607. name: "Front-dressed",
  17608. image: {
  17609. source: "./media/characters/algier/front-dressed.svg",
  17610. extra: 596 / 572,
  17611. bottom: 0.038
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Micro",
  17618. height: math.unit(5, "cm")
  17619. },
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(180, "cm"),
  17623. default: true
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(64, "m")
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17633. {
  17634. upright: {
  17635. height: math.unit(7, "feet"),
  17636. weight: math.unit(300, "lb"),
  17637. name: "Upright",
  17638. image: {
  17639. source: "./media/characters/pretzel/upright.svg",
  17640. extra: 534 / 522,
  17641. bottom: 0.065
  17642. }
  17643. },
  17644. sprawling: {
  17645. height: math.unit(3.75, "feet"),
  17646. weight: math.unit(300, "lb"),
  17647. name: "Sprawling",
  17648. image: {
  17649. source: "./media/characters/pretzel/sprawling.svg",
  17650. extra: 314 / 281,
  17651. bottom: 0.1
  17652. }
  17653. },
  17654. tongue: {
  17655. height: math.unit(2, "feet"),
  17656. name: "Tongue",
  17657. image: {
  17658. source: "./media/characters/pretzel/tongue.svg"
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(7, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Oversized",
  17670. height: math.unit(15, "feet")
  17671. },
  17672. {
  17673. name: "Huge",
  17674. height: math.unit(30, "feet")
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(250, "feet")
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17684. {
  17685. sideFront: {
  17686. height: math.unit(5 + 2 / 12, "feet"),
  17687. weight: math.unit(120, "lb"),
  17688. name: "Front Side",
  17689. image: {
  17690. source: "./media/characters/roxi/side-front.svg",
  17691. extra: 2924 / 2717,
  17692. bottom: 0.08
  17693. }
  17694. },
  17695. sideBack: {
  17696. height: math.unit(5 + 2 / 12, "feet"),
  17697. weight: math.unit(120, "lb"),
  17698. name: "Back Side",
  17699. image: {
  17700. source: "./media/characters/roxi/side-back.svg",
  17701. extra: 2904 / 2693,
  17702. bottom: 0.06
  17703. }
  17704. },
  17705. front: {
  17706. height: math.unit(5 + 2 / 12, "feet"),
  17707. weight: math.unit(120, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/roxi/front.svg",
  17711. extra: 2028 / 1907,
  17712. bottom: 0.01
  17713. }
  17714. },
  17715. frontAlt: {
  17716. height: math.unit(5 + 2 / 12, "feet"),
  17717. weight: math.unit(120, "lb"),
  17718. name: "Front (Alt)",
  17719. image: {
  17720. source: "./media/characters/roxi/front-alt.svg",
  17721. extra: 1828 / 1798,
  17722. bottom: 0.01
  17723. }
  17724. },
  17725. sitting: {
  17726. height: math.unit(2.8, "feet"),
  17727. weight: math.unit(120, "lb"),
  17728. name: "Sitting",
  17729. image: {
  17730. source: "./media/characters/roxi/sitting.svg",
  17731. extra: 2660 / 2462,
  17732. bottom: 0.1
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(5 + 2 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17746. {
  17747. side: {
  17748. height: math.unit(55, "feet"),
  17749. weight: math.unit(153, "tons"),
  17750. name: "Side",
  17751. image: {
  17752. source: "./media/characters/shadow/side.svg",
  17753. extra: 701 / 628,
  17754. bottom: 0.02
  17755. }
  17756. },
  17757. flying: {
  17758. height: math.unit(145, "feet"),
  17759. weight: math.unit(153, "tons"),
  17760. name: "Flying",
  17761. image: {
  17762. source: "./media/characters/shadow/flying.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(55, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(6, "feet"),
  17779. weight: math.unit(200, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/marcie/front.svg",
  17783. extra: 960 / 876,
  17784. bottom: 58 / 1017.87
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Macro",
  17791. height: math.unit(1, "mile"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(7, "feet"),
  17801. weight: math.unit(200, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/kachina/front.svg",
  17805. extra: 1290.68 / 1119,
  17806. bottom: 36.5 / 1327.18
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(7, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17820. {
  17821. looking: {
  17822. height: math.unit(2, "meters"),
  17823. weight: math.unit(300, "kg"),
  17824. name: "Looking",
  17825. image: {
  17826. source: "./media/characters/kash/looking.svg",
  17827. extra: 474 / 344,
  17828. bottom: 0.03
  17829. }
  17830. },
  17831. side: {
  17832. height: math.unit(2, "meters"),
  17833. weight: math.unit(300, "kg"),
  17834. name: "Side",
  17835. image: {
  17836. source: "./media/characters/kash/side.svg",
  17837. extra: 302 / 251,
  17838. bottom: 0.03
  17839. }
  17840. },
  17841. front: {
  17842. height: math.unit(2, "meters"),
  17843. weight: math.unit(300, "kg"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/kash/front.svg",
  17847. extra: 495 / 360,
  17848. bottom: 0.015
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(2, "meters"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Big",
  17860. height: math.unit(3, "meters")
  17861. },
  17862. {
  17863. name: "Large",
  17864. height: math.unit(5, "meters")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17870. {
  17871. feeding: {
  17872. height: math.unit(6.7, "feet"),
  17873. weight: math.unit(350, "lb"),
  17874. name: "Feeding",
  17875. image: {
  17876. source: "./media/characters/lalim/feeding.svg",
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(6.7, "feet"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(9.5, "feet"),
  17893. weight: math.unit(600, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/de'vout/front.svg",
  17897. extra: 1443 / 1328,
  17898. bottom: 0.025
  17899. }
  17900. },
  17901. back: {
  17902. height: math.unit(9.5, "feet"),
  17903. weight: math.unit(600, "lb"),
  17904. name: "Back",
  17905. image: {
  17906. source: "./media/characters/de'vout/back.svg",
  17907. extra: 1443 / 1328
  17908. }
  17909. },
  17910. frontDressed: {
  17911. height: math.unit(9.5, "feet"),
  17912. weight: math.unit(600, "lb"),
  17913. name: "Front (Dressed",
  17914. image: {
  17915. source: "./media/characters/de'vout/front-dressed.svg",
  17916. extra: 1443 / 1328,
  17917. bottom: 0.025
  17918. }
  17919. },
  17920. backDressed: {
  17921. height: math.unit(9.5, "feet"),
  17922. weight: math.unit(600, "lb"),
  17923. name: "Back (Dressed",
  17924. image: {
  17925. source: "./media/characters/de'vout/back-dressed.svg",
  17926. extra: 1443 / 1328
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(9.5, "feet"),
  17934. default: true
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(8, "feet"),
  17943. weight: math.unit(225, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/talana/front.svg",
  17947. extra: 1410 / 1300,
  17948. bottom: 0.015
  17949. }
  17950. },
  17951. frontDressed: {
  17952. height: math.unit(8, "feet"),
  17953. weight: math.unit(225, "lb"),
  17954. name: "Front (Dressed",
  17955. image: {
  17956. source: "./media/characters/talana/front-dressed.svg",
  17957. extra: 1410 / 1300,
  17958. bottom: 0.015
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(8, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17972. {
  17973. side: {
  17974. height: math.unit(7.2, "feet"),
  17975. weight: math.unit(150, "lb"),
  17976. name: "Side",
  17977. image: {
  17978. source: "./media/characters/xeauvok/side.svg",
  17979. extra: 1975 / 1523,
  17980. bottom: 0.07
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(7.2, "feet"),
  17988. default: true
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17994. {
  17995. side: {
  17996. height: math.unit(10, "feet"),
  17997. weight: math.unit(900, "kg"),
  17998. name: "Side",
  17999. image: {
  18000. source: "./media/characters/zara/side.svg",
  18001. extra: 504 / 498
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(10, "feet"),
  18009. default: true
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18015. {
  18016. side: {
  18017. height: math.unit(6, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Side",
  18020. image: {
  18021. source: "./media/characters/richard-dragon/side.svg",
  18022. extra: 845 / 340,
  18023. bottom: 0.017
  18024. }
  18025. },
  18026. maw: {
  18027. height: math.unit(2.97, "feet"),
  18028. name: "Maw",
  18029. image: {
  18030. source: "./media/characters/richard-dragon/maw.svg"
  18031. }
  18032. },
  18033. },
  18034. [
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(4, "feet"),
  18042. weight: math.unit(100, "lb"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/richard-smeargle/front.svg",
  18046. extra: 2952 / 2820,
  18047. bottom: 0.028
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(4, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Dynamax",
  18059. height: math.unit(20, "meters")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(110, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/klay/front.svg",
  18072. extra: 962 / 883,
  18073. bottom: 0.04
  18074. }
  18075. },
  18076. back: {
  18077. height: math.unit(6, "feet"),
  18078. weight: math.unit(110, "lb"),
  18079. name: "Back",
  18080. image: {
  18081. source: "./media/characters/klay/back.svg",
  18082. extra: 962 / 883
  18083. }
  18084. },
  18085. beans: {
  18086. height: math.unit(1.15, "feet"),
  18087. name: "Beans",
  18088. image: {
  18089. source: "./media/characters/klay/beans.svg"
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Micro",
  18096. height: math.unit(6, "inches")
  18097. },
  18098. {
  18099. name: "Mini",
  18100. height: math.unit(3, "feet")
  18101. },
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(6, "feet"),
  18105. default: true
  18106. },
  18107. {
  18108. name: "Big",
  18109. height: math.unit(25, "feet")
  18110. },
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(100, "feet")
  18114. },
  18115. {
  18116. name: "Megamacro",
  18117. height: math.unit(400, "feet")
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(6, "feet"),
  18126. weight: math.unit(160, "lb"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/marcus/front.svg",
  18130. extra: 734 / 676,
  18131. bottom: 0.03
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Little",
  18138. height: math.unit(6, "feet")
  18139. },
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(110, "feet"),
  18143. default: true
  18144. },
  18145. {
  18146. name: "Macro",
  18147. height: math.unit(250, "feet")
  18148. },
  18149. {
  18150. name: "Megamacro",
  18151. height: math.unit(1000, "feet")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(7, "feet"),
  18160. weight: math.unit(275, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/claude-delroute/front.svg",
  18164. extra: 230 / 214,
  18165. bottom: 0.007
  18166. }
  18167. },
  18168. side: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(275, "lb"),
  18171. name: "Side",
  18172. image: {
  18173. source: "./media/characters/claude-delroute/side.svg",
  18174. extra: 222 / 214,
  18175. bottom: 0.01
  18176. }
  18177. },
  18178. back: {
  18179. height: math.unit(7, "feet"),
  18180. weight: math.unit(275, "lb"),
  18181. name: "Back",
  18182. image: {
  18183. source: "./media/characters/claude-delroute/back.svg",
  18184. extra: 230 / 214,
  18185. bottom: 0.015
  18186. }
  18187. },
  18188. maw: {
  18189. height: math.unit(0.6407, "meters"),
  18190. name: "Maw",
  18191. image: {
  18192. source: "./media/characters/claude-delroute/maw.svg"
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(7, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Lorge",
  18204. height: math.unit(20, "feet")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(8 + 4 / 12, "feet"),
  18213. weight: math.unit(600, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/dragonien/front.svg",
  18217. extra: 100 / 94,
  18218. bottom: 3.3 / 103.3445
  18219. }
  18220. },
  18221. back: {
  18222. height: math.unit(8 + 4 / 12, "feet"),
  18223. weight: math.unit(600, "lb"),
  18224. name: "Back",
  18225. image: {
  18226. source: "./media/characters/dragonien/back.svg",
  18227. extra: 776 / 746,
  18228. bottom: 6.4 / 782.0616
  18229. }
  18230. },
  18231. foot: {
  18232. height: math.unit(1.54, "feet"),
  18233. name: "Foot",
  18234. image: {
  18235. source: "./media/characters/dragonien/foot.svg",
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(8 + 4 / 12, "feet"),
  18243. default: true
  18244. },
  18245. {
  18246. name: "Macro",
  18247. height: math.unit(200, "feet")
  18248. },
  18249. {
  18250. name: "Megamacro",
  18251. height: math.unit(1, "mile")
  18252. },
  18253. {
  18254. name: "Gigamacro",
  18255. height: math.unit(1000, "miles")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(5 + 2 / 12, "feet"),
  18264. weight: math.unit(110, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/desta/front.svg",
  18268. extra: 767 / 726,
  18269. bottom: 11.7 / 779
  18270. }
  18271. },
  18272. back: {
  18273. height: math.unit(5 + 2 / 12, "feet"),
  18274. weight: math.unit(110, "lb"),
  18275. name: "Back",
  18276. image: {
  18277. source: "./media/characters/desta/back.svg",
  18278. extra: 777 / 728,
  18279. bottom: 6 / 784
  18280. }
  18281. },
  18282. frontAlt: {
  18283. height: math.unit(5 + 2 / 12, "feet"),
  18284. weight: math.unit(110, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/desta/front-alt.svg",
  18288. extra: 1482 / 1417
  18289. }
  18290. },
  18291. side: {
  18292. height: math.unit(5 + 2 / 12, "feet"),
  18293. weight: math.unit(110, "lb"),
  18294. name: "Side",
  18295. image: {
  18296. source: "./media/characters/desta/side.svg",
  18297. extra: 2579 / 2491,
  18298. bottom: 0.053
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(6, "inches")
  18306. },
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(5 + 2 / 12, "feet"),
  18310. default: true
  18311. },
  18312. {
  18313. name: "Macro",
  18314. height: math.unit(62, "feet")
  18315. },
  18316. {
  18317. name: "Megamacro",
  18318. height: math.unit(1800, "feet")
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(10, "feet"),
  18327. weight: math.unit(700, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/storm-alystar/front.svg",
  18331. extra: 2112 / 1898,
  18332. bottom: 0.034
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(3.5, "inches")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(10, "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(400, "feet")
  18349. },
  18350. {
  18351. name: "Deific",
  18352. height: math.unit(60, "miles")
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(2.35, "meters"),
  18361. weight: math.unit(119, "kg"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/ilia/front.svg",
  18365. extra: 1285 / 1255,
  18366. bottom: 0.06
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(2.35, "meters")
  18374. },
  18375. {
  18376. name: "Macro",
  18377. height: math.unit(140, "meters"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "Megamacro",
  18382. height: math.unit(100, "miles")
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(6 + 5 / 12, "feet"),
  18391. weight: math.unit(190, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/kingdead/front.svg",
  18395. extra: 1228 / 1177
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(7, "inches")
  18403. },
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(6 + 5 / 12, "feet")
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(150, "feet"),
  18411. default: true
  18412. },
  18413. {
  18414. name: "Megamacro",
  18415. height: math.unit(200, "miles")
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18421. {
  18422. front: {
  18423. height: math.unit(8, "feet"),
  18424. weight: math.unit(600, "lb"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/kyrehx/front.svg",
  18428. extra: 1195 / 1095,
  18429. bottom: 0.034
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Micro",
  18436. height: math.unit(2, "inches")
  18437. },
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(8, "feet"),
  18441. default: true
  18442. },
  18443. {
  18444. name: "Macro",
  18445. height: math.unit(255, "feet")
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18454. weight: math.unit(184, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/xang/front.svg",
  18458. extra: 845 / 755
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(0.935 * 146, "feet")
  18471. },
  18472. {
  18473. name: "Megamacro",
  18474. height: math.unit(0.935 * 3, "miles")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18480. {
  18481. frontDressed: {
  18482. height: math.unit(5 + 7 / 12, "feet"),
  18483. weight: math.unit(140, "lb"),
  18484. name: "Front (Dressed)",
  18485. image: {
  18486. source: "./media/characters/doc-weardno/front-dressed.svg",
  18487. extra: 263 / 234
  18488. }
  18489. },
  18490. backDressed: {
  18491. height: math.unit(5 + 7 / 12, "feet"),
  18492. weight: math.unit(140, "lb"),
  18493. name: "Back (Dressed)",
  18494. image: {
  18495. source: "./media/characters/doc-weardno/back-dressed.svg",
  18496. extra: 266 / 238
  18497. }
  18498. },
  18499. front: {
  18500. height: math.unit(5 + 7 / 12, "feet"),
  18501. weight: math.unit(140, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/doc-weardno/front.svg",
  18505. extra: 254 / 233
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Micro",
  18512. height: math.unit(3, "inches")
  18513. },
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(5 + 7 / 12, "feet"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(25, "feet")
  18522. },
  18523. {
  18524. name: "Megamacro",
  18525. height: math.unit(2, "miles")
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(6 + 2 / 12, "feet"),
  18534. weight: math.unit(153, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/seth-whilst/front.svg",
  18538. bottom: 0.07
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Micro",
  18545. height: math.unit(5, "inches")
  18546. },
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(6 + 2 / 12, "feet"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(3, "inches"),
  18559. weight: math.unit(8, "grams"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/pocket-jabari/front.svg",
  18563. extra: 1024 / 974,
  18564. bottom: 0.039
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Minimicro",
  18571. height: math.unit(8, "mm")
  18572. },
  18573. {
  18574. name: "Micro",
  18575. height: math.unit(3, "inches"),
  18576. default: true
  18577. },
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(3, "feet")
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(15, "feet"),
  18589. weight: math.unit(3280, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/sapphy/front.svg",
  18593. extra: 671 / 577,
  18594. bottom: 0.085
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(15, "feet"),
  18599. weight: math.unit(3280, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/sapphy/back.svg",
  18603. extra: 631 / 607,
  18604. bottom: 0.045
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(15, "feet")
  18612. },
  18613. {
  18614. name: "Casual Macro",
  18615. height: math.unit(120, "feet")
  18616. },
  18617. {
  18618. name: "Macro",
  18619. height: math.unit(2150, "feet"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Megamacro",
  18624. height: math.unit(8, "miles")
  18625. },
  18626. {
  18627. name: "Galaxy Mom",
  18628. height: math.unit(6, "megalightyears")
  18629. },
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18634. {
  18635. front: {
  18636. height: math.unit(6, "feet"),
  18637. weight: math.unit(170, "lb"),
  18638. name: "Front",
  18639. image: {
  18640. source: "./media/characters/kiro/front.svg",
  18641. extra: 1064 / 1012,
  18642. bottom: 0.052
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(6, "inches")
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(6, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(72, "feet")
  18659. },
  18660. ]
  18661. ))
  18662. characterMakers.push(() => makeCharacter(
  18663. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18664. {
  18665. front: {
  18666. height: math.unit(5 + 9 / 12, "feet"),
  18667. weight: math.unit(175, "lb"),
  18668. name: "Front",
  18669. image: {
  18670. source: "./media/characters/irishfox/front.svg",
  18671. extra: 1912 / 1680,
  18672. bottom: 0.02
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Nano",
  18679. height: math.unit(1, "mm")
  18680. },
  18681. {
  18682. name: "Micro",
  18683. height: math.unit(2, "inches")
  18684. },
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(5 + 9 / 12, "feet"),
  18688. default: true
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(45, "feet")
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6 + 1 / 12, "feet"),
  18701. weight: math.unit(75, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/aronai-sieyes/front.svg",
  18705. extra: 1556 / 1480,
  18706. bottom: 0.015
  18707. }
  18708. },
  18709. side: {
  18710. height: math.unit(6 + 1 / 12, "feet"),
  18711. weight: math.unit(75, "lb"),
  18712. name: "Side",
  18713. image: {
  18714. source: "./media/characters/aronai-sieyes/side.svg",
  18715. extra: 1433 / 1390,
  18716. bottom: 0.0393
  18717. }
  18718. },
  18719. back: {
  18720. height: math.unit(6 + 1 / 12, "feet"),
  18721. weight: math.unit(75, "lb"),
  18722. name: "Back",
  18723. image: {
  18724. source: "./media/characters/aronai-sieyes/back.svg",
  18725. extra: 1544 / 1494,
  18726. bottom: 0.02
  18727. }
  18728. },
  18729. frontClothed: {
  18730. height: math.unit(6 + 1 / 12, "feet"),
  18731. weight: math.unit(75, "lb"),
  18732. name: "Front (Clothed)",
  18733. image: {
  18734. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18735. extra: 1582 / 1527
  18736. }
  18737. },
  18738. feral: {
  18739. height: math.unit(18, "feet"),
  18740. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18741. name: "Feral",
  18742. image: {
  18743. source: "./media/characters/aronai-sieyes/feral.svg",
  18744. extra: 1530 / 1240,
  18745. bottom: 0.035
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Micro",
  18752. height: math.unit(2, "inches")
  18753. },
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. default: true
  18758. }
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(12, "feet"),
  18766. weight: math.unit(410, "kg"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/xuna/front.svg",
  18770. extra: 2184 / 1980
  18771. }
  18772. },
  18773. side: {
  18774. height: math.unit(12, "feet"),
  18775. weight: math.unit(410, "kg"),
  18776. name: "Side",
  18777. image: {
  18778. source: "./media/characters/xuna/side.svg",
  18779. extra: 2184 / 1980
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(12, "feet"),
  18784. weight: math.unit(410, "kg"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/xuna/back.svg",
  18788. extra: 2184 / 1980
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Nano glow",
  18795. height: math.unit(10, "nm")
  18796. },
  18797. {
  18798. name: "Micro floof",
  18799. height: math.unit(0.3, "m")
  18800. },
  18801. {
  18802. name: "Huggable softy boi",
  18803. height: math.unit(3.6576, "m"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Admirable floof",
  18808. height: math.unit(80, "meters")
  18809. },
  18810. {
  18811. name: "Gentle macro",
  18812. height: math.unit(300, "meters")
  18813. },
  18814. {
  18815. name: "Very careful floof",
  18816. height: math.unit(3200, "meters")
  18817. },
  18818. {
  18819. name: "The mega floof",
  18820. height: math.unit(36000, "meters")
  18821. },
  18822. {
  18823. name: "Giga-fur-Wicker",
  18824. height: math.unit(4800000, "meters")
  18825. },
  18826. {
  18827. name: "Licky world",
  18828. height: math.unit(20000000, "meters")
  18829. },
  18830. {
  18831. name: "Floofy cyan sun",
  18832. height: math.unit(1500000000, "meters")
  18833. },
  18834. {
  18835. name: "Milky Wicker",
  18836. height: math.unit(1000000000000000000000, "meters")
  18837. },
  18838. {
  18839. name: "The observing Wicker",
  18840. height: math.unit(999999999999999999999999999, "meters")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18846. {
  18847. front: {
  18848. height: math.unit(5 + 9 / 12, "feet"),
  18849. weight: math.unit(150, "lb"),
  18850. name: "Front",
  18851. image: {
  18852. source: "./media/characters/arokha-sieyes/front.svg",
  18853. extra: 1425 / 1284,
  18854. bottom: 0.05
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(5 + 9 / 12, "feet")
  18862. },
  18863. {
  18864. name: "Macro",
  18865. height: math.unit(30, "meters"),
  18866. default: true
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18872. {
  18873. front: {
  18874. height: math.unit(6, "feet"),
  18875. weight: math.unit(180, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/arokh-sieyes/front.svg",
  18879. extra: 1830 / 1769,
  18880. bottom: 0.01
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6, "feet")
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(30, "meters"),
  18892. default: true
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18898. {
  18899. side: {
  18900. height: math.unit(13 + 1 / 12, "feet"),
  18901. weight: math.unit(8.5, "tonnes"),
  18902. name: "Side",
  18903. image: {
  18904. source: "./media/characters/goldeneye/side.svg",
  18905. extra: 1182 / 778,
  18906. bottom: 0.067
  18907. }
  18908. },
  18909. paw: {
  18910. height: math.unit(3.4, "feet"),
  18911. name: "Paw",
  18912. image: {
  18913. source: "./media/characters/goldeneye/paw.svg"
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(13 + 1 / 12, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6 + 1 / 12, "feet"),
  18930. weight: math.unit(210, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/leonardo-lycheborne/front.svg",
  18934. extra: 390 / 365,
  18935. bottom: 0.032
  18936. }
  18937. },
  18938. side: {
  18939. height: math.unit(6 + 1 / 12, "feet"),
  18940. weight: math.unit(210, "lb"),
  18941. name: "Side",
  18942. image: {
  18943. source: "./media/characters/leonardo-lycheborne/side.svg",
  18944. extra: 390 / 365,
  18945. bottom: 0.005
  18946. }
  18947. },
  18948. back: {
  18949. height: math.unit(6 + 1 / 12, "feet"),
  18950. weight: math.unit(210, "lb"),
  18951. name: "Back",
  18952. image: {
  18953. source: "./media/characters/leonardo-lycheborne/back.svg",
  18954. extra: 392 / 366,
  18955. bottom: 0.01
  18956. }
  18957. },
  18958. hand: {
  18959. height: math.unit(1.08, "feet"),
  18960. name: "Hand",
  18961. image: {
  18962. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18963. }
  18964. },
  18965. foot: {
  18966. height: math.unit(1.32, "feet"),
  18967. name: "Foot",
  18968. image: {
  18969. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18970. }
  18971. },
  18972. were: {
  18973. height: math.unit(20, "feet"),
  18974. weight: math.unit(7800, "lb"),
  18975. name: "Were",
  18976. image: {
  18977. source: "./media/characters/leonardo-lycheborne/were.svg",
  18978. extra: 308 / 294,
  18979. bottom: 0.048
  18980. }
  18981. },
  18982. feral: {
  18983. height: math.unit(7.5, "feet"),
  18984. weight: math.unit(600, "lb"),
  18985. name: "Feral",
  18986. image: {
  18987. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18988. extra: 210 / 186,
  18989. bottom: 0.108
  18990. }
  18991. },
  18992. taur: {
  18993. height: math.unit(11, "feet"),
  18994. weight: math.unit(3300, "lb"),
  18995. name: "Taur",
  18996. image: {
  18997. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18998. extra: 320 / 303,
  18999. bottom: 0.025
  19000. }
  19001. },
  19002. barghest: {
  19003. height: math.unit(11, "feet"),
  19004. weight: math.unit(1300, "lb"),
  19005. name: "Barghest",
  19006. image: {
  19007. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19008. extra: 323 / 302,
  19009. bottom: 0.027
  19010. }
  19011. },
  19012. dick: {
  19013. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19014. name: "Dick",
  19015. image: {
  19016. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19017. }
  19018. },
  19019. dickWere: {
  19020. height: math.unit((20) / 3.8, "feet"),
  19021. name: "Dick (Were)",
  19022. image: {
  19023. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(6 + 1 / 12, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(10, "feet"),
  19040. weight: math.unit(350, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/jet/front.svg",
  19044. extra: 2050 / 1980,
  19045. bottom: 0.013
  19046. }
  19047. },
  19048. back: {
  19049. height: math.unit(10, "feet"),
  19050. weight: math.unit(350, "lb"),
  19051. name: "Back",
  19052. image: {
  19053. source: "./media/characters/jet/back.svg",
  19054. extra: 2050 / 1980,
  19055. bottom: 0.013
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Micro",
  19062. height: math.unit(6, "inches")
  19063. },
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(10, "feet"),
  19067. default: true
  19068. },
  19069. {
  19070. name: "Macro",
  19071. height: math.unit(100, "feet")
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19077. {
  19078. front: {
  19079. height: math.unit(15, "feet"),
  19080. weight: math.unit(2800, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/tanarath/front.svg",
  19084. extra: 2392 / 2220,
  19085. bottom: 0.03
  19086. }
  19087. },
  19088. back: {
  19089. height: math.unit(15, "feet"),
  19090. weight: math.unit(2800, "lb"),
  19091. name: "Back",
  19092. image: {
  19093. source: "./media/characters/tanarath/back.svg",
  19094. extra: 2392 / 2220,
  19095. bottom: 0.03
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(15, "feet"),
  19103. default: true
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19109. {
  19110. front: {
  19111. height: math.unit(7 + 1 / 12, "feet"),
  19112. weight: math.unit(175, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/patty-cattybatty/front.svg",
  19116. extra: 908 / 874,
  19117. bottom: 0.025
  19118. }
  19119. },
  19120. },
  19121. [
  19122. {
  19123. name: "Micro",
  19124. height: math.unit(1, "inch")
  19125. },
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(7 + 1 / 12, "feet")
  19129. },
  19130. {
  19131. name: "Mini Macro",
  19132. height: math.unit(155, "feet")
  19133. },
  19134. {
  19135. name: "Macro",
  19136. height: math.unit(1077, "feet")
  19137. },
  19138. {
  19139. name: "Mega Macro",
  19140. height: math.unit(47650, "feet"),
  19141. default: true
  19142. },
  19143. {
  19144. name: "Giga Macro",
  19145. height: math.unit(440, "miles")
  19146. },
  19147. {
  19148. name: "Tera Macro",
  19149. height: math.unit(8700, "miles")
  19150. },
  19151. {
  19152. name: "Planetary Macro",
  19153. height: math.unit(32700, "miles")
  19154. },
  19155. {
  19156. name: "Solar Macro",
  19157. height: math.unit(550000, "miles")
  19158. },
  19159. {
  19160. name: "Celestial Macro",
  19161. height: math.unit(2.5, "AU")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(4 + 5 / 12, "feet"),
  19170. weight: math.unit(90, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/cappu/front.svg",
  19174. extra: 1247 / 1152,
  19175. bottom: 0.012
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(4 + 5 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19189. {
  19190. frontDressed: {
  19191. height: math.unit(70, "cm"),
  19192. weight: math.unit(6, "kg"),
  19193. name: "Front (Dressed)",
  19194. image: {
  19195. source: "./media/characters/sebi/front-dressed.svg",
  19196. extra: 713.5 / 686.5,
  19197. bottom: 0.003
  19198. }
  19199. },
  19200. front: {
  19201. height: math.unit(70, "cm"),
  19202. weight: math.unit(5, "kg"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/sebi/front.svg",
  19206. extra: 713.5 / 686.5,
  19207. bottom: 0.003
  19208. }
  19209. }
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(70, "cm"),
  19215. default: true
  19216. },
  19217. {
  19218. name: "Macro",
  19219. height: math.unit(8, "meters")
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(6, "feet"),
  19228. weight: math.unit(150, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/typhek/front.svg",
  19232. extra: 1948 / 1929,
  19233. bottom: 0.025
  19234. }
  19235. },
  19236. side: {
  19237. height: math.unit(6, "feet"),
  19238. weight: math.unit(150, "lb"),
  19239. name: "Side",
  19240. image: {
  19241. source: "./media/characters/typhek/side.svg",
  19242. extra: 2034 / 2010,
  19243. bottom: 0.003
  19244. }
  19245. },
  19246. back: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Back",
  19250. image: {
  19251. source: "./media/characters/typhek/back.svg",
  19252. extra: 2005 / 1978,
  19253. bottom: 0.004
  19254. }
  19255. },
  19256. palm: {
  19257. height: math.unit(1.2, "feet"),
  19258. name: "Palm",
  19259. image: {
  19260. source: "./media/characters/typhek/palm.svg"
  19261. }
  19262. },
  19263. fist: {
  19264. height: math.unit(1.1, "feet"),
  19265. name: "Fist",
  19266. image: {
  19267. source: "./media/characters/typhek/fist.svg"
  19268. }
  19269. },
  19270. foot: {
  19271. height: math.unit(1.57, "feet"),
  19272. name: "Foot",
  19273. image: {
  19274. source: "./media/characters/typhek/foot.svg"
  19275. }
  19276. },
  19277. sole: {
  19278. height: math.unit(2.05, "feet"),
  19279. name: "Sole",
  19280. image: {
  19281. source: "./media/characters/typhek/sole.svg"
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Macro",
  19288. height: math.unit(40, "stories"),
  19289. default: true
  19290. },
  19291. {
  19292. name: "Megamacro",
  19293. height: math.unit(1, "mile")
  19294. },
  19295. {
  19296. name: "Gigamacro",
  19297. height: math.unit(4000, "solarradii")
  19298. },
  19299. {
  19300. name: "Universal",
  19301. height: math.unit(1.1, "universes")
  19302. }
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19307. {
  19308. side: {
  19309. height: math.unit(5 + 7 / 12, "feet"),
  19310. weight: math.unit(150, "lb"),
  19311. name: "Side",
  19312. image: {
  19313. source: "./media/characters/kassy/side.svg",
  19314. extra: 1280 / 1225,
  19315. bottom: 0.002
  19316. }
  19317. },
  19318. front: {
  19319. height: math.unit(5 + 7 / 12, "feet"),
  19320. weight: math.unit(150, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/kassy/front.svg",
  19324. extra: 1280 / 1225,
  19325. bottom: 0.025
  19326. }
  19327. },
  19328. back: {
  19329. height: math.unit(5 + 7 / 12, "feet"),
  19330. weight: math.unit(150, "lb"),
  19331. name: "Back",
  19332. image: {
  19333. source: "./media/characters/kassy/back.svg",
  19334. extra: 1280 / 1225,
  19335. bottom: 0.002
  19336. }
  19337. },
  19338. foot: {
  19339. height: math.unit(1.266, "feet"),
  19340. name: "Foot",
  19341. image: {
  19342. source: "./media/characters/kassy/foot.svg"
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(5 + 7 / 12, "feet")
  19350. },
  19351. {
  19352. name: "Macro",
  19353. height: math.unit(137, "feet"),
  19354. default: true
  19355. },
  19356. {
  19357. name: "Megamacro",
  19358. height: math.unit(1, "mile")
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(6 + 1 / 12, "feet"),
  19367. weight: math.unit(200, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/neil/front.svg",
  19371. extra: 1326 / 1250,
  19372. bottom: 0.023
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(6 + 1 / 12, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Macro",
  19384. height: math.unit(200, "feet")
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(5 + 9 / 12, "feet"),
  19393. weight: math.unit(190, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/atticus/front.svg",
  19397. extra: 2934 / 2785,
  19398. bottom: 0.025
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(5 + 9 / 12, "feet"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Macro",
  19410. height: math.unit(180, "feet")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19416. {
  19417. side: {
  19418. height: math.unit(9, "feet"),
  19419. weight: math.unit(650, "lb"),
  19420. name: "Side",
  19421. image: {
  19422. source: "./media/characters/milo/side.svg",
  19423. extra: 2644 / 2310,
  19424. bottom: 0.032
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(9, "feet"),
  19432. default: true
  19433. },
  19434. {
  19435. name: "Macro",
  19436. height: math.unit(300, "feet")
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19442. {
  19443. side: {
  19444. height: math.unit(8, "meters"),
  19445. weight: math.unit(90000, "kg"),
  19446. name: "Side",
  19447. image: {
  19448. source: "./media/characters/ijzer/side.svg",
  19449. extra: 2756 / 1600,
  19450. bottom: 0.01
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Small",
  19457. height: math.unit(3, "meters")
  19458. },
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(8, "meters"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Normal+",
  19466. height: math.unit(10, "meters")
  19467. },
  19468. {
  19469. name: "Bigger",
  19470. height: math.unit(24, "meters")
  19471. },
  19472. {
  19473. name: "Huge",
  19474. height: math.unit(80, "meters")
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(6 + 2 / 12, "feet"),
  19483. weight: math.unit(153, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/luca-cervicum/front.svg",
  19487. extra: 370 / 327,
  19488. bottom: 0.015
  19489. }
  19490. },
  19491. back: {
  19492. height: math.unit(6 + 2 / 12, "feet"),
  19493. weight: math.unit(153, "lb"),
  19494. name: "Back",
  19495. image: {
  19496. source: "./media/characters/luca-cervicum/back.svg",
  19497. extra: 367 / 333,
  19498. bottom: 0.005
  19499. }
  19500. },
  19501. frontGear: {
  19502. height: math.unit(6 + 2 / 12, "feet"),
  19503. weight: math.unit(173, "lb"),
  19504. name: "Front (Gear)",
  19505. image: {
  19506. source: "./media/characters/luca-cervicum/front-gear.svg",
  19507. extra: 377 / 333,
  19508. bottom: 0.006
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(6 + 2 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(6 + 1 / 12, "feet"),
  19525. weight: math.unit(304, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/oliver/front.svg",
  19529. extra: 157 / 143,
  19530. bottom: 0.08
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(6 + 1 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(5 + 7 / 12, "feet"),
  19547. weight: math.unit(140, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/shane/front.svg",
  19551. extra: 304 / 289,
  19552. bottom: 0.005
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(5 + 7 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(5 + 9 / 12, "feet"),
  19569. weight: math.unit(178, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/shin/front.svg",
  19573. extra: 159 / 151,
  19574. bottom: 0.015
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(5 + 9 / 12, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 10 / 12, "feet"),
  19591. weight: math.unit(168, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/xerxes/front.svg",
  19595. extra: 282 / 260,
  19596. bottom: 0.045
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 10 / 12, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6 + 7 / 12, "feet"),
  19613. weight: math.unit(208, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/chaska/front.svg",
  19617. extra: 332 / 319,
  19618. bottom: 0.015
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 7 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 8 / 12, "feet"),
  19635. weight: math.unit(208, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/enuk/front.svg",
  19639. extra: 437 / 406,
  19640. bottom: 0.02
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 8 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(5 + 10 / 12, "feet"),
  19657. weight: math.unit(252, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/bruun/front.svg",
  19661. extra: 197 / 187,
  19662. bottom: 0.012
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(5 + 10 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(6 + 10 / 12, "feet"),
  19679. weight: math.unit(255, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/alexeev/front.svg",
  19683. extra: 213 / 200,
  19684. bottom: 0.05
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(6 + 10 / 12, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(2 + 8 / 12, "feet"),
  19701. weight: math.unit(22, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/evelyn/front.svg",
  19705. extra: 208 / 180
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(2 + 8 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(5 + 9 / 12, "feet"),
  19722. weight: math.unit(139, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/inca/front.svg",
  19726. extra: 294 / 291,
  19727. bottom: 0.03
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(5 + 9 / 12, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 1 / 12, "feet"),
  19744. weight: math.unit(84, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/magdalene/front.svg",
  19748. extra: 293 / 273
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(5 + 1 / 12, "feet"),
  19756. default: true
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6 + 3 / 12, "feet"),
  19765. weight: math.unit(185, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/mera/front.svg",
  19769. extra: 291 / 277,
  19770. bottom: 0.03
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(6 + 3 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6 + 7 / 12, "feet"),
  19787. weight: math.unit(160, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/ceres/front.svg",
  19791. extra: 1023 / 950,
  19792. bottom: 0.027
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(6 + 7 / 12, "feet"),
  19797. weight: math.unit(160, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/ceres/back.svg",
  19801. extra: 1023 / 950
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(6 + 7 / 12, "feet"),
  19809. default: true
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(5 + 10 / 12, "feet"),
  19818. weight: math.unit(150, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/kris/front.svg",
  19822. extra: 885 / 803,
  19823. bottom: 0.03
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(5 + 10 / 12, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(7, "feet"),
  19840. weight: math.unit(120, "kg"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/taluthus/front.svg",
  19844. extra: 903 / 833,
  19845. bottom: 0.015
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(7, "feet"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(300, "feet")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(5 + 9 / 12, "feet"),
  19866. weight: math.unit(145, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/dawn/front.svg",
  19870. extra: 2094 / 2016,
  19871. bottom: 0.025
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(5 + 9 / 12, "feet"),
  19876. weight: math.unit(160, "lb"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/dawn/back.svg",
  19880. extra: 2112 / 2080,
  19881. bottom: 0.005
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(6 + 7 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19895. {
  19896. anthro: {
  19897. height: math.unit(8 + 3 / 12, "feet"),
  19898. weight: math.unit(450, "lb"),
  19899. name: "Anthro",
  19900. image: {
  19901. source: "./media/characters/arador/anthro.svg",
  19902. extra: 1835 / 1718,
  19903. bottom: 0.025
  19904. }
  19905. },
  19906. feral: {
  19907. height: math.unit(4, "feet"),
  19908. weight: math.unit(200, "lb"),
  19909. name: "Feral",
  19910. image: {
  19911. source: "./media/characters/arador/feral.svg",
  19912. extra: 1683 / 1514,
  19913. bottom: 0.07
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(8 + 3 / 12, "feet")
  19921. },
  19922. {
  19923. name: "Macro",
  19924. height: math.unit(82.5, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(5 + 10 / 12, "feet"),
  19934. weight: math.unit(125, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/dharsi/front.svg",
  19938. extra: 716 / 630,
  19939. bottom: 0.035
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Nano",
  19946. height: math.unit(100, "nm")
  19947. },
  19948. {
  19949. name: "Micro",
  19950. height: math.unit(2, "inches")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(5 + 10 / 12, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(1000, "feet")
  19960. },
  19961. {
  19962. name: "Megamacro",
  19963. height: math.unit(10, "miles")
  19964. },
  19965. {
  19966. name: "Gigamacro",
  19967. height: math.unit(3000, "miles")
  19968. },
  19969. {
  19970. name: "Teramacro",
  19971. height: math.unit(500000, "miles")
  19972. },
  19973. {
  19974. name: "Teramacro+",
  19975. height: math.unit(30, "galaxies")
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(6, "feet"),
  19984. weight: math.unit(150, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/deathy/front.svg",
  19988. extra: 1552 / 1463,
  19989. bottom: 0.025
  19990. }
  19991. },
  19992. side: {
  19993. height: math.unit(6, "feet"),
  19994. weight: math.unit(150, "lb"),
  19995. name: "Side",
  19996. image: {
  19997. source: "./media/characters/deathy/side.svg",
  19998. extra: 1604 / 1455,
  19999. bottom: 0.025
  20000. }
  20001. },
  20002. back: {
  20003. height: math.unit(6, "feet"),
  20004. weight: math.unit(150, "lb"),
  20005. name: "Back",
  20006. image: {
  20007. source: "./media/characters/deathy/back.svg",
  20008. extra: 1580 / 1463,
  20009. bottom: 0.005
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Micro",
  20016. height: math.unit(5, "millimeters")
  20017. },
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(6 + 5 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20027. {
  20028. front: {
  20029. height: math.unit(16, "feet"),
  20030. weight: math.unit(4000, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/juniper/front.svg",
  20034. bottom: 0.04
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(16, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(6, "feet"),
  20051. weight: math.unit(150, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/hipster/front.svg",
  20055. extra: 1312 / 1209,
  20056. bottom: 0.025
  20057. }
  20058. },
  20059. back: {
  20060. height: math.unit(6, "feet"),
  20061. weight: math.unit(150, "lb"),
  20062. name: "Back",
  20063. image: {
  20064. source: "./media/characters/hipster/back.svg",
  20065. extra: 1281 / 1196,
  20066. bottom: 0.01
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Micro",
  20073. height: math.unit(1, "mm")
  20074. },
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(4, "inches"),
  20078. default: true
  20079. },
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(500, "feet")
  20083. },
  20084. {
  20085. name: "Megamacro",
  20086. height: math.unit(1000, "miles")
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(6, "feet"),
  20095. weight: math.unit(150, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/tendirmuldr/front.svg",
  20099. extra: 1878 / 1772,
  20100. bottom: 0.015
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Megamacro",
  20107. height: math.unit(1500, "miles"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20114. {
  20115. front: {
  20116. height: math.unit(14, "feet"),
  20117. weight: math.unit(12000, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/mort/front.svg",
  20121. extra: 365 / 318,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. side: {
  20126. height: math.unit(14, "feet"),
  20127. weight: math.unit(12000, "lb"),
  20128. name: "Side",
  20129. image: {
  20130. source: "./media/characters/mort/side.svg",
  20131. extra: 365 / 318,
  20132. bottom: 0.052
  20133. },
  20134. default: true
  20135. },
  20136. back: {
  20137. height: math.unit(14, "feet"),
  20138. weight: math.unit(12000, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/mort/back.svg",
  20142. extra: 371 / 332,
  20143. bottom: 0.18
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(14, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20157. {
  20158. front: {
  20159. height: math.unit(8, "feet"),
  20160. weight: math.unit(1, "ton"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/lycoa/front.svg",
  20164. extra: 1875 / 1789,
  20165. bottom: 0.022
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(8, "feet"),
  20170. weight: math.unit(1, "ton"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/lycoa/back.svg",
  20174. extra: 1835 / 1781,
  20175. bottom: 0.03
  20176. }
  20177. },
  20178. head: {
  20179. height: math.unit(2.1, "feet"),
  20180. name: "Head",
  20181. image: {
  20182. source: "./media/characters/lycoa/head.svg"
  20183. }
  20184. },
  20185. tailmaw: {
  20186. height: math.unit(1.9, "feet"),
  20187. name: "Tailmaw",
  20188. image: {
  20189. source: "./media/characters/lycoa/tailmaw.svg"
  20190. }
  20191. },
  20192. tentacles: {
  20193. height: math.unit(2.1, "feet"),
  20194. name: "Tentacles",
  20195. image: {
  20196. source: "./media/characters/lycoa/tentacles.svg"
  20197. }
  20198. },
  20199. dick: {
  20200. height: math.unit(1.73, "feet"),
  20201. name: "Dick",
  20202. image: {
  20203. source: "./media/characters/lycoa/dick.svg"
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(8, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(30, "feet")
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20221. {
  20222. front: {
  20223. height: math.unit(4 + 2 / 12, "feet"),
  20224. weight: math.unit(70, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/naldara/front.svg",
  20228. extra: 841 / 720,
  20229. bottom: 0.04
  20230. }
  20231. },
  20232. naga: {
  20233. height: math.unit(23, "feet"),
  20234. weight: math.unit(15000, "kg"),
  20235. name: "Naga",
  20236. image: {
  20237. source: "./media/characters/naldara/naga.svg",
  20238. extra: 3290 / 2959,
  20239. bottom: 124 / 3432
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(4 + 2 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(13 + 7 / 12, "feet"),
  20256. weight: math.unit(1500, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/briar/front.svg",
  20260. extra: 626 / 596,
  20261. bottom: 0.08
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(13 + 7 / 12, "feet"),
  20269. default: true
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20275. {
  20276. side: {
  20277. height: math.unit(10, "feet"),
  20278. weight: math.unit(500, "lb"),
  20279. name: "Side",
  20280. image: {
  20281. source: "./media/characters/vanguard/side.svg",
  20282. extra: 502 / 425,
  20283. bottom: 0.087
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(10, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(7.5, "feet"),
  20300. weight: math.unit(2, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/artemis/front.svg",
  20304. extra: 1192 / 1075,
  20305. bottom: 0.07
  20306. }
  20307. },
  20308. frontNsfw: {
  20309. height: math.unit(7.5, "feet"),
  20310. weight: math.unit(2, "lb"),
  20311. name: "Front (NSFW)",
  20312. image: {
  20313. source: "./media/characters/artemis/front-nsfw.svg",
  20314. extra: 1192 / 1075,
  20315. bottom: 0.07
  20316. }
  20317. },
  20318. frontNsfwer: {
  20319. height: math.unit(7.5, "feet"),
  20320. weight: math.unit(2, "lb"),
  20321. name: "Front (NSFW-er)",
  20322. image: {
  20323. source: "./media/characters/artemis/front-nsfwer.svg",
  20324. extra: 1192 / 1075,
  20325. bottom: 0.07
  20326. }
  20327. },
  20328. side: {
  20329. height: math.unit(7.5, "feet"),
  20330. weight: math.unit(2, "lb"),
  20331. name: "Side",
  20332. image: {
  20333. source: "./media/characters/artemis/side.svg",
  20334. extra: 1192 / 1075,
  20335. bottom: 0.07
  20336. }
  20337. },
  20338. sideNsfw: {
  20339. height: math.unit(7.5, "feet"),
  20340. weight: math.unit(2, "lb"),
  20341. name: "Side (NSFW)",
  20342. image: {
  20343. source: "./media/characters/artemis/side-nsfw.svg",
  20344. extra: 1192 / 1075,
  20345. bottom: 0.07
  20346. }
  20347. },
  20348. sideNsfwer: {
  20349. height: math.unit(7.5, "feet"),
  20350. weight: math.unit(2, "lb"),
  20351. name: "Side (NSFW-er)",
  20352. image: {
  20353. source: "./media/characters/artemis/side-nsfwer.svg",
  20354. extra: 1192 / 1075,
  20355. bottom: 0.07
  20356. }
  20357. },
  20358. maw: {
  20359. height: math.unit(1.1, "feet"),
  20360. name: "Maw",
  20361. image: {
  20362. source: "./media/characters/artemis/maw.svg"
  20363. }
  20364. },
  20365. stomach: {
  20366. height: math.unit(0.95, "feet"),
  20367. name: "Stomach",
  20368. image: {
  20369. source: "./media/characters/artemis/stomach.svg"
  20370. }
  20371. },
  20372. dickCanine: {
  20373. height: math.unit(1, "feet"),
  20374. name: "Dick (Canine)",
  20375. image: {
  20376. source: "./media/characters/artemis/dick-canine.svg"
  20377. }
  20378. },
  20379. dickEquine: {
  20380. height: math.unit(0.85, "feet"),
  20381. name: "Dick (Equine)",
  20382. image: {
  20383. source: "./media/characters/artemis/dick-equine.svg"
  20384. }
  20385. },
  20386. dickExotic: {
  20387. height: math.unit(0.85, "feet"),
  20388. name: "Dick (Exotic)",
  20389. image: {
  20390. source: "./media/characters/artemis/dick-exotic.svg"
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(7.5, "feet"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Enlarged",
  20402. height: math.unit(12, "feet")
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(5 + 3 / 12, "feet"),
  20411. weight: math.unit(160, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/kira/front.svg",
  20415. extra: 906 / 786,
  20416. bottom: 0.01
  20417. }
  20418. },
  20419. back: {
  20420. height: math.unit(5 + 3 / 12, "feet"),
  20421. weight: math.unit(160, "lb"),
  20422. name: "Back",
  20423. image: {
  20424. source: "./media/characters/kira/back.svg",
  20425. extra: 882 / 757,
  20426. bottom: 0.005
  20427. }
  20428. },
  20429. frontDressed: {
  20430. height: math.unit(5 + 3 / 12, "feet"),
  20431. weight: math.unit(160, "lb"),
  20432. name: "Front (Dressed)",
  20433. image: {
  20434. source: "./media/characters/kira/front-dressed.svg",
  20435. extra: 906 / 786,
  20436. bottom: 0.01
  20437. }
  20438. },
  20439. beans: {
  20440. height: math.unit(0.92, "feet"),
  20441. name: "Beans",
  20442. image: {
  20443. source: "./media/characters/kira/beans.svg"
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(5 + 3 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(5 + 4 / 12, "feet"),
  20460. weight: math.unit(145, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/scramble/front.svg",
  20464. extra: 763 / 727,
  20465. bottom: 0.05
  20466. }
  20467. },
  20468. back: {
  20469. height: math.unit(5 + 4 / 12, "feet"),
  20470. weight: math.unit(145, "lb"),
  20471. name: "Back",
  20472. image: {
  20473. source: "./media/characters/scramble/back.svg",
  20474. extra: 826 / 737,
  20475. bottom: 0.002
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 4 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20489. {
  20490. side: {
  20491. height: math.unit(6 + 2 / 12, "feet"),
  20492. weight: math.unit(190, "lb"),
  20493. name: "Side",
  20494. image: {
  20495. source: "./media/characters/biscuit/side.svg",
  20496. extra: 858 / 791,
  20497. bottom: 0.044
  20498. }
  20499. },
  20500. },
  20501. [
  20502. {
  20503. name: "Normal",
  20504. height: math.unit(6 + 2 / 12, "feet"),
  20505. default: true
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(5 + 2 / 12, "feet"),
  20514. weight: math.unit(120, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/poffin/front.svg",
  20518. extra: 786 / 680,
  20519. bottom: 0.005
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 2 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(6 + 3 / 12, "feet"),
  20536. weight: math.unit(519, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/dhari/front.svg",
  20540. extra: 1048 / 946,
  20541. bottom: 0.015
  20542. }
  20543. },
  20544. back: {
  20545. height: math.unit(6 + 3 / 12, "feet"),
  20546. weight: math.unit(519, "lb"),
  20547. name: "Back",
  20548. image: {
  20549. source: "./media/characters/dhari/back.svg",
  20550. extra: 1048 / 931,
  20551. bottom: 0.005
  20552. }
  20553. },
  20554. frontDressed: {
  20555. height: math.unit(6 + 3 / 12, "feet"),
  20556. weight: math.unit(519, "lb"),
  20557. name: "Front (Dressed)",
  20558. image: {
  20559. source: "./media/characters/dhari/front-dressed.svg",
  20560. extra: 1713 / 1546,
  20561. bottom: 0.02
  20562. }
  20563. },
  20564. backDressed: {
  20565. height: math.unit(6 + 3 / 12, "feet"),
  20566. weight: math.unit(519, "lb"),
  20567. name: "Back (Dressed)",
  20568. image: {
  20569. source: "./media/characters/dhari/back-dressed.svg",
  20570. extra: 1699 / 1537,
  20571. bottom: 0.01
  20572. }
  20573. },
  20574. maw: {
  20575. height: math.unit(0.95, "feet"),
  20576. name: "Maw",
  20577. image: {
  20578. source: "./media/characters/dhari/maw.svg"
  20579. }
  20580. },
  20581. wereFront: {
  20582. height: math.unit(12 + 8 / 12, "feet"),
  20583. weight: math.unit(4000, "lb"),
  20584. name: "Front (Were)",
  20585. image: {
  20586. source: "./media/characters/dhari/were-front.svg",
  20587. extra: 1065 / 969,
  20588. bottom: 0.015
  20589. }
  20590. },
  20591. wereBack: {
  20592. height: math.unit(12 + 8 / 12, "feet"),
  20593. weight: math.unit(4000, "lb"),
  20594. name: "Back (Were)",
  20595. image: {
  20596. source: "./media/characters/dhari/were-back.svg",
  20597. extra: 1065 / 969,
  20598. bottom: 0.012
  20599. }
  20600. },
  20601. wereMaw: {
  20602. height: math.unit(0.625, "meters"),
  20603. name: "Maw (Were)",
  20604. image: {
  20605. source: "./media/characters/dhari/were-maw.svg"
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(6 + 3 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20619. {
  20620. anthro: {
  20621. height: math.unit(5 + 7 / 12, "feet"),
  20622. weight: math.unit(175, "lb"),
  20623. name: "Anthro",
  20624. image: {
  20625. source: "./media/characters/rena-dyne/anthro.svg",
  20626. extra: 1849 / 1785,
  20627. bottom: 0.005
  20628. }
  20629. },
  20630. taur: {
  20631. height: math.unit(15 + 6 / 12, "feet"),
  20632. weight: math.unit(8000, "lb"),
  20633. name: "Taur",
  20634. image: {
  20635. source: "./media/characters/rena-dyne/taur.svg",
  20636. extra: 2315 / 2234,
  20637. bottom: 0.033
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(5 + 7 / 12, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(8, "feet"),
  20654. weight: math.unit(600, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/weremeep/front.svg",
  20658. extra: 967 / 862,
  20659. bottom: 0.01
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(8, "feet"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Lorg",
  20671. height: math.unit(12, "feet")
  20672. },
  20673. {
  20674. name: "Oh Lawd She Comin'",
  20675. height: math.unit(20, "feet")
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20681. {
  20682. front: {
  20683. height: math.unit(4, "feet"),
  20684. weight: math.unit(90, "lb"),
  20685. name: "Front",
  20686. image: {
  20687. source: "./media/characters/reza/front.svg",
  20688. extra: 1183 / 1111,
  20689. bottom: 0.017
  20690. }
  20691. },
  20692. back: {
  20693. height: math.unit(4, "feet"),
  20694. weight: math.unit(90, "lb"),
  20695. name: "Back",
  20696. image: {
  20697. source: "./media/characters/reza/back.svg",
  20698. extra: 1183 / 1111,
  20699. bottom: 0.01
  20700. }
  20701. },
  20702. drake: {
  20703. height: math.unit(30, "feet"),
  20704. weight: math.unit(246960, "lb"),
  20705. name: "Drake",
  20706. image: {
  20707. source: "./media/characters/reza/drake.svg",
  20708. extra: 2350 / 2024,
  20709. bottom: 60.7 / 2403
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(4, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20723. {
  20724. side: {
  20725. height: math.unit(15, "feet"),
  20726. weight: math.unit(14, "tons"),
  20727. name: "Side",
  20728. image: {
  20729. source: "./media/characters/athea/side.svg",
  20730. extra: 960 / 540,
  20731. bottom: 0.003
  20732. }
  20733. },
  20734. sitting: {
  20735. height: math.unit(6 * 2.85, "feet"),
  20736. weight: math.unit(14, "tons"),
  20737. name: "Sitting",
  20738. image: {
  20739. source: "./media/characters/athea/sitting.svg",
  20740. extra: 621 / 581,
  20741. bottom: 0.075
  20742. }
  20743. },
  20744. maw: {
  20745. height: math.unit(7.59498031496063, "feet"),
  20746. name: "Maw",
  20747. image: {
  20748. source: "./media/characters/athea/maw.svg"
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Lap Cat",
  20755. height: math.unit(2.5, "feet")
  20756. },
  20757. {
  20758. name: "Minimacro",
  20759. height: math.unit(15, "feet"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(120, "feet")
  20765. },
  20766. {
  20767. name: "Macro+",
  20768. height: math.unit(640, "feet")
  20769. },
  20770. {
  20771. name: "Colossus",
  20772. height: math.unit(2.2, "miles")
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(8 + 8 / 12, "feet"),
  20781. weight: math.unit(130, "kg"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/seroko/front.svg",
  20785. extra: 1385 / 1280,
  20786. bottom: 0.025
  20787. }
  20788. },
  20789. back: {
  20790. height: math.unit(8 + 8 / 12, "feet"),
  20791. weight: math.unit(130, "kg"),
  20792. name: "Back",
  20793. image: {
  20794. source: "./media/characters/seroko/back.svg",
  20795. extra: 1369 / 1238,
  20796. bottom: 0.018
  20797. }
  20798. },
  20799. frontDressed: {
  20800. height: math.unit(8 + 8 / 12, "feet"),
  20801. weight: math.unit(130, "kg"),
  20802. name: "Front (Dressed)",
  20803. image: {
  20804. source: "./media/characters/seroko/front-dressed.svg",
  20805. extra: 1366 / 1275,
  20806. bottom: 0.03
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(8 + 8 / 12, "feet"),
  20814. default: true
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(5.5, "feet"),
  20823. weight: math.unit(160, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/quatzi/front.svg",
  20827. extra: 2346 / 2242,
  20828. bottom: 0.015
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5.5, "feet"),
  20836. default: true
  20837. },
  20838. {
  20839. name: "Big",
  20840. height: math.unit(7.7, "feet")
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20846. {
  20847. front: {
  20848. height: math.unit(5 + 11 / 12, "feet"),
  20849. weight: math.unit(180, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/sen/front.svg",
  20853. extra: 1321 / 1254,
  20854. bottom: 0.015
  20855. }
  20856. },
  20857. side: {
  20858. height: math.unit(5 + 11 / 12, "feet"),
  20859. weight: math.unit(180, "lb"),
  20860. name: "Side",
  20861. image: {
  20862. source: "./media/characters/sen/side.svg",
  20863. extra: 1321 / 1254,
  20864. bottom: 0.007
  20865. }
  20866. },
  20867. back: {
  20868. height: math.unit(5 + 11 / 12, "feet"),
  20869. weight: math.unit(180, "lb"),
  20870. name: "Back",
  20871. image: {
  20872. source: "./media/characters/sen/back.svg",
  20873. extra: 1321 / 1254
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(5 + 11 / 12, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(166.6, "cm"),
  20890. weight: math.unit(66.6, "kg"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/fruity/front.svg",
  20894. extra: 1510 / 1386,
  20895. bottom: 0.04
  20896. }
  20897. },
  20898. back: {
  20899. height: math.unit(166.6, "cm"),
  20900. weight: math.unit(66.6, "lb"),
  20901. name: "Back",
  20902. image: {
  20903. source: "./media/characters/fruity/back.svg",
  20904. extra: 1563 / 1435,
  20905. bottom: 0.005
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(166.6, "cm"),
  20913. default: true
  20914. },
  20915. {
  20916. name: "Demonic",
  20917. height: math.unit(166.6, "feet")
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20923. {
  20924. side: {
  20925. height: math.unit(10, "feet"),
  20926. weight: math.unit(500, "lb"),
  20927. name: "Side",
  20928. image: {
  20929. source: "./media/characters/zost/side.svg",
  20930. extra: 966 / 880,
  20931. bottom: 0.075
  20932. }
  20933. },
  20934. mawFront: {
  20935. height: math.unit(1.08, "meters"),
  20936. name: "Maw (Front)",
  20937. image: {
  20938. source: "./media/characters/zost/maw-front.svg"
  20939. }
  20940. },
  20941. mawSide: {
  20942. height: math.unit(2.66, "feet"),
  20943. name: "Maw (Side)",
  20944. image: {
  20945. source: "./media/characters/zost/maw-side.svg"
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(10, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 4 / 12, "feet"),
  20962. weight: math.unit(120, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/luci/front.svg",
  20966. extra: 1985 / 1884,
  20967. bottom: 0.04
  20968. }
  20969. },
  20970. back: {
  20971. height: math.unit(5 + 4 / 12, "feet"),
  20972. weight: math.unit(120, "lb"),
  20973. name: "Back",
  20974. image: {
  20975. source: "./media/characters/luci/back.svg",
  20976. extra: 1892 / 1791,
  20977. bottom: 0.002
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(5 + 4 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(1500, "feet"),
  20994. weight: math.unit(3.8e6, "tons"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/2th/front.svg",
  20998. extra: 3489 / 3350,
  20999. bottom: 0.1
  21000. }
  21001. },
  21002. foot: {
  21003. height: math.unit(461, "feet"),
  21004. name: "Foot",
  21005. image: {
  21006. source: "./media/characters/2th/foot.svg"
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "\"Micro\"",
  21013. height: math.unit(15 + 7 / 12, "feet")
  21014. },
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(1500, "feet"),
  21018. default: true
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(5000, "feet")
  21023. },
  21024. {
  21025. name: "Megamacro",
  21026. height: math.unit(15, "miles")
  21027. },
  21028. {
  21029. name: "Gigamacro",
  21030. height: math.unit(4000, "miles")
  21031. },
  21032. {
  21033. name: "Galactic",
  21034. height: math.unit(50, "AU")
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(5 + 6 / 12, "feet"),
  21043. weight: math.unit(220, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/amethyst/front.svg",
  21047. extra: 2078 / 2040,
  21048. bottom: 0.045
  21049. }
  21050. },
  21051. back: {
  21052. height: math.unit(5 + 6 / 12, "feet"),
  21053. weight: math.unit(220, "lb"),
  21054. name: "Back",
  21055. image: {
  21056. source: "./media/characters/amethyst/back.svg",
  21057. extra: 2021 / 1989,
  21058. bottom: 0.02
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(5 + 6 / 12, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(4 + 11 / 12, "feet"),
  21075. weight: math.unit(120, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/yumi-akiyama/front.svg",
  21079. extra: 1327 / 1235,
  21080. bottom: 0.02
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(4 + 11 / 12, "feet"),
  21085. weight: math.unit(120, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/yumi-akiyama/back.svg",
  21089. extra: 1287 / 1245,
  21090. bottom: 0.002
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Galactic",
  21097. height: math.unit(50, "galaxies"),
  21098. default: true
  21099. },
  21100. {
  21101. name: "Universal",
  21102. height: math.unit(100, "universes")
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(8, "feet"),
  21111. weight: math.unit(500, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/rifter-yrmori/front.svg",
  21115. extra: 1180 / 1125,
  21116. bottom: 0.02
  21117. }
  21118. },
  21119. back: {
  21120. height: math.unit(8, "feet"),
  21121. weight: math.unit(500, "lb"),
  21122. name: "Back",
  21123. image: {
  21124. source: "./media/characters/rifter-yrmori/back.svg",
  21125. extra: 1190 / 1145,
  21126. bottom: 0.001
  21127. }
  21128. },
  21129. wings: {
  21130. height: math.unit(7.75, "feet"),
  21131. weight: math.unit(500, "lb"),
  21132. name: "Wings",
  21133. image: {
  21134. source: "./media/characters/rifter-yrmori/wings.svg",
  21135. extra: 1357 / 1285
  21136. }
  21137. },
  21138. maw: {
  21139. height: math.unit(0.8, "feet"),
  21140. name: "Maw",
  21141. image: {
  21142. source: "./media/characters/rifter-yrmori/maw.svg"
  21143. }
  21144. },
  21145. mawfront: {
  21146. height: math.unit(1.45, "feet"),
  21147. name: "Maw (Front)",
  21148. image: {
  21149. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(8, "feet"),
  21157. default: true
  21158. },
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(42, "meters")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21167. {
  21168. were: {
  21169. height: math.unit(25 + 6 / 12, "feet"),
  21170. weight: math.unit(10000, "lb"),
  21171. name: "Were",
  21172. image: {
  21173. source: "./media/characters/tahajin/were.svg",
  21174. extra: 801 / 770,
  21175. bottom: 0.042
  21176. }
  21177. },
  21178. aquatic: {
  21179. height: math.unit(6 + 4 / 12, "feet"),
  21180. weight: math.unit(160, "lb"),
  21181. name: "Aquatic",
  21182. image: {
  21183. source: "./media/characters/tahajin/aquatic.svg",
  21184. extra: 572 / 542,
  21185. bottom: 0.04
  21186. }
  21187. },
  21188. chow: {
  21189. height: math.unit(8 + 11 / 12, "feet"),
  21190. weight: math.unit(450, "lb"),
  21191. name: "Chow",
  21192. image: {
  21193. source: "./media/characters/tahajin/chow.svg",
  21194. extra: 660 / 640,
  21195. bottom: 0.015
  21196. }
  21197. },
  21198. demiNaga: {
  21199. height: math.unit(6 + 8 / 12, "feet"),
  21200. weight: math.unit(300, "lb"),
  21201. name: "Demi Naga",
  21202. image: {
  21203. source: "./media/characters/tahajin/demi-naga.svg",
  21204. extra: 643 / 615,
  21205. bottom: 0.1
  21206. }
  21207. },
  21208. data: {
  21209. height: math.unit(5, "inches"),
  21210. weight: math.unit(0.1, "lb"),
  21211. name: "Data",
  21212. image: {
  21213. source: "./media/characters/tahajin/data.svg"
  21214. }
  21215. },
  21216. fluu: {
  21217. height: math.unit(5 + 7 / 12, "feet"),
  21218. weight: math.unit(140, "lb"),
  21219. name: "Fluu",
  21220. image: {
  21221. source: "./media/characters/tahajin/fluu.svg",
  21222. extra: 628 / 592,
  21223. bottom: 0.02
  21224. }
  21225. },
  21226. starWarrior: {
  21227. height: math.unit(4 + 5 / 12, "feet"),
  21228. weight: math.unit(50, "lb"),
  21229. name: "Star Warrior",
  21230. image: {
  21231. source: "./media/characters/tahajin/star-warrior.svg"
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(25 + 6 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(8, "feet"),
  21248. weight: math.unit(350, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/gabira/front.svg",
  21252. extra: 608 / 580,
  21253. bottom: 0.03
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(8, "feet"),
  21258. weight: math.unit(350, "lb"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/gabira/back.svg",
  21262. extra: 608 / 580,
  21263. bottom: 0.03
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(8, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(5 + 3 / 12, "feet"),
  21280. weight: math.unit(137, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/sasha-katraine/front.svg",
  21284. bottom: 0.045
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Micro",
  21291. height: math.unit(5, "inches")
  21292. },
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5 + 3 / 12, "feet"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21302. {
  21303. side: {
  21304. height: math.unit(4, "inches"),
  21305. weight: math.unit(200, "grams"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/der/side.svg",
  21309. extra: 719 / 400,
  21310. bottom: 30.6 / 749.9187
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Micro",
  21317. height: math.unit(4, "inches"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21324. {
  21325. side: {
  21326. height: math.unit(30, "meters"),
  21327. weight: math.unit(700, "tonnes"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/fixerdragon/side.svg",
  21331. extra: (1293.0514 - 116.03) / 1106.86,
  21332. bottom: 116.03 / 1293.0514
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Planck",
  21339. height: math.unit(1.6e-35, "meters")
  21340. },
  21341. {
  21342. name: "Micro",
  21343. height: math.unit(0.4, "meters")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(30, "meters"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Megamacro",
  21352. height: math.unit(1.2, "megameters")
  21353. },
  21354. {
  21355. name: "Teramacro",
  21356. height: math.unit(130, "terameters")
  21357. },
  21358. {
  21359. name: "Yottamacro",
  21360. height: math.unit(6200, "yottameters")
  21361. },
  21362. ]
  21363. ));
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(8, "feet"),
  21369. weight: math.unit(250, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/kite/front.svg",
  21373. extra: 2796 / 2659,
  21374. bottom: 0.002
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(8, "feet"),
  21382. default: true
  21383. },
  21384. {
  21385. name: "Macro",
  21386. height: math.unit(360, "feet")
  21387. },
  21388. {
  21389. name: "Megamacro",
  21390. height: math.unit(1500, "feet")
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(5 + 10 / 12, "feet"),
  21399. weight: math.unit(150, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/poojawa-vynar/front.svg",
  21403. extra: (1506.1547 - 55) / 1356.6,
  21404. bottom: 55 / 1506.1547
  21405. }
  21406. },
  21407. frontTailless: {
  21408. height: math.unit(5 + 10 / 12, "feet"),
  21409. weight: math.unit(150, "lb"),
  21410. name: "Front (Tailless)",
  21411. image: {
  21412. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21413. extra: (1506.1547 - 55) / 1356.6,
  21414. bottom: 55 / 1506.1547
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(5 + 10 / 12, "feet"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21428. {
  21429. front: {
  21430. height: math.unit(293, "meters"),
  21431. weight: math.unit(70400, "tons"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/violette/front.svg",
  21435. extra: 1227 / 1180,
  21436. bottom: 0.005
  21437. }
  21438. },
  21439. back: {
  21440. height: math.unit(293, "meters"),
  21441. weight: math.unit(70400, "tons"),
  21442. name: "Back",
  21443. image: {
  21444. source: "./media/characters/violette/back.svg",
  21445. extra: 1227 / 1180,
  21446. bottom: 0.005
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Macro",
  21453. height: math.unit(293, "meters"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(1050, "feet"),
  21463. weight: math.unit(200000, "tons"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/alessandra/front.svg",
  21467. extra: 960 / 912,
  21468. bottom: 0.06
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Macro",
  21475. height: math.unit(1050, "feet")
  21476. },
  21477. {
  21478. name: "Macro+",
  21479. height: math.unit(900, "meters"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(5, "feet"),
  21489. weight: math.unit(187, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/person/front.svg",
  21493. extra: 3087 / 2945,
  21494. bottom: 91 / 3181
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Micro",
  21501. height: math.unit(3, "inches")
  21502. },
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(5, "feet"),
  21506. default: true
  21507. },
  21508. {
  21509. name: "Macro",
  21510. height: math.unit(90, "feet")
  21511. },
  21512. {
  21513. name: "Max Size",
  21514. height: math.unit(280, "feet")
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(4.5, "meters"),
  21523. weight: math.unit(3200, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/ty/front.svg",
  21527. extra: 1038 / 960,
  21528. bottom: 31.156 / 1068
  21529. }
  21530. },
  21531. back: {
  21532. height: math.unit(4.5, "meters"),
  21533. weight: math.unit(3200, "lb"),
  21534. name: "Back",
  21535. image: {
  21536. source: "./media/characters/ty/back.svg",
  21537. extra: 1044 / 966,
  21538. bottom: 7.48 / 1049
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(4.5, "meters"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(5 + 4 / 12, "feet"),
  21555. weight: math.unit(115, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/rocky/front.svg",
  21559. extra: 1012 / 975,
  21560. bottom: 54 / 1066
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(5 + 4 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21574. {
  21575. upright: {
  21576. height: math.unit(6, "meters"),
  21577. weight: math.unit(4000, "kg"),
  21578. name: "Upright",
  21579. image: {
  21580. source: "./media/characters/ruin/upright.svg",
  21581. extra: 668 / 661,
  21582. bottom: 42 / 799.8396
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(6, "meters"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5, "feet"),
  21599. weight: math.unit(106, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/robin/front.svg",
  21603. extra: 862 / 799,
  21604. bottom: 42.4 / 914.8856
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21618. {
  21619. side: {
  21620. height: math.unit(3, "feet"),
  21621. weight: math.unit(225, "lb"),
  21622. name: "Side",
  21623. image: {
  21624. source: "./media/characters/saian/side.svg",
  21625. extra: 566 / 356,
  21626. bottom: 79.7 / 643
  21627. }
  21628. },
  21629. maw: {
  21630. height: math.unit(2.85, "feet"),
  21631. name: "Maw",
  21632. image: {
  21633. source: "./media/characters/saian/maw.svg"
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(3, "feet"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21647. {
  21648. side: {
  21649. height: math.unit(8, "feet"),
  21650. weight: math.unit(300, "lb"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/equus-silvermane/side.svg",
  21654. extra: 2176 / 2050,
  21655. bottom: 65.7 / 2245
  21656. }
  21657. },
  21658. front: {
  21659. height: math.unit(8, "feet"),
  21660. weight: math.unit(300, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/equus-silvermane/front.svg",
  21664. extra: 4633 / 4400,
  21665. bottom: 71.3 / 4706.915
  21666. }
  21667. },
  21668. sideStepping: {
  21669. height: math.unit(8, "feet"),
  21670. weight: math.unit(300, "lb"),
  21671. name: "Side (Stepping)",
  21672. image: {
  21673. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21674. extra: 1968 / 1860,
  21675. bottom: 16.4 / 1989
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(8, "feet")
  21683. },
  21684. {
  21685. name: "Minimacro",
  21686. height: math.unit(75, "feet"),
  21687. default: true
  21688. },
  21689. {
  21690. name: "Macro",
  21691. height: math.unit(150, "feet")
  21692. },
  21693. {
  21694. name: "Macro+",
  21695. height: math.unit(1000, "feet")
  21696. },
  21697. {
  21698. name: "Megamacro",
  21699. height: math.unit(1, "mile")
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21705. {
  21706. side: {
  21707. height: math.unit(20, "feet"),
  21708. weight: math.unit(30000, "kg"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/windar/side.svg",
  21712. extra: 1491 / 1248,
  21713. bottom: 82.56 / 1568
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(20, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21727. {
  21728. side: {
  21729. height: math.unit(15.66, "feet"),
  21730. weight: math.unit(150, "lb"),
  21731. name: "Side",
  21732. image: {
  21733. source: "./media/characters/melody/side.svg",
  21734. extra: 1097 / 944,
  21735. bottom: 11.8 / 1109
  21736. }
  21737. },
  21738. sideOutfit: {
  21739. height: math.unit(15.66, "feet"),
  21740. weight: math.unit(150, "lb"),
  21741. name: "Side (Outfit)",
  21742. image: {
  21743. source: "./media/characters/melody/side-outfit.svg",
  21744. extra: 1097 / 944,
  21745. bottom: 11.8 / 1109
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(15.66, "feet"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(8, "feet"),
  21762. weight: math.unit(325, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/windera/front.svg",
  21766. extra: 3180 / 2845,
  21767. bottom: 178 / 3365
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(8, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21781. {
  21782. front: {
  21783. height: math.unit(28.75, "feet"),
  21784. weight: math.unit(2000, "kg"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/sonear/front.svg",
  21788. extra: 1041.1 / 964.9,
  21789. bottom: 53.7 / 1096.6
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(28.75, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21803. {
  21804. side: {
  21805. height: math.unit(25.5, "feet"),
  21806. weight: math.unit(23000, "kg"),
  21807. name: "Side",
  21808. image: {
  21809. source: "./media/characters/kanara/side.svg"
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(25.5, "feet"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21823. {
  21824. side: {
  21825. height: math.unit(10, "feet"),
  21826. weight: math.unit(1000, "kg"),
  21827. name: "Side",
  21828. image: {
  21829. source: "./media/characters/ereus/side.svg",
  21830. extra: 1157 / 959,
  21831. bottom: 153 / 1312.5
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(10, "feet"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21845. {
  21846. side: {
  21847. height: math.unit(4.5, "feet"),
  21848. weight: math.unit(500, "lb"),
  21849. name: "Side",
  21850. image: {
  21851. source: "./media/characters/e-ter/side.svg",
  21852. extra: 1550 / 1248,
  21853. bottom: 146 / 1694
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(4.5, "feet"),
  21861. default: true
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21867. {
  21868. side: {
  21869. height: math.unit(9.7, "feet"),
  21870. weight: math.unit(4000, "kg"),
  21871. name: "Side",
  21872. image: {
  21873. source: "./media/characters/yamie/side.svg"
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(9.7, "feet"),
  21881. default: true
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21887. {
  21888. front: {
  21889. height: math.unit(50, "feet"),
  21890. weight: math.unit(50000, "kg"),
  21891. name: "Front",
  21892. image: {
  21893. source: "./media/characters/anders/front.svg",
  21894. extra: 570 / 539,
  21895. bottom: 14.7 / 586.7
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Large",
  21902. height: math.unit(50, "feet")
  21903. },
  21904. {
  21905. name: "Macro",
  21906. height: math.unit(2000, "feet"),
  21907. default: true
  21908. },
  21909. {
  21910. name: "Megamacro",
  21911. height: math.unit(12, "miles")
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(7 + 2 / 12, "feet"),
  21920. weight: math.unit(300, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/reban/front.svg",
  21924. extra: 516 / 487,
  21925. bottom: 42.82 / 558.356
  21926. }
  21927. },
  21928. dick: {
  21929. height: math.unit(7 / 5, "feet"),
  21930. name: "Dick",
  21931. image: {
  21932. source: "./media/characters/reban/dick.svg"
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Natural Height",
  21939. height: math.unit(7 + 2 / 12, "feet")
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(500, "feet"),
  21944. default: true
  21945. },
  21946. {
  21947. name: "Canon Height",
  21948. height: math.unit(50, "AU")
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(6, "feet"),
  21957. weight: math.unit(150, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/terrance-keayes/front.svg",
  21961. extra: 1.005,
  21962. bottom: 151 / 1615
  21963. }
  21964. },
  21965. side: {
  21966. height: math.unit(6, "feet"),
  21967. weight: math.unit(150, "lb"),
  21968. name: "Side",
  21969. image: {
  21970. source: "./media/characters/terrance-keayes/side.svg",
  21971. extra: 1.005,
  21972. bottom: 129.4 / 1544
  21973. }
  21974. },
  21975. back: {
  21976. height: math.unit(6, "feet"),
  21977. weight: math.unit(150, "lb"),
  21978. name: "Back",
  21979. image: {
  21980. source: "./media/characters/terrance-keayes/back.svg",
  21981. extra: 1.005,
  21982. bottom: 58.4 / 1557.3
  21983. }
  21984. },
  21985. dick: {
  21986. height: math.unit(6 * 0.208, "feet"),
  21987. name: "Dick",
  21988. image: {
  21989. source: "./media/characters/terrance-keayes/dick.svg"
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Canon Height",
  21996. height: math.unit(35, "miles"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(6, "feet"),
  22006. weight: math.unit(150, "lb"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/ofelia/front.svg",
  22010. extra: 546 / 541,
  22011. bottom: 39 / 583
  22012. }
  22013. },
  22014. back: {
  22015. height: math.unit(6, "feet"),
  22016. weight: math.unit(150, "lb"),
  22017. name: "Back",
  22018. image: {
  22019. source: "./media/characters/ofelia/back.svg",
  22020. extra: 564 / 559.5,
  22021. bottom: 8.69 / 573.02
  22022. }
  22023. },
  22024. maw: {
  22025. height: math.unit(1, "feet"),
  22026. name: "Maw",
  22027. image: {
  22028. source: "./media/characters/ofelia/maw.svg"
  22029. }
  22030. },
  22031. foot: {
  22032. height: math.unit(1.949, "feet"),
  22033. name: "Foot",
  22034. image: {
  22035. source: "./media/characters/ofelia/foot.svg"
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Canon Height",
  22042. height: math.unit(2000, "miles"),
  22043. default: true
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22049. {
  22050. front: {
  22051. height: math.unit(6, "feet"),
  22052. weight: math.unit(150, "lb"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/samuel/front.svg",
  22056. extra: 265 / 258,
  22057. bottom: 2 / 266.1566
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Macro",
  22064. height: math.unit(100, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Full Size",
  22069. height: math.unit(1000, "miles")
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(6, "feet"),
  22078. weight: math.unit(300, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/beishir-kiel/front.svg",
  22082. extra: 569 / 547,
  22083. bottom: 41.9 / 609
  22084. }
  22085. },
  22086. maw: {
  22087. height: math.unit(6 * 0.202, "feet"),
  22088. name: "Maw",
  22089. image: {
  22090. source: "./media/characters/beishir-kiel/maw.svg"
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(300, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 7/12, "feet"),
  22107. weight: math.unit(120, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/logan-grey/front.svg",
  22111. extra: 1836/1738,
  22112. bottom: 108/1944
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(5 + 7/12, "feet"),
  22117. weight: math.unit(120, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/logan-grey/back.svg",
  22121. extra: 1880/1794,
  22122. bottom: 24/1904
  22123. }
  22124. },
  22125. frontSfw: {
  22126. height: math.unit(5 + 7/12, "feet"),
  22127. weight: math.unit(120, "lb"),
  22128. name: "Front (SFW)",
  22129. image: {
  22130. source: "./media/characters/logan-grey/front-sfw.svg",
  22131. extra: 1836/1738,
  22132. bottom: 108/1944
  22133. }
  22134. },
  22135. backSfw: {
  22136. height: math.unit(5 + 7/12, "feet"),
  22137. weight: math.unit(120, "lb"),
  22138. name: "Back (SFW)",
  22139. image: {
  22140. source: "./media/characters/logan-grey/back-sfw.svg",
  22141. extra: 1880/1794,
  22142. bottom: 24/1904
  22143. }
  22144. },
  22145. hands: {
  22146. height: math.unit(0.84, "feet"),
  22147. name: "Hands",
  22148. image: {
  22149. source: "./media/characters/logan-grey/hands.svg"
  22150. }
  22151. },
  22152. paws: {
  22153. height: math.unit(0.72, "feet"),
  22154. name: "Paws",
  22155. image: {
  22156. source: "./media/characters/logan-grey/paws.svg"
  22157. }
  22158. },
  22159. cock: {
  22160. height: math.unit(1.45, "feet"),
  22161. name: "Cock",
  22162. image: {
  22163. source: "./media/characters/logan-grey/cock.svg"
  22164. }
  22165. },
  22166. cockAlt: {
  22167. height: math.unit(1.437, "feet"),
  22168. name: "Cock (alt)",
  22169. image: {
  22170. source: "./media/characters/logan-grey/cock-alt.svg"
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Normal",
  22177. height: math.unit(5 + 8 / 12, "feet")
  22178. },
  22179. {
  22180. name: "The 500 Foot Femboy",
  22181. height: math.unit(500, "feet"),
  22182. default: true
  22183. },
  22184. {
  22185. name: "Megmacro",
  22186. height: math.unit(20, "miles")
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(8 + 2 / 12, "feet"),
  22195. weight: math.unit(275, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/draganta/front.svg",
  22199. extra: 1177 / 1135,
  22200. bottom: 33.46 / 1212.1
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(8 + 6 / 12, "feet"),
  22208. default: true
  22209. },
  22210. {
  22211. name: "Macro",
  22212. height: math.unit(150, "feet")
  22213. },
  22214. {
  22215. name: "Megamacro",
  22216. height: math.unit(1000, "miles")
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(1.72, "m"),
  22225. weight: math.unit(80, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/voski/front.svg",
  22229. extra: 2076.22 / 2022.4,
  22230. bottom: 102.7 / 2177.3866
  22231. }
  22232. },
  22233. frontNsfw: {
  22234. height: math.unit(1.72, "m"),
  22235. weight: math.unit(80, "lb"),
  22236. name: "Front (NSFW)",
  22237. image: {
  22238. source: "./media/characters/voski/front-nsfw.svg",
  22239. extra: 2076.22 / 2022.4,
  22240. bottom: 102.7 / 2177.3866
  22241. }
  22242. },
  22243. back: {
  22244. height: math.unit(1.72, "m"),
  22245. weight: math.unit(80, "lb"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/voski/back.svg",
  22249. extra: 2104 / 2051,
  22250. bottom: 10.45 / 2113.63
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(1.72, "m")
  22258. },
  22259. {
  22260. name: "Macro",
  22261. height: math.unit(55, "m"),
  22262. default: true
  22263. },
  22264. {
  22265. name: "Macro+",
  22266. height: math.unit(300, "m")
  22267. },
  22268. {
  22269. name: "Macro++",
  22270. height: math.unit(700, "m")
  22271. },
  22272. {
  22273. name: "Macro+++",
  22274. height: math.unit(4500, "m")
  22275. },
  22276. {
  22277. name: "Macro++++",
  22278. height: math.unit(45, "km")
  22279. },
  22280. {
  22281. name: "Macro+++++",
  22282. height: math.unit(1220, "km")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(2.3, "m"),
  22291. weight: math.unit(304, "kg"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/icowom-lee/front.svg",
  22295. extra: 985 / 955,
  22296. bottom: 25.4 / 1012
  22297. }
  22298. },
  22299. fronttentacles: {
  22300. height: math.unit(2.3, "m"),
  22301. weight: math.unit(304, "kg"),
  22302. name: "Front-tentacles",
  22303. image: {
  22304. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22305. extra: 985 / 955,
  22306. bottom: 25.4 / 1012
  22307. }
  22308. },
  22309. back: {
  22310. height: math.unit(2.3, "m"),
  22311. weight: math.unit(304, "kg"),
  22312. name: "Back",
  22313. image: {
  22314. source: "./media/characters/icowom-lee/back.svg",
  22315. extra: 975 / 954,
  22316. bottom: 9.5 / 985
  22317. }
  22318. },
  22319. backtentacles: {
  22320. height: math.unit(2.3, "m"),
  22321. weight: math.unit(304, "kg"),
  22322. name: "Back-tentacles",
  22323. image: {
  22324. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22325. extra: 975 / 954,
  22326. bottom: 9.5 / 985
  22327. }
  22328. },
  22329. frontDressed: {
  22330. height: math.unit(2.3, "m"),
  22331. weight: math.unit(304, "kg"),
  22332. name: "Front (Dressed)",
  22333. image: {
  22334. source: "./media/characters/icowom-lee/front-dressed.svg",
  22335. extra: 3076 / 2933,
  22336. bottom: 51.4 / 3125.1889
  22337. }
  22338. },
  22339. rump: {
  22340. height: math.unit(0.776, "meters"),
  22341. name: "Rump",
  22342. image: {
  22343. source: "./media/characters/icowom-lee/rump.svg"
  22344. }
  22345. },
  22346. genitals: {
  22347. height: math.unit(0.78, "meters"),
  22348. name: "Genitals",
  22349. image: {
  22350. source: "./media/characters/icowom-lee/genitals.svg"
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(2.3, "meters"),
  22358. default: true
  22359. },
  22360. {
  22361. name: "Macro",
  22362. height: math.unit(94, "meters"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(22, "meters"),
  22372. weight: math.unit(21000, "kg"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/shock-diamond/front.svg",
  22376. extra: 2204 / 2053,
  22377. bottom: 65 / 2239.47
  22378. }
  22379. },
  22380. frontNude: {
  22381. height: math.unit(22, "meters"),
  22382. weight: math.unit(21000, "kg"),
  22383. name: "Front (Nude)",
  22384. image: {
  22385. source: "./media/characters/shock-diamond/front-nude.svg",
  22386. extra: 2514 / 2285,
  22387. bottom: 13 / 2527.56
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(3, "meters")
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(22, "meters"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(5 + 4 / 12, "feet"),
  22408. weight: math.unit(120, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/rory/front.svg",
  22412. extra: 1318/1241,
  22413. bottom: 42/1360
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(5 + 4 / 12, "feet"),
  22418. weight: math.unit(120, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/rory/back.svg",
  22422. extra: 1318/1241,
  22423. bottom: 42/1360
  22424. }
  22425. },
  22426. butt: {
  22427. height: math.unit(1.74, "feet"),
  22428. name: "Butt",
  22429. image: {
  22430. source: "./media/characters/rory/butt.svg"
  22431. }
  22432. },
  22433. dick: {
  22434. height: math.unit(1.02, "feet"),
  22435. name: "Dick",
  22436. image: {
  22437. source: "./media/characters/rory/dick.svg"
  22438. }
  22439. },
  22440. paws: {
  22441. height: math.unit(1, "feet"),
  22442. name: "Paws",
  22443. image: {
  22444. source: "./media/characters/rory/paws.svg"
  22445. }
  22446. },
  22447. frontAlt: {
  22448. height: math.unit(5 + 4 / 12, "feet"),
  22449. weight: math.unit(120, "lb"),
  22450. name: "Front (Alt)",
  22451. image: {
  22452. source: "./media/characters/rory/front-alt.svg",
  22453. extra: 589 / 556,
  22454. bottom: 45.7 / 635.76
  22455. }
  22456. },
  22457. frontAltNude: {
  22458. height: math.unit(5 + 4 / 12, "feet"),
  22459. weight: math.unit(120, "lb"),
  22460. name: "Front (Alt, Nude)",
  22461. image: {
  22462. source: "./media/characters/rory/front-alt-nude.svg",
  22463. extra: 589 / 556,
  22464. bottom: 45.7 / 635.76
  22465. }
  22466. },
  22467. side: {
  22468. height: math.unit(5 + 4 / 12, "feet"),
  22469. weight: math.unit(120, "lb"),
  22470. name: "Side",
  22471. image: {
  22472. source: "./media/characters/rory/side.svg",
  22473. extra: 597 / 564,
  22474. bottom: 55 / 653
  22475. }
  22476. },
  22477. backAlt: {
  22478. height: math.unit(5 + 4 / 12, "feet"),
  22479. weight: math.unit(120, "lb"),
  22480. name: "Back (Alt)",
  22481. image: {
  22482. source: "./media/characters/rory/back-alt.svg",
  22483. extra: 620 / 585,
  22484. bottom: 8.86 / 630.43
  22485. }
  22486. },
  22487. dickAlt: {
  22488. height: math.unit(0.86, "feet"),
  22489. name: "Dick (Alt)",
  22490. image: {
  22491. source: "./media/characters/rory/dick-alt.svg"
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(5 + 4 / 12, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(100, "feet")
  22504. },
  22505. {
  22506. name: "Macro+",
  22507. height: math.unit(140, "feet")
  22508. },
  22509. {
  22510. name: "Macro++",
  22511. height: math.unit(300, "feet")
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 9 / 12, "feet"),
  22520. weight: math.unit(190, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/sprisk/front.svg",
  22524. extra: 1225 / 1180,
  22525. bottom: 42.7 / 1266.4
  22526. }
  22527. },
  22528. frontNsfw: {
  22529. height: math.unit(5 + 9 / 12, "feet"),
  22530. weight: math.unit(190, "lb"),
  22531. name: "Front (NSFW)",
  22532. image: {
  22533. source: "./media/characters/sprisk/front-nsfw.svg",
  22534. extra: 1225 / 1180,
  22535. bottom: 42.7 / 1266.4
  22536. }
  22537. },
  22538. back: {
  22539. height: math.unit(5 + 9 / 12, "feet"),
  22540. weight: math.unit(190, "lb"),
  22541. name: "Back",
  22542. image: {
  22543. source: "./media/characters/sprisk/back.svg",
  22544. extra: 1247 / 1200,
  22545. bottom: 5.6 / 1253.04
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Tiny",
  22552. height: math.unit(2, "inches")
  22553. },
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(5 + 9 / 12, "feet"),
  22557. default: true
  22558. },
  22559. {
  22560. name: "Mini Macro",
  22561. height: math.unit(18, "feet")
  22562. },
  22563. {
  22564. name: "Macro",
  22565. height: math.unit(100, "feet")
  22566. },
  22567. {
  22568. name: "MACRO",
  22569. height: math.unit(50, "miles")
  22570. },
  22571. {
  22572. name: "M A C R O",
  22573. height: math.unit(300, "miles")
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22579. {
  22580. side: {
  22581. height: math.unit(15.6, "meters"),
  22582. weight: math.unit(700000, "kg"),
  22583. name: "Side",
  22584. image: {
  22585. source: "./media/characters/bunsen/side.svg",
  22586. extra: 1644 / 358
  22587. }
  22588. },
  22589. foot: {
  22590. height: math.unit(1.611 * 1644 / 358, "meter"),
  22591. name: "Foot",
  22592. image: {
  22593. source: "./media/characters/bunsen/foot.svg"
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Small",
  22600. height: math.unit(10, "feet")
  22601. },
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(15.6, "meters"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(4 + 11 / 12, "feet"),
  22614. weight: math.unit(140, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/sesh/front.svg",
  22618. extra: 3420 / 3231,
  22619. bottom: 72 / 3949.5
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(4 + 11 / 12, "feet")
  22627. },
  22628. {
  22629. name: "Grown",
  22630. height: math.unit(15, "feet"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(1500, "feet")
  22636. },
  22637. {
  22638. name: "Megamacro",
  22639. height: math.unit(30, "miles")
  22640. },
  22641. {
  22642. name: "Continental",
  22643. height: math.unit(3000, "miles")
  22644. },
  22645. {
  22646. name: "Gravity Mass",
  22647. height: math.unit(300000, "miles")
  22648. },
  22649. {
  22650. name: "Planet Buster",
  22651. height: math.unit(30000000, "miles")
  22652. },
  22653. {
  22654. name: "Big",
  22655. height: math.unit(3000000000, "miles")
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(9, "feet"),
  22664. weight: math.unit(350, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/pepper/front.svg",
  22668. extra: 1448 / 1312,
  22669. bottom: 9.4 / 1457.88
  22670. }
  22671. },
  22672. back: {
  22673. height: math.unit(9, "feet"),
  22674. weight: math.unit(350, "lb"),
  22675. name: "Back",
  22676. image: {
  22677. source: "./media/characters/pepper/back.svg",
  22678. extra: 1423 / 1300,
  22679. bottom: 4.6 / 1429
  22680. }
  22681. },
  22682. maw: {
  22683. height: math.unit(0.932, "feet"),
  22684. name: "Maw",
  22685. image: {
  22686. source: "./media/characters/pepper/maw.svg"
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(9, "feet"),
  22694. default: true
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(6, "feet"),
  22703. weight: math.unit(150, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/maelstrom/front.svg",
  22707. extra: 2100 / 1883,
  22708. bottom: 94 / 2196.7
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Less Kaiju",
  22715. height: math.unit(200, "feet")
  22716. },
  22717. {
  22718. name: "Kaiju",
  22719. height: math.unit(400, "feet"),
  22720. default: true
  22721. },
  22722. {
  22723. name: "Kaiju-er",
  22724. height: math.unit(600, "feet")
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(6 + 5 / 12, "feet"),
  22733. weight: math.unit(180, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/lexir/front.svg",
  22737. extra: 180 / 172,
  22738. bottom: 12 / 192
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(6 + 5 / 12, "feet"),
  22743. weight: math.unit(180, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/lexir/back.svg",
  22747. extra: 183.84 / 175.5,
  22748. bottom: 3.1 / 187
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Very Smal",
  22755. height: math.unit(1, "nm")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(6 + 5 / 12, "feet"),
  22760. default: true
  22761. },
  22762. {
  22763. name: "Macro",
  22764. height: math.unit(1, "mile")
  22765. },
  22766. {
  22767. name: "Megamacro",
  22768. height: math.unit(50, "miles")
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(1.5, "meters"),
  22777. weight: math.unit(100, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/maksio/front.svg",
  22781. extra: 1549 / 1531,
  22782. bottom: 123.7 / 1674.5429
  22783. }
  22784. },
  22785. back: {
  22786. height: math.unit(1.5, "meters"),
  22787. weight: math.unit(100, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/maksio/back.svg",
  22791. extra: 1541 / 1509,
  22792. bottom: 97 / 1639
  22793. }
  22794. },
  22795. hand: {
  22796. height: math.unit(0.621, "feet"),
  22797. name: "Hand",
  22798. image: {
  22799. source: "./media/characters/maksio/hand.svg"
  22800. }
  22801. },
  22802. foot: {
  22803. height: math.unit(1.611, "feet"),
  22804. name: "Foot",
  22805. image: {
  22806. source: "./media/characters/maksio/foot.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Shrunken",
  22813. height: math.unit(10, "cm")
  22814. },
  22815. {
  22816. name: "Normal",
  22817. height: math.unit(150, "cm"),
  22818. default: true
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(100, "feet"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/erza-bear/front.svg",
  22830. extra: 2449 / 2390,
  22831. bottom: 46 / 2494
  22832. }
  22833. },
  22834. back: {
  22835. height: math.unit(100, "feet"),
  22836. name: "Back",
  22837. image: {
  22838. source: "./media/characters/erza-bear/back.svg",
  22839. extra: 2489 / 2430,
  22840. bottom: 85.4 / 2480
  22841. }
  22842. },
  22843. tail: {
  22844. height: math.unit(42, "feet"),
  22845. name: "Tail",
  22846. image: {
  22847. source: "./media/characters/erza-bear/tail.svg"
  22848. }
  22849. },
  22850. tongue: {
  22851. height: math.unit(8, "feet"),
  22852. name: "Tongue",
  22853. image: {
  22854. source: "./media/characters/erza-bear/tongue.svg"
  22855. }
  22856. },
  22857. dick: {
  22858. height: math.unit(10.5, "feet"),
  22859. name: "Dick",
  22860. image: {
  22861. source: "./media/characters/erza-bear/dick.svg"
  22862. }
  22863. },
  22864. dickVertical: {
  22865. height: math.unit(16.9, "feet"),
  22866. name: "Dick (Vertical)",
  22867. image: {
  22868. source: "./media/characters/erza-bear/dick-vertical.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(100, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(172, "cm"),
  22885. weight: math.unit(73, "kg"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/violet-flor/front.svg",
  22889. extra: 1530 / 1442,
  22890. bottom: 61.9 / 1588.8
  22891. }
  22892. },
  22893. back: {
  22894. height: math.unit(180, "cm"),
  22895. weight: math.unit(73, "kg"),
  22896. name: "Back",
  22897. image: {
  22898. source: "./media/characters/violet-flor/back.svg",
  22899. extra: 1692 / 1630,
  22900. bottom: 20 / 1712
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(172, "cm"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(6, "feet"),
  22917. weight: math.unit(220, "lb"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/lynn-rhea/front.svg",
  22921. extra: 310 / 273
  22922. }
  22923. },
  22924. back: {
  22925. height: math.unit(6, "feet"),
  22926. weight: math.unit(220, "lb"),
  22927. name: "Back",
  22928. image: {
  22929. source: "./media/characters/lynn-rhea/back.svg",
  22930. extra: 310 / 273
  22931. }
  22932. },
  22933. dicks: {
  22934. height: math.unit(0.9, "feet"),
  22935. name: "Dicks",
  22936. image: {
  22937. source: "./media/characters/lynn-rhea/dicks.svg"
  22938. }
  22939. },
  22940. slit: {
  22941. height: math.unit(0.4, "feet"),
  22942. name: "Slit",
  22943. image: {
  22944. source: "./media/characters/lynn-rhea/slit.svg"
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Micro",
  22951. height: math.unit(1, "inch")
  22952. },
  22953. {
  22954. name: "Macro",
  22955. height: math.unit(60, "feet"),
  22956. default: true
  22957. },
  22958. {
  22959. name: "Megamacro",
  22960. height: math.unit(2, "miles")
  22961. },
  22962. {
  22963. name: "Gigamacro",
  22964. height: math.unit(3, "earths")
  22965. },
  22966. {
  22967. name: "Galactic",
  22968. height: math.unit(0.8, "galaxies")
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22974. {
  22975. front: {
  22976. height: math.unit(1600, "feet"),
  22977. weight: math.unit(85758785169, "kg"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/valathos/front.svg",
  22981. extra: 1451 / 1339
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Macro",
  22988. height: math.unit(1600, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(7 + 5 / 12, "feet"),
  22998. weight: math.unit(300, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/azula/front.svg",
  23002. extra: 3208 / 2880,
  23003. bottom: 80.2 / 3277
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(7 + 5 / 12, "feet"),
  23008. weight: math.unit(300, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/azula/back.svg",
  23012. extra: 3169 / 2822,
  23013. bottom: 150.6 / 3321
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(7 + 5 / 12, "feet"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Big",
  23025. height: math.unit(20, "feet")
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(5 + 1 / 12, "feet"),
  23034. weight: math.unit(110, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/rupert/front.svg",
  23038. extra: 1549 / 1495,
  23039. bottom: 54.2 / 1604.4
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(5 + 1 / 12, "feet"),
  23047. default: true
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23053. {
  23054. front: {
  23055. height: math.unit(8 + 4 / 12, "feet"),
  23056. weight: math.unit(350, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/sheera-castellar/front.svg",
  23060. extra: 1957 / 1894,
  23061. bottom: 26.97 / 1975.017
  23062. }
  23063. },
  23064. side: {
  23065. height: math.unit(8 + 4 / 12, "feet"),
  23066. weight: math.unit(350, "lb"),
  23067. name: "Side",
  23068. image: {
  23069. source: "./media/characters/sheera-castellar/side.svg",
  23070. extra: 1957 / 1894
  23071. }
  23072. },
  23073. back: {
  23074. height: math.unit(8 + 4 / 12, "feet"),
  23075. weight: math.unit(350, "lb"),
  23076. name: "Back",
  23077. image: {
  23078. source: "./media/characters/sheera-castellar/back.svg",
  23079. extra: 1957 / 1894
  23080. }
  23081. },
  23082. angled: {
  23083. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23084. weight: math.unit(350, "lb"),
  23085. name: "Angled",
  23086. image: {
  23087. source: "./media/characters/sheera-castellar/angled.svg",
  23088. extra: 1807 / 1707,
  23089. bottom: 68 / 1875
  23090. }
  23091. },
  23092. genitals: {
  23093. height: math.unit(2.2, "feet"),
  23094. name: "Genitals",
  23095. image: {
  23096. source: "./media/characters/sheera-castellar/genitals.svg"
  23097. }
  23098. },
  23099. taur: {
  23100. height: math.unit(10 + 6/12, "feet"),
  23101. name: "Taur",
  23102. image: {
  23103. source: "./media/characters/sheera-castellar/taur.svg",
  23104. extra: 2017/1909,
  23105. bottom: 185/2202
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(8 + 4 / 12, "feet")
  23113. },
  23114. {
  23115. name: "Macro",
  23116. height: math.unit(150, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Macro+",
  23121. height: math.unit(800, "feet")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(6, "feet"),
  23130. weight: math.unit(150, "lb"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/jaipur/front.svg",
  23134. extra: 3860 / 3731,
  23135. bottom: 287 / 4140
  23136. }
  23137. },
  23138. back: {
  23139. height: math.unit(6, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Back",
  23142. image: {
  23143. source: "./media/characters/jaipur/back.svg",
  23144. extra: 4060 / 3930,
  23145. bottom: 151 / 4200
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(1.85, "meters"),
  23153. default: true
  23154. },
  23155. {
  23156. name: "Macro",
  23157. height: math.unit(150, "meters")
  23158. },
  23159. {
  23160. name: "Macro+",
  23161. height: math.unit(0.5, "miles")
  23162. },
  23163. {
  23164. name: "Macro++",
  23165. height: math.unit(2.5, "miles")
  23166. },
  23167. {
  23168. name: "Macro+++",
  23169. height: math.unit(12, "miles")
  23170. },
  23171. {
  23172. name: "Macro++++",
  23173. height: math.unit(120, "miles")
  23174. },
  23175. {
  23176. name: "Macro+++++",
  23177. height: math.unit(1200, "miles")
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/sheila-wolf/front.svg",
  23190. extra: 1931 / 1808,
  23191. bottom: 29.5 / 1960
  23192. }
  23193. },
  23194. dick: {
  23195. height: math.unit(1.464, "feet"),
  23196. name: "Dick",
  23197. image: {
  23198. source: "./media/characters/sheila-wolf/dick.svg"
  23199. }
  23200. },
  23201. muzzle: {
  23202. height: math.unit(0.513, "feet"),
  23203. name: "Muzzle",
  23204. image: {
  23205. source: "./media/characters/sheila-wolf/muzzle.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Macro",
  23212. height: math.unit(70, "feet"),
  23213. default: true
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(32, "meters"),
  23222. weight: math.unit(300000, "kg"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/almor/front.svg",
  23226. extra: 1408 / 1322,
  23227. bottom: 94.6 / 1506.5
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(32, "meters"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(7, "feet"),
  23244. weight: math.unit(200, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/silver/front.svg",
  23248. extra: 472.1 / 450.5,
  23249. bottom: 26.5 / 499.424
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(7, "feet"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(800, "feet")
  23262. },
  23263. {
  23264. name: "Megamacro",
  23265. height: math.unit(250, "miles")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23271. {
  23272. front: {
  23273. height: math.unit(6, "feet"),
  23274. weight: math.unit(150, "lb"),
  23275. name: "Front",
  23276. image: {
  23277. source: "./media/characters/pliskin/front.svg",
  23278. extra: 1469 / 1359,
  23279. bottom: 70 / 1540
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Micro",
  23286. height: math.unit(3, "inches")
  23287. },
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(5 + 11 / 12, "feet"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Macro",
  23295. height: math.unit(120, "feet")
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(6, "feet"),
  23304. weight: math.unit(150, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/sammy/front.svg",
  23308. extra: 1193 / 1089,
  23309. bottom: 30.5 / 1226
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Macro",
  23316. height: math.unit(1700, "feet"),
  23317. default: true
  23318. },
  23319. {
  23320. name: "Examacro",
  23321. height: math.unit(2.5e9, "lightyears")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(21, "meters"),
  23330. weight: math.unit(12, "tonnes"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/kuru/front.svg",
  23334. extra: 4301 / 3785,
  23335. bottom: 371.3 / 4691
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Macro",
  23342. height: math.unit(21, "meters"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(23, "meters"),
  23352. weight: math.unit(12.2, "tonnes"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/rakka/front.svg",
  23356. extra: 4670 / 4169,
  23357. bottom: 301 / 4968.7
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Macro",
  23364. height: math.unit(23, "meters"),
  23365. default: true
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(6, "feet"),
  23374. weight: math.unit(150, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/rhys-feline/front.svg",
  23378. extra: 2488 / 2308,
  23379. bottom: 35.67 / 2519.19
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Really Small",
  23386. height: math.unit(1, "nm")
  23387. },
  23388. {
  23389. name: "Micro",
  23390. height: math.unit(4, "inches")
  23391. },
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(4 + 10 / 12, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Macro",
  23399. height: math.unit(100, "feet")
  23400. },
  23401. {
  23402. name: "Megamacto",
  23403. height: math.unit(50, "miles")
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23409. {
  23410. side: {
  23411. height: math.unit(30, "feet"),
  23412. weight: math.unit(35000, "kg"),
  23413. name: "Side",
  23414. image: {
  23415. source: "./media/characters/alydar/side.svg",
  23416. extra: 234 / 222,
  23417. bottom: 6.5 / 241
  23418. }
  23419. },
  23420. front: {
  23421. height: math.unit(30, "feet"),
  23422. weight: math.unit(35000, "kg"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/alydar/front.svg",
  23426. extra: 223.37 / 210.2,
  23427. bottom: 22.3 / 246.76
  23428. }
  23429. },
  23430. top: {
  23431. height: math.unit(64.54, "feet"),
  23432. weight: math.unit(35000, "kg"),
  23433. name: "Top",
  23434. image: {
  23435. source: "./media/characters/alydar/top.svg"
  23436. }
  23437. },
  23438. anthro: {
  23439. height: math.unit(30, "feet"),
  23440. weight: math.unit(9000, "kg"),
  23441. name: "Anthro",
  23442. image: {
  23443. source: "./media/characters/alydar/anthro.svg",
  23444. extra: 432 / 421,
  23445. bottom: 7.18 / 440
  23446. }
  23447. },
  23448. maw: {
  23449. height: math.unit(11.693, "feet"),
  23450. name: "Maw",
  23451. image: {
  23452. source: "./media/characters/alydar/maw.svg"
  23453. }
  23454. },
  23455. head: {
  23456. height: math.unit(11.693, "feet"),
  23457. name: "Head",
  23458. image: {
  23459. source: "./media/characters/alydar/head.svg"
  23460. }
  23461. },
  23462. headAlt: {
  23463. height: math.unit(12.861, "feet"),
  23464. name: "Head (Alt)",
  23465. image: {
  23466. source: "./media/characters/alydar/head-alt.svg"
  23467. }
  23468. },
  23469. wing: {
  23470. height: math.unit(20.712, "feet"),
  23471. name: "Wing",
  23472. image: {
  23473. source: "./media/characters/alydar/wing.svg"
  23474. }
  23475. },
  23476. wingFeather: {
  23477. height: math.unit(9.662, "feet"),
  23478. name: "Wing Feather",
  23479. image: {
  23480. source: "./media/characters/alydar/wing-feather.svg"
  23481. }
  23482. },
  23483. countourFeather: {
  23484. height: math.unit(4.154, "feet"),
  23485. name: "Contour Feather",
  23486. image: {
  23487. source: "./media/characters/alydar/contour-feather.svg"
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Diplomatic",
  23494. height: math.unit(13, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Small",
  23499. height: math.unit(30, "feet")
  23500. },
  23501. {
  23502. name: "Normal",
  23503. height: math.unit(95, "feet"),
  23504. default: true
  23505. },
  23506. {
  23507. name: "Large",
  23508. height: math.unit(285, "feet")
  23509. },
  23510. {
  23511. name: "Incomprehensible",
  23512. height: math.unit(450, "megameters")
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23518. {
  23519. side: {
  23520. height: math.unit(11, "feet"),
  23521. weight: math.unit(1750, "kg"),
  23522. name: "Side",
  23523. image: {
  23524. source: "./media/characters/selicia/side.svg",
  23525. extra: 440 / 396,
  23526. bottom: 24.8 / 465.979
  23527. }
  23528. },
  23529. maw: {
  23530. height: math.unit(4.665, "feet"),
  23531. name: "Maw",
  23532. image: {
  23533. source: "./media/characters/selicia/maw.svg"
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Normal",
  23540. height: math.unit(11, "feet"),
  23541. default: true
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23547. {
  23548. side: {
  23549. height: math.unit(2 + 6 / 12, "feet"),
  23550. weight: math.unit(30, "lb"),
  23551. name: "Side",
  23552. image: {
  23553. source: "./media/characters/layla/side.svg",
  23554. extra: 244 / 188,
  23555. bottom: 18.2 / 262.1
  23556. }
  23557. },
  23558. back: {
  23559. height: math.unit(2 + 6 / 12, "feet"),
  23560. weight: math.unit(30, "lb"),
  23561. name: "Back",
  23562. image: {
  23563. source: "./media/characters/layla/back.svg",
  23564. extra: 308 / 241.5,
  23565. bottom: 8.9 / 316.8
  23566. }
  23567. },
  23568. cumming: {
  23569. height: math.unit(2 + 6 / 12, "feet"),
  23570. weight: math.unit(30, "lb"),
  23571. name: "Cumming",
  23572. image: {
  23573. source: "./media/characters/layla/cumming.svg",
  23574. extra: 342 / 279,
  23575. bottom: 595 / 938
  23576. }
  23577. },
  23578. dickFlaccid: {
  23579. height: math.unit(2.595, "feet"),
  23580. name: "Flaccid Genitals",
  23581. image: {
  23582. source: "./media/characters/layla/dick-flaccid.svg"
  23583. }
  23584. },
  23585. dickErect: {
  23586. height: math.unit(2.359, "feet"),
  23587. name: "Erect Genitals",
  23588. image: {
  23589. source: "./media/characters/layla/dick-erect.svg"
  23590. }
  23591. },
  23592. dragon: {
  23593. height: math.unit(40, "feet"),
  23594. name: "Dragon",
  23595. image: {
  23596. source: "./media/characters/layla/dragon.svg",
  23597. extra: 610/535,
  23598. bottom: 367/977
  23599. }
  23600. },
  23601. taur: {
  23602. height: math.unit(30, "feet"),
  23603. name: "Taur",
  23604. image: {
  23605. source: "./media/characters/layla/taur.svg",
  23606. extra: 1268/1199,
  23607. bottom: 112/1380
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(1, "inch")
  23615. },
  23616. {
  23617. name: "Small",
  23618. height: math.unit(1, "foot")
  23619. },
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(2 + 6 / 12, "feet"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(200, "feet")
  23628. },
  23629. {
  23630. name: "Megamacro",
  23631. height: math.unit(1000, "miles")
  23632. },
  23633. {
  23634. name: "Planetary",
  23635. height: math.unit(8000, "miles")
  23636. },
  23637. {
  23638. name: "True Layla",
  23639. height: math.unit(200000 * 7, "multiverses")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23645. {
  23646. back: {
  23647. height: math.unit(10.5, "feet"),
  23648. weight: math.unit(800, "lb"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/knox/back.svg",
  23652. extra: 1486 / 1089,
  23653. bottom: 107 / 1601.4
  23654. }
  23655. },
  23656. side: {
  23657. height: math.unit(10.5, "feet"),
  23658. weight: math.unit(800, "lb"),
  23659. name: "Side",
  23660. image: {
  23661. source: "./media/characters/knox/side.svg",
  23662. extra: 244 / 218,
  23663. bottom: 14 / 260
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Compact",
  23670. height: math.unit(10.5, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Dynamax",
  23675. height: math.unit(210, "feet")
  23676. },
  23677. {
  23678. name: "Full Macro",
  23679. height: math.unit(850, "feet")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(28, "feet"),
  23688. weight: math.unit(10500, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/kayda/front.svg",
  23692. extra: 1536 / 1428,
  23693. bottom: 68.7 / 1603
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(28, "feet"),
  23698. weight: math.unit(10500, "lb"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/kayda/back.svg",
  23702. extra: 1557 / 1464,
  23703. bottom: 39.5 / 1597.49
  23704. }
  23705. },
  23706. dick: {
  23707. height: math.unit(3.858, "feet"),
  23708. name: "Dick",
  23709. image: {
  23710. source: "./media/characters/kayda/dick.svg"
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Macro",
  23717. height: math.unit(28, "feet"),
  23718. default: true
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23724. {
  23725. front: {
  23726. height: math.unit(10 + 11 / 12, "feet"),
  23727. weight: math.unit(1400, "lb"),
  23728. name: "Front",
  23729. image: {
  23730. source: "./media/characters/brian/front.svg",
  23731. extra: 737 / 692,
  23732. bottom: 55.4 / 785
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(10 + 11 / 12, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(5 + 8 / 12, "feet"),
  23749. weight: math.unit(140, "lb"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/khemri/front.svg",
  23753. extra: 4780 / 4059,
  23754. bottom: 80.1 / 4859.25
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Micro",
  23761. height: math.unit(6, "inches")
  23762. },
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 8 / 12, "feet"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23772. {
  23773. front: {
  23774. height: math.unit(13, "feet"),
  23775. weight: math.unit(1700, "lb"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/felix-braveheart/front.svg",
  23779. extra: 1222 / 1157,
  23780. bottom: 53.2 / 1280
  23781. }
  23782. },
  23783. back: {
  23784. height: math.unit(13, "feet"),
  23785. weight: math.unit(1700, "lb"),
  23786. name: "Back",
  23787. image: {
  23788. source: "./media/characters/felix-braveheart/back.svg",
  23789. extra: 1277 / 1203,
  23790. bottom: 50.2 / 1327
  23791. }
  23792. },
  23793. feral: {
  23794. height: math.unit(6, "feet"),
  23795. weight: math.unit(400, "lb"),
  23796. name: "Feral",
  23797. image: {
  23798. source: "./media/characters/felix-braveheart/feral.svg",
  23799. extra: 682 / 625,
  23800. bottom: 6.9 / 688
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Normal",
  23807. height: math.unit(13, "feet"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23814. {
  23815. side: {
  23816. height: math.unit(5 + 11 / 12, "feet"),
  23817. weight: math.unit(1400, "lb"),
  23818. name: "Side",
  23819. image: {
  23820. source: "./media/characters/shadow-blade/side.svg",
  23821. extra: 1726 / 1267,
  23822. bottom: 58.4 / 1785
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(5 + 11 / 12, "feet"),
  23830. default: true
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(1 + 6 / 12, "feet"),
  23839. weight: math.unit(25, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/karla-halldor/front.svg",
  23843. extra: 1459 / 1383,
  23844. bottom: 12 / 1472
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Normal",
  23851. height: math.unit(1 + 6 / 12, "feet"),
  23852. default: true
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23858. {
  23859. front: {
  23860. height: math.unit(6 + 2 / 12, "feet"),
  23861. weight: math.unit(160, "lb"),
  23862. name: "Front",
  23863. image: {
  23864. source: "./media/characters/ariam/front.svg",
  23865. extra: 714 / 617,
  23866. bottom: 23.4 / 737,
  23867. }
  23868. },
  23869. squatting: {
  23870. height: math.unit(4.1, "feet"),
  23871. weight: math.unit(160, "lb"),
  23872. name: "Squatting",
  23873. image: {
  23874. source: "./media/characters/ariam/squatting.svg",
  23875. extra: 2617 / 2112,
  23876. bottom: 61.2 / 2681,
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Normal",
  23883. height: math.unit(6 + 2 / 12, "feet"),
  23884. default: true
  23885. },
  23886. {
  23887. name: "Normal+",
  23888. height: math.unit(4, "meters")
  23889. },
  23890. {
  23891. name: "Macro",
  23892. height: math.unit(50, "meters")
  23893. },
  23894. {
  23895. name: "Macro+",
  23896. height: math.unit(100, "meters")
  23897. },
  23898. {
  23899. name: "Megamacro",
  23900. height: math.unit(20, "km")
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(1.67, "meters"),
  23909. weight: math.unit(140, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23913. extra: 438 / 410,
  23914. bottom: 0.75 / 439
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Shrunken",
  23921. height: math.unit(7.6, "cm")
  23922. },
  23923. {
  23924. name: "Human Scale",
  23925. height: math.unit(1.67, "meters")
  23926. },
  23927. {
  23928. name: "Wolxi Scale",
  23929. height: math.unit(36.7, "meters"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(1.73, "meters"),
  23939. weight: math.unit(240, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/izue-two-mothers/front.svg",
  23943. extra: 469 / 437,
  23944. bottom: 1.24 / 470.6
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Shrunken",
  23951. height: math.unit(7.86, "cm")
  23952. },
  23953. {
  23954. name: "Human Scale",
  23955. height: math.unit(1.73, "meters")
  23956. },
  23957. {
  23958. name: "Wolxi Scale",
  23959. height: math.unit(38, "meters"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(1.55, "meters"),
  23969. weight: math.unit(120, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/teeku-love-shack/front.svg",
  23973. extra: 387 / 362,
  23974. bottom: 1.51 / 388
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Shrunken",
  23981. height: math.unit(7, "cm")
  23982. },
  23983. {
  23984. name: "Human Scale",
  23985. height: math.unit(1.55, "meters")
  23986. },
  23987. {
  23988. name: "Wolxi Scale",
  23989. height: math.unit(34.1, "meters"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(1.83, "meters"),
  23999. weight: math.unit(135, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/dejma-the-red/front.svg",
  24003. extra: 480 / 458,
  24004. bottom: 1.8 / 482
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Shrunken",
  24011. height: math.unit(8.3, "cm")
  24012. },
  24013. {
  24014. name: "Human Scale",
  24015. height: math.unit(1.83, "meters")
  24016. },
  24017. {
  24018. name: "Wolxi Scale",
  24019. height: math.unit(40, "meters"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(1.78, "meters"),
  24029. weight: math.unit(65, "kg"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/aki/front.svg",
  24033. extra: 452 / 415
  24034. }
  24035. },
  24036. frontNsfw: {
  24037. height: math.unit(1.78, "meters"),
  24038. weight: math.unit(65, "kg"),
  24039. name: "Front (NSFW)",
  24040. image: {
  24041. source: "./media/characters/aki/front-nsfw.svg",
  24042. extra: 452 / 415
  24043. }
  24044. },
  24045. back: {
  24046. height: math.unit(1.78, "meters"),
  24047. weight: math.unit(65, "kg"),
  24048. name: "Back",
  24049. image: {
  24050. source: "./media/characters/aki/back.svg",
  24051. extra: 452 / 415
  24052. }
  24053. },
  24054. rump: {
  24055. height: math.unit(2.05, "feet"),
  24056. name: "Rump",
  24057. image: {
  24058. source: "./media/characters/aki/rump.svg"
  24059. }
  24060. },
  24061. dick: {
  24062. height: math.unit(0.95, "feet"),
  24063. name: "Dick",
  24064. image: {
  24065. source: "./media/characters/aki/dick.svg"
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Micro",
  24072. height: math.unit(15, "cm")
  24073. },
  24074. {
  24075. name: "Normal",
  24076. height: math.unit(178, "cm"),
  24077. default: true
  24078. },
  24079. {
  24080. name: "Macro",
  24081. height: math.unit(214, "m")
  24082. },
  24083. {
  24084. name: "Macro+",
  24085. height: math.unit(534, "m")
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24091. {
  24092. front: {
  24093. height: math.unit(5 + 5 / 12, "feet"),
  24094. weight: math.unit(120, "lb"),
  24095. name: "Front",
  24096. image: {
  24097. source: "./media/characters/ari/front.svg",
  24098. extra: 714.5 / 682,
  24099. bottom: 8 / 722.5
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(5 + 5 / 12, "feet")
  24107. },
  24108. {
  24109. name: "Macro",
  24110. height: math.unit(100, "feet"),
  24111. default: true
  24112. },
  24113. {
  24114. name: "Megamacro",
  24115. height: math.unit(100, "miles")
  24116. },
  24117. {
  24118. name: "Gigamacro",
  24119. height: math.unit(80000, "miles")
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24125. {
  24126. side: {
  24127. height: math.unit(9, "feet"),
  24128. weight: math.unit(400, "kg"),
  24129. name: "Side",
  24130. image: {
  24131. source: "./media/characters/bolt/side.svg",
  24132. extra: 1126 / 896,
  24133. bottom: 60 / 1187.3,
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Micro",
  24140. height: math.unit(5, "inches")
  24141. },
  24142. {
  24143. name: "Normal",
  24144. height: math.unit(9, "feet"),
  24145. default: true
  24146. },
  24147. {
  24148. name: "Macro",
  24149. height: math.unit(700, "feet")
  24150. },
  24151. {
  24152. name: "Max Size",
  24153. height: math.unit(1.52e22, "yottameters")
  24154. },
  24155. ]
  24156. ))
  24157. characterMakers.push(() => makeCharacter(
  24158. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24159. {
  24160. front: {
  24161. height: math.unit(4.53, "meters"),
  24162. weight: math.unit(3, "tons"),
  24163. name: "Front",
  24164. image: {
  24165. source: "./media/characters/draekon-sylviar/front.svg",
  24166. extra: 1228 / 1068,
  24167. bottom: 41 / 1270
  24168. }
  24169. },
  24170. tail: {
  24171. height: math.unit(1.772, "meter"),
  24172. name: "Tail",
  24173. image: {
  24174. source: "./media/characters/draekon-sylviar/tail.svg"
  24175. }
  24176. },
  24177. head: {
  24178. height: math.unit(1.331, "meter"),
  24179. name: "Head",
  24180. image: {
  24181. source: "./media/characters/draekon-sylviar/head.svg"
  24182. }
  24183. },
  24184. hand: {
  24185. height: math.unit(0.564, "meter"),
  24186. name: "Hand",
  24187. image: {
  24188. source: "./media/characters/draekon-sylviar/hand.svg"
  24189. }
  24190. },
  24191. foot: {
  24192. height: math.unit(0.621, "meter"),
  24193. name: "Foot",
  24194. image: {
  24195. source: "./media/characters/draekon-sylviar/foot.svg",
  24196. bottom: 32 / 324
  24197. }
  24198. },
  24199. dick: {
  24200. height: math.unit(61, "cm"),
  24201. name: "Dick",
  24202. image: {
  24203. source: "./media/characters/draekon-sylviar/dick.svg"
  24204. }
  24205. },
  24206. dickseparated: {
  24207. height: math.unit(61, "cm"),
  24208. name: "Dick-separated",
  24209. image: {
  24210. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Small",
  24217. height: math.unit(4.53 / 2, "meters"),
  24218. default: true
  24219. },
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(4.53, "meters"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Large",
  24227. height: math.unit(4.53 * 2, "meters"),
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24233. {
  24234. front: {
  24235. height: math.unit(6 + 2 / 12, "feet"),
  24236. weight: math.unit(180, "lb"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/brawler/front.svg",
  24240. extra: 3301 / 3027,
  24241. bottom: 138 / 3439
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(6 + 2 / 12, "feet"),
  24249. default: true
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24255. {
  24256. front: {
  24257. height: math.unit(11, "feet"),
  24258. weight: math.unit(1000, "lb"),
  24259. name: "Front",
  24260. image: {
  24261. source: "./media/characters/alex/front.svg",
  24262. bottom: 44.5 / 620
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Micro",
  24269. height: math.unit(5, "inches")
  24270. },
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(11, "feet"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Macro",
  24278. height: math.unit(9.5e9, "feet")
  24279. },
  24280. {
  24281. name: "Max Size",
  24282. height: math.unit(1.4e283, "yottameters")
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24288. {
  24289. female: {
  24290. height: math.unit(29.9, "m"),
  24291. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24292. name: "Female",
  24293. image: {
  24294. source: "./media/characters/zenari/female.svg",
  24295. extra: 3281.6 / 3217,
  24296. bottom: 72.2 / 3353
  24297. }
  24298. },
  24299. male: {
  24300. height: math.unit(27.7, "m"),
  24301. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24302. name: "Male",
  24303. image: {
  24304. source: "./media/characters/zenari/male.svg",
  24305. extra: 3008 / 2991,
  24306. bottom: 54.6 / 3069
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Macro",
  24313. height: math.unit(29.7, "meters"),
  24314. default: true
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24320. {
  24321. female: {
  24322. height: math.unit(23.8, "m"),
  24323. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24324. name: "Female",
  24325. image: {
  24326. source: "./media/characters/mactarian/female.svg",
  24327. extra: 2662 / 2569,
  24328. bottom: 73 / 2736
  24329. }
  24330. },
  24331. male: {
  24332. height: math.unit(23.8, "m"),
  24333. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24334. name: "Male",
  24335. image: {
  24336. source: "./media/characters/mactarian/male.svg",
  24337. extra: 2673 / 2600,
  24338. bottom: 76 / 2750
  24339. }
  24340. },
  24341. },
  24342. [
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(23.8, "meters"),
  24346. default: true
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24352. {
  24353. female: {
  24354. height: math.unit(19.3, "m"),
  24355. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24356. name: "Female",
  24357. image: {
  24358. source: "./media/characters/umok/female.svg",
  24359. extra: 2186 / 2078,
  24360. bottom: 87 / 2277
  24361. }
  24362. },
  24363. male: {
  24364. height: math.unit(19.5, "m"),
  24365. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24366. name: "Male",
  24367. image: {
  24368. source: "./media/characters/umok/male.svg",
  24369. extra: 2233 / 2140,
  24370. bottom: 24.4 / 2258
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(19.3, "meters"),
  24378. default: true
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24384. {
  24385. female: {
  24386. height: math.unit(26.15, "m"),
  24387. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24388. name: "Female",
  24389. image: {
  24390. source: "./media/characters/joraxian/female.svg",
  24391. extra: 2912 / 2824,
  24392. bottom: 36 / 2956
  24393. }
  24394. },
  24395. male: {
  24396. height: math.unit(25.4, "m"),
  24397. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24398. name: "Male",
  24399. image: {
  24400. source: "./media/characters/joraxian/male.svg",
  24401. extra: 2877 / 2721,
  24402. bottom: 82 / 2967
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(26.15, "meters"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24416. {
  24417. female: {
  24418. height: math.unit(21.6, "m"),
  24419. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24420. name: "Female",
  24421. image: {
  24422. source: "./media/characters/sthara/female.svg",
  24423. extra: 2516 / 2347,
  24424. bottom: 21.5 / 2537
  24425. }
  24426. },
  24427. male: {
  24428. height: math.unit(24, "m"),
  24429. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24430. name: "Male",
  24431. image: {
  24432. source: "./media/characters/sthara/male.svg",
  24433. extra: 2732 / 2607,
  24434. bottom: 23 / 2732
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Macro",
  24441. height: math.unit(21.6, "meters"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(6 + 4 / 12, "feet"),
  24451. weight: math.unit(175, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/luka-bryzant/front.svg",
  24455. extra: 311 / 289,
  24456. bottom: 4 / 315
  24457. }
  24458. },
  24459. back: {
  24460. height: math.unit(6 + 4 / 12, "feet"),
  24461. weight: math.unit(175, "lb"),
  24462. name: "Back",
  24463. image: {
  24464. source: "./media/characters/luka-bryzant/back.svg",
  24465. extra: 311 / 289,
  24466. bottom: 3.8 / 313.7
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Micro",
  24473. height: math.unit(10, "inches")
  24474. },
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(6 + 4 / 12, "feet"),
  24478. default: true
  24479. },
  24480. {
  24481. name: "Large",
  24482. height: math.unit(12, "feet")
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(5 + 7 / 12, "feet"),
  24491. weight: math.unit(185, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/aman-aquila/front.svg",
  24495. extra: 1013 / 976,
  24496. bottom: 45.6 / 1057
  24497. }
  24498. },
  24499. side: {
  24500. height: math.unit(5 + 7 / 12, "feet"),
  24501. weight: math.unit(185, "lb"),
  24502. name: "Side",
  24503. image: {
  24504. source: "./media/characters/aman-aquila/side.svg",
  24505. extra: 1054 / 1011,
  24506. bottom: 15 / 1070
  24507. }
  24508. },
  24509. back: {
  24510. height: math.unit(5 + 7 / 12, "feet"),
  24511. weight: math.unit(185, "lb"),
  24512. name: "Back",
  24513. image: {
  24514. source: "./media/characters/aman-aquila/back.svg",
  24515. extra: 1026 / 970,
  24516. bottom: 12 / 1039
  24517. }
  24518. },
  24519. head: {
  24520. height: math.unit(1.211, "feet"),
  24521. name: "Head",
  24522. image: {
  24523. source: "./media/characters/aman-aquila/head.svg",
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Minimicro",
  24530. height: math.unit(0.057, "inches")
  24531. },
  24532. {
  24533. name: "Micro",
  24534. height: math.unit(7, "inches")
  24535. },
  24536. {
  24537. name: "Mini",
  24538. height: math.unit(3 + 7 / 12, "feet")
  24539. },
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(5 + 7 / 12, "feet"),
  24543. default: true
  24544. },
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(157 + 7 / 12, "feet")
  24548. },
  24549. {
  24550. name: "Megamacro",
  24551. height: math.unit(1557 + 7 / 12, "feet")
  24552. },
  24553. {
  24554. name: "Gigamacro",
  24555. height: math.unit(15557 + 7 / 12, "feet")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(3 + 2 / 12, "inches"),
  24564. weight: math.unit(0.3, "ounces"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/hiphae/front.svg",
  24568. extra: 1931 / 1683,
  24569. bottom: 24 / 1955
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(3 + 1 / 2, "inches"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(5 + 10 / 12, "feet"),
  24586. weight: math.unit(165, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/nicky/front.svg",
  24590. extra: 3144 / 2886,
  24591. bottom: 45.6 / 3192
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(5 + 10 / 12, "feet"),
  24596. weight: math.unit(165, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/nicky/back.svg",
  24600. extra: 3055 / 2804,
  24601. bottom: 28.4 / 3087
  24602. }
  24603. },
  24604. frontclothed: {
  24605. height: math.unit(5 + 10 / 12, "feet"),
  24606. weight: math.unit(165, "lb"),
  24607. name: "Front-clothed",
  24608. image: {
  24609. source: "./media/characters/nicky/front-clothed.svg",
  24610. extra: 3184.9 / 2926.9,
  24611. bottom: 86.5 / 3239.9
  24612. }
  24613. },
  24614. foot: {
  24615. height: math.unit(1.16, "feet"),
  24616. name: "Foot",
  24617. image: {
  24618. source: "./media/characters/nicky/foot.svg"
  24619. }
  24620. },
  24621. feet: {
  24622. height: math.unit(1.34, "feet"),
  24623. name: "Feet",
  24624. image: {
  24625. source: "./media/characters/nicky/feet.svg"
  24626. }
  24627. },
  24628. maw: {
  24629. height: math.unit(0.9, "feet"),
  24630. name: "Maw",
  24631. image: {
  24632. source: "./media/characters/nicky/maw.svg"
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Normal",
  24639. height: math.unit(5 + 10 / 12, "feet"),
  24640. default: true
  24641. },
  24642. {
  24643. name: "Macro",
  24644. height: math.unit(60, "feet")
  24645. },
  24646. {
  24647. name: "Megamacro",
  24648. height: math.unit(1, "mile")
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24654. {
  24655. side: {
  24656. height: math.unit(10, "feet"),
  24657. weight: math.unit(600, "lb"),
  24658. name: "Side",
  24659. image: {
  24660. source: "./media/characters/blair/side.svg",
  24661. bottom: 16.6 / 475,
  24662. extra: 458 / 431
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Micro",
  24669. height: math.unit(8, "inches")
  24670. },
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(10, "feet"),
  24674. default: true
  24675. },
  24676. {
  24677. name: "Macro",
  24678. height: math.unit(180, "feet")
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24684. {
  24685. front: {
  24686. height: math.unit(5 + 4 / 12, "feet"),
  24687. weight: math.unit(125, "lb"),
  24688. name: "Front",
  24689. image: {
  24690. source: "./media/characters/fisher/front.svg",
  24691. extra: 444 / 390,
  24692. bottom: 2 / 444.8
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Micro",
  24699. height: math.unit(4, "inches")
  24700. },
  24701. {
  24702. name: "Normal",
  24703. height: math.unit(5 + 4 / 12, "feet"),
  24704. default: true
  24705. },
  24706. {
  24707. name: "Macro",
  24708. height: math.unit(100, "feet")
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(6.71, "feet"),
  24717. weight: math.unit(200, "lb"),
  24718. capacity: math.unit(1000000, "people"),
  24719. name: "Front",
  24720. image: {
  24721. source: "./media/characters/gliss/front.svg",
  24722. extra: 2347 / 2231,
  24723. bottom: 113 / 2462
  24724. }
  24725. },
  24726. hammerspaceSize: {
  24727. height: math.unit(6.71 * 717, "feet"),
  24728. weight: math.unit(200, "lb"),
  24729. capacity: math.unit(1000000, "people"),
  24730. name: "Hammerspace Size",
  24731. image: {
  24732. source: "./media/characters/gliss/front.svg",
  24733. extra: 2347 / 2231,
  24734. bottom: 113 / 2462
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(6.71, "feet"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24748. {
  24749. side: {
  24750. height: math.unit(1.44, "m"),
  24751. weight: math.unit(80, "kg"),
  24752. name: "Side",
  24753. image: {
  24754. source: "./media/characters/dune-anderson/side.svg",
  24755. bottom: 49 / 1426
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Wolf-sized",
  24762. height: math.unit(1.44, "meters")
  24763. },
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(5.05, "meters"),
  24767. default: true
  24768. },
  24769. {
  24770. name: "Big",
  24771. height: math.unit(14.4, "meters")
  24772. },
  24773. {
  24774. name: "Huge",
  24775. height: math.unit(144, "meters")
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(7, "feet"),
  24784. weight: math.unit(425, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/hind/front.svg",
  24788. extra: 2091 / 1860,
  24789. bottom: 129 / 2220
  24790. }
  24791. },
  24792. back: {
  24793. height: math.unit(7, "feet"),
  24794. weight: math.unit(425, "lb"),
  24795. name: "Back",
  24796. image: {
  24797. source: "./media/characters/hind/back.svg",
  24798. extra: 2091 / 1860,
  24799. bottom: 24.6 / 2309
  24800. }
  24801. },
  24802. tail: {
  24803. height: math.unit(2.8, "feet"),
  24804. name: "Tail",
  24805. image: {
  24806. source: "./media/characters/hind/tail.svg"
  24807. }
  24808. },
  24809. head: {
  24810. height: math.unit(2.55, "feet"),
  24811. name: "Head",
  24812. image: {
  24813. source: "./media/characters/hind/head.svg"
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "XS",
  24820. height: math.unit(0.7, "feet")
  24821. },
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(7, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "XL",
  24829. height: math.unit(70, "feet")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(6, "feet"),
  24838. weight: math.unit(150, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/tharquench-sizestealer/front.svg",
  24842. extra: 2318 / 2063,
  24843. bottom: 93.4 / 2410
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Nano",
  24850. height: math.unit(1, "mm")
  24851. },
  24852. {
  24853. name: "Micro",
  24854. height: math.unit(1, "cm")
  24855. },
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(2.1, "meters"),
  24859. default: true
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24865. {
  24866. front: {
  24867. height: math.unit(7 + 5 / 12, "feet"),
  24868. weight: math.unit(357, "lb"),
  24869. name: "Front",
  24870. image: {
  24871. source: "./media/characters/solex-draconov/front.svg",
  24872. extra: 1993 / 1865,
  24873. bottom: 117 / 2111
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Natural Height",
  24880. height: math.unit(7 + 5 / 12, "feet"),
  24881. default: true
  24882. },
  24883. {
  24884. name: "Macro",
  24885. height: math.unit(350, "feet")
  24886. },
  24887. {
  24888. name: "Macro+",
  24889. height: math.unit(1000, "feet")
  24890. },
  24891. {
  24892. name: "Megamacro",
  24893. height: math.unit(20, "km")
  24894. },
  24895. {
  24896. name: "Megamacro+",
  24897. height: math.unit(1000, "km")
  24898. },
  24899. {
  24900. name: "Gigamacro",
  24901. height: math.unit(2.5, "Gm")
  24902. },
  24903. {
  24904. name: "Teramacro",
  24905. height: math.unit(15, "Tm")
  24906. },
  24907. {
  24908. name: "Galactic",
  24909. height: math.unit(30, "Zm")
  24910. },
  24911. {
  24912. name: "Universal",
  24913. height: math.unit(21000, "Ym")
  24914. },
  24915. {
  24916. name: "Omniversal",
  24917. height: math.unit(9.861e50, "Ym")
  24918. },
  24919. {
  24920. name: "Existential",
  24921. height: math.unit(1e300, "meters")
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24927. {
  24928. side: {
  24929. height: math.unit(25, "feet"),
  24930. weight: math.unit(90000, "lb"),
  24931. name: "Side",
  24932. image: {
  24933. source: "./media/characters/mandarax/side.svg",
  24934. extra: 614 / 332,
  24935. bottom: 55 / 630
  24936. }
  24937. },
  24938. head: {
  24939. height: math.unit(11.4, "feet"),
  24940. name: "Head",
  24941. image: {
  24942. source: "./media/characters/mandarax/head.svg"
  24943. }
  24944. },
  24945. belly: {
  24946. height: math.unit(33, "feet"),
  24947. name: "Belly",
  24948. capacity: math.unit(500, "people"),
  24949. image: {
  24950. source: "./media/characters/mandarax/belly.svg"
  24951. }
  24952. },
  24953. dick: {
  24954. height: math.unit(8.46, "feet"),
  24955. name: "Dick",
  24956. image: {
  24957. source: "./media/characters/mandarax/dick.svg"
  24958. }
  24959. },
  24960. top: {
  24961. height: math.unit(28, "meters"),
  24962. name: "Top",
  24963. image: {
  24964. source: "./media/characters/mandarax/top.svg"
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(25, "feet"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(5, "feet"),
  24981. weight: math.unit(90, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/pixil/front.svg",
  24985. extra: 2000 / 1618,
  24986. bottom: 12.3 / 2011
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(5, "feet"),
  24994. default: true
  24995. },
  24996. {
  24997. name: "Megamacro",
  24998. height: math.unit(10, "miles"),
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25004. {
  25005. front: {
  25006. height: math.unit(7 + 2 / 12, "feet"),
  25007. weight: math.unit(200, "lb"),
  25008. name: "Front",
  25009. image: {
  25010. source: "./media/characters/angel/front.svg",
  25011. extra: 1830 / 1737,
  25012. bottom: 22.6 / 1854,
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Normal",
  25019. height: math.unit(7 + 2 / 12, "feet"),
  25020. default: true
  25021. },
  25022. {
  25023. name: "Macro",
  25024. height: math.unit(1000, "feet")
  25025. },
  25026. {
  25027. name: "Megamacro",
  25028. height: math.unit(2, "miles")
  25029. },
  25030. {
  25031. name: "Gigamacro",
  25032. height: math.unit(20, "earths")
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25038. {
  25039. front: {
  25040. height: math.unit(5, "feet"),
  25041. weight: math.unit(180, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/mekana/front.svg",
  25045. extra: 1671 / 1605,
  25046. bottom: 3.5 / 1691
  25047. }
  25048. },
  25049. side: {
  25050. height: math.unit(5, "feet"),
  25051. weight: math.unit(180, "lb"),
  25052. name: "Side",
  25053. image: {
  25054. source: "./media/characters/mekana/side.svg",
  25055. extra: 1671 / 1605,
  25056. bottom: 3.5 / 1691
  25057. }
  25058. },
  25059. back: {
  25060. height: math.unit(5, "feet"),
  25061. weight: math.unit(180, "lb"),
  25062. name: "Back",
  25063. image: {
  25064. source: "./media/characters/mekana/back.svg",
  25065. extra: 1671 / 1605,
  25066. bottom: 3.5 / 1691
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(5, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(4 + 6 / 12, "feet"),
  25083. weight: math.unit(80, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/pixie/front.svg",
  25087. extra: 1924 / 1825,
  25088. bottom: 22.4 / 1946
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(4 + 6 / 12, "feet"),
  25096. default: true
  25097. },
  25098. {
  25099. name: "Macro",
  25100. height: math.unit(40, "feet")
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25106. {
  25107. front: {
  25108. height: math.unit(2.1, "meters"),
  25109. weight: math.unit(200, "lb"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/the-lascivious/front.svg",
  25113. extra: 1 / 0.893,
  25114. bottom: 3.5 / 573.7
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Human Scale",
  25121. height: math.unit(2.1, "meters")
  25122. },
  25123. {
  25124. name: "Wolxi Scale",
  25125. height: math.unit(46.2, "m"),
  25126. default: true
  25127. },
  25128. {
  25129. name: "Boinker of Buildings",
  25130. height: math.unit(10, "km")
  25131. },
  25132. {
  25133. name: "Shagger of Skyscrapers",
  25134. height: math.unit(40, "km")
  25135. },
  25136. {
  25137. name: "Banger of Boroughs",
  25138. height: math.unit(4000, "km")
  25139. },
  25140. {
  25141. name: "Screwer of States",
  25142. height: math.unit(100000, "km")
  25143. },
  25144. {
  25145. name: "Pounder of Planets",
  25146. height: math.unit(2000000, "km")
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(6, "feet"),
  25155. weight: math.unit(150, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/aj/front.svg",
  25159. extra: 2039 / 1562,
  25160. bottom: 40 / 2079
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(11 + 6 / 12, "feet"),
  25168. default: true
  25169. },
  25170. {
  25171. name: "Megamacro",
  25172. height: math.unit(60, "megameters")
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25178. {
  25179. side: {
  25180. height: math.unit(31 + 8 / 12, "feet"),
  25181. weight: math.unit(75000, "kg"),
  25182. name: "Side",
  25183. image: {
  25184. source: "./media/characters/koros/side.svg",
  25185. extra: 1442 / 1297,
  25186. bottom: 122.7 / 1562
  25187. }
  25188. },
  25189. dicksKingsCrown: {
  25190. height: math.unit(6, "feet"),
  25191. name: "Dicks (King's Crown)",
  25192. image: {
  25193. source: "./media/characters/koros/dicks-kings-crown.svg"
  25194. }
  25195. },
  25196. dicksTailSet: {
  25197. height: math.unit(3, "feet"),
  25198. name: "Dicks (Tail Set)",
  25199. image: {
  25200. source: "./media/characters/koros/dicks-tail-set.svg"
  25201. }
  25202. },
  25203. dickCumming: {
  25204. height: math.unit(7.98, "feet"),
  25205. name: "Dick (Cumming)",
  25206. image: {
  25207. source: "./media/characters/koros/dick-cumming.svg"
  25208. }
  25209. },
  25210. dicksBack: {
  25211. height: math.unit(5.9, "feet"),
  25212. name: "Dicks (Back)",
  25213. image: {
  25214. source: "./media/characters/koros/dicks-back.svg"
  25215. }
  25216. },
  25217. dicksFront: {
  25218. height: math.unit(3.72, "feet"),
  25219. name: "Dicks (Front)",
  25220. image: {
  25221. source: "./media/characters/koros/dicks-front.svg"
  25222. }
  25223. },
  25224. dicksPeeking: {
  25225. height: math.unit(3.0, "feet"),
  25226. name: "Dicks (Peeking)",
  25227. image: {
  25228. source: "./media/characters/koros/dicks-peeking.svg"
  25229. }
  25230. },
  25231. eye: {
  25232. height: math.unit(1.7, "feet"),
  25233. name: "Eye",
  25234. image: {
  25235. source: "./media/characters/koros/eye.svg"
  25236. }
  25237. },
  25238. headFront: {
  25239. height: math.unit(11.69, "feet"),
  25240. name: "Head (Front)",
  25241. image: {
  25242. source: "./media/characters/koros/head-front.svg"
  25243. }
  25244. },
  25245. headSide: {
  25246. height: math.unit(14, "feet"),
  25247. name: "Head (Side)",
  25248. image: {
  25249. source: "./media/characters/koros/head-side.svg"
  25250. }
  25251. },
  25252. leg: {
  25253. height: math.unit(17, "feet"),
  25254. name: "Leg",
  25255. image: {
  25256. source: "./media/characters/koros/leg.svg"
  25257. }
  25258. },
  25259. mawSide: {
  25260. height: math.unit(12.8, "feet"),
  25261. name: "Maw (Side)",
  25262. image: {
  25263. source: "./media/characters/koros/maw-side.svg"
  25264. }
  25265. },
  25266. mawSpitting: {
  25267. height: math.unit(17, "feet"),
  25268. name: "Maw (Spitting)",
  25269. image: {
  25270. source: "./media/characters/koros/maw-spitting.svg"
  25271. }
  25272. },
  25273. slit: {
  25274. height: math.unit(2.8, "feet"),
  25275. name: "Slit",
  25276. image: {
  25277. source: "./media/characters/koros/slit.svg"
  25278. }
  25279. },
  25280. stomach: {
  25281. height: math.unit(6.8, "feet"),
  25282. capacity: math.unit(20, "people"),
  25283. name: "Stomach",
  25284. image: {
  25285. source: "./media/characters/koros/stomach.svg"
  25286. }
  25287. },
  25288. wingspanBottom: {
  25289. height: math.unit(114, "feet"),
  25290. name: "Wingspan (Bottom)",
  25291. image: {
  25292. source: "./media/characters/koros/wingspan-bottom.svg"
  25293. }
  25294. },
  25295. wingspanTop: {
  25296. height: math.unit(104, "feet"),
  25297. name: "Wingspan (Top)",
  25298. image: {
  25299. source: "./media/characters/koros/wingspan-top.svg"
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Normal",
  25306. height: math.unit(31 + 8 / 12, "feet"),
  25307. default: true
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25313. {
  25314. front: {
  25315. height: math.unit(18 + 5 / 12, "feet"),
  25316. weight: math.unit(3750, "kg"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/vexx/front.svg",
  25320. extra: 426 / 396,
  25321. bottom: 31.5 / 458
  25322. }
  25323. },
  25324. maw: {
  25325. height: math.unit(6, "feet"),
  25326. name: "Maw",
  25327. image: {
  25328. source: "./media/characters/vexx/maw.svg"
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(18 + 5 / 12, "feet"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(17 + 6 / 12, "feet"),
  25345. weight: math.unit(150, "lb"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/baadra/front.svg",
  25349. extra: 3137 / 2890,
  25350. bottom: 168.4 / 3305
  25351. }
  25352. },
  25353. back: {
  25354. height: math.unit(17 + 6 / 12, "feet"),
  25355. weight: math.unit(150, "lb"),
  25356. name: "Back",
  25357. image: {
  25358. source: "./media/characters/baadra/back.svg",
  25359. extra: 3142 / 2890,
  25360. bottom: 220 / 3371
  25361. }
  25362. },
  25363. head: {
  25364. height: math.unit(5.45, "feet"),
  25365. name: "Head",
  25366. image: {
  25367. source: "./media/characters/baadra/head.svg"
  25368. }
  25369. },
  25370. headAngry: {
  25371. height: math.unit(4.95, "feet"),
  25372. name: "Head (Angry)",
  25373. image: {
  25374. source: "./media/characters/baadra/head-angry.svg"
  25375. }
  25376. },
  25377. headOpen: {
  25378. height: math.unit(6, "feet"),
  25379. name: "Head (Open)",
  25380. image: {
  25381. source: "./media/characters/baadra/head-open.svg"
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(17 + 6 / 12, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(7 + 3 / 12, "feet"),
  25398. weight: math.unit(180, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/juri/front.svg",
  25402. extra: 1401 / 1237,
  25403. bottom: 18.5 / 1418
  25404. }
  25405. },
  25406. side: {
  25407. height: math.unit(7 + 3 / 12, "feet"),
  25408. weight: math.unit(180, "lb"),
  25409. name: "Side",
  25410. image: {
  25411. source: "./media/characters/juri/side.svg",
  25412. extra: 1424 / 1242,
  25413. bottom: 18.5 / 1447
  25414. }
  25415. },
  25416. sitting: {
  25417. height: math.unit(6, "feet"),
  25418. weight: math.unit(180, "lb"),
  25419. name: "Sitting",
  25420. image: {
  25421. source: "./media/characters/juri/sitting.svg",
  25422. extra: 1270 / 1143,
  25423. bottom: 100 / 1343
  25424. }
  25425. },
  25426. back: {
  25427. height: math.unit(7 + 3 / 12, "feet"),
  25428. weight: math.unit(180, "lb"),
  25429. name: "Back",
  25430. image: {
  25431. source: "./media/characters/juri/back.svg",
  25432. extra: 1377 / 1240,
  25433. bottom: 23.7 / 1405
  25434. }
  25435. },
  25436. maw: {
  25437. height: math.unit(2.8, "feet"),
  25438. name: "Maw",
  25439. image: {
  25440. source: "./media/characters/juri/maw.svg"
  25441. }
  25442. },
  25443. stomach: {
  25444. height: math.unit(0.89, "feet"),
  25445. capacity: math.unit(4, "liters"),
  25446. name: "Stomach",
  25447. image: {
  25448. source: "./media/characters/juri/stomach.svg"
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Normal",
  25455. height: math.unit(7 + 3 / 12, "feet"),
  25456. default: true
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25462. {
  25463. fox: {
  25464. height: math.unit(5 + 6 / 12, "feet"),
  25465. weight: math.unit(140, "lb"),
  25466. name: "Fox",
  25467. image: {
  25468. source: "./media/characters/maxene-sita/fox.svg",
  25469. extra: 146 / 138,
  25470. bottom: 2.1 / 148.19
  25471. }
  25472. },
  25473. foxLaying: {
  25474. height: math.unit(1.70, "feet"),
  25475. weight: math.unit(140, "lb"),
  25476. name: "Fox (Laying)",
  25477. image: {
  25478. source: "./media/characters/maxene-sita/fox-laying.svg",
  25479. extra: 910 / 572,
  25480. bottom: 71 / 981
  25481. }
  25482. },
  25483. kitsune: {
  25484. height: math.unit(10, "feet"),
  25485. weight: math.unit(800, "lb"),
  25486. name: "Kitsune",
  25487. image: {
  25488. source: "./media/characters/maxene-sita/kitsune.svg",
  25489. extra: 185 / 176,
  25490. bottom: 4.7 / 189.9
  25491. }
  25492. },
  25493. hellhound: {
  25494. height: math.unit(10, "feet"),
  25495. weight: math.unit(700, "lb"),
  25496. name: "Hellhound",
  25497. image: {
  25498. source: "./media/characters/maxene-sita/hellhound.svg",
  25499. extra: 1600 / 1545,
  25500. bottom: 81 / 1681
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(5 + 6 / 12, "feet"),
  25508. default: true
  25509. },
  25510. ]
  25511. ))
  25512. characterMakers.push(() => makeCharacter(
  25513. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25514. {
  25515. front: {
  25516. height: math.unit(3 + 4 / 12, "feet"),
  25517. weight: math.unit(70, "lb"),
  25518. name: "Front",
  25519. image: {
  25520. source: "./media/characters/maia/front.svg",
  25521. extra: 227 / 219.5,
  25522. bottom: 40 / 267
  25523. }
  25524. },
  25525. back: {
  25526. height: math.unit(3 + 4 / 12, "feet"),
  25527. weight: math.unit(70, "lb"),
  25528. name: "Back",
  25529. image: {
  25530. source: "./media/characters/maia/back.svg",
  25531. extra: 237 / 225
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(3 + 4 / 12, "feet"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(5 + 10 / 12, "feet"),
  25548. weight: math.unit(197, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/jabaro/front.svg",
  25552. extra: 225 / 216,
  25553. bottom: 5.06 / 230
  25554. }
  25555. },
  25556. back: {
  25557. height: math.unit(5 + 10 / 12, "feet"),
  25558. weight: math.unit(197, "lb"),
  25559. name: "Back",
  25560. image: {
  25561. source: "./media/characters/jabaro/back.svg",
  25562. extra: 225 / 219,
  25563. bottom: 1.9 / 227
  25564. }
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Normal",
  25570. height: math.unit(5 + 10 / 12, "feet"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(5 + 8 / 12, "feet"),
  25580. weight: math.unit(139, "lb"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/risa/front.svg",
  25584. extra: 270 / 260,
  25585. bottom: 11.2 / 282
  25586. }
  25587. },
  25588. back: {
  25589. height: math.unit(5 + 8 / 12, "feet"),
  25590. weight: math.unit(139, "lb"),
  25591. name: "Back",
  25592. image: {
  25593. source: "./media/characters/risa/back.svg",
  25594. extra: 264 / 255,
  25595. bottom: 4 / 268
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(5 + 8 / 12, "feet"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(2 + 11 / 12, "feet"),
  25612. weight: math.unit(30, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/weatley/front.svg",
  25616. bottom: 10.7 / 414,
  25617. extra: 403.5 / 362
  25618. }
  25619. },
  25620. back: {
  25621. height: math.unit(2 + 11 / 12, "feet"),
  25622. weight: math.unit(30, "lb"),
  25623. name: "Back",
  25624. image: {
  25625. source: "./media/characters/weatley/back.svg",
  25626. bottom: 10.7 / 414,
  25627. extra: 403.5 / 362
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(2 + 11 / 12, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(5 + 2 / 12, "feet"),
  25644. weight: math.unit(50, "kg"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/mercury-crescent/front.svg",
  25648. extra: 1088 / 1033,
  25649. bottom: 18.9 / 1109
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(5 + 2 / 12, "feet"),
  25657. default: true
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25663. {
  25664. front: {
  25665. height: math.unit(2, "feet"),
  25666. weight: math.unit(15, "kg"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/diamond-jones/front.svg",
  25670. extra: 727/723,
  25671. bottom: 46/773
  25672. }
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Normal",
  25678. height: math.unit(2, "feet"),
  25679. default: true
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(3, "feet"),
  25688. weight: math.unit(30, "kg"),
  25689. name: "Front",
  25690. image: {
  25691. source: "./media/characters/sweet-bit/front.svg",
  25692. extra: 675 / 567,
  25693. bottom: 27.7 / 703
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(3, "feet"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25707. {
  25708. side: {
  25709. height: math.unit(9.178, "feet"),
  25710. weight: math.unit(500, "lb"),
  25711. name: "Side",
  25712. image: {
  25713. source: "./media/characters/umbrazen/side.svg",
  25714. extra: 1730 / 1473,
  25715. bottom: 34.6 / 1765
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(9.178, "feet"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(10, "feet"),
  25732. weight: math.unit(750, "lb"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/arlist/front.svg",
  25736. extra: 961 / 778,
  25737. bottom: 6.2 / 986
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(10, "feet"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(5 + 1 / 12, "feet"),
  25754. weight: math.unit(110, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/aradel/front.svg",
  25758. extra: 324 / 303,
  25759. bottom: 3.6 / 329.4
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Normal",
  25766. height: math.unit(5 + 1 / 12, "feet"),
  25767. default: true
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25773. {
  25774. front: {
  25775. height: math.unit(3 + 8 / 12, "feet"),
  25776. weight: math.unit(50, "lb"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/serryn/front.svg",
  25780. extra: 1792 / 1656,
  25781. bottom: 43.5 / 1840
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(3 + 8 / 12, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(7 + 10 / 12, "feet"),
  25798. weight: math.unit(255, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/xavier-thyme/front.svg",
  25802. extra: 3733 / 3642,
  25803. bottom: 131 / 3869
  25804. }
  25805. },
  25806. frontRaven: {
  25807. height: math.unit(7 + 10 / 12, "feet"),
  25808. weight: math.unit(255, "lb"),
  25809. name: "Front (Raven)",
  25810. image: {
  25811. source: "./media/characters/xavier-thyme/front-raven.svg",
  25812. extra: 4385 / 3642,
  25813. bottom: 131 / 4517
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(7 + 10 / 12, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(1.6, "m"),
  25830. weight: math.unit(50, "kg"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/kiki/front.svg",
  25834. extra: 4682 / 3610,
  25835. bottom: 115 / 4777
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(1.6, "meters"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(50, "m"),
  25852. weight: math.unit(500, "tonnes"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/ryoko/front.svg",
  25856. extra: 4632 / 3926,
  25857. bottom: 193 / 4823
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(50, "meters"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(30, "m"),
  25874. weight: math.unit(22, "tonnes"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/elio/front.svg",
  25878. extra: 4582 / 3720,
  25879. bottom: 236 / 4828
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(30, "meters"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(6 + 3 / 12, "feet"),
  25896. weight: math.unit(120, "lb"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/azura/front.svg",
  25900. extra: 1149 / 1135,
  25901. bottom: 45 / 1194
  25902. }
  25903. },
  25904. frontClothed: {
  25905. height: math.unit(6 + 3 / 12, "feet"),
  25906. weight: math.unit(120, "lb"),
  25907. name: "Front (Clothed)",
  25908. image: {
  25909. source: "./media/characters/azura/front-clothed.svg",
  25910. extra: 1149 / 1135,
  25911. bottom: 45 / 1194
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(6 + 3 / 12, "feet"),
  25919. default: true
  25920. },
  25921. {
  25922. name: "Macro",
  25923. height: math.unit(20 + 6 / 12, "feet")
  25924. },
  25925. {
  25926. name: "Megamacro",
  25927. height: math.unit(12, "miles")
  25928. },
  25929. {
  25930. name: "Gigamacro",
  25931. height: math.unit(10000, "miles")
  25932. },
  25933. {
  25934. name: "Teramacro",
  25935. height: math.unit(900000, "miles")
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(12, "feet"),
  25944. weight: math.unit(1, "ton"),
  25945. capacity: math.unit(660000, "gallons"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/zeus/front.svg",
  25949. extra: 5005 / 4717,
  25950. bottom: 363 / 5388
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(12, "feet")
  25958. },
  25959. {
  25960. name: "Preferred Size",
  25961. height: math.unit(0.5, "miles"),
  25962. default: true
  25963. },
  25964. {
  25965. name: "Giga Horse",
  25966. height: math.unit(300, "miles")
  25967. },
  25968. {
  25969. name: "Riding Planets",
  25970. height: math.unit(30, "megameters")
  25971. },
  25972. {
  25973. name: "Cosmic Giant",
  25974. height: math.unit(3, "zettameters")
  25975. },
  25976. {
  25977. name: "Breeding God",
  25978. height: math.unit(9.92e22, "yottameters")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25984. {
  25985. side: {
  25986. height: math.unit(9, "feet"),
  25987. weight: math.unit(1500, "kg"),
  25988. name: "Side",
  25989. image: {
  25990. source: "./media/characters/fang/side.svg",
  25991. extra: 924 / 866,
  25992. bottom: 47.5 / 972.3
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Normal",
  25999. height: math.unit(9, "feet"),
  26000. default: true
  26001. },
  26002. {
  26003. name: "Macro",
  26004. height: math.unit(75 + 6 / 12, "feet")
  26005. },
  26006. {
  26007. name: "Teramacro",
  26008. height: math.unit(50000, "miles")
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(10, "feet"),
  26017. weight: math.unit(2, "tons"),
  26018. name: "Front",
  26019. image: {
  26020. source: "./media/characters/rekhit/front.svg",
  26021. extra: 2796 / 2590,
  26022. bottom: 225 / 3022
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(10, "feet"),
  26030. default: true
  26031. },
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(500, "feet")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26040. {
  26041. front: {
  26042. height: math.unit(7 + 6.451 / 12, "feet"),
  26043. weight: math.unit(310, "lb"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/dahlia-verrick/front.svg",
  26047. extra: 1488 / 1365,
  26048. bottom: 6.2 / 1495
  26049. }
  26050. },
  26051. back: {
  26052. height: math.unit(7 + 6.451 / 12, "feet"),
  26053. weight: math.unit(310, "lb"),
  26054. name: "Back",
  26055. image: {
  26056. source: "./media/characters/dahlia-verrick/back.svg",
  26057. extra: 1472 / 1351,
  26058. bottom: 5.28 / 1477
  26059. }
  26060. },
  26061. frontBusiness: {
  26062. height: math.unit(7 + 6.451 / 12, "feet"),
  26063. weight: math.unit(200, "lb"),
  26064. name: "Front (Business)",
  26065. image: {
  26066. source: "./media/characters/dahlia-verrick/front-business.svg",
  26067. extra: 1478 / 1381,
  26068. bottom: 5.5 / 1484
  26069. }
  26070. },
  26071. frontCasual: {
  26072. height: math.unit(7 + 6.451 / 12, "feet"),
  26073. weight: math.unit(200, "lb"),
  26074. name: "Front (Casual)",
  26075. image: {
  26076. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26077. extra: 1478 / 1381,
  26078. bottom: 5.5 / 1484
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Travel-Sized",
  26085. height: math.unit(7.45, "inches")
  26086. },
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(7 + 6.451 / 12, "feet"),
  26090. default: true
  26091. },
  26092. {
  26093. name: "Hitting the Town",
  26094. height: math.unit(37 + 8 / 12, "feet")
  26095. },
  26096. {
  26097. name: "Stomp in the Suburbs",
  26098. height: math.unit(964 + 9.728 / 12, "feet")
  26099. },
  26100. {
  26101. name: "Sit on the City",
  26102. height: math.unit(61747 + 10.592 / 12, "feet")
  26103. },
  26104. {
  26105. name: "Glomp the Globe",
  26106. height: math.unit(252919327 + 4.832 / 12, "feet")
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(6 + 4 / 12, "feet"),
  26115. weight: math.unit(320, "lb"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/balina-mahigan/front.svg",
  26119. extra: 447 / 428,
  26120. bottom: 18 / 466
  26121. }
  26122. },
  26123. back: {
  26124. height: math.unit(6 + 4 / 12, "feet"),
  26125. weight: math.unit(320, "lb"),
  26126. name: "Back",
  26127. image: {
  26128. source: "./media/characters/balina-mahigan/back.svg",
  26129. extra: 445 / 428,
  26130. bottom: 4.07 / 448
  26131. }
  26132. },
  26133. arm: {
  26134. height: math.unit(1.88, "feet"),
  26135. name: "Arm",
  26136. image: {
  26137. source: "./media/characters/balina-mahigan/arm.svg"
  26138. }
  26139. },
  26140. backPort: {
  26141. height: math.unit(0.685, "feet"),
  26142. name: "Back Port",
  26143. image: {
  26144. source: "./media/characters/balina-mahigan/back-port.svg"
  26145. }
  26146. },
  26147. hoofpaw: {
  26148. height: math.unit(1.41, "feet"),
  26149. name: "Hoofpaw",
  26150. image: {
  26151. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26152. }
  26153. },
  26154. leftHandBack: {
  26155. height: math.unit(0.938, "feet"),
  26156. name: "Left Hand (Back)",
  26157. image: {
  26158. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26159. }
  26160. },
  26161. leftHandFront: {
  26162. height: math.unit(0.938, "feet"),
  26163. name: "Left Hand (Front)",
  26164. image: {
  26165. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26166. }
  26167. },
  26168. rightHandBack: {
  26169. height: math.unit(0.95, "feet"),
  26170. name: "Right Hand (Back)",
  26171. image: {
  26172. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26173. }
  26174. },
  26175. rightHandFront: {
  26176. height: math.unit(0.95, "feet"),
  26177. name: "Right Hand (Front)",
  26178. image: {
  26179. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(6 + 4 / 12, "feet"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(6, "feet"),
  26196. weight: math.unit(320, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/balina-mejeri/front.svg",
  26200. extra: 517 / 488,
  26201. bottom: 44.2 / 561
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(6 + 4 / 12, "feet")
  26209. },
  26210. {
  26211. name: "Business",
  26212. height: math.unit(155, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26219. {
  26220. kneeling: {
  26221. height: math.unit(6 + 4 / 12, "feet"),
  26222. weight: math.unit(300 * 20, "lb"),
  26223. name: "Kneeling",
  26224. image: {
  26225. source: "./media/characters/balbarian/kneeling.svg",
  26226. extra: 922 / 862,
  26227. bottom: 42.4 / 965
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(6 + 4 / 12, "feet")
  26235. },
  26236. {
  26237. name: "Treasured",
  26238. height: math.unit(18 + 9 / 12, "feet"),
  26239. default: true
  26240. },
  26241. {
  26242. name: "Macro",
  26243. height: math.unit(900, "feet")
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(6 + 4 / 12, "feet"),
  26252. weight: math.unit(325, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/balina-amarini/front.svg",
  26256. extra: 415 / 403,
  26257. bottom: 19 / 433.4
  26258. }
  26259. },
  26260. back: {
  26261. height: math.unit(6 + 4 / 12, "feet"),
  26262. weight: math.unit(325, "lb"),
  26263. name: "Back",
  26264. image: {
  26265. source: "./media/characters/balina-amarini/back.svg",
  26266. extra: 415 / 403,
  26267. bottom: 13.5 / 432
  26268. }
  26269. },
  26270. overdrive: {
  26271. height: math.unit(6 + 4 / 12, "feet"),
  26272. weight: math.unit(400, "lb"),
  26273. name: "Overdrive",
  26274. image: {
  26275. source: "./media/characters/balina-amarini/overdrive.svg",
  26276. extra: 269 / 259,
  26277. bottom: 12 / 282
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Boom",
  26284. height: math.unit(9 + 10 / 12, "feet"),
  26285. default: true
  26286. },
  26287. {
  26288. name: "Macro",
  26289. height: math.unit(280, "feet")
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26295. {
  26296. goddess: {
  26297. height: math.unit(600, "feet"),
  26298. weight: math.unit(2000000, "tons"),
  26299. name: "Goddess",
  26300. image: {
  26301. source: "./media/characters/lady-kubwa/goddess.svg",
  26302. extra: 1240.5 / 1223,
  26303. bottom: 22 / 1263
  26304. }
  26305. },
  26306. goddesser: {
  26307. height: math.unit(900, "feet"),
  26308. weight: math.unit(20000000, "lb"),
  26309. name: "Goddess-er",
  26310. image: {
  26311. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26312. extra: 899 / 888,
  26313. bottom: 12.6 / 912
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Macro",
  26320. height: math.unit(600, "feet"),
  26321. default: true
  26322. },
  26323. {
  26324. name: "Megamacro",
  26325. height: math.unit(250, "miles")
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(7 + 7 / 12, "feet"),
  26334. weight: math.unit(250, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/tala-grovehorn/front.svg",
  26338. extra: 2636 / 2525,
  26339. bottom: 147 / 2781
  26340. }
  26341. },
  26342. back: {
  26343. height: math.unit(7 + 7 / 12, "feet"),
  26344. weight: math.unit(250, "lb"),
  26345. name: "Back",
  26346. image: {
  26347. source: "./media/characters/tala-grovehorn/back.svg",
  26348. extra: 2635 / 2539,
  26349. bottom: 100 / 2732.8
  26350. }
  26351. },
  26352. mouth: {
  26353. height: math.unit(1.15, "feet"),
  26354. name: "Mouth",
  26355. image: {
  26356. source: "./media/characters/tala-grovehorn/mouth.svg"
  26357. }
  26358. },
  26359. dick: {
  26360. height: math.unit(2.36, "feet"),
  26361. name: "Dick",
  26362. image: {
  26363. source: "./media/characters/tala-grovehorn/dick.svg"
  26364. }
  26365. },
  26366. slit: {
  26367. height: math.unit(0.61, "feet"),
  26368. name: "Slit",
  26369. image: {
  26370. source: "./media/characters/tala-grovehorn/slit.svg"
  26371. }
  26372. },
  26373. },
  26374. [
  26375. ]
  26376. ))
  26377. characterMakers.push(() => makeCharacter(
  26378. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26379. {
  26380. front: {
  26381. height: math.unit(7 + 7 / 12, "feet"),
  26382. weight: math.unit(225, "lb"),
  26383. name: "Front",
  26384. image: {
  26385. source: "./media/characters/epona/front.svg",
  26386. extra: 2445 / 2290,
  26387. bottom: 251 / 2696
  26388. }
  26389. },
  26390. back: {
  26391. height: math.unit(7 + 7 / 12, "feet"),
  26392. weight: math.unit(225, "lb"),
  26393. name: "Back",
  26394. image: {
  26395. source: "./media/characters/epona/back.svg",
  26396. extra: 2546 / 2408,
  26397. bottom: 44 / 2589
  26398. }
  26399. },
  26400. genitals: {
  26401. height: math.unit(1.5, "feet"),
  26402. name: "Genitals",
  26403. image: {
  26404. source: "./media/characters/epona/genitals.svg"
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Normal",
  26411. height: math.unit(7 + 7 / 12, "feet"),
  26412. default: true
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26418. {
  26419. front: {
  26420. height: math.unit(7, "feet"),
  26421. weight: math.unit(518, "lb"),
  26422. name: "Front",
  26423. image: {
  26424. source: "./media/characters/avia-bloodbourn/front.svg",
  26425. extra: 1466 / 1350,
  26426. bottom: 65 / 1527
  26427. }
  26428. },
  26429. },
  26430. [
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(9.35, "feet"),
  26438. weight: math.unit(600, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/amera/front.svg",
  26442. extra: 891 / 818,
  26443. bottom: 30 / 922.7
  26444. }
  26445. },
  26446. back: {
  26447. height: math.unit(9.35, "feet"),
  26448. weight: math.unit(600, "lb"),
  26449. name: "Back",
  26450. image: {
  26451. source: "./media/characters/amera/back.svg",
  26452. extra: 876 / 824,
  26453. bottom: 6.8 / 884
  26454. }
  26455. },
  26456. dick: {
  26457. height: math.unit(2.14, "feet"),
  26458. name: "Dick",
  26459. image: {
  26460. source: "./media/characters/amera/dick.svg"
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(9.35, "feet"),
  26468. default: true
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26474. {
  26475. kneeling: {
  26476. height: math.unit(3 + 4 / 12, "feet"),
  26477. weight: math.unit(90, "lb"),
  26478. name: "Kneeling",
  26479. image: {
  26480. source: "./media/characters/rosewen/kneeling.svg",
  26481. extra: 1835 / 1571,
  26482. bottom: 27.7 / 1862
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(3 + 4 / 12, "feet"),
  26490. default: true
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(5 + 10 / 12, "feet"),
  26499. weight: math.unit(200, "lb"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/sabah/front.svg",
  26503. extra: 849 / 763,
  26504. bottom: 33.9 / 881
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(5 + 10 / 12, "feet"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26518. {
  26519. front: {
  26520. height: math.unit(3 + 5 / 12, "feet"),
  26521. weight: math.unit(40, "kg"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/purple-flame/front.svg",
  26525. extra: 1577 / 1412,
  26526. bottom: 97 / 1694
  26527. }
  26528. },
  26529. frontDressed: {
  26530. height: math.unit(3 + 5 / 12, "feet"),
  26531. weight: math.unit(40, "kg"),
  26532. name: "Front (Dressed)",
  26533. image: {
  26534. source: "./media/characters/purple-flame/front-dressed.svg",
  26535. extra: 1577 / 1412,
  26536. bottom: 97 / 1694
  26537. }
  26538. },
  26539. headphones: {
  26540. height: math.unit(0.85, "feet"),
  26541. name: "Headphones",
  26542. image: {
  26543. source: "./media/characters/purple-flame/headphones.svg"
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Really Small",
  26550. height: math.unit(5, "cm")
  26551. },
  26552. {
  26553. name: "Micro",
  26554. height: math.unit(1 + 5 / 12, "feet")
  26555. },
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(3 + 5 / 12, "feet"),
  26559. default: true
  26560. },
  26561. {
  26562. name: "Minimacro",
  26563. height: math.unit(125, "feet")
  26564. },
  26565. {
  26566. name: "Macro",
  26567. height: math.unit(0.5, "miles")
  26568. },
  26569. {
  26570. name: "Megamacro",
  26571. height: math.unit(50, "miles")
  26572. },
  26573. {
  26574. name: "Gigantic",
  26575. height: math.unit(750, "miles")
  26576. },
  26577. {
  26578. name: "Planetary",
  26579. height: math.unit(15000, "miles")
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26585. {
  26586. front: {
  26587. height: math.unit(14, "feet"),
  26588. weight: math.unit(959, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/arsenal/front.svg",
  26592. extra: 2357 / 2157,
  26593. bottom: 93 / 2458
  26594. }
  26595. },
  26596. },
  26597. [
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(14, "feet"),
  26601. default: true
  26602. },
  26603. ]
  26604. ))
  26605. characterMakers.push(() => makeCharacter(
  26606. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26607. {
  26608. front: {
  26609. height: math.unit(6, "feet"),
  26610. weight: math.unit(150, "lb"),
  26611. name: "Front",
  26612. image: {
  26613. source: "./media/characters/adira/front.svg",
  26614. extra: 1078 / 1029,
  26615. bottom: 87 / 1166
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Micro",
  26622. height: math.unit(4, "inches"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Macro",
  26627. height: math.unit(50, "feet")
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(16, "feet"),
  26636. weight: math.unit(1000, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/grim/front.svg",
  26640. extra: 622 / 614,
  26641. bottom: 18.1 / 642
  26642. }
  26643. },
  26644. back: {
  26645. height: math.unit(16, "feet"),
  26646. weight: math.unit(1000, "lb"),
  26647. name: "Back",
  26648. image: {
  26649. source: "./media/characters/grim/back.svg",
  26650. extra: 610.6 / 602,
  26651. bottom: 40.8 / 652
  26652. }
  26653. },
  26654. hunched: {
  26655. height: math.unit(9.75, "feet"),
  26656. weight: math.unit(1000, "lb"),
  26657. name: "Hunched",
  26658. image: {
  26659. source: "./media/characters/grim/hunched.svg",
  26660. extra: 304 / 297,
  26661. bottom: 35.4 / 394
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(16, "feet"),
  26669. default: true
  26670. },
  26671. ]
  26672. ))
  26673. characterMakers.push(() => makeCharacter(
  26674. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26675. {
  26676. front: {
  26677. height: math.unit(2.3, "meters"),
  26678. weight: math.unit(300, "lb"),
  26679. name: "Front",
  26680. image: {
  26681. source: "./media/characters/sinja/front-sfw.svg",
  26682. extra: 1393 / 1294,
  26683. bottom: 70 / 1463
  26684. }
  26685. },
  26686. frontNsfw: {
  26687. height: math.unit(2.3, "meters"),
  26688. weight: math.unit(300, "lb"),
  26689. name: "Front (NSFW)",
  26690. image: {
  26691. source: "./media/characters/sinja/front-nsfw.svg",
  26692. extra: 1393 / 1294,
  26693. bottom: 70 / 1463
  26694. }
  26695. },
  26696. back: {
  26697. height: math.unit(2.3, "meters"),
  26698. weight: math.unit(300, "lb"),
  26699. name: "Back",
  26700. image: {
  26701. source: "./media/characters/sinja/back.svg",
  26702. extra: 1393 / 1294,
  26703. bottom: 70 / 1463
  26704. }
  26705. },
  26706. head: {
  26707. height: math.unit(1.771, "feet"),
  26708. name: "Head",
  26709. image: {
  26710. source: "./media/characters/sinja/head.svg"
  26711. }
  26712. },
  26713. slit: {
  26714. height: math.unit(0.8, "feet"),
  26715. name: "Slit",
  26716. image: {
  26717. source: "./media/characters/sinja/slit.svg"
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(2.3, "meters")
  26725. },
  26726. {
  26727. name: "Macro",
  26728. height: math.unit(91, "meters"),
  26729. default: true
  26730. },
  26731. {
  26732. name: "Megamacro",
  26733. height: math.unit(91440, "meters")
  26734. },
  26735. {
  26736. name: "Gigamacro",
  26737. height: math.unit(60960000, "meters")
  26738. },
  26739. {
  26740. name: "Teramacro",
  26741. height: math.unit(9144000000, "meters")
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(1.7, "meters"),
  26750. weight: math.unit(130, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/kyu/front.svg",
  26754. extra: 415 / 395,
  26755. bottom: 5 / 420
  26756. }
  26757. },
  26758. head: {
  26759. height: math.unit(1.75, "feet"),
  26760. name: "Head",
  26761. image: {
  26762. source: "./media/characters/kyu/head.svg"
  26763. }
  26764. },
  26765. foot: {
  26766. height: math.unit(0.81, "feet"),
  26767. name: "Foot",
  26768. image: {
  26769. source: "./media/characters/kyu/foot.svg"
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(1.7, "meters")
  26777. },
  26778. {
  26779. name: "Macro",
  26780. height: math.unit(131, "feet"),
  26781. default: true
  26782. },
  26783. {
  26784. name: "Megamacro",
  26785. height: math.unit(91440, "meters")
  26786. },
  26787. {
  26788. name: "Gigamacro",
  26789. height: math.unit(60960000, "meters")
  26790. },
  26791. {
  26792. name: "Teramacro",
  26793. height: math.unit(9144000000, "meters")
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(7 + 1 / 12, "feet"),
  26802. weight: math.unit(250, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/joey/front.svg",
  26806. extra: 1791 / 1537,
  26807. bottom: 28 / 1816
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Micro",
  26814. height: math.unit(3, "inches")
  26815. },
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(7 + 1 / 12, "feet"),
  26819. default: true
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(165, "cm"),
  26828. weight: math.unit(140, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/sam-evans/front.svg",
  26832. extra: 3417 / 3230,
  26833. bottom: 41.3 / 3417
  26834. }
  26835. },
  26836. frontSixTails: {
  26837. height: math.unit(165, "cm"),
  26838. weight: math.unit(140, "lb"),
  26839. name: "Front-six-tails",
  26840. image: {
  26841. source: "./media/characters/sam-evans/front-six-tails.svg",
  26842. extra: 3417 / 3230,
  26843. bottom: 41.3 / 3417
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(165, "cm"),
  26848. weight: math.unit(140, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/sam-evans/back.svg",
  26852. extra: 3227 / 3032,
  26853. bottom: 6.8 / 3234
  26854. }
  26855. },
  26856. face: {
  26857. height: math.unit(0.68, "feet"),
  26858. name: "Face",
  26859. image: {
  26860. source: "./media/characters/sam-evans/face.svg"
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(165, "cm"),
  26868. default: true
  26869. },
  26870. {
  26871. name: "Macro",
  26872. height: math.unit(100, "meters")
  26873. },
  26874. {
  26875. name: "Macro+",
  26876. height: math.unit(800, "meters")
  26877. },
  26878. {
  26879. name: "Macro++",
  26880. height: math.unit(3, "km")
  26881. },
  26882. {
  26883. name: "Macro+++",
  26884. height: math.unit(30, "km")
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26890. {
  26891. front: {
  26892. height: math.unit(10, "feet"),
  26893. weight: math.unit(750, "lb"),
  26894. name: "Front",
  26895. image: {
  26896. source: "./media/characters/juliet-a/front.svg",
  26897. extra: 1766 / 1720,
  26898. bottom: 43 / 1809
  26899. }
  26900. },
  26901. back: {
  26902. height: math.unit(10, "feet"),
  26903. weight: math.unit(750, "lb"),
  26904. name: "Back",
  26905. image: {
  26906. source: "./media/characters/juliet-a/back.svg",
  26907. extra: 1781 / 1734,
  26908. bottom: 35 / 1810,
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(10, "feet"),
  26916. default: true
  26917. },
  26918. {
  26919. name: "Dragon Form",
  26920. height: math.unit(250, "feet")
  26921. },
  26922. {
  26923. name: "Macro",
  26924. height: math.unit(1000, "feet")
  26925. },
  26926. {
  26927. name: "Megamacro",
  26928. height: math.unit(10000, "feet")
  26929. }
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26934. {
  26935. regular: {
  26936. height: math.unit(7 + 3 / 12, "feet"),
  26937. weight: math.unit(260, "lb"),
  26938. name: "Regular",
  26939. image: {
  26940. source: "./media/characters/wild/regular.svg",
  26941. extra: 97.45 / 92,
  26942. bottom: 6.8 / 104.3
  26943. }
  26944. },
  26945. biggums: {
  26946. height: math.unit(8 + 6 / 12, "feet"),
  26947. weight: math.unit(425, "lb"),
  26948. name: "Biggums",
  26949. image: {
  26950. source: "./media/characters/wild/biggums.svg",
  26951. extra: 97.45 / 92,
  26952. bottom: 7.5 / 132.34
  26953. }
  26954. },
  26955. mawRegular: {
  26956. height: math.unit(1.24, "feet"),
  26957. name: "Maw (Regular)",
  26958. image: {
  26959. source: "./media/characters/wild/maw.svg"
  26960. }
  26961. },
  26962. mawBiggums: {
  26963. height: math.unit(1.47, "feet"),
  26964. name: "Maw (Biggums)",
  26965. image: {
  26966. source: "./media/characters/wild/maw.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(7 + 3 / 12, "feet"),
  26974. default: true
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26980. {
  26981. front: {
  26982. height: math.unit(2.5, "meters"),
  26983. weight: math.unit(200, "kg"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/vidar/front.svg",
  26987. extra: 2994 / 2795,
  26988. bottom: 56 / 3061
  26989. }
  26990. },
  26991. back: {
  26992. height: math.unit(2.5, "meters"),
  26993. weight: math.unit(200, "kg"),
  26994. name: "Back",
  26995. image: {
  26996. source: "./media/characters/vidar/back.svg",
  26997. extra: 3131 / 2928,
  26998. bottom: 13.5 / 3141.5
  26999. }
  27000. },
  27001. feral: {
  27002. height: math.unit(2.5, "meters"),
  27003. weight: math.unit(2000, "kg"),
  27004. name: "Feral",
  27005. image: {
  27006. source: "./media/characters/vidar/feral.svg",
  27007. extra: 2790 / 1765,
  27008. bottom: 6 / 2796
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(2.5, "meters"),
  27016. default: true
  27017. },
  27018. {
  27019. name: "Macro",
  27020. height: math.unit(100, "meters")
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(5 + 9 / 12, "feet"),
  27029. weight: math.unit(120, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/ash/front.svg",
  27033. extra: 2189 / 1961,
  27034. bottom: 5.2 / 2194
  27035. }
  27036. },
  27037. },
  27038. [
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(5 + 9 / 12, "feet"),
  27042. default: true
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27048. {
  27049. front: {
  27050. height: math.unit(9, "feet"),
  27051. weight: math.unit(10000, "lb"),
  27052. name: "Front",
  27053. image: {
  27054. source: "./media/characters/gygabite/front.svg",
  27055. bottom: 31.7 / 537.8,
  27056. extra: 505 / 370
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(9, "feet"),
  27064. default: true
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27070. {
  27071. front: {
  27072. height: math.unit(12, "feet"),
  27073. weight: math.unit(35000, "lb"),
  27074. name: "Front",
  27075. image: {
  27076. source: "./media/characters/p0tat0/front.svg",
  27077. extra: 1065 / 921,
  27078. bottom: 55.7 / 1121.25
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(12, "feet"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27092. {
  27093. side: {
  27094. height: math.unit(6.5, "feet"),
  27095. weight: math.unit(800, "lb"),
  27096. name: "Side",
  27097. image: {
  27098. source: "./media/characters/dusk/side.svg",
  27099. extra: 615 / 373,
  27100. bottom: 53 / 664
  27101. }
  27102. },
  27103. sitting: {
  27104. height: math.unit(7, "feet"),
  27105. weight: math.unit(800, "lb"),
  27106. name: "Sitting",
  27107. image: {
  27108. source: "./media/characters/dusk/sitting.svg",
  27109. extra: 753 / 425,
  27110. bottom: 33 / 774
  27111. }
  27112. },
  27113. head: {
  27114. height: math.unit(6.1, "feet"),
  27115. name: "Head",
  27116. image: {
  27117. source: "./media/characters/dusk/head.svg"
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Normal",
  27124. height: math.unit(7, "feet"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(15, "feet"),
  27134. weight: math.unit(7000, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/jay-direwolf/front.svg",
  27138. extra: 1810 / 1732,
  27139. bottom: 66 / 1892
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(15, "feet"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(4 + 9 / 12, "feet"),
  27156. weight: math.unit(130, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/anchovie/front.svg",
  27160. extra: 382 / 350,
  27161. bottom: 25 / 409
  27162. }
  27163. },
  27164. back: {
  27165. height: math.unit(4 + 9 / 12, "feet"),
  27166. weight: math.unit(130, "lb"),
  27167. name: "Back",
  27168. image: {
  27169. source: "./media/characters/anchovie/back.svg",
  27170. extra: 385 / 352,
  27171. bottom: 16.6 / 402
  27172. }
  27173. },
  27174. frontDressed: {
  27175. height: math.unit(4 + 9 / 12, "feet"),
  27176. weight: math.unit(130, "lb"),
  27177. name: "Front (Dressed)",
  27178. image: {
  27179. source: "./media/characters/anchovie/front-dressed.svg",
  27180. extra: 382 / 350,
  27181. bottom: 25 / 409
  27182. }
  27183. },
  27184. backDressed: {
  27185. height: math.unit(4 + 9 / 12, "feet"),
  27186. weight: math.unit(130, "lb"),
  27187. name: "Back (Dressed)",
  27188. image: {
  27189. source: "./media/characters/anchovie/back-dressed.svg",
  27190. extra: 385 / 352,
  27191. bottom: 16.6 / 402
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Micro",
  27198. height: math.unit(6.4, "inches")
  27199. },
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(4 + 9 / 12, "feet"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(2, "meters"),
  27212. weight: math.unit(180, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/acidrenamon/front.svg",
  27216. extra: 987 / 890,
  27217. bottom: 22.8 / 1009
  27218. }
  27219. },
  27220. back: {
  27221. height: math.unit(2, "meters"),
  27222. weight: math.unit(180, "lb"),
  27223. name: "Back",
  27224. image: {
  27225. source: "./media/characters/acidrenamon/back.svg",
  27226. extra: 983 / 891,
  27227. bottom: 8.4 / 992
  27228. }
  27229. },
  27230. head: {
  27231. height: math.unit(1.92, "feet"),
  27232. name: "Head",
  27233. image: {
  27234. source: "./media/characters/acidrenamon/head.svg"
  27235. }
  27236. },
  27237. rump: {
  27238. height: math.unit(1.72, "feet"),
  27239. name: "Rump",
  27240. image: {
  27241. source: "./media/characters/acidrenamon/rump.svg"
  27242. }
  27243. },
  27244. tail: {
  27245. height: math.unit(4.2, "feet"),
  27246. name: "Tail",
  27247. image: {
  27248. source: "./media/characters/acidrenamon/tail.svg"
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(2, "meters"),
  27256. default: true
  27257. },
  27258. {
  27259. name: "Minimacro",
  27260. height: math.unit(7, "meters")
  27261. },
  27262. {
  27263. name: "Macro",
  27264. height: math.unit(200, "meters")
  27265. },
  27266. {
  27267. name: "Gigamacro",
  27268. height: math.unit(0.2, "earths")
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(6, "feet"),
  27277. weight: math.unit(150, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/kenzie-lee/front.svg",
  27281. extra: 1525 / 1465,
  27282. bottom: 45 / 1570
  27283. }
  27284. },
  27285. side: {
  27286. height: math.unit(6, "feet"),
  27287. weight: math.unit(150, "lb"),
  27288. name: "Side",
  27289. image: {
  27290. source: "./media/characters/kenzie-lee/side.svg",
  27291. extra: 5505 / 5383,
  27292. bottom: 60 / 5573
  27293. }
  27294. },
  27295. paw: {
  27296. height: math.unit(0.57, "feet"),
  27297. name: "Paw",
  27298. image: {
  27299. source: "./media/characters/kenzie-lee/paw.svg"
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Normal",
  27306. height: math.unit(152, "feet"),
  27307. default: true
  27308. },
  27309. {
  27310. name: "Megamacro",
  27311. height: math.unit(7, "miles")
  27312. },
  27313. {
  27314. name: "Gigamacro",
  27315. height: math.unit(8000, "miles")
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27321. {
  27322. side: {
  27323. height: math.unit(6, "feet"),
  27324. weight: math.unit(150, "lb"),
  27325. name: "Side",
  27326. image: {
  27327. source: "./media/characters/withers/side.svg",
  27328. extra: 1830 / 1728,
  27329. bottom: 96 / 1927
  27330. }
  27331. },
  27332. front: {
  27333. height: math.unit(6, "feet"),
  27334. weight: math.unit(150, "lb"),
  27335. name: "Front",
  27336. image: {
  27337. source: "./media/characters/withers/front.svg",
  27338. extra: 1514 / 1438,
  27339. bottom: 118 / 1632
  27340. }
  27341. },
  27342. },
  27343. [
  27344. {
  27345. name: "Macro",
  27346. height: math.unit(168, "feet"),
  27347. default: true
  27348. },
  27349. {
  27350. name: "Megamacro",
  27351. height: math.unit(15, "miles")
  27352. }
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27357. {
  27358. front: {
  27359. height: math.unit(6 + 7 / 12, "feet"),
  27360. weight: math.unit(250, "lb"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/nemoskii/front.svg",
  27364. extra: 2270 / 1734,
  27365. bottom: 86 / 2354
  27366. }
  27367. },
  27368. back: {
  27369. height: math.unit(6 + 7 / 12, "feet"),
  27370. weight: math.unit(250, "lb"),
  27371. name: "Back",
  27372. image: {
  27373. source: "./media/characters/nemoskii/back.svg",
  27374. extra: 1845 / 1788,
  27375. bottom: 10.5 / 1852
  27376. }
  27377. },
  27378. head: {
  27379. height: math.unit(1.31, "feet"),
  27380. name: "Head",
  27381. image: {
  27382. source: "./media/characters/nemoskii/head.svg"
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Micro",
  27389. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27390. },
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(6 + 7 / 12, "feet"),
  27394. default: true
  27395. },
  27396. {
  27397. name: "Macro",
  27398. height: math.unit((6 + 7 / 12) * 150, "feet")
  27399. },
  27400. {
  27401. name: "Macro+",
  27402. height: math.unit((6 + 7 / 12) * 500, "feet")
  27403. },
  27404. {
  27405. name: "Megamacro",
  27406. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(1, "mile"),
  27415. weight: math.unit(265261.9, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/shui/front.svg",
  27419. extra: 1633 / 1564,
  27420. bottom: 91.5 / 1726
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Macro",
  27427. height: math.unit(1, "mile"),
  27428. default: true
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(12 + 6 / 12, "feet"),
  27437. weight: math.unit(1342, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/arokh-takakura/front.svg",
  27441. extra: 1089 / 1043,
  27442. bottom: 77.4 / 1176.7
  27443. }
  27444. },
  27445. back: {
  27446. height: math.unit(12 + 6 / 12, "feet"),
  27447. weight: math.unit(1342, "lb"),
  27448. name: "Back",
  27449. image: {
  27450. source: "./media/characters/arokh-takakura/back.svg",
  27451. extra: 1046 / 1019,
  27452. bottom: 102 / 1150
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Big",
  27459. height: math.unit(12 + 6 / 12, "feet"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(5 + 6 / 12, "feet"),
  27469. weight: math.unit(150, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/theo/front.svg",
  27473. extra: 1184 / 1131,
  27474. bottom: 7.4 / 1191
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Micro",
  27481. height: math.unit(5, "inches")
  27482. },
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(5 + 6 / 12, "feet"),
  27486. default: true
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(5 + 9 / 12, "feet"),
  27495. weight: math.unit(130, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/cecelia-swift/front.svg",
  27499. extra: 502 / 484,
  27500. bottom: 23 / 523
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(5 + 9 / 12, "feet"),
  27505. weight: math.unit(130, "lb"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/cecelia-swift/back.svg",
  27509. extra: 499 / 485,
  27510. bottom: 12 / 511
  27511. }
  27512. },
  27513. head: {
  27514. height: math.unit(0.90, "feet"),
  27515. name: "Head",
  27516. image: {
  27517. source: "./media/characters/cecelia-swift/head.svg"
  27518. }
  27519. },
  27520. rump: {
  27521. height: math.unit(1.75, "feet"),
  27522. name: "Rump",
  27523. image: {
  27524. source: "./media/characters/cecelia-swift/rump.svg"
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(5 + 9 / 12, "feet"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Big",
  27536. height: math.unit(50, "feet")
  27537. },
  27538. {
  27539. name: "Macro",
  27540. height: math.unit(100, "feet")
  27541. },
  27542. {
  27543. name: "Macro+",
  27544. height: math.unit(500, "feet")
  27545. },
  27546. {
  27547. name: "Macro++",
  27548. height: math.unit(1000, "feet")
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(6, "feet"),
  27557. weight: math.unit(150, "lb"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/kaunan/front.svg",
  27561. extra: 2890 / 2523,
  27562. bottom: 49 / 2939
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(150, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(175, "cm"),
  27579. weight: math.unit(60, "kg"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/fei/front.svg",
  27583. extra: 1873/1723,
  27584. bottom: 53/1926
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Mortal",
  27591. height: math.unit(175, "cm")
  27592. },
  27593. {
  27594. name: "Normal",
  27595. height: math.unit(3500, "m"),
  27596. default: true
  27597. },
  27598. {
  27599. name: "Stroll",
  27600. height: math.unit(17.5, "km")
  27601. },
  27602. {
  27603. name: "Showoff",
  27604. height: math.unit(175, "km")
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(7, "feet"),
  27613. weight: math.unit(1000, "kg"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/edrax/front.svg",
  27617. extra: 2838 / 2550,
  27618. bottom: 130 / 2968
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Small",
  27625. height: math.unit(7, "feet")
  27626. },
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(1500, "meters")
  27630. },
  27631. {
  27632. name: "Mega",
  27633. height: math.unit(12000000, "km"),
  27634. default: true
  27635. },
  27636. {
  27637. name: "Megamacro",
  27638. height: math.unit(10600000, "lightyears")
  27639. },
  27640. {
  27641. name: "Hypermacro",
  27642. height: math.unit(256, "yottameters")
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27648. {
  27649. front: {
  27650. height: math.unit(10, "feet"),
  27651. weight: math.unit(750, "lb"),
  27652. name: "Front",
  27653. image: {
  27654. source: "./media/characters/clove/front.svg",
  27655. extra: 2031 / 1860,
  27656. bottom: 47.8 / 2080
  27657. }
  27658. },
  27659. back: {
  27660. height: math.unit(10, "feet"),
  27661. weight: math.unit(750, "lb"),
  27662. name: "Back",
  27663. image: {
  27664. source: "./media/characters/clove/back.svg",
  27665. extra: 2025 / 1859,
  27666. bottom: 46 / 2071
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(10, "feet"),
  27674. default: true
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27680. {
  27681. front: {
  27682. height: math.unit(4, "feet"),
  27683. weight: math.unit(50, "lb"),
  27684. name: "Front",
  27685. image: {
  27686. source: "./media/characters/alex-rabbit/front.svg",
  27687. extra: 507 / 458,
  27688. bottom: 18.5 / 527
  27689. }
  27690. },
  27691. back: {
  27692. height: math.unit(4, "feet"),
  27693. weight: math.unit(50, "lb"),
  27694. name: "Back",
  27695. image: {
  27696. source: "./media/characters/alex-rabbit/back.svg",
  27697. extra: 502 / 460,
  27698. bottom: 18.9 / 521
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(4, "feet"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(1 + 3 / 12, "feet"),
  27715. weight: math.unit(80, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/zander-rose/front.svg",
  27719. extra: 916 / 797,
  27720. bottom: 17 / 933
  27721. }
  27722. },
  27723. back: {
  27724. height: math.unit(1 + 3 / 12, "feet"),
  27725. weight: math.unit(80, "lb"),
  27726. name: "Back",
  27727. image: {
  27728. source: "./media/characters/zander-rose/back.svg",
  27729. extra: 903 / 779,
  27730. bottom: 31 / 934
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Normal",
  27737. height: math.unit(1 + 3 / 12, "feet"),
  27738. default: true
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27744. {
  27745. anthro: {
  27746. height: math.unit(6, "feet"),
  27747. weight: math.unit(150, "lb"),
  27748. name: "Anthro",
  27749. image: {
  27750. source: "./media/characters/razz/anthro.svg",
  27751. extra: 1437 / 1343,
  27752. bottom: 48 / 1485
  27753. }
  27754. },
  27755. feral: {
  27756. height: math.unit(6, "feet"),
  27757. weight: math.unit(150, "lb"),
  27758. name: "Feral",
  27759. image: {
  27760. source: "./media/characters/razz/feral.svg",
  27761. extra: 2569 / 1385,
  27762. bottom: 95 / 2664
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(6, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(9 + 4 / 12, "feet"),
  27779. weight: math.unit(500, "lb"),
  27780. name: "Front",
  27781. image: {
  27782. source: "./media/characters/morrigan/front.svg",
  27783. extra: 2707 / 2579,
  27784. bottom: 156 / 2863
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(9 + 4 / 12, "feet"),
  27792. default: true
  27793. },
  27794. ]
  27795. ))
  27796. characterMakers.push(() => makeCharacter(
  27797. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27798. {
  27799. front: {
  27800. height: math.unit(5, "stories"),
  27801. weight: math.unit(4000, "lb"),
  27802. name: "Front",
  27803. image: {
  27804. source: "./media/characters/jenene/front.svg",
  27805. extra: 1780 / 1710,
  27806. bottom: 57 / 1837
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(5, "stories"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27820. {
  27821. taurSfw: {
  27822. height: math.unit(10, "meters"),
  27823. weight: math.unit(17500, "kg"),
  27824. name: "Taur",
  27825. image: {
  27826. source: "./media/characters/faey/taur-sfw.svg",
  27827. extra: 1200 / 968,
  27828. bottom: 41 / 1241
  27829. }
  27830. },
  27831. chestmaw: {
  27832. height: math.unit(2.01, "meters"),
  27833. name: "Chestmaw",
  27834. image: {
  27835. source: "./media/characters/faey/chestmaw.svg"
  27836. }
  27837. },
  27838. foot: {
  27839. height: math.unit(2.43, "meters"),
  27840. name: "Foot",
  27841. image: {
  27842. source: "./media/characters/faey/foot.svg"
  27843. }
  27844. },
  27845. jaws: {
  27846. height: math.unit(1.66, "meters"),
  27847. name: "Jaws",
  27848. image: {
  27849. source: "./media/characters/faey/jaws.svg"
  27850. }
  27851. },
  27852. tongues: {
  27853. height: math.unit(2.01, "meters"),
  27854. name: "Tongues",
  27855. image: {
  27856. source: "./media/characters/faey/tongues.svg"
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Small",
  27863. height: math.unit(10, "meters"),
  27864. default: true
  27865. },
  27866. {
  27867. name: "Big",
  27868. height: math.unit(500000, "km")
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(7, "feet"),
  27877. weight: math.unit(275, "lb"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/roku/front.svg",
  27881. extra: 903 / 878,
  27882. bottom: 37 / 940
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(7, "feet"),
  27890. default: true
  27891. },
  27892. {
  27893. name: "Macro",
  27894. height: math.unit(500, "feet")
  27895. },
  27896. {
  27897. name: "Megamacro",
  27898. height: math.unit(200, "miles")
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(6 + 2 / 12, "feet"),
  27907. weight: math.unit(150, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/lira/front.svg",
  27911. extra: 1727 / 1605,
  27912. bottom: 26 / 1753
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(6 + 2 / 12, "feet"),
  27917. weight: math.unit(150, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/lira/back.svg",
  27921. extra: 1713/1621,
  27922. bottom: 20/1733
  27923. }
  27924. },
  27925. hand: {
  27926. height: math.unit(0.75, "feet"),
  27927. name: "Hand",
  27928. image: {
  27929. source: "./media/characters/lira/hand.svg"
  27930. }
  27931. },
  27932. maw: {
  27933. height: math.unit(0.65, "feet"),
  27934. name: "Maw",
  27935. image: {
  27936. source: "./media/characters/lira/maw.svg"
  27937. }
  27938. },
  27939. pawDigi: {
  27940. height: math.unit(1.6, "feet"),
  27941. name: "Paw Digi",
  27942. image: {
  27943. source: "./media/characters/lira/paw-digi.svg"
  27944. }
  27945. },
  27946. pawPlanti: {
  27947. height: math.unit(1.4, "feet"),
  27948. name: "Paw Planti",
  27949. image: {
  27950. source: "./media/characters/lira/paw-planti.svg"
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(6 + 2 / 12, "feet"),
  27958. default: true
  27959. },
  27960. {
  27961. name: "Macro",
  27962. height: math.unit(100, "feet")
  27963. },
  27964. {
  27965. name: "Macro²",
  27966. height: math.unit(1600, "feet")
  27967. },
  27968. {
  27969. name: "Planetary",
  27970. height: math.unit(20, "earths")
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27976. {
  27977. front: {
  27978. height: math.unit(6, "feet"),
  27979. weight: math.unit(150, "lb"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/hadjet/front.svg",
  27983. extra: 1480 / 1346,
  27984. bottom: 26 / 1506
  27985. }
  27986. },
  27987. frontNsfw: {
  27988. height: math.unit(6, "feet"),
  27989. weight: math.unit(150, "lb"),
  27990. name: "Front (NSFW)",
  27991. image: {
  27992. source: "./media/characters/hadjet/front-nsfw.svg",
  27993. extra: 1440 / 1358,
  27994. bottom: 52 / 1492
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Macro",
  28001. height: math.unit(10, "stories"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Megamacro",
  28006. height: math.unit(1.5, "miles")
  28007. },
  28008. {
  28009. name: "Megamacro+",
  28010. height: math.unit(5, "miles")
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28016. {
  28017. side: {
  28018. height: math.unit(106, "feet"),
  28019. weight: math.unit(500, "tonnes"),
  28020. name: "Side",
  28021. image: {
  28022. source: "./media/characters/kodran/side.svg",
  28023. extra: 553 / 480,
  28024. bottom: 33 / 586
  28025. }
  28026. },
  28027. front: {
  28028. height: math.unit(132, "feet"),
  28029. weight: math.unit(500, "tonnes"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/kodran/front.svg",
  28033. extra: 667 / 643,
  28034. bottom: 42 / 709
  28035. }
  28036. },
  28037. flying: {
  28038. height: math.unit(350, "feet"),
  28039. weight: math.unit(500, "tonnes"),
  28040. name: "Flying",
  28041. image: {
  28042. source: "./media/characters/kodran/flying.svg"
  28043. }
  28044. },
  28045. foot: {
  28046. height: math.unit(33, "feet"),
  28047. name: "Foot",
  28048. image: {
  28049. source: "./media/characters/kodran/foot.svg"
  28050. }
  28051. },
  28052. footFront: {
  28053. height: math.unit(19, "feet"),
  28054. name: "Foot (Front)",
  28055. image: {
  28056. source: "./media/characters/kodran/foot-front.svg",
  28057. extra: 261 / 261,
  28058. bottom: 91 / 352
  28059. }
  28060. },
  28061. headFront: {
  28062. height: math.unit(53, "feet"),
  28063. name: "Head (Front)",
  28064. image: {
  28065. source: "./media/characters/kodran/head-front.svg"
  28066. }
  28067. },
  28068. headSide: {
  28069. height: math.unit(65, "feet"),
  28070. name: "Head (Side)",
  28071. image: {
  28072. source: "./media/characters/kodran/head-side.svg"
  28073. }
  28074. },
  28075. throat: {
  28076. height: math.unit(79, "feet"),
  28077. name: "Throat",
  28078. image: {
  28079. source: "./media/characters/kodran/throat.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Large",
  28086. height: math.unit(106, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28093. {
  28094. side: {
  28095. height: math.unit(11, "feet"),
  28096. weight: math.unit(150, "lb"),
  28097. name: "Side",
  28098. image: {
  28099. source: "./media/characters/pyxaron/side.svg",
  28100. extra: 305 / 195,
  28101. bottom: 17 / 322
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(11, "feet"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28115. {
  28116. front: {
  28117. height: math.unit(6, "feet"),
  28118. weight: math.unit(150, "lb"),
  28119. name: "Front",
  28120. image: {
  28121. source: "./media/characters/meep/front.svg",
  28122. extra: 88 / 80,
  28123. bottom: 6 / 94
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Fun Sized",
  28130. height: math.unit(2, "inches"),
  28131. default: true
  28132. },
  28133. {
  28134. name: "Friend Sized",
  28135. height: math.unit(8, "inches")
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28141. {
  28142. front: {
  28143. height: math.unit(15, "feet"),
  28144. weight: math.unit(2500, "lb"),
  28145. name: "Front",
  28146. image: {
  28147. source: "./media/characters/holly-rabbit/front.svg",
  28148. extra: 1433 / 1233,
  28149. bottom: 125 / 1558
  28150. }
  28151. },
  28152. dick: {
  28153. height: math.unit(4.6, "feet"),
  28154. name: "Dick",
  28155. image: {
  28156. source: "./media/characters/holly-rabbit/dick.svg"
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(15, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Macro",
  28168. height: math.unit(250, "feet")
  28169. },
  28170. {
  28171. name: "Macro+",
  28172. height: math.unit(2500, "feet")
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(3.02, "meters"),
  28181. weight: math.unit(500, "kg"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/drena/front.svg",
  28185. extra: 282 / 243,
  28186. bottom: 8 / 290
  28187. }
  28188. },
  28189. side: {
  28190. height: math.unit(3.02, "meters"),
  28191. weight: math.unit(500, "kg"),
  28192. name: "Side",
  28193. image: {
  28194. source: "./media/characters/drena/side.svg",
  28195. extra: 280 / 245,
  28196. bottom: 10 / 290
  28197. }
  28198. },
  28199. back: {
  28200. height: math.unit(3.02, "meters"),
  28201. weight: math.unit(500, "kg"),
  28202. name: "Back",
  28203. image: {
  28204. source: "./media/characters/drena/back.svg",
  28205. extra: 278 / 243,
  28206. bottom: 2 / 280
  28207. }
  28208. },
  28209. foot: {
  28210. height: math.unit(0.75, "meters"),
  28211. name: "Foot",
  28212. image: {
  28213. source: "./media/characters/drena/foot.svg"
  28214. }
  28215. },
  28216. maw: {
  28217. height: math.unit(0.82, "meters"),
  28218. name: "Maw",
  28219. image: {
  28220. source: "./media/characters/drena/maw.svg"
  28221. }
  28222. },
  28223. rump: {
  28224. height: math.unit(0.93, "meters"),
  28225. name: "Rump",
  28226. image: {
  28227. source: "./media/characters/drena/rump.svg"
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(3.02, "meters"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(6 + 4 / 12, "feet"),
  28244. weight: math.unit(250, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/remmyzilla/front.svg",
  28248. extra: 4033 / 3588,
  28249. bottom: 123 / 4156
  28250. }
  28251. },
  28252. back: {
  28253. height: math.unit(6 + 4 / 12, "feet"),
  28254. weight: math.unit(250, "lb"),
  28255. name: "Back",
  28256. image: {
  28257. source: "./media/characters/remmyzilla/back.svg",
  28258. extra: 2687 / 2555,
  28259. bottom: 48 / 2735
  28260. }
  28261. },
  28262. paw: {
  28263. height: math.unit(1.73, "feet"),
  28264. name: "Paw",
  28265. image: {
  28266. source: "./media/characters/remmyzilla/paw.svg"
  28267. }
  28268. },
  28269. maw: {
  28270. height: math.unit(1.73, "feet"),
  28271. name: "Maw",
  28272. image: {
  28273. source: "./media/characters/remmyzilla/maw.svg"
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Normal",
  28280. height: math.unit(6 + 4 / 12, "feet")
  28281. },
  28282. {
  28283. name: "Minimacro",
  28284. height: math.unit(12 + 8 / 12, "feet")
  28285. },
  28286. {
  28287. name: "Normal",
  28288. height: math.unit(640, "feet"),
  28289. default: true
  28290. },
  28291. {
  28292. name: "Megamacro",
  28293. height: math.unit(6400, "feet")
  28294. },
  28295. {
  28296. name: "Gigamacro",
  28297. height: math.unit(64000, "miles")
  28298. },
  28299. ]
  28300. ))
  28301. characterMakers.push(() => makeCharacter(
  28302. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28303. {
  28304. front: {
  28305. height: math.unit(2.5, "meters"),
  28306. weight: math.unit(300, "lb"),
  28307. name: "Front",
  28308. image: {
  28309. source: "./media/characters/lawrence/front.svg",
  28310. extra: 357 / 335,
  28311. bottom: 30 / 387
  28312. }
  28313. },
  28314. back: {
  28315. height: math.unit(2.5, "meters"),
  28316. weight: math.unit(300, "lb"),
  28317. name: "Back",
  28318. image: {
  28319. source: "./media/characters/lawrence/back.svg",
  28320. extra: 357 / 338,
  28321. bottom: 16 / 373
  28322. }
  28323. },
  28324. head: {
  28325. height: math.unit(0.9, "meter"),
  28326. name: "Head",
  28327. image: {
  28328. source: "./media/characters/lawrence/head.svg"
  28329. }
  28330. },
  28331. maw: {
  28332. height: math.unit(0.7, "meter"),
  28333. name: "Maw",
  28334. image: {
  28335. source: "./media/characters/lawrence/maw.svg"
  28336. }
  28337. },
  28338. footBottom: {
  28339. height: math.unit(0.5, "meter"),
  28340. name: "Foot (Bottom)",
  28341. image: {
  28342. source: "./media/characters/lawrence/foot-bottom.svg"
  28343. }
  28344. },
  28345. footTop: {
  28346. height: math.unit(0.5, "meter"),
  28347. name: "Foot (Top)",
  28348. image: {
  28349. source: "./media/characters/lawrence/foot-top.svg"
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Normal",
  28356. height: math.unit(2.5, "meters"),
  28357. default: true
  28358. },
  28359. {
  28360. name: "Macro",
  28361. height: math.unit(95, "meters")
  28362. },
  28363. {
  28364. name: "Megamacro",
  28365. height: math.unit(150, "km")
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28371. {
  28372. front: {
  28373. height: math.unit(4.2, "meters"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/sydney/front.svg",
  28377. extra: 1323 / 1277,
  28378. bottom: 111 / 1434
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(4.2, "meters"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28392. {
  28393. back: {
  28394. height: math.unit(201, "feet"),
  28395. name: "Back",
  28396. image: {
  28397. source: "./media/characters/jessica/back.svg",
  28398. extra: 273 / 259,
  28399. bottom: 7 / 280
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(201, "feet"),
  28407. default: true
  28408. },
  28409. {
  28410. name: "Megamacro",
  28411. height: math.unit(8, "miles")
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28417. {
  28418. side: {
  28419. height: math.unit(320, "cm"),
  28420. name: "Side",
  28421. image: {
  28422. source: "./media/characters/victoria/side.svg",
  28423. extra: 778 / 346,
  28424. bottom: 56 / 834
  28425. }
  28426. },
  28427. maw: {
  28428. height: math.unit(5.9, "feet"),
  28429. name: "Maw",
  28430. image: {
  28431. source: "./media/characters/victoria/maw.svg"
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(320, "cm"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28445. {
  28446. front: {
  28447. height: math.unit(5 + 6 / 12, "feet"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/cat/front.svg",
  28451. extra: 1449/1295,
  28452. bottom: 34/1483
  28453. }
  28454. },
  28455. back: {
  28456. height: math.unit(5 + 6 / 12, "feet"),
  28457. name: "Back",
  28458. image: {
  28459. source: "./media/characters/cat/back.svg",
  28460. extra: 1466/1301,
  28461. bottom: 19/1485
  28462. }
  28463. },
  28464. taur: {
  28465. height: math.unit(7, "feet"),
  28466. name: "Taur",
  28467. image: {
  28468. source: "./media/characters/cat/taur.svg",
  28469. extra: 1389/1233,
  28470. bottom: 83/1472
  28471. }
  28472. },
  28473. lucarioFront: {
  28474. height: math.unit(4, "feet"),
  28475. name: "Lucario (Front)",
  28476. image: {
  28477. source: "./media/characters/cat/lucario-front.svg",
  28478. extra: 1149/1019,
  28479. bottom: 84/1233
  28480. }
  28481. },
  28482. lucarioBack: {
  28483. height: math.unit(4, "feet"),
  28484. name: "Lucario (Back)",
  28485. image: {
  28486. source: "./media/characters/cat/lucario-back.svg",
  28487. extra: 1190/1059,
  28488. bottom: 33/1223
  28489. }
  28490. },
  28491. megaLucario: {
  28492. height: math.unit(4, "feet"),
  28493. name: "Mega Lucario",
  28494. image: {
  28495. source: "./media/characters/cat/mega-lucario.svg",
  28496. extra: 1515 / 1319,
  28497. bottom: 63 / 1578
  28498. }
  28499. },
  28500. nickit: {
  28501. height: math.unit(2, "feet"),
  28502. name: "Nickit",
  28503. image: {
  28504. source: "./media/characters/cat/nickit.svg",
  28505. extra: 1980 / 1585,
  28506. bottom: 102 / 2082
  28507. }
  28508. },
  28509. lopunnyFront: {
  28510. height: math.unit(5, "feet"),
  28511. name: "Lopunny (Front)",
  28512. image: {
  28513. source: "./media/characters/cat/lopunny-front.svg",
  28514. extra: 1782 / 1469,
  28515. bottom: 38 / 1820
  28516. }
  28517. },
  28518. lopunnyBack: {
  28519. height: math.unit(5, "feet"),
  28520. name: "Lopunny (Back)",
  28521. image: {
  28522. source: "./media/characters/cat/lopunny-back.svg",
  28523. extra: 1660 / 1490,
  28524. bottom: 25 / 1685
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Really small",
  28531. height: math.unit(1, "nm")
  28532. },
  28533. {
  28534. name: "Micro",
  28535. height: math.unit(5, "inches")
  28536. },
  28537. {
  28538. name: "Normal",
  28539. height: math.unit(5 + 6 / 12, "feet"),
  28540. default: true
  28541. },
  28542. {
  28543. name: "Macro",
  28544. height: math.unit(50, "feet")
  28545. },
  28546. {
  28547. name: "Macro+",
  28548. height: math.unit(150, "feet")
  28549. },
  28550. {
  28551. name: "Megamacro",
  28552. height: math.unit(100, "miles")
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(63.4, "meters"),
  28561. weight: math.unit(3.28349e+6, "kilograms"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/kirina-violet/front.svg",
  28565. extra: 2812 / 2725,
  28566. bottom: 0 / 2812
  28567. }
  28568. },
  28569. back: {
  28570. height: math.unit(63.4, "meters"),
  28571. weight: math.unit(3.28349e+6, "kilograms"),
  28572. name: "Back",
  28573. image: {
  28574. source: "./media/characters/kirina-violet/back.svg",
  28575. extra: 2812 / 2725,
  28576. bottom: 0 / 2812
  28577. }
  28578. },
  28579. mouth: {
  28580. height: math.unit(4.35, "meters"),
  28581. name: "Mouth",
  28582. image: {
  28583. source: "./media/characters/kirina-violet/mouth.svg"
  28584. }
  28585. },
  28586. paw: {
  28587. height: math.unit(5.6, "meters"),
  28588. name: "Paw",
  28589. image: {
  28590. source: "./media/characters/kirina-violet/paw.svg"
  28591. }
  28592. },
  28593. tail: {
  28594. height: math.unit(18, "meters"),
  28595. name: "Tail",
  28596. image: {
  28597. source: "./media/characters/kirina-violet/tail.svg"
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Macro",
  28604. height: math.unit(63.4, "meters"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(75, "feet"),
  28614. name: "Front",
  28615. image: {
  28616. source: "./media/characters/cat-gigachu/front.svg",
  28617. extra: 1239/1027,
  28618. bottom: 32/1271
  28619. }
  28620. },
  28621. back: {
  28622. height: math.unit(75, "feet"),
  28623. name: "Back",
  28624. image: {
  28625. source: "./media/characters/cat-gigachu/back.svg",
  28626. extra: 1229/1030,
  28627. bottom: 9/1238
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Dynamax",
  28634. height: math.unit(75, "feet"),
  28635. default: true
  28636. },
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(6, "feet"),
  28644. weight: math.unit(150, "lb"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/sfaiyan/front.svg",
  28648. extra: 999 / 978,
  28649. bottom: 5 / 1004
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(1.82, "meters")
  28657. },
  28658. {
  28659. name: "Giant",
  28660. height: math.unit(2.27, "km"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(179, "cm"),
  28670. weight: math.unit(100, "kg"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/raunehkeli/front.svg",
  28674. extra: 1934 / 1926,
  28675. bottom: 0 / 1934
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(179, "cm")
  28683. },
  28684. {
  28685. name: "Maximum",
  28686. height: math.unit(575, "meters"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(6, "feet"),
  28696. weight: math.unit(150, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28700. extra: 2625 / 2518,
  28701. bottom: 60 / 2685
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(6 + 2 / 12, "feet")
  28709. },
  28710. {
  28711. name: "Macro",
  28712. height: math.unit(1180, "feet"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28719. {
  28720. front: {
  28721. height: math.unit(5 + 6 / 12, "feet"),
  28722. weight: math.unit(108, "lb"),
  28723. name: "Front",
  28724. image: {
  28725. source: "./media/characters/lilith-zott/front.svg",
  28726. extra: 2510 / 2238,
  28727. bottom: 100 / 2610
  28728. }
  28729. },
  28730. frontDressed: {
  28731. height: math.unit(5 + 6 / 12, "feet"),
  28732. weight: math.unit(108, "lb"),
  28733. name: "Front (Dressed)",
  28734. image: {
  28735. source: "./media/characters/lilith-zott/front-dressed.svg",
  28736. extra: 2510 / 2238,
  28737. bottom: 100 / 2610
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(5 + 6 / 12, "feet")
  28745. },
  28746. {
  28747. name: "Macro",
  28748. height: math.unit(1030, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(6, "feet"),
  28758. weight: math.unit(150, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28762. extra: 2567 / 2435,
  28763. bottom: 39 / 2606
  28764. }
  28765. },
  28766. frontSuper: {
  28767. height: math.unit(6, "feet"),
  28768. name: "Front (Super)",
  28769. image: {
  28770. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28771. extra: 2567 / 2435,
  28772. bottom: 39 / 2606
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(5 + 10 / 12, "feet")
  28780. },
  28781. {
  28782. name: "Macro",
  28783. height: math.unit(1100, "feet"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(100, "miles"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/sona/front.svg",
  28796. extra: 2433 / 2201,
  28797. bottom: 53 / 2486
  28798. }
  28799. },
  28800. foot: {
  28801. height: math.unit(16.1, "miles"),
  28802. name: "Foot",
  28803. image: {
  28804. source: "./media/characters/sona/foot.svg"
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Macro",
  28811. height: math.unit(100, "miles"),
  28812. default: true
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(6, "feet"),
  28821. weight: math.unit(150, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/bailey/front.svg",
  28825. extra: 1778 / 1724,
  28826. bottom: 30 / 1808
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Micro",
  28833. height: math.unit(4, "inches")
  28834. },
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(5 + 5 / 12, "feet"),
  28838. default: true
  28839. },
  28840. {
  28841. name: "Macro",
  28842. height: math.unit(250, "feet")
  28843. },
  28844. {
  28845. name: "Megamacro",
  28846. height: math.unit(100, "miles")
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(5 + 2 / 12, "feet"),
  28855. weight: math.unit(120, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/snaps/front.svg",
  28859. extra: 2370 / 2177,
  28860. bottom: 48 / 2418
  28861. }
  28862. },
  28863. back: {
  28864. height: math.unit(5 + 2 / 12, "feet"),
  28865. weight: math.unit(120, "lb"),
  28866. name: "Back",
  28867. image: {
  28868. source: "./media/characters/snaps/back.svg",
  28869. extra: 2408 / 2258,
  28870. bottom: 15 / 2423
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Micro",
  28877. height: math.unit(9, "inches")
  28878. },
  28879. {
  28880. name: "Normal",
  28881. height: math.unit(5 + 2 / 12, "feet"),
  28882. default: true
  28883. },
  28884. {
  28885. name: "Mini Macro",
  28886. height: math.unit(10, "feet")
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(1.8, "meters"),
  28895. weight: math.unit(85, "kg"),
  28896. name: "Front",
  28897. image: {
  28898. source: "./media/characters/azteck/front.svg",
  28899. extra: 2815 / 2625,
  28900. bottom: 89 / 2904
  28901. }
  28902. },
  28903. back: {
  28904. height: math.unit(1.8, "meters"),
  28905. weight: math.unit(85, "kg"),
  28906. name: "Back",
  28907. image: {
  28908. source: "./media/characters/azteck/back.svg",
  28909. extra: 2856 / 2648,
  28910. bottom: 85 / 2941
  28911. }
  28912. },
  28913. frontDressed: {
  28914. height: math.unit(1.8, "meters"),
  28915. weight: math.unit(85, "kg"),
  28916. name: "Front (Dressed)",
  28917. image: {
  28918. source: "./media/characters/azteck/front-dressed.svg",
  28919. extra: 2147 / 2003,
  28920. bottom: 68 / 2215
  28921. }
  28922. },
  28923. head: {
  28924. height: math.unit(0.47, "meters"),
  28925. weight: math.unit(85, "kg"),
  28926. name: "Head",
  28927. image: {
  28928. source: "./media/characters/azteck/head.svg"
  28929. }
  28930. },
  28931. },
  28932. [
  28933. {
  28934. name: "Bite sized",
  28935. height: math.unit(16, "cm")
  28936. },
  28937. {
  28938. name: "Normal",
  28939. height: math.unit(1.8, "meters"),
  28940. default: true
  28941. },
  28942. ]
  28943. ))
  28944. characterMakers.push(() => makeCharacter(
  28945. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28946. {
  28947. front: {
  28948. height: math.unit(6, "feet"),
  28949. weight: math.unit(150, "lb"),
  28950. name: "Front",
  28951. image: {
  28952. source: "./media/characters/pidge/front.svg",
  28953. extra: 620 / 588,
  28954. bottom: 9 / 629
  28955. }
  28956. },
  28957. back: {
  28958. height: math.unit(6, "feet"),
  28959. weight: math.unit(150, "lb"),
  28960. name: "Back",
  28961. image: {
  28962. source: "./media/characters/pidge/back.svg",
  28963. extra: 620 / 588,
  28964. bottom: 9 / 629
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(1, "mile"),
  28972. default: true
  28973. },
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28978. {
  28979. front: {
  28980. height: math.unit(6, "feet"),
  28981. weight: math.unit(150, "lb"),
  28982. name: "Front",
  28983. image: {
  28984. source: "./media/characters/en/front.svg",
  28985. extra: 1697 / 1563,
  28986. bottom: 103 / 1800
  28987. }
  28988. },
  28989. back: {
  28990. height: math.unit(6, "feet"),
  28991. weight: math.unit(150, "lb"),
  28992. name: "Back",
  28993. image: {
  28994. source: "./media/characters/en/back.svg",
  28995. extra: 1700 / 1570,
  28996. bottom: 51 / 1751
  28997. }
  28998. },
  28999. frontDressed: {
  29000. height: math.unit(6, "feet"),
  29001. weight: math.unit(150, "lb"),
  29002. name: "Front (Dressed)",
  29003. image: {
  29004. source: "./media/characters/en/front-dressed.svg",
  29005. extra: 1697 / 1563,
  29006. bottom: 103 / 1800
  29007. }
  29008. },
  29009. backDressed: {
  29010. height: math.unit(6, "feet"),
  29011. weight: math.unit(150, "lb"),
  29012. name: "Back (Dressed)",
  29013. image: {
  29014. source: "./media/characters/en/back-dressed.svg",
  29015. extra: 1700 / 1570,
  29016. bottom: 51 / 1751
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Macro",
  29023. height: math.unit(210, "feet"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(6, "feet"),
  29033. weight: math.unit(150, "lb"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/haze-orris/front.svg",
  29037. extra: 3975 / 3525,
  29038. bottom: 137 / 4112
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Micro",
  29045. height: math.unit(150, "mm"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(150, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/casselene-yaro/front.svg",
  29059. extra: 4721 / 4541,
  29060. bottom: 82 / 4803
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(6, "feet"),
  29065. weight: math.unit(150, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/casselene-yaro/back.svg",
  29069. extra: 4569 / 4377,
  29070. bottom: 69 / 4638
  29071. }
  29072. },
  29073. frontDressed: {
  29074. height: math.unit(6, "feet"),
  29075. weight: math.unit(150, "lb"),
  29076. name: "Front-dressed",
  29077. image: {
  29078. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29079. extra: 4721 / 4541,
  29080. bottom: 82 / 4803
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Macro",
  29087. height: math.unit(190, "feet"),
  29088. default: true
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(6, "feet"),
  29097. weight: math.unit(150, "lb"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/myra-rue-delore/front.svg",
  29101. extra: 1340 / 1308,
  29102. bottom: 67 / 1407
  29103. }
  29104. },
  29105. back: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(150, "lb"),
  29108. name: "Back",
  29109. image: {
  29110. source: "./media/characters/myra-rue-delore/back.svg",
  29111. extra: 1341 / 1310,
  29112. bottom: 40 / 1381
  29113. }
  29114. },
  29115. frontDressed: {
  29116. height: math.unit(6, "feet"),
  29117. weight: math.unit(150, "lb"),
  29118. name: "Front (Dressed)",
  29119. image: {
  29120. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29121. extra: 1340 / 1308,
  29122. bottom: 67 / 1407
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Macro",
  29129. height: math.unit(150, "feet"),
  29130. default: true
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(10, "feet"),
  29139. weight: math.unit(15015, "lb"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/fem!plat/front.svg",
  29143. extra: 2799 / 2604,
  29144. bottom: 149 / 2948
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Normal",
  29151. height: math.unit(10, "feet"),
  29152. default: true
  29153. },
  29154. {
  29155. name: "Macro",
  29156. height: math.unit(100, "feet")
  29157. },
  29158. {
  29159. name: "Megamacro",
  29160. height: math.unit(1000, "feet")
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29166. {
  29167. front: {
  29168. height: math.unit(15 + 5 / 12, "feet"),
  29169. weight: math.unit(4600, "lb"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/neapolitan-ananassa/front.svg",
  29173. extra: 2903 / 2736,
  29174. bottom: 0 / 2903
  29175. }
  29176. },
  29177. side: {
  29178. height: math.unit(15 + 5 / 12, "feet"),
  29179. weight: math.unit(4600, "lb"),
  29180. name: "Side",
  29181. image: {
  29182. source: "./media/characters/neapolitan-ananassa/side.svg",
  29183. extra: 2925 / 2719,
  29184. bottom: 0 / 2925
  29185. }
  29186. },
  29187. back: {
  29188. height: math.unit(15 + 5 / 12, "feet"),
  29189. weight: math.unit(4600, "lb"),
  29190. name: "Back",
  29191. image: {
  29192. source: "./media/characters/neapolitan-ananassa/back.svg",
  29193. extra: 2903 / 2736,
  29194. bottom: 0 / 2903
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(15 + 5 / 12, "feet"),
  29202. default: true
  29203. },
  29204. {
  29205. name: "Post-Millenium",
  29206. height: math.unit(35 + 5 / 12, "feet")
  29207. },
  29208. {
  29209. name: "Post-Era",
  29210. height: math.unit(450 + 5 / 12, "feet")
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(300, "meters"),
  29219. weight: math.unit(125000, "tonnes"),
  29220. name: "Front",
  29221. image: {
  29222. source: "./media/characters/pazuzu/front.svg",
  29223. extra: 877 / 794,
  29224. bottom: 47 / 924
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Macro",
  29231. height: math.unit(300, "meters"),
  29232. default: true
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29238. {
  29239. side: {
  29240. height: math.unit(10 + 7 / 12, "feet"),
  29241. weight: math.unit(2.5, "tons"),
  29242. name: "Side",
  29243. image: {
  29244. source: "./media/characters/aasha/side.svg",
  29245. extra: 1345 / 1245,
  29246. bottom: 111 / 1456
  29247. }
  29248. },
  29249. back: {
  29250. height: math.unit(10 + 7 / 12, "feet"),
  29251. weight: math.unit(2.5, "tons"),
  29252. name: "Back",
  29253. image: {
  29254. source: "./media/characters/aasha/back.svg",
  29255. extra: 1133 / 1057,
  29256. bottom: 257 / 1390
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(10 + 7 / 12, "feet"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(6 + 3 / 12, "feet"),
  29273. name: "Front",
  29274. image: {
  29275. source: "./media/characters/nevan/front.svg",
  29276. extra: 704 / 704,
  29277. bottom: 28 / 732
  29278. }
  29279. },
  29280. back: {
  29281. height: math.unit(6 + 3 / 12, "feet"),
  29282. name: "Back",
  29283. image: {
  29284. source: "./media/characters/nevan/back.svg",
  29285. extra: 714 / 714,
  29286. bottom: 21 / 735
  29287. }
  29288. },
  29289. frontFlaccid: {
  29290. height: math.unit(6 + 3 / 12, "feet"),
  29291. name: "Front (Flaccid)",
  29292. image: {
  29293. source: "./media/characters/nevan/front-flaccid.svg",
  29294. extra: 704 / 704,
  29295. bottom: 28 / 732
  29296. }
  29297. },
  29298. frontErect: {
  29299. height: math.unit(6 + 3 / 12, "feet"),
  29300. name: "Front (Erect)",
  29301. image: {
  29302. source: "./media/characters/nevan/front-erect.svg",
  29303. extra: 704 / 704,
  29304. bottom: 28 / 732
  29305. }
  29306. },
  29307. backFlaccid: {
  29308. height: math.unit(6 + 3 / 12, "feet"),
  29309. name: "Back (Flaccid)",
  29310. image: {
  29311. source: "./media/characters/nevan/back-flaccid.svg",
  29312. extra: 714 / 714,
  29313. bottom: 21 / 735
  29314. }
  29315. },
  29316. },
  29317. [
  29318. {
  29319. name: "Normal",
  29320. height: math.unit(6 + 3 / 12, "feet"),
  29321. default: true
  29322. },
  29323. ]
  29324. ))
  29325. characterMakers.push(() => makeCharacter(
  29326. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29327. {
  29328. front: {
  29329. height: math.unit(4, "feet"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/arhan/front.svg",
  29333. extra: 3368 / 3133,
  29334. bottom: 0 / 3368
  29335. }
  29336. },
  29337. side: {
  29338. height: math.unit(4, "feet"),
  29339. name: "Side",
  29340. image: {
  29341. source: "./media/characters/arhan/side.svg",
  29342. extra: 3347 / 3105,
  29343. bottom: 0 / 3347
  29344. }
  29345. },
  29346. tongue: {
  29347. height: math.unit(1.42, "feet"),
  29348. name: "Tongue",
  29349. image: {
  29350. source: "./media/characters/arhan/tongue.svg"
  29351. }
  29352. },
  29353. head: {
  29354. height: math.unit(0.85, "feet"),
  29355. name: "Head",
  29356. image: {
  29357. source: "./media/characters/arhan/head.svg"
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(4, "feet"),
  29365. default: true
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29371. {
  29372. front: {
  29373. height: math.unit(5 + 7.5 / 12, "feet"),
  29374. weight: math.unit(120, "lb"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/digi-duncan/front.svg",
  29378. extra: 330 / 326,
  29379. bottom: 16 / 346
  29380. }
  29381. },
  29382. side: {
  29383. height: math.unit(5 + 7.5 / 12, "feet"),
  29384. weight: math.unit(120, "lb"),
  29385. name: "Side",
  29386. image: {
  29387. source: "./media/characters/digi-duncan/side.svg",
  29388. extra: 341 / 337,
  29389. bottom: 1 / 342
  29390. }
  29391. },
  29392. back: {
  29393. height: math.unit(5 + 7.5 / 12, "feet"),
  29394. weight: math.unit(120, "lb"),
  29395. name: "Back",
  29396. image: {
  29397. source: "./media/characters/digi-duncan/back.svg",
  29398. extra: 330 / 326,
  29399. bottom: 12 / 342
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Speck",
  29406. height: math.unit(0.25, "mm")
  29407. },
  29408. {
  29409. name: "Micro",
  29410. height: math.unit(5, "mm")
  29411. },
  29412. {
  29413. name: "Tiny",
  29414. height: math.unit(0.5, "inches"),
  29415. default: true
  29416. },
  29417. {
  29418. name: "Human",
  29419. height: math.unit(5 + 7.5 / 12, "feet")
  29420. },
  29421. {
  29422. name: "Minigiant",
  29423. height: math.unit(8 + 5.25, "feet")
  29424. },
  29425. {
  29426. name: "Giant",
  29427. height: math.unit(2000, "feet")
  29428. },
  29429. {
  29430. name: "Mega",
  29431. height: math.unit(371.1, "miles")
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(2, "meters"),
  29440. weight: math.unit(350, "kg"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29444. extra: 898 / 838,
  29445. bottom: 9 / 907
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Micro",
  29452. height: math.unit(8, "meters")
  29453. },
  29454. {
  29455. name: "Normal",
  29456. height: math.unit(50, "meters"),
  29457. default: true
  29458. },
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(500, "meters")
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(6 + 6 / 12, "feet"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/khardesh/front.svg",
  29473. extra: 888 / 797,
  29474. bottom: 25 / 913
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Normal",
  29481. height: math.unit(6 + 6 / 12, "feet"),
  29482. default: true
  29483. },
  29484. {
  29485. name: "Normal+",
  29486. height: math.unit(4, "meters")
  29487. },
  29488. {
  29489. name: "Macro",
  29490. height: math.unit(50, "meters")
  29491. },
  29492. {
  29493. name: "Macro+",
  29494. height: math.unit(100, "meters")
  29495. },
  29496. {
  29497. name: "Megamacro",
  29498. height: math.unit(20, "km")
  29499. },
  29500. ]
  29501. ))
  29502. characterMakers.push(() => makeCharacter(
  29503. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29504. {
  29505. front: {
  29506. height: math.unit(6, "feet"),
  29507. weight: math.unit(150, "lb"),
  29508. name: "Front",
  29509. image: {
  29510. source: "./media/characters/kosho/front.svg",
  29511. extra: 1847 / 1847,
  29512. bottom: 86 / 1933
  29513. }
  29514. },
  29515. },
  29516. [
  29517. {
  29518. name: "Second-stage micro",
  29519. height: math.unit(0.5, "inches")
  29520. },
  29521. {
  29522. name: "First-stage micro",
  29523. height: math.unit(6, "inches")
  29524. },
  29525. {
  29526. name: "Normal",
  29527. height: math.unit(6, "feet"),
  29528. default: true
  29529. },
  29530. {
  29531. name: "First-stage macro",
  29532. height: math.unit(72, "feet")
  29533. },
  29534. {
  29535. name: "Second-stage macro",
  29536. height: math.unit(864, "feet")
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29542. {
  29543. normal: {
  29544. height: math.unit(4 + 6 / 12, "feet"),
  29545. name: "Normal",
  29546. image: {
  29547. source: "./media/characters/hydra/normal.svg",
  29548. extra: 2833 / 2634,
  29549. bottom: 68 / 2901
  29550. }
  29551. },
  29552. smol: {
  29553. height: math.unit(0.705, "inches"),
  29554. name: "Smol",
  29555. image: {
  29556. source: "./media/characters/hydra/smol.svg",
  29557. extra: 2715 / 2540,
  29558. bottom: 0 / 2715
  29559. }
  29560. },
  29561. },
  29562. [
  29563. {
  29564. name: "Normal",
  29565. height: math.unit(4 + 6 / 12, "feet"),
  29566. default: true
  29567. }
  29568. ]
  29569. ))
  29570. characterMakers.push(() => makeCharacter(
  29571. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29572. {
  29573. front: {
  29574. height: math.unit(0.6, "cm"),
  29575. name: "Front",
  29576. image: {
  29577. source: "./media/characters/daz/front.svg",
  29578. extra: 1682 / 1164,
  29579. bottom: 42 / 1724
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Normal",
  29586. height: math.unit(0.6, "cm"),
  29587. default: true
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(6, "feet"),
  29596. weight: math.unit(235, "lb"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/theo-pangolin/front.svg",
  29600. extra: 1996 / 1969,
  29601. bottom: 115 / 2111
  29602. }
  29603. },
  29604. back: {
  29605. height: math.unit(6, "feet"),
  29606. weight: math.unit(235, "lb"),
  29607. name: "Back",
  29608. image: {
  29609. source: "./media/characters/theo-pangolin/back.svg",
  29610. extra: 1979 / 1979,
  29611. bottom: 40 / 2019
  29612. }
  29613. },
  29614. feral: {
  29615. height: math.unit(2, "feet"),
  29616. weight: math.unit(30, "lb"),
  29617. name: "Feral",
  29618. image: {
  29619. source: "./media/characters/theo-pangolin/feral.svg",
  29620. extra: 803 / 791,
  29621. bottom: 181 / 984
  29622. }
  29623. },
  29624. footFive: {
  29625. height: math.unit(1.43, "feet"),
  29626. name: "Foot (Five Toes)",
  29627. image: {
  29628. source: "./media/characters/theo-pangolin/foot-five.svg"
  29629. }
  29630. },
  29631. footFour: {
  29632. height: math.unit(1.43, "feet"),
  29633. name: "Foot (Four Toes)",
  29634. image: {
  29635. source: "./media/characters/theo-pangolin/foot-four.svg"
  29636. }
  29637. },
  29638. handFour: {
  29639. height: math.unit(0.81, "feet"),
  29640. name: "Hand (Four Fingers)",
  29641. image: {
  29642. source: "./media/characters/theo-pangolin/hand-four.svg"
  29643. }
  29644. },
  29645. handThree: {
  29646. height: math.unit(0.81, "feet"),
  29647. name: "Hand (Three Fingers)",
  29648. image: {
  29649. source: "./media/characters/theo-pangolin/hand-three.svg"
  29650. }
  29651. },
  29652. headFront: {
  29653. height: math.unit(1.37, "feet"),
  29654. name: "Head (Front)",
  29655. image: {
  29656. source: "./media/characters/theo-pangolin/head-front.svg"
  29657. }
  29658. },
  29659. headSide: {
  29660. height: math.unit(1.43, "feet"),
  29661. name: "Head (Side)",
  29662. image: {
  29663. source: "./media/characters/theo-pangolin/head-side.svg"
  29664. }
  29665. },
  29666. tongue: {
  29667. height: math.unit(2.29, "feet"),
  29668. name: "Tongue",
  29669. image: {
  29670. source: "./media/characters/theo-pangolin/tongue.svg"
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Normal",
  29677. height: math.unit(6, "feet")
  29678. },
  29679. {
  29680. name: "Macro",
  29681. height: math.unit(400, "feet"),
  29682. default: true
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(6, "inches"),
  29691. weight: math.unit(0.036, "kg"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/renée/front.svg",
  29695. extra: 900 / 886,
  29696. bottom: 8 / 908
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Nano",
  29703. height: math.unit(1, "nm")
  29704. },
  29705. {
  29706. name: "Micro",
  29707. height: math.unit(1, "mm")
  29708. },
  29709. {
  29710. name: "Normal",
  29711. height: math.unit(6, "inches")
  29712. },
  29713. {
  29714. name: "Macro",
  29715. height: math.unit(2000, "feet"),
  29716. default: true
  29717. },
  29718. {
  29719. name: "Megamacro",
  29720. height: math.unit(2, "km")
  29721. },
  29722. {
  29723. name: "Gigamacro",
  29724. height: math.unit(2000, "km")
  29725. },
  29726. {
  29727. name: "Teramacro",
  29728. height: math.unit(250000, "km")
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(4, "meters"),
  29737. weight: math.unit(150, "kg"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/caledvwlch/front.svg",
  29741. extra: 1760 / 1551,
  29742. bottom: 28 / 1788
  29743. }
  29744. },
  29745. side: {
  29746. height: math.unit(4, "meters"),
  29747. weight: math.unit(150, "kg"),
  29748. name: "Side",
  29749. image: {
  29750. source: "./media/characters/caledvwlch/side.svg",
  29751. extra: 1605 / 1536,
  29752. bottom: 31 / 1636
  29753. }
  29754. },
  29755. back: {
  29756. height: math.unit(4, "meters"),
  29757. weight: math.unit(150, "kg"),
  29758. name: "Back",
  29759. image: {
  29760. source: "./media/characters/caledvwlch/back.svg",
  29761. extra: 1635 / 1565,
  29762. bottom: 27 / 1662
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "\"Incognito\"",
  29769. height: math.unit(4, "meters")
  29770. },
  29771. {
  29772. name: "Small rampage",
  29773. height: math.unit(600, "meters")
  29774. },
  29775. {
  29776. name: "Mega",
  29777. height: math.unit(30, "km")
  29778. },
  29779. {
  29780. name: "Home-size",
  29781. height: math.unit(50, "km"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Giga",
  29786. height: math.unit(300, "km")
  29787. },
  29788. {
  29789. name: "Lounging",
  29790. height: math.unit(11000, "km")
  29791. },
  29792. {
  29793. name: "Planet snacking",
  29794. height: math.unit(2000000, "km")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(6, "feet"),
  29803. weight: math.unit(215, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/sapphire-svell/front.svg",
  29807. extra: 495 / 455,
  29808. bottom: 20 / 515
  29809. }
  29810. },
  29811. back: {
  29812. height: math.unit(6, "feet"),
  29813. weight: math.unit(216, "lb"),
  29814. name: "Back",
  29815. image: {
  29816. source: "./media/characters/sapphire-svell/back.svg",
  29817. extra: 497 / 477,
  29818. bottom: 7 / 504
  29819. }
  29820. },
  29821. maw: {
  29822. height: math.unit(1.57, "feet"),
  29823. name: "Maw",
  29824. image: {
  29825. source: "./media/characters/sapphire-svell/maw.svg"
  29826. }
  29827. },
  29828. foot: {
  29829. height: math.unit(1.07, "feet"),
  29830. name: "Foot",
  29831. image: {
  29832. source: "./media/characters/sapphire-svell/foot.svg"
  29833. }
  29834. },
  29835. toering: {
  29836. height: math.unit(1.7, "inch"),
  29837. name: "Toering",
  29838. image: {
  29839. source: "./media/characters/sapphire-svell/toering.svg"
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(300, "feet"),
  29847. default: true
  29848. },
  29849. {
  29850. name: "Augmented",
  29851. height: math.unit(1250, "feet")
  29852. },
  29853. {
  29854. name: "Unleashed",
  29855. height: math.unit(3000, "feet")
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29861. {
  29862. side: {
  29863. height: math.unit(2 + 3 / 12, "feet"),
  29864. weight: math.unit(110, "lb"),
  29865. name: "Side",
  29866. image: {
  29867. source: "./media/characters/glitch-flux/side.svg",
  29868. extra: 997 / 805,
  29869. bottom: 20 / 1017
  29870. }
  29871. },
  29872. },
  29873. [
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(2 + 3 / 12, "feet"),
  29877. default: true
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(4, "meters"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/mid/front.svg",
  29889. extra: 507 / 476,
  29890. bottom: 17 / 524
  29891. }
  29892. },
  29893. back: {
  29894. height: math.unit(4, "meters"),
  29895. name: "Back",
  29896. image: {
  29897. source: "./media/characters/mid/back.svg",
  29898. extra: 519 / 487,
  29899. bottom: 7 / 526
  29900. }
  29901. },
  29902. stuck: {
  29903. height: math.unit(2.2, "meters"),
  29904. name: "Stuck",
  29905. image: {
  29906. source: "./media/characters/mid/stuck.svg",
  29907. extra: 1951 / 1869,
  29908. bottom: 88 / 2039
  29909. }
  29910. }
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(4, "meters"),
  29916. default: true
  29917. },
  29918. {
  29919. name: "Big",
  29920. height: math.unit(10, "meters")
  29921. },
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(800, "meters")
  29925. },
  29926. {
  29927. name: "Megamacro",
  29928. height: math.unit(100, "km")
  29929. },
  29930. {
  29931. name: "Overgrown",
  29932. height: math.unit(1, "parsec")
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(2.5, "meters"),
  29941. weight: math.unit(225, "kg"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/iris/front.svg",
  29945. extra: 3348 / 3251,
  29946. bottom: 205 / 3553
  29947. }
  29948. },
  29949. maw: {
  29950. height: math.unit(0.56, "meter"),
  29951. name: "Maw",
  29952. image: {
  29953. source: "./media/characters/iris/maw.svg"
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Mewter cat",
  29960. height: math.unit(1.2, "meters")
  29961. },
  29962. {
  29963. name: "Minimacro",
  29964. height: math.unit(2.5, "meters"),
  29965. default: true
  29966. },
  29967. {
  29968. name: "Macro",
  29969. height: math.unit(180, "meters")
  29970. },
  29971. {
  29972. name: "Megamacro",
  29973. height: math.unit(2746, "meters")
  29974. },
  29975. ]
  29976. ))
  29977. characterMakers.push(() => makeCharacter(
  29978. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29979. {
  29980. front: {
  29981. height: math.unit(6, "feet"),
  29982. weight: math.unit(135, "lb"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/axel/front.svg",
  29986. extra: 908 / 908,
  29987. bottom: 58 / 966
  29988. }
  29989. },
  29990. side: {
  29991. height: math.unit(6, "feet"),
  29992. weight: math.unit(135, "lb"),
  29993. name: "Side",
  29994. image: {
  29995. source: "./media/characters/axel/side.svg",
  29996. extra: 958 / 958,
  29997. bottom: 11 / 969
  29998. }
  29999. },
  30000. back: {
  30001. height: math.unit(6, "feet"),
  30002. weight: math.unit(135, "lb"),
  30003. name: "Back",
  30004. image: {
  30005. source: "./media/characters/axel/back.svg",
  30006. extra: 887 / 887,
  30007. bottom: 34 / 921
  30008. }
  30009. },
  30010. head: {
  30011. height: math.unit(1.07, "feet"),
  30012. name: "Head",
  30013. image: {
  30014. source: "./media/characters/axel/head.svg"
  30015. }
  30016. },
  30017. beak: {
  30018. height: math.unit(1.4, "feet"),
  30019. name: "Beak",
  30020. image: {
  30021. source: "./media/characters/axel/beak.svg"
  30022. }
  30023. },
  30024. beakSide: {
  30025. height: math.unit(1.4, "feet"),
  30026. name: "Beak Side",
  30027. image: {
  30028. source: "./media/characters/axel/beak-side.svg"
  30029. }
  30030. },
  30031. sheath: {
  30032. height: math.unit(0.5, "feet"),
  30033. name: "Sheath",
  30034. image: {
  30035. source: "./media/characters/axel/sheath.svg"
  30036. }
  30037. },
  30038. dick: {
  30039. height: math.unit(0.98, "feet"),
  30040. name: "Dick",
  30041. image: {
  30042. source: "./media/characters/axel/dick.svg"
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Macro",
  30049. height: math.unit(68, "meters"),
  30050. default: true
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30056. {
  30057. front: {
  30058. height: math.unit(3.5, "meters"),
  30059. weight: math.unit(1200, "kg"),
  30060. name: "Front",
  30061. image: {
  30062. source: "./media/characters/joanna/front.svg",
  30063. extra: 1596 / 1488,
  30064. bottom: 29 / 1625
  30065. }
  30066. },
  30067. back: {
  30068. height: math.unit(3.5, "meters"),
  30069. weight: math.unit(1200, "kg"),
  30070. name: "Back",
  30071. image: {
  30072. source: "./media/characters/joanna/back.svg",
  30073. extra: 1594 / 1495,
  30074. bottom: 26 / 1620
  30075. }
  30076. },
  30077. frontShorts: {
  30078. height: math.unit(3.5, "meters"),
  30079. weight: math.unit(1200, "kg"),
  30080. name: "Front (Shorts)",
  30081. image: {
  30082. source: "./media/characters/joanna/front-shorts.svg",
  30083. extra: 1596 / 1488,
  30084. bottom: 29 / 1625
  30085. }
  30086. },
  30087. frontBiker: {
  30088. height: math.unit(3.5, "meters"),
  30089. weight: math.unit(1200, "kg"),
  30090. name: "Front (Biker)",
  30091. image: {
  30092. source: "./media/characters/joanna/front-biker.svg",
  30093. extra: 1596 / 1488,
  30094. bottom: 29 / 1625
  30095. }
  30096. },
  30097. backBiker: {
  30098. height: math.unit(3.5, "meters"),
  30099. weight: math.unit(1200, "kg"),
  30100. name: "Back (Biker)",
  30101. image: {
  30102. source: "./media/characters/joanna/back-biker.svg",
  30103. extra: 1594 / 1495,
  30104. bottom: 88 / 1682
  30105. }
  30106. },
  30107. bikeLeft: {
  30108. height: math.unit(2.4, "meters"),
  30109. weight: math.unit(1600, "kg"),
  30110. name: "Bike (Left)",
  30111. image: {
  30112. source: "./media/characters/joanna/bike-left.svg",
  30113. extra: 720 / 720,
  30114. bottom: 8 / 728
  30115. }
  30116. },
  30117. bikeRight: {
  30118. height: math.unit(2.4, "meters"),
  30119. weight: math.unit(1600, "kg"),
  30120. name: "Bike (Right)",
  30121. image: {
  30122. source: "./media/characters/joanna/bike-right.svg",
  30123. extra: 720 / 720,
  30124. bottom: 8 / 728
  30125. }
  30126. },
  30127. },
  30128. [
  30129. {
  30130. name: "Incognito",
  30131. height: math.unit(3.5, "meters")
  30132. },
  30133. {
  30134. name: "Casual Big",
  30135. height: math.unit(200, "meters")
  30136. },
  30137. {
  30138. name: "Macro",
  30139. height: math.unit(600, "meters")
  30140. },
  30141. {
  30142. name: "Original",
  30143. height: math.unit(20, "km"),
  30144. default: true
  30145. },
  30146. {
  30147. name: "Giga",
  30148. height: math.unit(400, "km")
  30149. },
  30150. {
  30151. name: "Lounging",
  30152. height: math.unit(1500, "km")
  30153. },
  30154. {
  30155. name: "Planetary",
  30156. height: math.unit(200000, "km")
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(6, "feet"),
  30165. weight: math.unit(150, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/hugo-sigil/front.svg",
  30169. extra: 522 / 500,
  30170. bottom: 2 / 524
  30171. }
  30172. },
  30173. back: {
  30174. height: math.unit(6, "feet"),
  30175. weight: math.unit(150, "lb"),
  30176. name: "Back",
  30177. image: {
  30178. source: "./media/characters/hugo-sigil/back.svg",
  30179. extra: 519 / 495,
  30180. bottom: 5 / 524
  30181. }
  30182. },
  30183. maw: {
  30184. height: math.unit(1.4, "feet"),
  30185. weight: math.unit(150, "lb"),
  30186. name: "Maw",
  30187. image: {
  30188. source: "./media/characters/hugo-sigil/maw.svg"
  30189. }
  30190. },
  30191. feet: {
  30192. height: math.unit(1.56, "feet"),
  30193. weight: math.unit(150, "lb"),
  30194. name: "Feet",
  30195. image: {
  30196. source: "./media/characters/hugo-sigil/feet.svg",
  30197. extra: 177 / 177,
  30198. bottom: 12 / 189
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(6, "feet")
  30206. },
  30207. {
  30208. name: "Macro",
  30209. height: math.unit(200, "feet"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30216. {
  30217. front: {
  30218. height: math.unit(6, "feet"),
  30219. weight: math.unit(150, "lb"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/peri/front.svg",
  30223. extra: 2354 / 2233,
  30224. bottom: 49 / 2403
  30225. }
  30226. },
  30227. },
  30228. [
  30229. {
  30230. name: "Really Small",
  30231. height: math.unit(1, "nm")
  30232. },
  30233. {
  30234. name: "Micro",
  30235. height: math.unit(4, "inches")
  30236. },
  30237. {
  30238. name: "Normal",
  30239. height: math.unit(7, "inches"),
  30240. default: true
  30241. },
  30242. {
  30243. name: "Macro",
  30244. height: math.unit(400, "feet")
  30245. },
  30246. {
  30247. name: "Megamacro",
  30248. height: math.unit(100, "miles")
  30249. },
  30250. ]
  30251. ))
  30252. characterMakers.push(() => makeCharacter(
  30253. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30254. {
  30255. frontSlim: {
  30256. height: math.unit(7, "feet"),
  30257. name: "Front (Slim)",
  30258. image: {
  30259. source: "./media/characters/issilora/front-slim.svg",
  30260. extra: 529 / 449,
  30261. bottom: 53 / 582
  30262. }
  30263. },
  30264. sideSlim: {
  30265. height: math.unit(7, "feet"),
  30266. name: "Side (Slim)",
  30267. image: {
  30268. source: "./media/characters/issilora/side-slim.svg",
  30269. extra: 570 / 480,
  30270. bottom: 30 / 600
  30271. }
  30272. },
  30273. backSlim: {
  30274. height: math.unit(7, "feet"),
  30275. name: "Back (Slim)",
  30276. image: {
  30277. source: "./media/characters/issilora/back-slim.svg",
  30278. extra: 537 / 455,
  30279. bottom: 46 / 583
  30280. }
  30281. },
  30282. frontBuff: {
  30283. height: math.unit(7, "feet"),
  30284. name: "Front (Buff)",
  30285. image: {
  30286. source: "./media/characters/issilora/front-buff.svg",
  30287. extra: 2310 / 2035,
  30288. bottom: 335 / 2645
  30289. }
  30290. },
  30291. head: {
  30292. height: math.unit(1.94, "feet"),
  30293. name: "Head",
  30294. image: {
  30295. source: "./media/characters/issilora/head.svg"
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Minimum",
  30302. height: math.unit(7, "feet")
  30303. },
  30304. {
  30305. name: "Comfortable",
  30306. height: math.unit(17, "feet")
  30307. },
  30308. {
  30309. name: "Fun Size",
  30310. height: math.unit(47, "feet")
  30311. },
  30312. {
  30313. name: "Natural Macro",
  30314. height: math.unit(137, "feet"),
  30315. default: true
  30316. },
  30317. {
  30318. name: "Maximum Kaiju",
  30319. height: math.unit(397, "feet")
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30325. {
  30326. front: {
  30327. height: math.unit(50 + 9/12, "feet"),
  30328. weight: math.unit(32.8, "tons"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/irb'iiritaahn/front.svg",
  30332. extra: 1878/1826,
  30333. bottom: 326/2204
  30334. }
  30335. },
  30336. back: {
  30337. height: math.unit(50 + 9/12, "feet"),
  30338. weight: math.unit(32.8, "tons"),
  30339. name: "Back",
  30340. image: {
  30341. source: "./media/characters/irb'iiritaahn/back.svg",
  30342. extra: 2052/2018,
  30343. bottom: 152/2204
  30344. }
  30345. },
  30346. head: {
  30347. height: math.unit(12.86, "feet"),
  30348. name: "Head",
  30349. image: {
  30350. source: "./media/characters/irb'iiritaahn/head.svg"
  30351. }
  30352. },
  30353. maw: {
  30354. height: math.unit(9.66, "feet"),
  30355. name: "Maw",
  30356. image: {
  30357. source: "./media/characters/irb'iiritaahn/maw.svg"
  30358. }
  30359. },
  30360. frontDick: {
  30361. height: math.unit(8.78461, "feet"),
  30362. name: "Front Dick",
  30363. image: {
  30364. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30365. }
  30366. },
  30367. rearDick: {
  30368. height: math.unit(8.78461, "feet"),
  30369. name: "Rear Dick",
  30370. image: {
  30371. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30372. }
  30373. },
  30374. rearDickUnfolded: {
  30375. height: math.unit(8.78, "feet"),
  30376. name: "Rear Dick (Unfolded)",
  30377. image: {
  30378. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30379. }
  30380. },
  30381. wings: {
  30382. height: math.unit(43, "feet"),
  30383. name: "Wings",
  30384. image: {
  30385. source: "./media/characters/irb'iiritaahn/wings.svg"
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Macro",
  30392. height: math.unit(50 + 9/12, "feet"),
  30393. default: true
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(205, "cm"),
  30402. weight: math.unit(102, "kg"),
  30403. name: "Front",
  30404. image: {
  30405. source: "./media/characters/irbisgreif/front.svg",
  30406. extra: 785/706,
  30407. bottom: 13/798
  30408. }
  30409. },
  30410. back: {
  30411. height: math.unit(205, "cm"),
  30412. weight: math.unit(102, "kg"),
  30413. name: "Back",
  30414. image: {
  30415. source: "./media/characters/irbisgreif/back.svg",
  30416. extra: 713/701,
  30417. bottom: 26/739
  30418. }
  30419. },
  30420. frontDressed: {
  30421. height: math.unit(216, "cm"),
  30422. weight: math.unit(102, "kg"),
  30423. name: "Front-dressed",
  30424. image: {
  30425. source: "./media/characters/irbisgreif/front-dressed.svg",
  30426. extra: 902/776,
  30427. bottom: 14/916
  30428. }
  30429. },
  30430. sideDressed: {
  30431. height: math.unit(195, "cm"),
  30432. weight: math.unit(102, "kg"),
  30433. name: "Side-dressed",
  30434. image: {
  30435. source: "./media/characters/irbisgreif/side-dressed.svg",
  30436. extra: 788/688,
  30437. bottom: 21/809
  30438. }
  30439. },
  30440. backDressed: {
  30441. height: math.unit(216, "cm"),
  30442. weight: math.unit(102, "kg"),
  30443. name: "Back-dressed",
  30444. image: {
  30445. source: "./media/characters/irbisgreif/back-dressed.svg",
  30446. extra: 901/783,
  30447. bottom: 10/911
  30448. }
  30449. },
  30450. dick: {
  30451. height: math.unit(0.49, "feet"),
  30452. name: "Dick",
  30453. image: {
  30454. source: "./media/characters/irbisgreif/dick.svg"
  30455. }
  30456. },
  30457. wingTop: {
  30458. height: math.unit(1.93 , "feet"),
  30459. name: "Wing-top",
  30460. image: {
  30461. source: "./media/characters/irbisgreif/wing-top.svg"
  30462. }
  30463. },
  30464. wingBottom: {
  30465. height: math.unit(1.93 , "feet"),
  30466. name: "Wing-bottom",
  30467. image: {
  30468. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(216, "cm"),
  30476. default: true
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(6, "feet"),
  30485. weight: math.unit(150, "lb"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/pride/front.svg",
  30489. extra: 1299/1230,
  30490. bottom: 18/1317
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(7, "feet")
  30498. },
  30499. {
  30500. name: "Mini-macro",
  30501. height: math.unit(11, "feet")
  30502. },
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(15, "meters"),
  30506. default: true
  30507. },
  30508. {
  30509. name: "Macro+",
  30510. height: math.unit(40, "meters")
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30516. {
  30517. front: {
  30518. height: math.unit(4 + 2 / 12, "feet"),
  30519. weight: math.unit(95, "lb"),
  30520. name: "Front",
  30521. image: {
  30522. source: "./media/characters/vaelophis-nyx/front.svg",
  30523. extra: 2532/2330,
  30524. bottom: 0/2532
  30525. }
  30526. },
  30527. back: {
  30528. height: math.unit(4 + 2 / 12, "feet"),
  30529. weight: math.unit(95, "lb"),
  30530. name: "Back",
  30531. image: {
  30532. source: "./media/characters/vaelophis-nyx/back.svg",
  30533. extra: 2484/2361,
  30534. bottom: 0/2484
  30535. }
  30536. },
  30537. feralSide: {
  30538. height: math.unit(2 + 1/12, "feet"),
  30539. weight: math.unit(20, "lb"),
  30540. name: "Feral (Side)",
  30541. image: {
  30542. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30543. extra: 1721/1581,
  30544. bottom: 70/1791
  30545. }
  30546. },
  30547. feralLazing: {
  30548. height: math.unit(1.08, "feet"),
  30549. weight: math.unit(20, "lb"),
  30550. name: "Feral (Lazing)",
  30551. image: {
  30552. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30553. extra: 822/822,
  30554. bottom: 248/1070
  30555. }
  30556. },
  30557. ear: {
  30558. height: math.unit(0.416, "feet"),
  30559. name: "Ear",
  30560. image: {
  30561. source: "./media/characters/vaelophis-nyx/ear.svg"
  30562. }
  30563. },
  30564. eye: {
  30565. height: math.unit(0.0748, "feet"),
  30566. name: "Eye",
  30567. image: {
  30568. source: "./media/characters/vaelophis-nyx/eye.svg"
  30569. }
  30570. },
  30571. mouth: {
  30572. height: math.unit(0.378, "feet"),
  30573. name: "Mouth",
  30574. image: {
  30575. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30576. }
  30577. },
  30578. spade: {
  30579. height: math.unit(0.55, "feet"),
  30580. name: "Spade",
  30581. image: {
  30582. source: "./media/characters/vaelophis-nyx/spade.svg"
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(4 + 2/12, "feet"),
  30590. default: true
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30596. {
  30597. front: {
  30598. height: math.unit(7, "feet"),
  30599. weight: math.unit(231, "lb"),
  30600. name: "Front",
  30601. image: {
  30602. source: "./media/characters/flux/front.svg",
  30603. extra: 919/871,
  30604. bottom: 0/919
  30605. }
  30606. },
  30607. back: {
  30608. height: math.unit(7, "feet"),
  30609. weight: math.unit(231, "lb"),
  30610. name: "Back",
  30611. image: {
  30612. source: "./media/characters/flux/back.svg",
  30613. extra: 1040/992,
  30614. bottom: 0/1040
  30615. }
  30616. },
  30617. frontDressed: {
  30618. height: math.unit(7, "feet"),
  30619. weight: math.unit(231, "lb"),
  30620. name: "Front (Dressed)",
  30621. image: {
  30622. source: "./media/characters/flux/front-dressed.svg",
  30623. extra: 919/871,
  30624. bottom: 0/919
  30625. }
  30626. },
  30627. feralSide: {
  30628. height: math.unit(5, "feet"),
  30629. weight: math.unit(150, "lb"),
  30630. name: "Feral (Side)",
  30631. image: {
  30632. source: "./media/characters/flux/feral-side.svg",
  30633. extra: 598/528,
  30634. bottom: 28/626
  30635. }
  30636. },
  30637. head: {
  30638. height: math.unit(1.585, "feet"),
  30639. name: "Head",
  30640. image: {
  30641. source: "./media/characters/flux/head.svg"
  30642. }
  30643. },
  30644. headSide: {
  30645. height: math.unit(1.74, "feet"),
  30646. name: "Head (Side)",
  30647. image: {
  30648. source: "./media/characters/flux/head-side.svg"
  30649. }
  30650. },
  30651. headSideFire: {
  30652. height: math.unit(1.76, "feet"),
  30653. name: "Head (Side, Fire)",
  30654. image: {
  30655. source: "./media/characters/flux/head-side-fire.svg"
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(7, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(9, "feet"),
  30672. weight: math.unit(1012, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/ulfra-lupae/front.svg",
  30676. extra: 1083/1011,
  30677. bottom: 67/1150
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Micro",
  30684. height: math.unit(6, "inches")
  30685. },
  30686. {
  30687. name: "Socializing",
  30688. height: math.unit(6 + 5/12, "feet")
  30689. },
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(9, "feet"),
  30693. default: true
  30694. },
  30695. {
  30696. name: "Macro",
  30697. height: math.unit(150, "feet")
  30698. },
  30699. ]
  30700. ))
  30701. characterMakers.push(() => makeCharacter(
  30702. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30703. {
  30704. front: {
  30705. height: math.unit(5 + 2/12, "feet"),
  30706. weight: math.unit(120, "lb"),
  30707. name: "Front",
  30708. image: {
  30709. source: "./media/characters/timber/front.svg",
  30710. extra: 2814/2705,
  30711. bottom: 181/2995
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(5 + 2/12, "feet"),
  30719. default: true
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30725. {
  30726. front: {
  30727. height: math.unit(5 + 7/12, "feet"),
  30728. weight: math.unit(220, "lb"),
  30729. name: "Front",
  30730. image: {
  30731. source: "./media/characters/nicki/front.svg",
  30732. extra: 453/419,
  30733. bottom: 7/460
  30734. }
  30735. },
  30736. frontAlt: {
  30737. height: math.unit(5 + 7/12, "feet"),
  30738. weight: math.unit(220, "lb"),
  30739. name: "Front-alt",
  30740. image: {
  30741. source: "./media/characters/nicki/front-alt.svg",
  30742. extra: 435/411,
  30743. bottom: 12/447
  30744. }
  30745. },
  30746. back: {
  30747. height: math.unit(5 + 7/12, "feet"),
  30748. weight: math.unit(220, "lb"),
  30749. name: "Back",
  30750. image: {
  30751. source: "./media/characters/nicki/back.svg",
  30752. extra: 440/413,
  30753. bottom: 19/459
  30754. }
  30755. },
  30756. taur: {
  30757. height: math.unit(7 + 6/12, "feet"),
  30758. weight: math.unit(700, "lb"),
  30759. name: "Taur",
  30760. image: {
  30761. source: "./media/characters/nicki/taur.svg",
  30762. extra: 975/773,
  30763. bottom: 0/975
  30764. }
  30765. },
  30766. frontNsfw: {
  30767. height: math.unit(5 + 7/12, "feet"),
  30768. weight: math.unit(220, "lb"),
  30769. name: "Front (NSFW)",
  30770. image: {
  30771. source: "./media/characters/nicki/front-nsfw.svg",
  30772. extra: 453/419,
  30773. bottom: 7/460
  30774. }
  30775. },
  30776. frontNsfwAlt: {
  30777. height: math.unit(5 + 7/12, "feet"),
  30778. weight: math.unit(220, "lb"),
  30779. name: "Front (Alt, NSFW)",
  30780. image: {
  30781. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30782. extra: 435/411,
  30783. bottom: 12/447
  30784. }
  30785. },
  30786. backNsfw: {
  30787. height: math.unit(5 + 7/12, "feet"),
  30788. weight: math.unit(220, "lb"),
  30789. name: "Back (NSFW)",
  30790. image: {
  30791. source: "./media/characters/nicki/back-nsfw.svg",
  30792. extra: 440/413,
  30793. bottom: 19/459
  30794. }
  30795. },
  30796. head: {
  30797. height: math.unit(2.1, "feet"),
  30798. name: "Head",
  30799. image: {
  30800. source: "./media/characters/nicki/head.svg"
  30801. }
  30802. },
  30803. paw: {
  30804. height: math.unit(1.88, "feet"),
  30805. name: "Paw",
  30806. image: {
  30807. source: "./media/characters/nicki/paw.svg"
  30808. }
  30809. },
  30810. },
  30811. [
  30812. {
  30813. name: "Normal",
  30814. height: math.unit(5 + 7/12, "feet"),
  30815. default: true
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(7 + 10/12, "feet"),
  30824. weight: math.unit(3.5, "tons"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/lee/front.svg",
  30828. extra: 1773/1615,
  30829. bottom: 86/1859
  30830. }
  30831. },
  30832. hand: {
  30833. height: math.unit(1.78, "feet"),
  30834. name: "Hand",
  30835. image: {
  30836. source: "./media/characters/lee/hand.svg"
  30837. }
  30838. },
  30839. maw: {
  30840. height: math.unit(1.18, "feet"),
  30841. name: "Maw",
  30842. image: {
  30843. source: "./media/characters/lee/maw.svg"
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(7 + 10/12, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30857. {
  30858. front: {
  30859. height: math.unit(9, "feet"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/guti/front.svg",
  30863. extra: 4551/4355,
  30864. bottom: 123/4674
  30865. }
  30866. },
  30867. tongue: {
  30868. height: math.unit(1, "feet"),
  30869. name: "Tongue",
  30870. image: {
  30871. source: "./media/characters/guti/tongue.svg"
  30872. }
  30873. },
  30874. paw: {
  30875. height: math.unit(1.18, "feet"),
  30876. name: "Paw",
  30877. image: {
  30878. source: "./media/characters/guti/paw.svg"
  30879. }
  30880. },
  30881. },
  30882. [
  30883. {
  30884. name: "Normal",
  30885. height: math.unit(9, "feet"),
  30886. default: true
  30887. },
  30888. ]
  30889. ))
  30890. characterMakers.push(() => makeCharacter(
  30891. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30892. {
  30893. side: {
  30894. height: math.unit(5, "meters"),
  30895. name: "Side",
  30896. image: {
  30897. source: "./media/characters/vesper/side.svg",
  30898. extra: 1605/1518,
  30899. bottom: 0/1605
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Small",
  30906. height: math.unit(5, "meters")
  30907. },
  30908. {
  30909. name: "Sage",
  30910. height: math.unit(100, "meters"),
  30911. default: true
  30912. },
  30913. {
  30914. name: "Fun Size",
  30915. height: math.unit(600, "meters")
  30916. },
  30917. {
  30918. name: "Goddess",
  30919. height: math.unit(20000, "km")
  30920. },
  30921. {
  30922. name: "Maximum",
  30923. height: math.unit(5, "galaxies")
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30929. {
  30930. front: {
  30931. height: math.unit(6 + 3/12, "feet"),
  30932. weight: math.unit(190, "lb"),
  30933. name: "Front",
  30934. image: {
  30935. source: "./media/characters/gawain/front.svg",
  30936. extra: 2222/2139,
  30937. bottom: 90/2312
  30938. }
  30939. },
  30940. back: {
  30941. height: math.unit(6 + 3/12, "feet"),
  30942. weight: math.unit(190, "lb"),
  30943. name: "Back",
  30944. image: {
  30945. source: "./media/characters/gawain/back.svg",
  30946. extra: 2199/2111,
  30947. bottom: 73/2272
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Normal",
  30954. height: math.unit(6 + 3/12, "feet"),
  30955. default: true
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30961. {
  30962. side: {
  30963. height: math.unit(3.5, "meters"),
  30964. weight: math.unit(16000, "lb"),
  30965. name: "Side",
  30966. image: {
  30967. source: "./media/characters/dascalti/side.svg",
  30968. extra: 392/273,
  30969. bottom: 47/439
  30970. }
  30971. },
  30972. breath: {
  30973. height: math.unit(7.4, "feet"),
  30974. name: "Breath",
  30975. image: {
  30976. source: "./media/characters/dascalti/breath.svg"
  30977. }
  30978. },
  30979. fed: {
  30980. height: math.unit(3.6, "meters"),
  30981. weight: math.unit(16000, "lb"),
  30982. name: "Fed",
  30983. image: {
  30984. source: "./media/characters/dascalti/fed.svg",
  30985. extra: 1419/820,
  30986. bottom: 95/1514
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Normal",
  30993. height: math.unit(3.5, "meters"),
  30994. default: true
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(3 + 5/12, "feet"),
  31003. name: "Front",
  31004. image: {
  31005. source: "./media/characters/mauve/front.svg",
  31006. extra: 1126/1033,
  31007. bottom: 65/1191
  31008. }
  31009. },
  31010. side: {
  31011. height: math.unit(3 + 5/12, "feet"),
  31012. name: "Side",
  31013. image: {
  31014. source: "./media/characters/mauve/side.svg",
  31015. extra: 1089/1001,
  31016. bottom: 29/1118
  31017. }
  31018. },
  31019. back: {
  31020. height: math.unit(3 + 5/12, "feet"),
  31021. name: "Back",
  31022. image: {
  31023. source: "./media/characters/mauve/back.svg",
  31024. extra: 1173/1053,
  31025. bottom: 109/1282
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(3 + 5/12, "feet"),
  31033. default: true
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(6 + 3/12, "feet"),
  31042. weight: math.unit(430, "lb"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/carlos/front.svg",
  31046. extra: 1964/1913,
  31047. bottom: 70/2034
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Normal",
  31054. height: math.unit(6 + 3/12, "feet"),
  31055. default: true
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31061. {
  31062. back: {
  31063. height: math.unit(5 + 10/12, "feet"),
  31064. weight: math.unit(200, "lb"),
  31065. name: "Back",
  31066. image: {
  31067. source: "./media/characters/jax/back.svg",
  31068. extra: 764/739,
  31069. bottom: 25/789
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Normal",
  31076. height: math.unit(5 + 10/12, "feet"),
  31077. default: true
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(8, "feet"),
  31086. weight: math.unit(250, "lb"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/eikthynir/front.svg",
  31090. extra: 1332/1166,
  31091. bottom: 82/1414
  31092. }
  31093. },
  31094. back: {
  31095. height: math.unit(8, "feet"),
  31096. weight: math.unit(250, "lb"),
  31097. name: "Back",
  31098. image: {
  31099. source: "./media/characters/eikthynir/back.svg",
  31100. extra: 1342/1190,
  31101. bottom: 19/1361
  31102. }
  31103. },
  31104. dick: {
  31105. height: math.unit(2.35, "feet"),
  31106. name: "Dick",
  31107. image: {
  31108. source: "./media/characters/eikthynir/dick.svg"
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(8, "feet"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(99, "meters"),
  31125. weight: math.unit(13000, "tons"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/zlmos/front.svg",
  31129. extra: 2202/1992,
  31130. bottom: 315/2517
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Macro",
  31137. height: math.unit(99, "meters"),
  31138. default: true
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31144. {
  31145. front: {
  31146. height: math.unit(6 + 5/12, "feet"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/purri/front.svg",
  31150. extra: 1698/1610,
  31151. bottom: 32/1730
  31152. }
  31153. },
  31154. frontAlt: {
  31155. height: math.unit(6 + 5/12, "feet"),
  31156. name: "Front (Alt)",
  31157. image: {
  31158. source: "./media/characters/purri/front-alt.svg",
  31159. extra: 450/420,
  31160. bottom: 26/476
  31161. }
  31162. },
  31163. boots: {
  31164. height: math.unit(5.5, "feet"),
  31165. name: "Boots",
  31166. image: {
  31167. source: "./media/characters/purri/boots.svg",
  31168. extra: 905/853,
  31169. bottom: 18/923
  31170. }
  31171. },
  31172. lying: {
  31173. height: math.unit(2, "feet"),
  31174. name: "Lying",
  31175. image: {
  31176. source: "./media/characters/purri/lying.svg",
  31177. extra: 940/843,
  31178. bottom: 146/1086
  31179. }
  31180. },
  31181. devious: {
  31182. height: math.unit(1.77, "feet"),
  31183. name: "Devious",
  31184. image: {
  31185. source: "./media/characters/purri/devious.svg",
  31186. extra: 1440/1155,
  31187. bottom: 147/1587
  31188. }
  31189. },
  31190. bean: {
  31191. height: math.unit(1.94, "feet"),
  31192. name: "Bean",
  31193. image: {
  31194. source: "./media/characters/purri/bean.svg"
  31195. }
  31196. },
  31197. },
  31198. [
  31199. {
  31200. name: "Micro",
  31201. height: math.unit(1, "mm")
  31202. },
  31203. {
  31204. name: "Normal",
  31205. height: math.unit(6 + 5/12, "feet"),
  31206. default: true
  31207. },
  31208. {
  31209. name: "Macro :3c",
  31210. height: math.unit(2, "miles")
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31216. {
  31217. front: {
  31218. height: math.unit(6 + 2/12, "feet"),
  31219. weight: math.unit(250, "lb"),
  31220. name: "Front",
  31221. image: {
  31222. source: "./media/characters/moonlight/front.svg",
  31223. extra: 1044/908,
  31224. bottom: 56/1100
  31225. }
  31226. },
  31227. feral: {
  31228. height: math.unit(3 + 1/12, "feet"),
  31229. weight: math.unit(50, "kg"),
  31230. name: "Feral",
  31231. image: {
  31232. source: "./media/characters/moonlight/feral.svg",
  31233. extra: 3705/2791,
  31234. bottom: 145/3850
  31235. }
  31236. },
  31237. paw: {
  31238. height: math.unit(1, "feet"),
  31239. name: "Paw",
  31240. image: {
  31241. source: "./media/characters/moonlight/paw.svg"
  31242. }
  31243. },
  31244. paws: {
  31245. height: math.unit(0.98, "feet"),
  31246. name: "Paws",
  31247. image: {
  31248. source: "./media/characters/moonlight/paws.svg",
  31249. extra: 939/939,
  31250. bottom: 50/989
  31251. }
  31252. },
  31253. mouth: {
  31254. height: math.unit(0.48, "feet"),
  31255. name: "Mouth",
  31256. image: {
  31257. source: "./media/characters/moonlight/mouth.svg"
  31258. }
  31259. },
  31260. dick: {
  31261. height: math.unit(1.46, "feet"),
  31262. name: "Dick",
  31263. image: {
  31264. source: "./media/characters/moonlight/dick.svg"
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(6 + 2/12, "feet"),
  31272. default: true
  31273. },
  31274. {
  31275. name: "Macro",
  31276. height: math.unit(300, "feet")
  31277. },
  31278. {
  31279. name: "Macro+",
  31280. height: math.unit(1, "mile")
  31281. },
  31282. {
  31283. name: "Mt. Moon",
  31284. height: math.unit(5, "miles")
  31285. },
  31286. {
  31287. name: "Megamacro",
  31288. height: math.unit(15, "miles")
  31289. },
  31290. ]
  31291. ))
  31292. characterMakers.push(() => makeCharacter(
  31293. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31294. {
  31295. back: {
  31296. height: math.unit(6, "feet"),
  31297. weight: math.unit(150, "lb"),
  31298. name: "Back",
  31299. image: {
  31300. source: "./media/characters/sylen/back.svg",
  31301. extra: 1335/1273,
  31302. bottom: 107/1442
  31303. }
  31304. },
  31305. },
  31306. [
  31307. {
  31308. name: "Normal",
  31309. height: math.unit(5 + 5/12, "feet")
  31310. },
  31311. {
  31312. name: "Megamacro",
  31313. height: math.unit(3, "miles"),
  31314. default: true
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(6, "feet"),
  31323. weight: math.unit(190, "lb"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/huttser/front.svg",
  31327. extra: 1152/1058,
  31328. bottom: 23/1175
  31329. }
  31330. },
  31331. side: {
  31332. height: math.unit(6, "feet"),
  31333. weight: math.unit(190, "lb"),
  31334. name: "Side",
  31335. image: {
  31336. source: "./media/characters/huttser/side.svg",
  31337. extra: 1174/1065,
  31338. bottom: 18/1192
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(6, "feet"),
  31343. weight: math.unit(190, "lb"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/huttser/back.svg",
  31347. extra: 1158/1056,
  31348. bottom: 12/1170
  31349. }
  31350. },
  31351. },
  31352. [
  31353. ]
  31354. ))
  31355. characterMakers.push(() => makeCharacter(
  31356. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31357. {
  31358. side: {
  31359. height: math.unit(12 + 9/12, "feet"),
  31360. weight: math.unit(15000, "lb"),
  31361. name: "Side",
  31362. image: {
  31363. source: "./media/characters/faan/side.svg",
  31364. extra: 2747/2697,
  31365. bottom: 0/2747
  31366. }
  31367. },
  31368. front: {
  31369. height: math.unit(12 + 9/12, "feet"),
  31370. weight: math.unit(15000, "lb"),
  31371. name: "Front",
  31372. image: {
  31373. source: "./media/characters/faan/front.svg",
  31374. extra: 607/571,
  31375. bottom: 24/631
  31376. }
  31377. },
  31378. head: {
  31379. height: math.unit(2.85, "feet"),
  31380. name: "Head",
  31381. image: {
  31382. source: "./media/characters/faan/head.svg"
  31383. }
  31384. },
  31385. headAlt: {
  31386. height: math.unit(3.13, "feet"),
  31387. name: "Head-alt",
  31388. image: {
  31389. source: "./media/characters/faan/head-alt.svg"
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Normal",
  31396. height: math.unit(12 + 9/12, "feet"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(6, "feet"),
  31406. weight: math.unit(300, "lb"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/tanio/front.svg",
  31410. extra: 711/673,
  31411. bottom: 25/736
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(6, "feet"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31425. {
  31426. front: {
  31427. height: math.unit(3, "inches"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/noboru/front.svg",
  31431. extra: 1039/932,
  31432. bottom: 18/1057
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Micro",
  31439. height: math.unit(3, "inches"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(1.85, "meters"),
  31449. weight: math.unit(80, "kg"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/daniel-barrett/front.svg",
  31453. extra: 355/337,
  31454. bottom: 9/364
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Pico",
  31461. height: math.unit(0.0433, "mm")
  31462. },
  31463. {
  31464. name: "Nano",
  31465. height: math.unit(1.5, "mm")
  31466. },
  31467. {
  31468. name: "Micro",
  31469. height: math.unit(5.3, "cm"),
  31470. default: true
  31471. },
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(1.85, "meters")
  31475. },
  31476. {
  31477. name: "Macro",
  31478. height: math.unit(64.7, "meters")
  31479. },
  31480. {
  31481. name: "Megamacro",
  31482. height: math.unit(2.26, "km")
  31483. },
  31484. {
  31485. name: "Gigamacro",
  31486. height: math.unit(79, "km")
  31487. },
  31488. {
  31489. name: "Teramacro",
  31490. height: math.unit(2765, "km")
  31491. },
  31492. {
  31493. name: "Petamacro",
  31494. height: math.unit(96678, "km")
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(30, "meters"),
  31503. weight: math.unit(400, "tons"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/zeel/front.svg",
  31507. extra: 2599/2599,
  31508. bottom: 226/2825
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Macro",
  31515. height: math.unit(30, "meters"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(6 + 7/12, "feet"),
  31525. weight: math.unit(210, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/tarn/front.svg",
  31529. extra: 3517/3220,
  31530. bottom: 91/3608
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(6 + 7/12, "feet"),
  31535. weight: math.unit(210, "lb"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/tarn/back.svg",
  31539. extra: 3566/3241,
  31540. bottom: 34/3600
  31541. }
  31542. },
  31543. dick: {
  31544. height: math.unit(1.65, "feet"),
  31545. name: "Dick",
  31546. image: {
  31547. source: "./media/characters/tarn/dick.svg"
  31548. }
  31549. },
  31550. paw: {
  31551. height: math.unit(1.80, "feet"),
  31552. name: "Paw",
  31553. image: {
  31554. source: "./media/characters/tarn/paw.svg"
  31555. }
  31556. },
  31557. tongue: {
  31558. height: math.unit(0.97, "feet"),
  31559. name: "Tongue",
  31560. image: {
  31561. source: "./media/characters/tarn/tongue.svg"
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Micro",
  31568. height: math.unit(4, "inches")
  31569. },
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(6 + 7/12, "feet"),
  31573. default: true
  31574. },
  31575. {
  31576. name: "Macro",
  31577. height: math.unit(300, "feet")
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(5 + 7/12, "feet"),
  31586. weight: math.unit(80, "kg"),
  31587. name: "Front",
  31588. image: {
  31589. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31590. extra: 3023/2865,
  31591. bottom: 33/3056
  31592. }
  31593. },
  31594. back: {
  31595. height: math.unit(5 + 7/12, "feet"),
  31596. weight: math.unit(80, "kg"),
  31597. name: "Back",
  31598. image: {
  31599. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31600. extra: 3020/2886,
  31601. bottom: 30/3050
  31602. }
  31603. },
  31604. dick: {
  31605. height: math.unit(0.98, "feet"),
  31606. name: "Dick",
  31607. image: {
  31608. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31609. }
  31610. },
  31611. anatomy: {
  31612. height: math.unit(2.86, "feet"),
  31613. name: "Anatomy",
  31614. image: {
  31615. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Really Small",
  31622. height: math.unit(2, "inches")
  31623. },
  31624. {
  31625. name: "Micro",
  31626. height: math.unit(5.583, "inches")
  31627. },
  31628. {
  31629. name: "Normal",
  31630. height: math.unit(5 + 7/12, "feet"),
  31631. default: true
  31632. },
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(67, "feet")
  31636. },
  31637. {
  31638. name: "Megamacro",
  31639. height: math.unit(134, "feet")
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(9, "feet"),
  31648. weight: math.unit(120, "lb"),
  31649. name: "Front",
  31650. image: {
  31651. source: "./media/characters/sally/front.svg",
  31652. extra: 1506/1349,
  31653. bottom: 66/1572
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Normal",
  31660. height: math.unit(9, "feet"),
  31661. default: true
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31667. {
  31668. front: {
  31669. height: math.unit(8, "feet"),
  31670. weight: math.unit(900, "lb"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/owen/front.svg",
  31674. extra: 1761/1657,
  31675. bottom: 74/1835
  31676. }
  31677. },
  31678. side: {
  31679. height: math.unit(8, "feet"),
  31680. weight: math.unit(900, "lb"),
  31681. name: "Side",
  31682. image: {
  31683. source: "./media/characters/owen/side.svg",
  31684. extra: 1797/1734,
  31685. bottom: 30/1827
  31686. }
  31687. },
  31688. back: {
  31689. height: math.unit(8, "feet"),
  31690. weight: math.unit(900, "lb"),
  31691. name: "Back",
  31692. image: {
  31693. source: "./media/characters/owen/back.svg",
  31694. extra: 1796/1706,
  31695. bottom: 59/1855
  31696. }
  31697. },
  31698. maw: {
  31699. height: math.unit(1.76, "feet"),
  31700. name: "Maw",
  31701. image: {
  31702. source: "./media/characters/owen/maw.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(8, "feet"),
  31710. default: true
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31716. {
  31717. front: {
  31718. height: math.unit(4, "feet"),
  31719. weight: math.unit(400, "lb"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/ryth/front.svg",
  31723. extra: 1920/1748,
  31724. bottom: 42/1962
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(4, "feet"),
  31729. weight: math.unit(400, "lb"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/ryth/back.svg",
  31733. extra: 1897/1690,
  31734. bottom: 89/1986
  31735. }
  31736. },
  31737. mouth: {
  31738. height: math.unit(1.39, "feet"),
  31739. name: "Mouth",
  31740. image: {
  31741. source: "./media/characters/ryth/mouth.svg"
  31742. }
  31743. },
  31744. tailmaw: {
  31745. height: math.unit(1.23, "feet"),
  31746. name: "Tailmaw",
  31747. image: {
  31748. source: "./media/characters/ryth/tailmaw.svg"
  31749. }
  31750. },
  31751. goia: {
  31752. height: math.unit(12, "feet"),
  31753. weight: math.unit(10800, "lb"),
  31754. name: "Goia",
  31755. image: {
  31756. source: "./media/characters/ryth/goia.svg",
  31757. extra: 3450/3198,
  31758. bottom: 61/3511
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Normal",
  31765. height: math.unit(4, "feet"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(7, "feet"),
  31775. weight: math.unit(180, "lb"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/necrolance/front.svg",
  31779. extra: 1062/947,
  31780. bottom: 41/1103
  31781. }
  31782. },
  31783. back: {
  31784. height: math.unit(7, "feet"),
  31785. weight: math.unit(180, "lb"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/necrolance/back.svg",
  31789. extra: 1045/984,
  31790. bottom: 14/1059
  31791. }
  31792. },
  31793. wing: {
  31794. height: math.unit(2.67, "feet"),
  31795. name: "Wing",
  31796. image: {
  31797. source: "./media/characters/necrolance/wing.svg"
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(7, "feet"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31811. {
  31812. front: {
  31813. height: math.unit(76, "meters"),
  31814. weight: math.unit(30000, "tons"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/tyler/front.svg",
  31818. extra: 1640/1640,
  31819. bottom: 114/1754
  31820. }
  31821. },
  31822. },
  31823. [
  31824. {
  31825. name: "Macro",
  31826. height: math.unit(76, "meters"),
  31827. default: true
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(4 + 11/12, "feet"),
  31836. weight: math.unit(132, "lb"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/icey/front.svg",
  31840. extra: 2750/2550,
  31841. bottom: 33/2783
  31842. }
  31843. },
  31844. back: {
  31845. height: math.unit(4 + 11/12, "feet"),
  31846. weight: math.unit(132, "lb"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/icey/back.svg",
  31850. extra: 2624/2481,
  31851. bottom: 35/2659
  31852. }
  31853. },
  31854. },
  31855. [
  31856. {
  31857. name: "Normal",
  31858. height: math.unit(4 + 11/12, "feet"),
  31859. default: true
  31860. },
  31861. ]
  31862. ))
  31863. characterMakers.push(() => makeCharacter(
  31864. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31865. {
  31866. front: {
  31867. height: math.unit(100, "feet"),
  31868. weight: math.unit(0, "lb"),
  31869. name: "Front",
  31870. image: {
  31871. source: "./media/characters/smile/front.svg",
  31872. extra: 2983/2912,
  31873. bottom: 162/3145
  31874. }
  31875. },
  31876. back: {
  31877. height: math.unit(100, "feet"),
  31878. weight: math.unit(0, "lb"),
  31879. name: "Back",
  31880. image: {
  31881. source: "./media/characters/smile/back.svg",
  31882. extra: 3143/3031,
  31883. bottom: 91/3234
  31884. }
  31885. },
  31886. head: {
  31887. height: math.unit(26.3, "feet"),
  31888. weight: math.unit(0, "lb"),
  31889. name: "Head",
  31890. image: {
  31891. source: "./media/characters/smile/head.svg"
  31892. }
  31893. },
  31894. collar: {
  31895. height: math.unit(5.3, "feet"),
  31896. weight: math.unit(0, "lb"),
  31897. name: "Collar",
  31898. image: {
  31899. source: "./media/characters/smile/collar.svg"
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Macro",
  31906. height: math.unit(100, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31913. {
  31914. dragon: {
  31915. height: math.unit(26, "feet"),
  31916. weight: math.unit(36, "tons"),
  31917. name: "Dragon",
  31918. image: {
  31919. source: "./media/characters/arimphae/dragon.svg",
  31920. extra: 1574/983,
  31921. bottom: 357/1931
  31922. }
  31923. },
  31924. drake: {
  31925. height: math.unit(9, "feet"),
  31926. weight: math.unit(1.5, "tons"),
  31927. name: "Drake",
  31928. image: {
  31929. source: "./media/characters/arimphae/drake.svg",
  31930. extra: 1120/925,
  31931. bottom: 435/1555
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Small",
  31938. height: math.unit(26*5/9, "feet")
  31939. },
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(26, "feet"),
  31943. default: true
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31949. {
  31950. front: {
  31951. height: math.unit(8 + 9/12, "feet"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/xander/front.svg",
  31955. extra: 848/673,
  31956. bottom: 62/910
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(8 + 9/12, "feet"),
  31964. default: true
  31965. },
  31966. {
  31967. name: "Gaze Grabber",
  31968. height: math.unit(13 + 8/12, "feet")
  31969. },
  31970. {
  31971. name: "Jaw Dropper",
  31972. height: math.unit(27, "feet")
  31973. },
  31974. {
  31975. name: "Show Stopper",
  31976. height: math.unit(136, "feet")
  31977. },
  31978. {
  31979. name: "Superstar",
  31980. height: math.unit(1.9e6, "miles")
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31986. {
  31987. side: {
  31988. height: math.unit(2100, "feet"),
  31989. name: "Side",
  31990. image: {
  31991. source: "./media/characters/osiris/side.svg",
  31992. extra: 1105/939,
  31993. bottom: 167/1272
  31994. }
  31995. },
  31996. },
  31997. [
  31998. {
  31999. name: "Macro",
  32000. height: math.unit(2100, "feet"),
  32001. default: true
  32002. },
  32003. ]
  32004. ))
  32005. characterMakers.push(() => makeCharacter(
  32006. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32007. {
  32008. front: {
  32009. height: math.unit(6 + 8/12, "feet"),
  32010. weight: math.unit(225, "lb"),
  32011. name: "Front",
  32012. image: {
  32013. source: "./media/characters/rhys-londe/front.svg",
  32014. extra: 2258/2141,
  32015. bottom: 188/2446
  32016. }
  32017. },
  32018. back: {
  32019. height: math.unit(6 + 8/12, "feet"),
  32020. weight: math.unit(225, "lb"),
  32021. name: "Back",
  32022. image: {
  32023. source: "./media/characters/rhys-londe/back.svg",
  32024. extra: 2237/2137,
  32025. bottom: 63/2300
  32026. }
  32027. },
  32028. frontNsfw: {
  32029. height: math.unit(6 + 8/12, "feet"),
  32030. weight: math.unit(225, "lb"),
  32031. name: "Front (NSFW)",
  32032. image: {
  32033. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32034. extra: 2258/2141,
  32035. bottom: 188/2446
  32036. }
  32037. },
  32038. backNsfw: {
  32039. height: math.unit(6 + 8/12, "feet"),
  32040. weight: math.unit(225, "lb"),
  32041. name: "Back (NSFW)",
  32042. image: {
  32043. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32044. extra: 2237/2137,
  32045. bottom: 63/2300
  32046. }
  32047. },
  32048. dick: {
  32049. height: math.unit(30, "inches"),
  32050. name: "Dick",
  32051. image: {
  32052. source: "./media/characters/rhys-londe/dick.svg"
  32053. }
  32054. },
  32055. maw: {
  32056. height: math.unit(1.6, "feet"),
  32057. name: "Maw",
  32058. image: {
  32059. source: "./media/characters/rhys-londe/maw.svg"
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(6 + 8/12, "feet"),
  32067. default: true
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(3 + 10/12, "feet"),
  32076. weight: math.unit(90, "lb"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/taivas-ensim/front.svg",
  32080. extra: 1327/1216,
  32081. bottom: 96/1423
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(3 + 10/12, "feet"),
  32086. weight: math.unit(90, "lb"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/taivas-ensim/back.svg",
  32090. extra: 1355/1247,
  32091. bottom: 11/1366
  32092. }
  32093. },
  32094. frontNsfw: {
  32095. height: math.unit(3 + 10/12, "feet"),
  32096. weight: math.unit(90, "lb"),
  32097. name: "Front (NSFW)",
  32098. image: {
  32099. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32100. extra: 1327/1216,
  32101. bottom: 96/1423
  32102. }
  32103. },
  32104. backNsfw: {
  32105. height: math.unit(3 + 10/12, "feet"),
  32106. weight: math.unit(90, "lb"),
  32107. name: "Back (NSFW)",
  32108. image: {
  32109. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32110. extra: 1355/1247,
  32111. bottom: 11/1366
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Normal",
  32118. height: math.unit(3 + 10/12, "feet"),
  32119. default: true
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(9 + 6/12, "feet"),
  32128. weight: math.unit(940, "lb"),
  32129. name: "Front",
  32130. image: {
  32131. source: "./media/characters/byliss/front.svg",
  32132. extra: 1327/1290,
  32133. bottom: 82/1409
  32134. }
  32135. },
  32136. back: {
  32137. height: math.unit(9 + 6/12, "feet"),
  32138. weight: math.unit(940, "lb"),
  32139. name: "Back",
  32140. image: {
  32141. source: "./media/characters/byliss/back.svg",
  32142. extra: 1376/1349,
  32143. bottom: 9/1385
  32144. }
  32145. },
  32146. frontNsfw: {
  32147. height: math.unit(9 + 6/12, "feet"),
  32148. weight: math.unit(940, "lb"),
  32149. name: "Front (NSFW)",
  32150. image: {
  32151. source: "./media/characters/byliss/front-nsfw.svg",
  32152. extra: 1327/1290,
  32153. bottom: 82/1409
  32154. }
  32155. },
  32156. backNsfw: {
  32157. height: math.unit(9 + 6/12, "feet"),
  32158. weight: math.unit(940, "lb"),
  32159. name: "Back (NSFW)",
  32160. image: {
  32161. source: "./media/characters/byliss/back-nsfw.svg",
  32162. extra: 1376/1349,
  32163. bottom: 9/1385
  32164. }
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Normal",
  32170. height: math.unit(9 + 6/12, "feet"),
  32171. default: true
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32177. {
  32178. front: {
  32179. height: math.unit(5 + 2/12, "feet"),
  32180. weight: math.unit(200, "lb"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/noraly/front.svg",
  32184. extra: 4985/4773,
  32185. bottom: 150/5135
  32186. }
  32187. },
  32188. full: {
  32189. height: math.unit(5 + 2/12, "feet"),
  32190. weight: math.unit(164, "lb"),
  32191. name: "Full",
  32192. image: {
  32193. source: "./media/characters/noraly/full.svg",
  32194. extra: 1114/1059,
  32195. bottom: 35/1149
  32196. }
  32197. },
  32198. fuller: {
  32199. height: math.unit(5 + 2/12, "feet"),
  32200. weight: math.unit(230, "lb"),
  32201. name: "Fuller",
  32202. image: {
  32203. source: "./media/characters/noraly/fuller.svg",
  32204. extra: 1114/1059,
  32205. bottom: 35/1149
  32206. }
  32207. },
  32208. fullest: {
  32209. height: math.unit(5 + 2/12, "feet"),
  32210. weight: math.unit(300, "lb"),
  32211. name: "Fullest",
  32212. image: {
  32213. source: "./media/characters/noraly/fullest.svg",
  32214. extra: 1114/1059,
  32215. bottom: 35/1149
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(5 + 2/12, "feet"),
  32223. default: true
  32224. },
  32225. ]
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32229. {
  32230. front: {
  32231. height: math.unit(5 + 2/12, "feet"),
  32232. weight: math.unit(210, "lb"),
  32233. name: "Front",
  32234. image: {
  32235. source: "./media/characters/pera/front.svg",
  32236. extra: 1560/1531,
  32237. bottom: 165/1725
  32238. }
  32239. },
  32240. back: {
  32241. height: math.unit(5 + 2/12, "feet"),
  32242. weight: math.unit(210, "lb"),
  32243. name: "Back",
  32244. image: {
  32245. source: "./media/characters/pera/back.svg",
  32246. extra: 1523/1493,
  32247. bottom: 152/1675
  32248. }
  32249. },
  32250. dick: {
  32251. height: math.unit(2.4, "feet"),
  32252. name: "Dick",
  32253. image: {
  32254. source: "./media/characters/pera/dick.svg"
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Normal",
  32261. height: math.unit(5 + 2/12, "feet"),
  32262. default: true
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32268. {
  32269. front: {
  32270. height: math.unit(12, "feet"),
  32271. weight: math.unit(3200, "lb"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/julian/front.svg",
  32275. extra: 2962/2701,
  32276. bottom: 184/3146
  32277. }
  32278. },
  32279. maw: {
  32280. height: math.unit(5.35, "feet"),
  32281. name: "Maw",
  32282. image: {
  32283. source: "./media/characters/julian/maw.svg"
  32284. }
  32285. },
  32286. paw: {
  32287. height: math.unit(3.07, "feet"),
  32288. name: "Paw",
  32289. image: {
  32290. source: "./media/characters/julian/paw.svg"
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Default",
  32297. height: math.unit(12, "feet"),
  32298. default: true
  32299. },
  32300. {
  32301. name: "Big",
  32302. height: math.unit(50, "feet")
  32303. },
  32304. {
  32305. name: "Really Big",
  32306. height: math.unit(1, "mile")
  32307. },
  32308. {
  32309. name: "Extremely Big",
  32310. height: math.unit(100, "miles")
  32311. },
  32312. {
  32313. name: "Planet Hugger",
  32314. height: math.unit(200, "megameters")
  32315. },
  32316. {
  32317. name: "Unreasonably Big",
  32318. height: math.unit(1e300, "meters")
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32324. {
  32325. solgooleo: {
  32326. height: math.unit(4, "meters"),
  32327. weight: math.unit(6000*1.5, "kg"),
  32328. volume: math.unit(6000, "liters"),
  32329. name: "Solgooleo",
  32330. image: {
  32331. source: "./media/characters/pi/solgooleo.svg",
  32332. extra: 388/331,
  32333. bottom: 29/417
  32334. }
  32335. },
  32336. },
  32337. [
  32338. {
  32339. name: "Normal",
  32340. height: math.unit(4, "meters"),
  32341. default: true
  32342. },
  32343. ]
  32344. ))
  32345. characterMakers.push(() => makeCharacter(
  32346. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32347. {
  32348. front: {
  32349. height: math.unit(8 + 2/12, "feet"),
  32350. weight: math.unit(4, "tons"),
  32351. name: "Front",
  32352. image: {
  32353. source: "./media/characters/shaun/front.svg",
  32354. extra: 1550/1505,
  32355. bottom: 353/1903
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Lorg",
  32362. height: math.unit(8 + 2/12, "feet"),
  32363. default: true
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32369. {
  32370. front: {
  32371. height: math.unit(7, "feet"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/sini/front.svg",
  32375. extra: 726/678,
  32376. bottom: 35/761
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(7, "feet"),
  32381. name: "Back",
  32382. image: {
  32383. source: "./media/characters/sini/back.svg",
  32384. extra: 743/701,
  32385. bottom: 12/755
  32386. }
  32387. },
  32388. mawAnthro: {
  32389. height: math.unit(2.14, "feet"),
  32390. name: "Maw (Anthro)",
  32391. image: {
  32392. source: "./media/characters/sini/maw-anthro.svg"
  32393. }
  32394. },
  32395. dick: {
  32396. height: math.unit(1.45, "feet"),
  32397. name: "Dick (Anthro)",
  32398. image: {
  32399. source: "./media/characters/sini/dick-anthro.svg"
  32400. }
  32401. },
  32402. feral: {
  32403. height: math.unit(16, "feet"),
  32404. name: "Feral",
  32405. image: {
  32406. source: "./media/characters/sini/feral.svg",
  32407. extra: 814/605,
  32408. bottom: 11/825
  32409. }
  32410. },
  32411. mawFeral: {
  32412. height: math.unit(5.66, "feet"),
  32413. name: "Maw-feral",
  32414. image: {
  32415. source: "./media/characters/sini/maw-feral.svg"
  32416. }
  32417. },
  32418. footFeral: {
  32419. height: math.unit(5.17, "feet"),
  32420. name: "Foot-feral",
  32421. image: {
  32422. source: "./media/characters/sini/foot-feral.svg"
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Normal",
  32429. height: math.unit(7, "feet"),
  32430. default: true
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32436. {
  32437. side: {
  32438. height: math.unit(13, "meters"),
  32439. weight: math.unit(9072, "kg"),
  32440. name: "Side",
  32441. image: {
  32442. source: "./media/characters/raylldo/side.svg",
  32443. extra: 403/344,
  32444. bottom: 42/445
  32445. }
  32446. },
  32447. leaping: {
  32448. height: math.unit(12.3, "meters"),
  32449. weight: math.unit(9072, "kg"),
  32450. name: "Leaping",
  32451. image: {
  32452. source: "./media/characters/raylldo/leaping.svg",
  32453. extra: 470/249,
  32454. bottom: 13/483
  32455. }
  32456. },
  32457. flying: {
  32458. height: math.unit(18, "meters"),
  32459. weight: math.unit(9072, "kg"),
  32460. name: "Flying",
  32461. image: {
  32462. source: "./media/characters/raylldo/flying.svg"
  32463. }
  32464. },
  32465. head: {
  32466. height: math.unit(5.85, "meters"),
  32467. name: "Head",
  32468. image: {
  32469. source: "./media/characters/raylldo/head.svg"
  32470. }
  32471. },
  32472. maw: {
  32473. height: math.unit(5.32, "meters"),
  32474. name: "Maw",
  32475. image: {
  32476. source: "./media/characters/raylldo/maw.svg"
  32477. }
  32478. },
  32479. eye: {
  32480. height: math.unit(0.54, "meters"),
  32481. name: "Eye",
  32482. image: {
  32483. source: "./media/characters/raylldo/eye.svg"
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Normal",
  32490. height: math.unit(13, "meters"),
  32491. default: true
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32497. {
  32498. anthroFront: {
  32499. height: math.unit(9, "feet"),
  32500. weight: math.unit(600, "lb"),
  32501. name: "Anthro (Front)",
  32502. image: {
  32503. source: "./media/characters/glint/anthro-front.svg",
  32504. extra: 1097/1018,
  32505. bottom: 28/1125
  32506. }
  32507. },
  32508. anthroBack: {
  32509. height: math.unit(9, "feet"),
  32510. weight: math.unit(600, "lb"),
  32511. name: "Anthro (Back)",
  32512. image: {
  32513. source: "./media/characters/glint/anthro-back.svg",
  32514. extra: 1154/997,
  32515. bottom: 36/1190
  32516. }
  32517. },
  32518. feral: {
  32519. height: math.unit(11, "feet"),
  32520. weight: math.unit(50000, "lb"),
  32521. name: "Feral",
  32522. image: {
  32523. source: "./media/characters/glint/feral.svg",
  32524. extra: 3035/1585,
  32525. bottom: 1169/4204
  32526. }
  32527. },
  32528. dickAnthro: {
  32529. height: math.unit(0.7, "meters"),
  32530. name: "Dick (Anthro)",
  32531. image: {
  32532. source: "./media/characters/glint/dick-anthro.svg"
  32533. }
  32534. },
  32535. dickFeral: {
  32536. height: math.unit(2.65, "meters"),
  32537. name: "Dick (Feral)",
  32538. image: {
  32539. source: "./media/characters/glint/dick-feral.svg"
  32540. }
  32541. },
  32542. slitHidden: {
  32543. height: math.unit(5.85, "meters"),
  32544. name: "Slit (Hidden)",
  32545. image: {
  32546. source: "./media/characters/glint/slit-hidden.svg"
  32547. }
  32548. },
  32549. slitErect: {
  32550. height: math.unit(5.85, "meters"),
  32551. name: "Slit (Erect)",
  32552. image: {
  32553. source: "./media/characters/glint/slit-erect.svg"
  32554. }
  32555. },
  32556. mawAnthro: {
  32557. height: math.unit(0.63, "meters"),
  32558. name: "Maw (Anthro)",
  32559. image: {
  32560. source: "./media/characters/glint/maw.svg"
  32561. }
  32562. },
  32563. mawFeral: {
  32564. height: math.unit(2.89, "meters"),
  32565. name: "Maw (Feral)",
  32566. image: {
  32567. source: "./media/characters/glint/maw.svg"
  32568. }
  32569. },
  32570. },
  32571. [
  32572. {
  32573. name: "Normal",
  32574. height: math.unit(9, "feet"),
  32575. default: true
  32576. },
  32577. ]
  32578. ))
  32579. characterMakers.push(() => makeCharacter(
  32580. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32581. {
  32582. side: {
  32583. height: math.unit(15, "feet"),
  32584. weight: math.unit(5000, "kg"),
  32585. name: "Side",
  32586. image: {
  32587. source: "./media/characters/kairne/side.svg",
  32588. extra: 979/811,
  32589. bottom: 13/992
  32590. }
  32591. },
  32592. front: {
  32593. height: math.unit(15, "feet"),
  32594. weight: math.unit(5000, "kg"),
  32595. name: "Front",
  32596. image: {
  32597. source: "./media/characters/kairne/front.svg",
  32598. extra: 908/814,
  32599. bottom: 26/934
  32600. }
  32601. },
  32602. sideNsfw: {
  32603. height: math.unit(15, "feet"),
  32604. weight: math.unit(5000, "kg"),
  32605. name: "Side (NSFW)",
  32606. image: {
  32607. source: "./media/characters/kairne/side-nsfw.svg",
  32608. extra: 979/811,
  32609. bottom: 13/992
  32610. }
  32611. },
  32612. frontNsfw: {
  32613. height: math.unit(15, "feet"),
  32614. weight: math.unit(5000, "kg"),
  32615. name: "Front (NSFW)",
  32616. image: {
  32617. source: "./media/characters/kairne/front-nsfw.svg",
  32618. extra: 908/814,
  32619. bottom: 26/934
  32620. }
  32621. },
  32622. dickCaged: {
  32623. height: math.unit(0.65, "meters"),
  32624. name: "Dick-caged",
  32625. image: {
  32626. source: "./media/characters/kairne/dick-caged.svg"
  32627. }
  32628. },
  32629. dick: {
  32630. height: math.unit(0.79, "meters"),
  32631. name: "Dick",
  32632. image: {
  32633. source: "./media/characters/kairne/dick.svg"
  32634. }
  32635. },
  32636. genitals: {
  32637. height: math.unit(1.29, "meters"),
  32638. name: "Genitals",
  32639. image: {
  32640. source: "./media/characters/kairne/genitals.svg"
  32641. }
  32642. },
  32643. maw: {
  32644. height: math.unit(1.73, "meters"),
  32645. name: "Maw",
  32646. image: {
  32647. source: "./media/characters/kairne/maw.svg"
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Normal",
  32654. height: math.unit(15, "feet"),
  32655. default: true
  32656. },
  32657. ]
  32658. ))
  32659. characterMakers.push(() => makeCharacter(
  32660. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32661. {
  32662. front: {
  32663. height: math.unit(5 + 8/12, "feet"),
  32664. weight: math.unit(139, "lb"),
  32665. name: "Front",
  32666. image: {
  32667. source: "./media/characters/biscuit-jackal/front.svg",
  32668. extra: 2106/1961,
  32669. bottom: 58/2164
  32670. }
  32671. },
  32672. back: {
  32673. height: math.unit(5 + 8/12, "feet"),
  32674. weight: math.unit(139, "lb"),
  32675. name: "Back",
  32676. image: {
  32677. source: "./media/characters/biscuit-jackal/back.svg",
  32678. extra: 2132/1976,
  32679. bottom: 57/2189
  32680. }
  32681. },
  32682. werejackal: {
  32683. height: math.unit(6 + 3/12, "feet"),
  32684. weight: math.unit(188, "lb"),
  32685. name: "Werejackal",
  32686. image: {
  32687. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32688. extra: 2373/2178,
  32689. bottom: 53/2426
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(5 + 8/12, "feet"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32703. {
  32704. front: {
  32705. height: math.unit(140, "cm"),
  32706. weight: math.unit(45, "kg"),
  32707. name: "Front",
  32708. image: {
  32709. source: "./media/characters/tayra-white/front.svg",
  32710. extra: 2229/2192,
  32711. bottom: 75/2304
  32712. }
  32713. },
  32714. },
  32715. [
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(140, "cm"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(4 + 5/12, "feet"),
  32728. name: "Front",
  32729. image: {
  32730. source: "./media/characters/scoop/front.svg",
  32731. extra: 1257/1136,
  32732. bottom: 69/1326
  32733. }
  32734. },
  32735. back: {
  32736. height: math.unit(4 + 5/12, "feet"),
  32737. name: "Back",
  32738. image: {
  32739. source: "./media/characters/scoop/back.svg",
  32740. extra: 1321/1152,
  32741. bottom: 32/1353
  32742. }
  32743. },
  32744. maw: {
  32745. height: math.unit(0.68, "feet"),
  32746. name: "Maw",
  32747. image: {
  32748. source: "./media/characters/scoop/maw.svg"
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Really Small",
  32755. height: math.unit(1, "mm")
  32756. },
  32757. {
  32758. name: "Micro",
  32759. height: math.unit(1, "inch")
  32760. },
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(4 + 5/12, "feet"),
  32764. default: true
  32765. },
  32766. {
  32767. name: "Macro",
  32768. height: math.unit(200, "feet")
  32769. },
  32770. {
  32771. name: "Megamacro",
  32772. height: math.unit(3240, "feet")
  32773. },
  32774. {
  32775. name: "Teramacro",
  32776. height: math.unit(2500, "miles")
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(15 + 7/12, "feet"),
  32785. name: "Front",
  32786. image: {
  32787. source: "./media/characters/saphinara/front.svg",
  32788. extra: 604/546,
  32789. bottom: 19/623
  32790. }
  32791. },
  32792. side: {
  32793. height: math.unit(15 + 7/12, "feet"),
  32794. name: "Side",
  32795. image: {
  32796. source: "./media/characters/saphinara/side.svg",
  32797. extra: 605/547,
  32798. bottom: 6/611
  32799. }
  32800. },
  32801. back: {
  32802. height: math.unit(15 + 7/12, "feet"),
  32803. name: "Back",
  32804. image: {
  32805. source: "./media/characters/saphinara/back.svg",
  32806. extra: 591/531,
  32807. bottom: 13/604
  32808. }
  32809. },
  32810. frontTail: {
  32811. height: math.unit(15 + 7/12, "feet"),
  32812. name: "Front (Full Tail)",
  32813. image: {
  32814. source: "./media/characters/saphinara/front-tail.svg",
  32815. extra: 748/547,
  32816. bottom: 66/814
  32817. }
  32818. },
  32819. },
  32820. [
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(15 + 7/12, "feet"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "Angry",
  32828. height: math.unit(30 + 6/12, "feet")
  32829. },
  32830. {
  32831. name: "Enraged",
  32832. height: math.unit(102 + 1/12, "feet")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(6 + 8/12, "feet"),
  32841. weight: math.unit(300, "lb"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/jrain/front.svg",
  32845. extra: 3039/2865,
  32846. bottom: 399/3438
  32847. }
  32848. },
  32849. back: {
  32850. height: math.unit(6 + 8/12, "feet"),
  32851. weight: math.unit(300, "lb"),
  32852. name: "Back",
  32853. image: {
  32854. source: "./media/characters/jrain/back.svg",
  32855. extra: 3089/2938,
  32856. bottom: 172/3261
  32857. }
  32858. },
  32859. head: {
  32860. height: math.unit(2.14, "feet"),
  32861. name: "Head",
  32862. image: {
  32863. source: "./media/characters/jrain/head.svg"
  32864. }
  32865. },
  32866. maw: {
  32867. height: math.unit(1.77, "feet"),
  32868. name: "Maw",
  32869. image: {
  32870. source: "./media/characters/jrain/maw.svg"
  32871. }
  32872. },
  32873. leftHand: {
  32874. height: math.unit(1.1, "feet"),
  32875. name: "Left Hand",
  32876. image: {
  32877. source: "./media/characters/jrain/left-hand.svg"
  32878. }
  32879. },
  32880. rightHand: {
  32881. height: math.unit(1.1, "feet"),
  32882. name: "Right Hand",
  32883. image: {
  32884. source: "./media/characters/jrain/right-hand.svg"
  32885. }
  32886. },
  32887. eye: {
  32888. height: math.unit(0.35, "feet"),
  32889. name: "Eye",
  32890. image: {
  32891. source: "./media/characters/jrain/eye.svg"
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(6 + 8/12, "feet"),
  32899. default: true
  32900. },
  32901. {
  32902. name: "Casually Large",
  32903. height: math.unit(25, "feet")
  32904. },
  32905. {
  32906. name: "Giant",
  32907. height: math.unit(100, "feet")
  32908. },
  32909. {
  32910. name: "Kaiju",
  32911. height: math.unit(300, "feet")
  32912. },
  32913. ]
  32914. ))
  32915. characterMakers.push(() => makeCharacter(
  32916. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32917. {
  32918. dragon: {
  32919. height: math.unit(5, "meters"),
  32920. name: "Dragon",
  32921. image: {
  32922. source: "./media/characters/sabrina/dragon.svg",
  32923. extra: 3670 / 2365,
  32924. bottom: 333 / 4003
  32925. }
  32926. },
  32927. gryphon: {
  32928. height: math.unit(3, "meters"),
  32929. name: "Gryphon",
  32930. image: {
  32931. source: "./media/characters/sabrina/gryphon.svg",
  32932. extra: 1576 / 945,
  32933. bottom: 71 / 1647
  32934. }
  32935. },
  32936. snake: {
  32937. height: math.unit(12, "meters"),
  32938. name: "Snake",
  32939. image: {
  32940. source: "./media/characters/sabrina/snake.svg",
  32941. extra: 1758 / 1320,
  32942. bottom: 186 / 1944
  32943. }
  32944. },
  32945. collar: {
  32946. height: math.unit(1.86, "meters"),
  32947. name: "Collar",
  32948. image: {
  32949. source: "./media/characters/sabrina/collar.svg"
  32950. }
  32951. },
  32952. eye: {
  32953. height: math.unit(0.53, "meters"),
  32954. name: "Eye",
  32955. image: {
  32956. source: "./media/characters/sabrina/eye.svg"
  32957. }
  32958. },
  32959. foot: {
  32960. height: math.unit(1.86, "meters"),
  32961. name: "Foot",
  32962. image: {
  32963. source: "./media/characters/sabrina/foot.svg"
  32964. }
  32965. },
  32966. hand: {
  32967. height: math.unit(1.32, "meters"),
  32968. name: "Hand",
  32969. image: {
  32970. source: "./media/characters/sabrina/hand.svg"
  32971. }
  32972. },
  32973. head: {
  32974. height: math.unit(2.44, "meters"),
  32975. name: "Head",
  32976. image: {
  32977. source: "./media/characters/sabrina/head.svg"
  32978. }
  32979. },
  32980. headAngry: {
  32981. height: math.unit(2.44, "meters"),
  32982. name: "Head (Angry))",
  32983. image: {
  32984. source: "./media/characters/sabrina/head-angry.svg"
  32985. }
  32986. },
  32987. maw: {
  32988. height: math.unit(1.65, "meters"),
  32989. name: "Maw",
  32990. image: {
  32991. source: "./media/characters/sabrina/maw.svg"
  32992. }
  32993. },
  32994. spikes: {
  32995. height: math.unit(1.69, "meters"),
  32996. name: "Spikes",
  32997. image: {
  32998. source: "./media/characters/sabrina/spikes.svg"
  32999. }
  33000. },
  33001. stomach: {
  33002. height: math.unit(1.15, "meters"),
  33003. name: "Stomach",
  33004. image: {
  33005. source: "./media/characters/sabrina/stomach.svg"
  33006. }
  33007. },
  33008. tongue: {
  33009. height: math.unit(1.27, "meters"),
  33010. name: "Tongue",
  33011. image: {
  33012. source: "./media/characters/sabrina/tongue.svg"
  33013. }
  33014. },
  33015. wingDorsal: {
  33016. height: math.unit(4.85, "meters"),
  33017. name: "Wing (Dorsal)",
  33018. image: {
  33019. source: "./media/characters/sabrina/wing-dorsal.svg"
  33020. }
  33021. },
  33022. wingVentral: {
  33023. height: math.unit(4.85, "meters"),
  33024. name: "Wing (Ventral)",
  33025. image: {
  33026. source: "./media/characters/sabrina/wing-ventral.svg"
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(5, "meters"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33040. {
  33041. frontMaid: {
  33042. height: math.unit(5 + 5/12, "feet"),
  33043. weight: math.unit(130, "lb"),
  33044. name: "Front (Maid)",
  33045. image: {
  33046. source: "./media/characters/midnight-tales/front-maid.svg",
  33047. extra: 489/454,
  33048. bottom: 61/550
  33049. }
  33050. },
  33051. frontFormal: {
  33052. height: math.unit(5 + 5/12, "feet"),
  33053. weight: math.unit(130, "lb"),
  33054. name: "Front (Formal)",
  33055. image: {
  33056. source: "./media/characters/midnight-tales/front-formal.svg",
  33057. extra: 489/454,
  33058. bottom: 61/550
  33059. }
  33060. },
  33061. back: {
  33062. height: math.unit(5 + 5/12, "feet"),
  33063. weight: math.unit(130, "lb"),
  33064. name: "Back",
  33065. image: {
  33066. source: "./media/characters/midnight-tales/back.svg",
  33067. extra: 498/456,
  33068. bottom: 33/531
  33069. }
  33070. },
  33071. frontBeast: {
  33072. height: math.unit(40, "feet"),
  33073. weight: math.unit(64000, "lb"),
  33074. name: "Front (Beast)",
  33075. image: {
  33076. source: "./media/characters/midnight-tales/front-beast.svg",
  33077. extra: 927/860,
  33078. bottom: 53/980
  33079. }
  33080. },
  33081. backBeast: {
  33082. height: math.unit(40, "feet"),
  33083. weight: math.unit(64000, "lb"),
  33084. name: "Back (Beast)",
  33085. image: {
  33086. source: "./media/characters/midnight-tales/back-beast.svg",
  33087. extra: 929/855,
  33088. bottom: 16/945
  33089. }
  33090. },
  33091. footBeast: {
  33092. height: math.unit(6.7, "feet"),
  33093. name: "Foot (Beast)",
  33094. image: {
  33095. source: "./media/characters/midnight-tales/foot-beast.svg"
  33096. }
  33097. },
  33098. headBeast: {
  33099. height: math.unit(8, "feet"),
  33100. name: "Head (Beast)",
  33101. image: {
  33102. source: "./media/characters/midnight-tales/head-beast.svg"
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(5 + 5 / 12, "feet"),
  33110. default: true
  33111. },
  33112. {
  33113. name: "Macro",
  33114. height: math.unit(25, "feet")
  33115. },
  33116. ]
  33117. ))
  33118. characterMakers.push(() => makeCharacter(
  33119. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33120. {
  33121. front: {
  33122. height: math.unit(5 + 10/12, "feet"),
  33123. name: "Front",
  33124. image: {
  33125. source: "./media/characters/argon/front.svg",
  33126. extra: 2009/1935,
  33127. bottom: 118/2127
  33128. }
  33129. },
  33130. back: {
  33131. height: math.unit(5 + 10/12, "feet"),
  33132. name: "Back",
  33133. image: {
  33134. source: "./media/characters/argon/back.svg",
  33135. extra: 2047/1992,
  33136. bottom: 20/2067
  33137. }
  33138. },
  33139. frontDressed: {
  33140. height: math.unit(5 + 10/12, "feet"),
  33141. name: "Front (Dressed)",
  33142. image: {
  33143. source: "./media/characters/argon/front-dressed.svg",
  33144. extra: 2009/1935,
  33145. bottom: 118/2127
  33146. }
  33147. },
  33148. },
  33149. [
  33150. {
  33151. name: "Normal",
  33152. height: math.unit(5 + 10/12, "feet"),
  33153. default: true
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33159. {
  33160. front: {
  33161. height: math.unit(8 + 6/12, "feet"),
  33162. weight: math.unit(1150, "lb"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/kichi/front.svg",
  33166. extra: 1267/1164,
  33167. bottom: 61/1328
  33168. }
  33169. },
  33170. back: {
  33171. height: math.unit(8 + 6/12, "feet"),
  33172. weight: math.unit(1150, "lb"),
  33173. name: "Back",
  33174. image: {
  33175. source: "./media/characters/kichi/back.svg",
  33176. extra: 1273/1166,
  33177. bottom: 33/1306
  33178. }
  33179. },
  33180. },
  33181. [
  33182. {
  33183. name: "Normal",
  33184. height: math.unit(8 + 6/12, "feet"),
  33185. default: true
  33186. },
  33187. ]
  33188. ))
  33189. characterMakers.push(() => makeCharacter(
  33190. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33191. {
  33192. front: {
  33193. height: math.unit(6, "feet"),
  33194. weight: math.unit(210, "lb"),
  33195. name: "Front",
  33196. image: {
  33197. source: "./media/characters/manetel-greyscale/front.svg",
  33198. extra: 350/312,
  33199. bottom: 8/358
  33200. }
  33201. },
  33202. },
  33203. [
  33204. {
  33205. name: "Micro",
  33206. height: math.unit(2, "inches")
  33207. },
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(6, "feet"),
  33211. default: true
  33212. },
  33213. {
  33214. name: "Minimacro",
  33215. height: math.unit(17, "feet")
  33216. },
  33217. {
  33218. name: "Macro",
  33219. height: math.unit(117, "feet")
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33225. {
  33226. side: {
  33227. height: math.unit(5 + 1/12, "feet"),
  33228. weight: math.unit(418, "lb"),
  33229. name: "Side",
  33230. image: {
  33231. source: "./media/characters/softpurr/side.svg",
  33232. extra: 1993/1945,
  33233. bottom: 134/2127
  33234. }
  33235. },
  33236. front: {
  33237. height: math.unit(5 + 1/12, "feet"),
  33238. weight: math.unit(418, "lb"),
  33239. name: "Front",
  33240. image: {
  33241. source: "./media/characters/softpurr/front.svg",
  33242. extra: 1950/1856,
  33243. bottom: 174/2124
  33244. }
  33245. },
  33246. paw: {
  33247. height: math.unit(1, "feet"),
  33248. name: "Paw",
  33249. image: {
  33250. source: "./media/characters/softpurr/paw.svg"
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(5 + 1/12, "feet"),
  33258. default: true
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(260, "meters"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/anahita/front.svg",
  33270. extra: 665/635,
  33271. bottom: 89/754
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Macro",
  33278. height: math.unit(260, "meters"),
  33279. default: true
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(4 + 10/12, "feet"),
  33288. weight: math.unit(160, "lb"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/chip-mouse/front.svg",
  33292. extra: 3528/3408,
  33293. bottom: 0/3528
  33294. }
  33295. },
  33296. frontNsfw: {
  33297. height: math.unit(4 + 10/12, "feet"),
  33298. weight: math.unit(160, "lb"),
  33299. name: "Front (NSFW)",
  33300. image: {
  33301. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33302. extra: 3528/3408,
  33303. bottom: 0/3528
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Normal",
  33310. height: math.unit(4 + 10/12, "feet"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33317. {
  33318. side: {
  33319. height: math.unit(10, "feet"),
  33320. weight: math.unit(14000, "lb"),
  33321. name: "Side",
  33322. image: {
  33323. source: "./media/characters/kremm/side.svg",
  33324. extra: 1390/1053,
  33325. bottom: 90/1480
  33326. }
  33327. },
  33328. gut: {
  33329. height: math.unit(5.8, "feet"),
  33330. name: "Gut",
  33331. image: {
  33332. source: "./media/characters/kremm/gut.svg"
  33333. }
  33334. },
  33335. ass: {
  33336. height: math.unit(6.1, "feet"),
  33337. name: "Ass",
  33338. image: {
  33339. source: "./media/characters/kremm/ass.svg"
  33340. }
  33341. },
  33342. jaws: {
  33343. height: math.unit(2.2, "feet"),
  33344. name: "Jaws",
  33345. image: {
  33346. source: "./media/characters/kremm/jaws.svg"
  33347. }
  33348. },
  33349. dick: {
  33350. height: math.unit(4.26, "feet"),
  33351. name: "Dick",
  33352. image: {
  33353. source: "./media/characters/kremm/dick.svg"
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(10, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33367. {
  33368. front: {
  33369. height: math.unit(30, "stories"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/kai/front.svg",
  33373. extra: 1892/1718,
  33374. bottom: 162/2054
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Macro",
  33381. height: math.unit(30, "stories"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(6 + 4/12, "feet"),
  33391. weight: math.unit(145, "lb"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/sykes/front.svg",
  33395. extra: 1321 / 1187,
  33396. bottom: 66 / 1387
  33397. }
  33398. },
  33399. back: {
  33400. height: math.unit(6 + 4/12, "feet"),
  33401. weight: math.unit(145, "lb"),
  33402. name: "Back",
  33403. image: {
  33404. source: "./media/characters/sykes/back.svg",
  33405. extra: 1326/1181,
  33406. bottom: 31/1357
  33407. }
  33408. },
  33409. handBack: {
  33410. height: math.unit(0.9, "feet"),
  33411. name: "Hand (Back)",
  33412. image: {
  33413. source: "./media/characters/sykes/hand-back.svg"
  33414. }
  33415. },
  33416. handFront: {
  33417. height: math.unit(0.839, "feet"),
  33418. name: "Hand (Front)",
  33419. image: {
  33420. source: "./media/characters/sykes/hand-front.svg"
  33421. }
  33422. },
  33423. leftFoot: {
  33424. height: math.unit(1.2, "feet"),
  33425. name: "Foot (Left)",
  33426. image: {
  33427. source: "./media/characters/sykes/foot-left.svg"
  33428. }
  33429. },
  33430. rightFoot: {
  33431. height: math.unit(1.2, "feet"),
  33432. name: "Foot (Right)",
  33433. image: {
  33434. source: "./media/characters/sykes/foot-right.svg"
  33435. }
  33436. },
  33437. maw: {
  33438. height: math.unit(1.93, "feet"),
  33439. name: "Maw",
  33440. image: {
  33441. source: "./media/characters/sykes/maw.svg"
  33442. }
  33443. },
  33444. teeth: {
  33445. height: math.unit(0.51, "feet"),
  33446. name: "Teeth",
  33447. image: {
  33448. source: "./media/characters/sykes/teeth.svg"
  33449. }
  33450. },
  33451. tongue: {
  33452. height: math.unit(2.13, "feet"),
  33453. name: "Tongue",
  33454. image: {
  33455. source: "./media/characters/sykes/tongue.svg"
  33456. }
  33457. },
  33458. uvula: {
  33459. height: math.unit(0.16, "feet"),
  33460. name: "Uvula",
  33461. image: {
  33462. source: "./media/characters/sykes/uvula.svg"
  33463. }
  33464. },
  33465. collar: {
  33466. height: math.unit(0.287, "feet"),
  33467. name: "Collar",
  33468. image: {
  33469. source: "./media/characters/sykes/collar.svg"
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Shrunken",
  33476. height: math.unit(5, "inches")
  33477. },
  33478. {
  33479. name: "Normal",
  33480. height: math.unit(6 + 4 / 12, "feet"),
  33481. default: true
  33482. },
  33483. {
  33484. name: "Big",
  33485. height: math.unit(15, "feet")
  33486. },
  33487. ]
  33488. ))
  33489. characterMakers.push(() => makeCharacter(
  33490. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33491. {
  33492. front: {
  33493. height: math.unit(5 + 8/12, "feet"),
  33494. weight: math.unit(190, "lb"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/oven-otter/front.svg",
  33498. extra: 1809/1740,
  33499. bottom: 181/1990
  33500. }
  33501. },
  33502. back: {
  33503. height: math.unit(5 + 8/12, "feet"),
  33504. weight: math.unit(190, "lb"),
  33505. name: "Back",
  33506. image: {
  33507. source: "./media/characters/oven-otter/back.svg",
  33508. extra: 1709/1635,
  33509. bottom: 118/1827
  33510. }
  33511. },
  33512. hand: {
  33513. height: math.unit(1.07, "feet"),
  33514. name: "Hand",
  33515. image: {
  33516. source: "./media/characters/oven-otter/hand.svg"
  33517. }
  33518. },
  33519. beans: {
  33520. height: math.unit(1.74, "feet"),
  33521. name: "Beans",
  33522. image: {
  33523. source: "./media/characters/oven-otter/beans.svg"
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Micro",
  33530. height: math.unit(0.5, "inches")
  33531. },
  33532. {
  33533. name: "Normal",
  33534. height: math.unit(5 + 8/12, "feet"),
  33535. default: true
  33536. },
  33537. {
  33538. name: "Macro",
  33539. height: math.unit(250, "feet")
  33540. },
  33541. {
  33542. name: "Really High",
  33543. height: math.unit(420, "feet")
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(5, "meters"),
  33552. weight: math.unit(292000000000000, "kg"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/devourer/front.svg",
  33556. extra: 1800/1733,
  33557. bottom: 211/2011
  33558. }
  33559. },
  33560. maw: {
  33561. height: math.unit(1.1, "meter"),
  33562. name: "Maw",
  33563. image: {
  33564. source: "./media/characters/devourer/maw.svg"
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Small",
  33571. height: math.unit(3, "meters")
  33572. },
  33573. {
  33574. name: "Large",
  33575. height: math.unit(5, "meters"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33582. {
  33583. front: {
  33584. height: math.unit(6, "feet"),
  33585. weight: math.unit(400, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/ellarby/front.svg",
  33589. extra: 1909/1763,
  33590. bottom: 80/1989
  33591. }
  33592. },
  33593. back: {
  33594. height: math.unit(6, "feet"),
  33595. weight: math.unit(400, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/ellarby/back.svg",
  33599. extra: 1914/1784,
  33600. bottom: 172/2086
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Mischief",
  33607. height: math.unit(18, "inches")
  33608. },
  33609. {
  33610. name: "Trouble",
  33611. height: math.unit(12, "feet")
  33612. },
  33613. {
  33614. name: "Havoc",
  33615. height: math.unit(200, "feet"),
  33616. default: true
  33617. },
  33618. {
  33619. name: "Pandemonium",
  33620. height: math.unit(1, "mile")
  33621. },
  33622. {
  33623. name: "Catastrophe",
  33624. height: math.unit(100, "miles")
  33625. },
  33626. ]
  33627. ))
  33628. characterMakers.push(() => makeCharacter(
  33629. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33630. {
  33631. front: {
  33632. height: math.unit(4.7, "meters"),
  33633. weight: math.unit(6500, "kg"),
  33634. name: "Front",
  33635. image: {
  33636. source: "./media/characters/vex/front.svg",
  33637. extra: 1288/1140,
  33638. bottom: 100/1388
  33639. }
  33640. },
  33641. },
  33642. [
  33643. {
  33644. name: "Normal",
  33645. height: math.unit(4.7, "meters"),
  33646. default: true
  33647. },
  33648. ]
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33652. {
  33653. normal: {
  33654. height: math.unit(6, "feet"),
  33655. weight: math.unit(350, "lb"),
  33656. name: "Normal",
  33657. image: {
  33658. source: "./media/characters/teshy/normal.svg",
  33659. extra: 1795/1735,
  33660. bottom: 16/1811
  33661. }
  33662. },
  33663. monsterFront: {
  33664. height: math.unit(12, "feet"),
  33665. weight: math.unit(4700, "lb"),
  33666. name: "Monster (Front)",
  33667. image: {
  33668. source: "./media/characters/teshy/monster-front.svg",
  33669. extra: 2042/2034,
  33670. bottom: 128/2170
  33671. }
  33672. },
  33673. monsterSide: {
  33674. height: math.unit(12, "feet"),
  33675. weight: math.unit(4700, "lb"),
  33676. name: "Monster (Side)",
  33677. image: {
  33678. source: "./media/characters/teshy/monster-side.svg",
  33679. extra: 2067/2056,
  33680. bottom: 70/2137
  33681. }
  33682. },
  33683. monsterBack: {
  33684. height: math.unit(12, "feet"),
  33685. weight: math.unit(4700, "lb"),
  33686. name: "Monster (Back)",
  33687. image: {
  33688. source: "./media/characters/teshy/monster-back.svg",
  33689. extra: 1921/1914,
  33690. bottom: 171/2092
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(6, "feet"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(6, "feet"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/ramey/front.svg",
  33710. extra: 790/787,
  33711. bottom: 27/817
  33712. }
  33713. },
  33714. },
  33715. [
  33716. {
  33717. name: "Normal",
  33718. height: math.unit(6, "feet"),
  33719. default: true
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33725. {
  33726. front: {
  33727. height: math.unit(5 + 5/12, "feet"),
  33728. weight: math.unit(120, "lb"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/phirae/front.svg",
  33732. extra: 2491/2436,
  33733. bottom: 38/2529
  33734. }
  33735. },
  33736. },
  33737. [
  33738. {
  33739. name: "Normal",
  33740. height: math.unit(5 + 5/12, "feet"),
  33741. default: true
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33747. {
  33748. front: {
  33749. height: math.unit(6, "feet"),
  33750. weight: math.unit(150, "lb"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/stagglas/front.svg",
  33754. extra: 962/882,
  33755. bottom: 53/1015
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal",
  33762. height: math.unit(5 + 3/12, "feet"),
  33763. default: true
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33769. {
  33770. front: {
  33771. height: math.unit(5 + 4/12, "feet"),
  33772. weight: math.unit(145, "lb"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/starra/front.svg",
  33776. extra: 1790/1691,
  33777. bottom: 91/1881
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(5 + 4/12, "feet"),
  33785. default: true
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(2.2, "meters"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33797. extra: 1194/1005,
  33798. bottom: 25/1219
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(2.2, "meters"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33812. {
  33813. side: {
  33814. height: math.unit(8 + 2/12, "feet"),
  33815. weight: math.unit(1240, "lb"),
  33816. name: "Side",
  33817. image: {
  33818. source: "./media/characters/mika-valentine/side.svg",
  33819. extra: 2670/2501,
  33820. bottom: 250/2920
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(8 + 2/12, "feet"),
  33828. default: true
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33834. {
  33835. front: {
  33836. height: math.unit(7 + 2/12, "feet"),
  33837. name: "Front",
  33838. image: {
  33839. source: "./media/characters/xoltol/front.svg",
  33840. extra: 2212/2124,
  33841. bottom: 84/2296
  33842. }
  33843. },
  33844. side: {
  33845. height: math.unit(7 + 2/12, "feet"),
  33846. name: "Side",
  33847. image: {
  33848. source: "./media/characters/xoltol/side.svg",
  33849. extra: 2273/2197,
  33850. bottom: 26/2299
  33851. }
  33852. },
  33853. hand: {
  33854. height: math.unit(2.5, "feet"),
  33855. name: "Hand",
  33856. image: {
  33857. source: "./media/characters/xoltol/hand.svg"
  33858. }
  33859. },
  33860. },
  33861. [
  33862. {
  33863. name: "Small-ish",
  33864. height: math.unit(5 + 11/12, "feet")
  33865. },
  33866. {
  33867. name: "Normal",
  33868. height: math.unit(7 + 2/12, "feet")
  33869. },
  33870. {
  33871. name: "\"Macro\"",
  33872. height: math.unit(14 + 9/12, "feet"),
  33873. default: true
  33874. },
  33875. {
  33876. name: "Alternate Height",
  33877. height: math.unit(20, "feet")
  33878. },
  33879. {
  33880. name: "Actually Macro",
  33881. height: math.unit(100, "feet")
  33882. },
  33883. ]
  33884. ))
  33885. characterMakers.push(() => makeCharacter(
  33886. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33887. {
  33888. front: {
  33889. height: math.unit(5 + 2/12, "feet"),
  33890. name: "Front",
  33891. image: {
  33892. source: "./media/characters/kotetsu-redwood/front.svg",
  33893. extra: 1053/942,
  33894. bottom: 60/1113
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(5 + 2/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(2.4, "meters"),
  33911. weight: math.unit(125, "kg"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/lilith/front.svg",
  33915. extra: 1590/1513,
  33916. bottom: 203/1793
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Humanoid",
  33923. height: math.unit(2.4, "meters")
  33924. },
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(6, "meters"),
  33928. default: true
  33929. },
  33930. {
  33931. name: "Largest",
  33932. height: math.unit(55, "meters")
  33933. },
  33934. ]
  33935. ))
  33936. characterMakers.push(() => makeCharacter(
  33937. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33938. {
  33939. front: {
  33940. height: math.unit(8 + 4/12, "feet"),
  33941. weight: math.unit(535, "lb"),
  33942. name: "Front",
  33943. image: {
  33944. source: "./media/characters/beh'kah-bolger/front.svg",
  33945. extra: 1660/1603,
  33946. bottom: 37/1697
  33947. }
  33948. },
  33949. },
  33950. [
  33951. {
  33952. name: "Normal",
  33953. height: math.unit(8 + 4/12, "feet"),
  33954. default: true
  33955. },
  33956. {
  33957. name: "Kaiju",
  33958. height: math.unit(250, "feet")
  33959. },
  33960. {
  33961. name: "Still Growing",
  33962. height: math.unit(10, "miles")
  33963. },
  33964. {
  33965. name: "Continental",
  33966. height: math.unit(5000, "miles")
  33967. },
  33968. {
  33969. name: "Final Form",
  33970. height: math.unit(2500000, "miles")
  33971. },
  33972. ]
  33973. ))
  33974. characterMakers.push(() => makeCharacter(
  33975. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33976. {
  33977. front: {
  33978. height: math.unit(7 + 2/12, "feet"),
  33979. weight: math.unit(230, "kg"),
  33980. name: "Front",
  33981. image: {
  33982. source: "./media/characters/tatyana-milewska/front.svg",
  33983. extra: 1199/1150,
  33984. bottom: 86/1285
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(7 + 2/12, "feet"),
  33992. default: true
  33993. },
  33994. {
  33995. name: "Big",
  33996. height: math.unit(12, "feet")
  33997. },
  33998. {
  33999. name: "Minimacro",
  34000. height: math.unit(20, "feet")
  34001. },
  34002. {
  34003. name: "Macro",
  34004. height: math.unit(120, "feet")
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(7 + 8/12, "feet"),
  34013. weight: math.unit(152, "kg"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/helen-arri/front.svg",
  34017. extra: 440/423,
  34018. bottom: 14/454
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(7 + 8/12, "feet"),
  34023. weight: math.unit(152, "kg"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/helen-arri/back.svg",
  34027. extra: 443/426,
  34028. bottom: 8/451
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(7 + 8/12, "feet"),
  34036. default: true
  34037. },
  34038. {
  34039. name: "Big",
  34040. height: math.unit(14, "feet")
  34041. },
  34042. {
  34043. name: "Minimacro",
  34044. height: math.unit(24, "feet")
  34045. },
  34046. {
  34047. name: "Macro",
  34048. height: math.unit(140, "feet")
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(6, "meters"),
  34057. name: "Front",
  34058. image: {
  34059. source: "./media/characters/ehanu-rehu/front.svg",
  34060. extra: 1800/1800,
  34061. bottom: 59/1859
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Normal",
  34068. height: math.unit(6, "meters"),
  34069. default: true
  34070. },
  34071. ]
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34075. {
  34076. front: {
  34077. height: math.unit(7 + 3/12, "feet"),
  34078. name: "Front",
  34079. image: {
  34080. source: "./media/characters/renholder/front.svg",
  34081. extra: 3096/2960,
  34082. bottom: 250/3346
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Normal Bat",
  34089. height: math.unit(7 + 3/12, "feet"),
  34090. default: true
  34091. },
  34092. {
  34093. name: "Slightly Tall Bat",
  34094. height: math.unit(100, "feet")
  34095. },
  34096. {
  34097. name: "Big Bat",
  34098. height: math.unit(1000, "feet")
  34099. },
  34100. {
  34101. name: "City-Sized Bat",
  34102. height: math.unit(200000, "feet")
  34103. },
  34104. {
  34105. name: "Bigger Bat",
  34106. height: math.unit(10000, "miles")
  34107. },
  34108. {
  34109. name: "Solar Sized Bat",
  34110. height: math.unit(100, "AU")
  34111. },
  34112. {
  34113. name: "Galactic Bat",
  34114. height: math.unit(200000, "lightyears")
  34115. },
  34116. {
  34117. name: "Universally Known Bat",
  34118. height: math.unit(1, "universe")
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34124. {
  34125. front: {
  34126. height: math.unit(6 + 11/12, "feet"),
  34127. weight: math.unit(250, "lb"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/cookiecat/front.svg",
  34131. extra: 893/827,
  34132. bottom: 14/907
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Micro",
  34139. height: math.unit(3, "inches")
  34140. },
  34141. {
  34142. name: "Normal",
  34143. height: math.unit(6 + 11/12, "feet"),
  34144. default: true
  34145. },
  34146. {
  34147. name: "Macro",
  34148. height: math.unit(100, "feet")
  34149. },
  34150. {
  34151. name: "Macro+",
  34152. height: math.unit(404, "feet")
  34153. },
  34154. {
  34155. name: "Megamacro",
  34156. height: math.unit(165, "miles")
  34157. },
  34158. {
  34159. name: "Planetary",
  34160. height: math.unit(4600, "miles")
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(10 + 3/12, "feet"),
  34169. weight: math.unit(1500, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/tux-kusanagi/front.svg",
  34173. extra: 944/840,
  34174. bottom: 39/983
  34175. }
  34176. },
  34177. back: {
  34178. height: math.unit(10 + 3/12, "feet"),
  34179. weight: math.unit(1500, "lb"),
  34180. name: "Back",
  34181. image: {
  34182. source: "./media/characters/tux-kusanagi/back.svg",
  34183. extra: 941/842,
  34184. bottom: 28/969
  34185. }
  34186. },
  34187. rump: {
  34188. height: math.unit(5.25, "feet"),
  34189. name: "Rump",
  34190. image: {
  34191. source: "./media/characters/tux-kusanagi/rump.svg"
  34192. }
  34193. },
  34194. beak: {
  34195. height: math.unit(1.54, "feet"),
  34196. name: "Beak",
  34197. image: {
  34198. source: "./media/characters/tux-kusanagi/beak.svg"
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(10 + 3/12, "feet"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(58, "feet"),
  34215. weight: math.unit(200, "tons"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/uzarmazari/front.svg",
  34219. extra: 1575/1455,
  34220. bottom: 152/1727
  34221. }
  34222. },
  34223. back: {
  34224. height: math.unit(58, "feet"),
  34225. weight: math.unit(200, "tons"),
  34226. name: "Back",
  34227. image: {
  34228. source: "./media/characters/uzarmazari/back.svg",
  34229. extra: 1585/1510,
  34230. bottom: 157/1742
  34231. }
  34232. },
  34233. head: {
  34234. height: math.unit(26, "feet"),
  34235. name: "Head",
  34236. image: {
  34237. source: "./media/characters/uzarmazari/head.svg"
  34238. }
  34239. },
  34240. },
  34241. [
  34242. {
  34243. name: "Normal",
  34244. height: math.unit(58, "feet"),
  34245. default: true
  34246. },
  34247. ]
  34248. ))
  34249. characterMakers.push(() => makeCharacter(
  34250. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34251. {
  34252. side: {
  34253. height: math.unit(15, "feet"),
  34254. name: "Side",
  34255. image: {
  34256. source: "./media/characters/akitu/side.svg",
  34257. extra: 1421/1321,
  34258. bottom: 157/1578
  34259. }
  34260. },
  34261. front: {
  34262. height: math.unit(15, "feet"),
  34263. name: "Front",
  34264. image: {
  34265. source: "./media/characters/akitu/front.svg",
  34266. extra: 1435/1326,
  34267. bottom: 232/1667
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(15, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(10 + 8/12, "feet"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/azalie-croixland/front.svg",
  34287. extra: 1972/1856,
  34288. bottom: 31/2003
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Original Height",
  34295. height: math.unit(5 + 4/12, "feet")
  34296. },
  34297. {
  34298. name: "Normal Height",
  34299. height: math.unit(10 + 8/12, "feet"),
  34300. default: true
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34306. {
  34307. side: {
  34308. height: math.unit(7 + 1/12, "feet"),
  34309. weight: math.unit(245, "lb"),
  34310. name: "Side",
  34311. image: {
  34312. source: "./media/characters/kavus-kazian/side.svg",
  34313. extra: 349/342,
  34314. bottom: 15/364
  34315. }
  34316. },
  34317. },
  34318. [
  34319. {
  34320. name: "Normal",
  34321. height: math.unit(7 + 1/12, "feet"),
  34322. default: true
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34328. {
  34329. normal: {
  34330. height: math.unit(5 + 11/12, "feet"),
  34331. name: "Normal",
  34332. image: {
  34333. source: "./media/characters/moonlight-rose/normal.svg",
  34334. extra: 1979/1835,
  34335. bottom: 14/1993
  34336. }
  34337. },
  34338. demon: {
  34339. height: math.unit(5, "km"),
  34340. name: "Demon",
  34341. image: {
  34342. source: "./media/characters/moonlight-rose/demon.svg",
  34343. extra: 986/916,
  34344. bottom: 28/1014
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "\"Natural\" height",
  34351. height: math.unit(5 + 11/12, "feet")
  34352. },
  34353. {
  34354. name: "Comfortable Size",
  34355. height: math.unit(40, "meters")
  34356. },
  34357. {
  34358. name: "Common Size",
  34359. height: math.unit(50, "km"),
  34360. default: true
  34361. },
  34362. {
  34363. name: "Demonic",
  34364. height: math.unit(1.24415e+21, "meters")
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34370. {
  34371. front: {
  34372. height: math.unit(16, "feet"),
  34373. weight: math.unit(610, "kg"),
  34374. name: "Front",
  34375. image: {
  34376. source: "./media/characters/huckle/front.svg",
  34377. extra: 1731/1625,
  34378. bottom: 33/1764
  34379. }
  34380. },
  34381. back: {
  34382. height: math.unit(16, "feet"),
  34383. weight: math.unit(610, "kg"),
  34384. name: "Back",
  34385. image: {
  34386. source: "./media/characters/huckle/back.svg",
  34387. extra: 1738/1651,
  34388. bottom: 37/1775
  34389. }
  34390. },
  34391. laughing: {
  34392. height: math.unit(3.75, "feet"),
  34393. name: "Laughing",
  34394. image: {
  34395. source: "./media/characters/huckle/laughing.svg"
  34396. }
  34397. },
  34398. angry: {
  34399. height: math.unit(4.15, "feet"),
  34400. name: "Angry",
  34401. image: {
  34402. source: "./media/characters/huckle/angry.svg"
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(16, "feet"),
  34410. default: true
  34411. },
  34412. {
  34413. name: "Mini Macro",
  34414. height: math.unit(463, "feet")
  34415. },
  34416. {
  34417. name: "Macro",
  34418. height: math.unit(1680, "meters")
  34419. },
  34420. {
  34421. name: "Mega Macro",
  34422. height: math.unit(175, "km")
  34423. },
  34424. {
  34425. name: "Terra Macro",
  34426. height: math.unit(32, "gigameters")
  34427. },
  34428. {
  34429. name: "Multiverse+",
  34430. height: math.unit(2.56e23, "yottameters")
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(6 + 9/12, "feet"),
  34439. weight: math.unit(280, "lb"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/candy/front.svg",
  34443. extra: 234/217,
  34444. bottom: 11/245
  34445. }
  34446. },
  34447. },
  34448. [
  34449. {
  34450. name: "Really Small",
  34451. height: math.unit(0.1, "nm")
  34452. },
  34453. {
  34454. name: "Micro",
  34455. height: math.unit(2, "inches")
  34456. },
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(6 + 9/12, "feet"),
  34460. default: true
  34461. },
  34462. {
  34463. name: "Small Macro",
  34464. height: math.unit(69, "feet")
  34465. },
  34466. {
  34467. name: "Macro",
  34468. height: math.unit(160, "feet")
  34469. },
  34470. {
  34471. name: "Megamacro",
  34472. height: math.unit(22000, "miles")
  34473. },
  34474. {
  34475. name: "Gigamacro",
  34476. height: math.unit(50000, "miles")
  34477. },
  34478. ]
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34482. {
  34483. front: {
  34484. height: math.unit(4, "feet"),
  34485. weight: math.unit(90, "lb"),
  34486. name: "Front",
  34487. image: {
  34488. source: "./media/characters/joey-mcdonald/front.svg",
  34489. extra: 1059/852,
  34490. bottom: 33/1092
  34491. }
  34492. },
  34493. back: {
  34494. height: math.unit(4, "feet"),
  34495. weight: math.unit(90, "lb"),
  34496. name: "Back",
  34497. image: {
  34498. source: "./media/characters/joey-mcdonald/back.svg",
  34499. extra: 1077/879,
  34500. bottom: 5/1082
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "Normal",
  34507. height: math.unit(4, "feet"),
  34508. default: true
  34509. },
  34510. ]
  34511. ))
  34512. characterMakers.push(() => makeCharacter(
  34513. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34514. {
  34515. front: {
  34516. height: math.unit(12 + 6/12, "feet"),
  34517. name: "Front",
  34518. image: {
  34519. source: "./media/characters/kass-lockheed/front.svg",
  34520. extra: 354/343,
  34521. bottom: 9/363
  34522. }
  34523. },
  34524. back: {
  34525. height: math.unit(12 + 6/12, "feet"),
  34526. name: "Back",
  34527. image: {
  34528. source: "./media/characters/kass-lockheed/back.svg",
  34529. extra: 364/352,
  34530. bottom: 3/367
  34531. }
  34532. },
  34533. dick: {
  34534. height: math.unit(3.12, "feet"),
  34535. name: "Dick",
  34536. image: {
  34537. source: "./media/characters/kass-lockheed/dick.svg"
  34538. }
  34539. },
  34540. head: {
  34541. height: math.unit(2.6, "feet"),
  34542. name: "Head",
  34543. image: {
  34544. source: "./media/characters/kass-lockheed/head.svg"
  34545. }
  34546. },
  34547. bleh: {
  34548. height: math.unit(2.85, "feet"),
  34549. name: "Bleh",
  34550. image: {
  34551. source: "./media/characters/kass-lockheed/bleh.svg"
  34552. }
  34553. },
  34554. smug: {
  34555. height: math.unit(2.85, "feet"),
  34556. name: "Smug",
  34557. image: {
  34558. source: "./media/characters/kass-lockheed/smug.svg"
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(12 + 6/12, "feet"),
  34566. default: true
  34567. },
  34568. ]
  34569. ))
  34570. characterMakers.push(() => makeCharacter(
  34571. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34572. {
  34573. front: {
  34574. height: math.unit(6 + 2/12, "feet"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/taylor/front.svg",
  34578. extra: 639/495,
  34579. bottom: 12/651
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(6 + 2/12, "feet"),
  34587. default: true
  34588. },
  34589. {
  34590. name: "Big",
  34591. height: math.unit(15, "feet")
  34592. },
  34593. {
  34594. name: "Lorg",
  34595. height: math.unit(80, "feet")
  34596. },
  34597. {
  34598. name: "Too Lorg",
  34599. height: math.unit(120, "feet")
  34600. },
  34601. ]
  34602. ))
  34603. characterMakers.push(() => makeCharacter(
  34604. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34605. {
  34606. front: {
  34607. height: math.unit(15, "feet"),
  34608. name: "Front",
  34609. image: {
  34610. source: "./media/characters/kaizer/front.svg",
  34611. extra: 1612/1436,
  34612. bottom: 43/1655
  34613. }
  34614. },
  34615. },
  34616. [
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(15, "feet"),
  34620. default: true
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34626. {
  34627. front: {
  34628. height: math.unit(2, "feet"),
  34629. weight: math.unit(30, "lb"),
  34630. name: "Front",
  34631. image: {
  34632. source: "./media/characters/sandy/front.svg",
  34633. extra: 1439/1307,
  34634. bottom: 194/1633
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(2, "feet"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(3, "feet"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/mellvi/front.svg",
  34654. extra: 1831/1630,
  34655. bottom: 58/1889
  34656. }
  34657. },
  34658. },
  34659. [
  34660. {
  34661. name: "Normal",
  34662. height: math.unit(3, "feet"),
  34663. default: true
  34664. },
  34665. ]
  34666. ))
  34667. characterMakers.push(() => makeCharacter(
  34668. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34669. {
  34670. front: {
  34671. height: math.unit(5 + 11/12, "feet"),
  34672. weight: math.unit(200, "lb"),
  34673. name: "Front",
  34674. image: {
  34675. source: "./media/characters/shirou/front.svg",
  34676. extra: 2491/2383,
  34677. bottom: 189/2680
  34678. }
  34679. },
  34680. back: {
  34681. height: math.unit(5 + 11/12, "feet"),
  34682. weight: math.unit(200, "lb"),
  34683. name: "Back",
  34684. image: {
  34685. source: "./media/characters/shirou/back.svg",
  34686. extra: 2554/2450,
  34687. bottom: 76/2630
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(5 + 11/12, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(6 + 3/12, "feet"),
  34704. weight: math.unit(177, "lb"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/noryu/front.svg",
  34708. extra: 973/885,
  34709. bottom: 10/983
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(6 + 3/12, "feet"),
  34717. default: true
  34718. },
  34719. ]
  34720. ))
  34721. characterMakers.push(() => makeCharacter(
  34722. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34723. {
  34724. front: {
  34725. height: math.unit(5 + 6/12, "feet"),
  34726. weight: math.unit(170, "lb"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/mevolas-rubenido/front.svg",
  34730. extra: 2109/1901,
  34731. bottom: 96/2205
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Normal",
  34738. height: math.unit(5 + 6/12, "feet"),
  34739. default: true
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(100, "feet"),
  34748. name: "Front",
  34749. image: {
  34750. source: "./media/characters/dee/front.svg",
  34751. extra: 2153/2036,
  34752. bottom: 59/2212
  34753. }
  34754. },
  34755. back: {
  34756. height: math.unit(100, "feet"),
  34757. name: "Back",
  34758. image: {
  34759. source: "./media/characters/dee/back.svg",
  34760. extra: 2183/2058,
  34761. bottom: 75/2258
  34762. }
  34763. },
  34764. foot: {
  34765. height: math.unit(19.43, "feet"),
  34766. name: "Foot",
  34767. image: {
  34768. source: "./media/characters/dee/foot.svg"
  34769. }
  34770. },
  34771. hoof: {
  34772. height: math.unit(20.6, "feet"),
  34773. name: "Hoof",
  34774. image: {
  34775. source: "./media/characters/dee/hoof.svg"
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Macro",
  34782. height: math.unit(100, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(5 + 6/12, "feet"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/teh/front.svg",
  34795. extra: 1002/847,
  34796. bottom: 62/1064
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Normal",
  34803. height: math.unit(5 + 6/12, "feet"),
  34804. default: true
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34810. {
  34811. side: {
  34812. height: math.unit(6 + 1/12, "feet"),
  34813. weight: math.unit(204, "lb"),
  34814. name: "Side",
  34815. image: {
  34816. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34817. extra: 974/775,
  34818. bottom: 169/1143
  34819. }
  34820. },
  34821. sitting: {
  34822. height: math.unit(6 + 2/12, "feet"),
  34823. weight: math.unit(204, "lb"),
  34824. name: "Sitting",
  34825. image: {
  34826. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34827. extra: 1175/964,
  34828. bottom: 378/1553
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(6 + 1/12, "feet"),
  34836. default: true
  34837. },
  34838. ]
  34839. ))
  34840. characterMakers.push(() => makeCharacter(
  34841. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34842. {
  34843. front: {
  34844. height: math.unit(6, "inches"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/tululi/front.svg",
  34848. extra: 1997/1876,
  34849. bottom: 20/2017
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(6, "inches"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(4 + 1/12, "feet"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/star/front.svg",
  34869. extra: 1493/1189,
  34870. bottom: 48/1541
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(4 + 1/12, "feet"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(6 + 3/12, "feet"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/comet/front.svg",
  34890. extra: 1681/1462,
  34891. bottom: 26/1707
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(6 + 3/12, "feet"),
  34899. default: true
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(950, "feet"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/vortex/front.svg",
  34911. extra: 1497/1434,
  34912. bottom: 56/1553
  34913. }
  34914. },
  34915. maw: {
  34916. height: math.unit(285, "feet"),
  34917. name: "Maw",
  34918. image: {
  34919. source: "./media/characters/vortex/maw.svg"
  34920. }
  34921. },
  34922. },
  34923. [
  34924. {
  34925. name: "Macro",
  34926. height: math.unit(950, "feet"),
  34927. default: true
  34928. },
  34929. ]
  34930. ))
  34931. characterMakers.push(() => makeCharacter(
  34932. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34933. {
  34934. front: {
  34935. height: math.unit(600, "feet"),
  34936. weight: math.unit(0.02, "grams"),
  34937. name: "Front",
  34938. image: {
  34939. source: "./media/characters/doodle/front.svg",
  34940. extra: 1578/1413,
  34941. bottom: 37/1615
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Macro",
  34948. height: math.unit(600, "feet"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34955. {
  34956. front: {
  34957. height: math.unit(6 + 6/12, "feet"),
  34958. name: "Front",
  34959. image: {
  34960. source: "./media/characters/jai/front.svg",
  34961. extra: 1645/1534,
  34962. bottom: 115/1760
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Normal",
  34969. height: math.unit(6 + 6/12, "feet"),
  34970. default: true
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(6 + 8/12, "feet"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/pixel/front.svg",
  34982. extra: 1900/1735,
  34983. bottom: 63/1963
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(6 + 8/12, "feet"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34997. {
  34998. front: {
  34999. height: math.unit(4 + 11/12, "feet"),
  35000. weight: math.unit(111, "lb"),
  35001. name: "Front",
  35002. image: {
  35003. source: "./media/characters/rhett/front.svg",
  35004. extra: 1682/1586,
  35005. bottom: 92/1774
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Mini",
  35012. height: math.unit(1 + 1/12, "feet")
  35013. },
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(4 + 11/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(3 + 3/12, "feet"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/penny/front.svg",
  35029. extra: 1406/1311,
  35030. bottom: 26/1432
  35031. }
  35032. },
  35033. },
  35034. [
  35035. {
  35036. name: "Normal",
  35037. height: math.unit(3 + 3/12, "feet"),
  35038. default: true
  35039. },
  35040. ]
  35041. ))
  35042. characterMakers.push(() => makeCharacter(
  35043. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35044. {
  35045. front: {
  35046. height: math.unit(4 + 11/12, "feet"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/monty/front.svg",
  35050. extra: 1479/1209,
  35051. bottom: 0/1479
  35052. }
  35053. },
  35054. },
  35055. [
  35056. {
  35057. name: "Normal",
  35058. height: math.unit(4 + 11/12, "feet"),
  35059. default: true
  35060. },
  35061. ]
  35062. ))
  35063. characterMakers.push(() => makeCharacter(
  35064. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35065. {
  35066. front: {
  35067. height: math.unit(8 + 4/12, "feet"),
  35068. name: "Front",
  35069. image: {
  35070. source: "./media/characters/sterling/front.svg",
  35071. extra: 1420/1236,
  35072. bottom: 27/1447
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(8 + 4/12, "feet"),
  35080. default: true
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(15, "feet"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/marble/front.svg",
  35092. extra: 973/937,
  35093. bottom: 32/1005
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(15, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35107. {
  35108. front: {
  35109. height: math.unit(3, "inches"),
  35110. name: "Front",
  35111. image: {
  35112. source: "./media/characters/powder/front.svg",
  35113. extra: 1504/1334,
  35114. bottom: 518/2022
  35115. }
  35116. },
  35117. },
  35118. [
  35119. {
  35120. name: "Normal",
  35121. height: math.unit(3, "inches"),
  35122. default: true
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(4 + 5/12, "feet"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/joey-raccoon/front.svg",
  35134. extra: 1273/1197,
  35135. bottom: 0/1273
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(4 + 5/12, "feet"),
  35143. default: true
  35144. },
  35145. ]
  35146. ))
  35147. characterMakers.push(() => makeCharacter(
  35148. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35149. {
  35150. front: {
  35151. height: math.unit(8 + 4/12, "feet"),
  35152. name: "Front",
  35153. image: {
  35154. source: "./media/characters/vick/front.svg",
  35155. extra: 2187/2118,
  35156. bottom: 47/2234
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(8 + 4/12, "feet"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35170. {
  35171. front: {
  35172. height: math.unit(5 + 5/12, "feet"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/mitsy/front.svg",
  35176. extra: 1842/1695,
  35177. bottom: 0/1842
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(5 + 5/12, "feet"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(6 + 3/12, "feet"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/silvy/front.svg",
  35197. extra: 1995/1836,
  35198. bottom: 225/2220
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(6 + 3/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(3 + 8/12, "feet"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/rodney/front.svg",
  35218. extra: 1956/1747,
  35219. bottom: 31/1987
  35220. }
  35221. },
  35222. frontDressed: {
  35223. height: math.unit(2.9, "feet"),
  35224. name: "Front (Dressed)",
  35225. image: {
  35226. source: "./media/characters/rodney/front-dressed.svg",
  35227. extra: 1382/1241,
  35228. bottom: 385/1767
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Normal",
  35235. height: math.unit(3 + 8/12, "feet"),
  35236. default: true
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(5 + 9/12, "feet"),
  35245. weight: math.unit(194, "lbs"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/zakail-sudekai/front.svg",
  35249. extra: 2696/2533,
  35250. bottom: 248/2944
  35251. }
  35252. },
  35253. maw: {
  35254. height: math.unit(1.35, "feet"),
  35255. name: "Maw",
  35256. image: {
  35257. source: "./media/characters/zakail-sudekai/maw.svg"
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Normal",
  35264. height: math.unit(5 + 9/12, "feet"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(8 + 4/12, "feet"),
  35274. weight: math.unit(1200, "lb"),
  35275. name: "Front",
  35276. image: {
  35277. source: "./media/characters/eleanor/front.svg",
  35278. extra: 1226/1192,
  35279. bottom: 52/1278
  35280. }
  35281. },
  35282. back: {
  35283. height: math.unit(8 + 4/12, "feet"),
  35284. weight: math.unit(1200, "lb"),
  35285. name: "Back",
  35286. image: {
  35287. source: "./media/characters/eleanor/back.svg",
  35288. extra: 1242/1184,
  35289. bottom: 60/1302
  35290. }
  35291. },
  35292. head: {
  35293. height: math.unit(2.62, "feet"),
  35294. name: "Head",
  35295. image: {
  35296. source: "./media/characters/eleanor/head.svg"
  35297. }
  35298. },
  35299. },
  35300. [
  35301. {
  35302. name: "Normal",
  35303. height: math.unit(8 + 4/12, "feet"),
  35304. default: true
  35305. },
  35306. ]
  35307. ))
  35308. characterMakers.push(() => makeCharacter(
  35309. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35310. {
  35311. front: {
  35312. height: math.unit(8 + 4/12, "feet"),
  35313. weight: math.unit(750, "lb"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/tanya/front.svg",
  35317. extra: 1749/1615,
  35318. bottom: 33/1782
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(8 + 4/12, "feet"),
  35326. default: true
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35332. {
  35333. front: {
  35334. height: math.unit(5, "feet"),
  35335. weight: math.unit(225, "lb"),
  35336. name: "Front",
  35337. image: {
  35338. source: "./media/characters/cindy/front.svg",
  35339. extra: 1320/1250,
  35340. bottom: 42/1362
  35341. }
  35342. },
  35343. frontDressed: {
  35344. height: math.unit(5, "feet"),
  35345. weight: math.unit(225, "lb"),
  35346. name: "Front (Dressed)",
  35347. image: {
  35348. source: "./media/characters/cindy/front-dressed.svg",
  35349. extra: 1320/1250,
  35350. bottom: 42/1362
  35351. }
  35352. },
  35353. back: {
  35354. height: math.unit(5, "feet"),
  35355. weight: math.unit(225, "lb"),
  35356. name: "Back",
  35357. image: {
  35358. source: "./media/characters/cindy/back.svg",
  35359. extra: 1384/1346,
  35360. bottom: 14/1398
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal",
  35367. height: math.unit(5, "feet"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(6 + 9/12, "feet"),
  35377. weight: math.unit(440, "lb"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/wilbur-owen/front.svg",
  35381. extra: 1575/1448,
  35382. bottom: 72/1647
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(6 + 9/12, "feet"),
  35387. weight: math.unit(440, "lb"),
  35388. name: "Back",
  35389. image: {
  35390. source: "./media/characters/wilbur-owen/back.svg",
  35391. extra: 1578/1445,
  35392. bottom: 36/1614
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Normal",
  35399. height: math.unit(6 + 9/12, "feet"),
  35400. default: true
  35401. },
  35402. ]
  35403. ))
  35404. characterMakers.push(() => makeCharacter(
  35405. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35406. {
  35407. front: {
  35408. height: math.unit(6 + 5/12, "feet"),
  35409. weight: math.unit(650, "lb"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/keegan/front.svg",
  35413. extra: 2387/2198,
  35414. bottom: 33/2420
  35415. }
  35416. },
  35417. side: {
  35418. height: math.unit(6 + 5/12, "feet"),
  35419. weight: math.unit(650, "lb"),
  35420. name: "Side",
  35421. image: {
  35422. source: "./media/characters/keegan/side.svg",
  35423. extra: 2390/2202,
  35424. bottom: 47/2437
  35425. }
  35426. },
  35427. back: {
  35428. height: math.unit(6 + 5/12, "feet"),
  35429. weight: math.unit(650, "lb"),
  35430. name: "Back",
  35431. image: {
  35432. source: "./media/characters/keegan/back.svg",
  35433. extra: 2418/2268,
  35434. bottom: 15/2433
  35435. }
  35436. },
  35437. frontSfw: {
  35438. height: math.unit(6 + 5/12, "feet"),
  35439. weight: math.unit(650, "lb"),
  35440. name: "Front (SFW)",
  35441. image: {
  35442. source: "./media/characters/keegan/front-sfw.svg",
  35443. extra: 2387/2198,
  35444. bottom: 33/2420
  35445. }
  35446. },
  35447. beans: {
  35448. height: math.unit(1.85, "feet"),
  35449. name: "Beans",
  35450. image: {
  35451. source: "./media/characters/keegan/beans.svg"
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(6 + 5/12, "feet"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(9, "feet"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/colton/front.svg",
  35471. extra: 1589/1326,
  35472. bottom: 139/1728
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(9, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(2 + 9/12, "feet"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/bora/front.svg",
  35492. extra: 1265/1250,
  35493. bottom: 24/1289
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(2 + 9/12, "feet"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(8, "feet"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/myu-myu/front.svg",
  35513. extra: 1949/1857,
  35514. bottom: 90/2039
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Normal",
  35521. height: math.unit(8, "feet"),
  35522. default: true
  35523. },
  35524. {
  35525. name: "Big",
  35526. height: math.unit(15, "feet")
  35527. },
  35528. {
  35529. name: "BIG",
  35530. height: math.unit(25, "feet")
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35536. {
  35537. side: {
  35538. height: math.unit(7 + 5/12, "feet"),
  35539. weight: math.unit(2800, "lb"),
  35540. name: "Side",
  35541. image: {
  35542. source: "./media/characters/haloren/side.svg",
  35543. extra: 1793/409,
  35544. bottom: 59/1852
  35545. }
  35546. },
  35547. frontPaw: {
  35548. height: math.unit(2.36, "feet"),
  35549. name: "Front paw",
  35550. image: {
  35551. source: "./media/characters/haloren/front-paw.svg"
  35552. }
  35553. },
  35554. hindPaw: {
  35555. height: math.unit(3.18, "feet"),
  35556. name: "Hind paw",
  35557. image: {
  35558. source: "./media/characters/haloren/hind-paw.svg"
  35559. }
  35560. },
  35561. maw: {
  35562. height: math.unit(5.05, "feet"),
  35563. name: "Maw",
  35564. image: {
  35565. source: "./media/characters/haloren/maw.svg"
  35566. }
  35567. },
  35568. dick: {
  35569. height: math.unit(2.90, "feet"),
  35570. name: "Dick",
  35571. image: {
  35572. source: "./media/characters/haloren/dick.svg"
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(7 + 5/12, "feet"),
  35580. default: true
  35581. },
  35582. {
  35583. name: "Enhanced",
  35584. height: math.unit(14 + 3/12, "feet")
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35590. {
  35591. front: {
  35592. height: math.unit(171, "cm"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/kimmy/front.svg",
  35596. extra: 1491/1435,
  35597. bottom: 53/1544
  35598. }
  35599. },
  35600. },
  35601. [
  35602. {
  35603. name: "Small",
  35604. height: math.unit(9, "cm")
  35605. },
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(171, "cm"),
  35609. default: true
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35615. {
  35616. front: {
  35617. height: math.unit(8, "feet"),
  35618. weight: math.unit(300, "lb"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/galeboomer/front.svg",
  35622. extra: 4651/4415,
  35623. bottom: 162/4813
  35624. }
  35625. },
  35626. back: {
  35627. height: math.unit(8, "feet"),
  35628. weight: math.unit(300, "lb"),
  35629. name: "Back",
  35630. image: {
  35631. source: "./media/characters/galeboomer/back.svg",
  35632. extra: 4544/4314,
  35633. bottom: 16/4560
  35634. }
  35635. },
  35636. frontAlt: {
  35637. height: math.unit(8, "feet"),
  35638. weight: math.unit(300, "lb"),
  35639. name: "Front (Alt)",
  35640. image: {
  35641. source: "./media/characters/galeboomer/front-alt.svg",
  35642. extra: 4458/4228,
  35643. bottom: 68/4526
  35644. }
  35645. },
  35646. maw: {
  35647. height: math.unit(1.2, "feet"),
  35648. name: "Maw",
  35649. image: {
  35650. source: "./media/characters/galeboomer/maw.svg"
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(8, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(5 + 9/12, "feet"),
  35667. weight: math.unit(120, "lb"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/chyr/front.svg",
  35671. extra: 1323/1254,
  35672. bottom: 63/1386
  35673. }
  35674. },
  35675. back: {
  35676. height: math.unit(5 + 9/12, "feet"),
  35677. weight: math.unit(120, "lb"),
  35678. name: "Back",
  35679. image: {
  35680. source: "./media/characters/chyr/back.svg",
  35681. extra: 1323/1252,
  35682. bottom: 48/1371
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(5 + 9/12, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(7, "feet"),
  35699. weight: math.unit(310, "lb"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/solarus/front.svg",
  35703. extra: 2415/2021,
  35704. bottom: 103/2518
  35705. }
  35706. },
  35707. back: {
  35708. height: math.unit(7, "feet"),
  35709. weight: math.unit(310, "lb"),
  35710. name: "Back",
  35711. image: {
  35712. source: "./media/characters/solarus/back.svg",
  35713. extra: 2463/2089,
  35714. bottom: 79/2542
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(7, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(16, "feet"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35734. extra: 1844/1780,
  35735. bottom: 58/1902
  35736. }
  35737. },
  35738. winterCoat: {
  35739. height: math.unit(16, "feet"),
  35740. name: "Winter Coat",
  35741. image: {
  35742. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35743. extra: 1807/1775,
  35744. bottom: 69/1876
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(16, "feet"),
  35752. default: true
  35753. },
  35754. {
  35755. name: "Chicago Size",
  35756. height: math.unit(560, "feet")
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35762. {
  35763. front: {
  35764. height: math.unit(11 + 6/12, "feet"),
  35765. weight: math.unit(1366, "lb"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/lexor/front.svg",
  35769. extra: 1560/1481,
  35770. bottom: 211/1771
  35771. }
  35772. },
  35773. back: {
  35774. height: math.unit(11 + 6/12, "feet"),
  35775. weight: math.unit(1366, "lb"),
  35776. name: "Back",
  35777. image: {
  35778. source: "./media/characters/lexor/back.svg",
  35779. extra: 1614/1533,
  35780. bottom: 76/1690
  35781. }
  35782. },
  35783. maw: {
  35784. height: math.unit(3, "feet"),
  35785. name: "Maw",
  35786. image: {
  35787. source: "./media/characters/lexor/maw.svg"
  35788. }
  35789. },
  35790. dick: {
  35791. height: math.unit(2.59, "feet"),
  35792. name: "Dick",
  35793. image: {
  35794. source: "./media/characters/lexor/dick.svg"
  35795. }
  35796. },
  35797. },
  35798. [
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(11 + 6/12, "feet"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35808. {
  35809. front: {
  35810. height: math.unit(5 + 8/12, "feet"),
  35811. name: "Front",
  35812. image: {
  35813. source: "./media/characters/magnum/front.svg",
  35814. extra: 942/855,
  35815. bottom: 26/968
  35816. }
  35817. },
  35818. },
  35819. [
  35820. {
  35821. name: "Normal",
  35822. height: math.unit(5 + 8/12, "feet"),
  35823. default: true
  35824. },
  35825. ]
  35826. ))
  35827. characterMakers.push(() => makeCharacter(
  35828. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35829. {
  35830. front: {
  35831. height: math.unit(18 + 4/12, "feet"),
  35832. weight: math.unit(1500, "kg"),
  35833. name: "Front",
  35834. image: {
  35835. source: "./media/characters/solas-sharpsman/front.svg",
  35836. extra: 1698/1589,
  35837. bottom: 0/1698
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(18 + 4/12, "feet"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35851. {
  35852. front: {
  35853. height: math.unit(5 + 5/12, "feet"),
  35854. weight: math.unit(180, "lb"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/october/front.svg",
  35858. extra: 1800/1650,
  35859. bottom: 0/1800
  35860. }
  35861. },
  35862. frontNsfw: {
  35863. height: math.unit(5 + 5/12, "feet"),
  35864. weight: math.unit(180, "lb"),
  35865. name: "Front (NSFW)",
  35866. image: {
  35867. source: "./media/characters/october/front-nsfw.svg",
  35868. extra: 1392/1307,
  35869. bottom: 42/1434
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(5 + 5/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(8 + 6/12, "feet"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/essynkardi/front.svg",
  35889. extra: 1914/1846,
  35890. bottom: 22/1936
  35891. }
  35892. },
  35893. },
  35894. [
  35895. {
  35896. name: "Normal",
  35897. height: math.unit(8 + 6/12, "feet"),
  35898. default: true
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35904. {
  35905. front: {
  35906. height: math.unit(6 + 6/12, "feet"),
  35907. weight: math.unit(7, "lb"),
  35908. name: "Front",
  35909. image: {
  35910. source: "./media/characters/icky/front.svg",
  35911. extra: 813/782,
  35912. bottom: 66/879
  35913. }
  35914. },
  35915. back: {
  35916. height: math.unit(6 + 6/12, "feet"),
  35917. weight: math.unit(7, "lb"),
  35918. name: "Back",
  35919. image: {
  35920. source: "./media/characters/icky/back.svg",
  35921. extra: 754/735,
  35922. bottom: 56/810
  35923. }
  35924. },
  35925. },
  35926. [
  35927. {
  35928. name: "Normal",
  35929. height: math.unit(6 + 6/12, "feet"),
  35930. default: true
  35931. },
  35932. ]
  35933. ))
  35934. characterMakers.push(() => makeCharacter(
  35935. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35936. {
  35937. front: {
  35938. height: math.unit(15, "feet"),
  35939. name: "Front",
  35940. image: {
  35941. source: "./media/characters/rojas/front.svg",
  35942. extra: 1462/1408,
  35943. bottom: 95/1557
  35944. }
  35945. },
  35946. back: {
  35947. height: math.unit(15, "feet"),
  35948. name: "Back",
  35949. image: {
  35950. source: "./media/characters/rojas/back.svg",
  35951. extra: 1023/954,
  35952. bottom: 28/1051
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(15, "feet"),
  35960. default: true
  35961. },
  35962. ]
  35963. ))
  35964. characterMakers.push(() => makeCharacter(
  35965. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35966. {
  35967. frontHuman: {
  35968. height: math.unit(5 + 7/12, "feet"),
  35969. name: "Front (Human)",
  35970. image: {
  35971. source: "./media/characters/alek-dryagan/front-human.svg",
  35972. extra: 1687/1667,
  35973. bottom: 69/1756
  35974. }
  35975. },
  35976. backHuman: {
  35977. height: math.unit(5 + 7/12, "feet"),
  35978. name: "Back (Human)",
  35979. image: {
  35980. source: "./media/characters/alek-dryagan/back-human.svg",
  35981. extra: 1670/1649,
  35982. bottom: 65/1735
  35983. }
  35984. },
  35985. frontDemi: {
  35986. height: math.unit(65, "feet"),
  35987. name: "Front (Demi)",
  35988. image: {
  35989. source: "./media/characters/alek-dryagan/front-demi.svg",
  35990. extra: 1669/1642,
  35991. bottom: 49/1718
  35992. }
  35993. },
  35994. backDemi: {
  35995. height: math.unit(65, "feet"),
  35996. name: "Back (Demi)",
  35997. image: {
  35998. source: "./media/characters/alek-dryagan/back-demi.svg",
  35999. extra: 1658/1637,
  36000. bottom: 40/1698
  36001. }
  36002. },
  36003. mawHuman: {
  36004. height: math.unit(0.3, "feet"),
  36005. name: "Maw (Human)",
  36006. image: {
  36007. source: "./media/characters/alek-dryagan/maw-human.svg"
  36008. }
  36009. },
  36010. mawDemi: {
  36011. height: math.unit(3.8, "feet"),
  36012. name: "Maw (Demi)",
  36013. image: {
  36014. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Normal",
  36021. height: math.unit(5 + 7/12, "feet"),
  36022. default: true
  36023. },
  36024. ]
  36025. ))
  36026. characterMakers.push(() => makeCharacter(
  36027. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36028. {
  36029. frontHuman: {
  36030. height: math.unit(5 + 2/12, "feet"),
  36031. name: "Front (Human)",
  36032. image: {
  36033. source: "./media/characters/gen/front-human.svg",
  36034. extra: 1627/1538,
  36035. bottom: 71/1698
  36036. }
  36037. },
  36038. backHuman: {
  36039. height: math.unit(5 + 2/12, "feet"),
  36040. name: "Back (Human)",
  36041. image: {
  36042. source: "./media/characters/gen/back-human.svg",
  36043. extra: 1638/1548,
  36044. bottom: 69/1707
  36045. }
  36046. },
  36047. frontDemi: {
  36048. height: math.unit(5 + 2/12, "feet"),
  36049. name: "Front (Demi)",
  36050. image: {
  36051. source: "./media/characters/gen/front-demi.svg",
  36052. extra: 1627/1538,
  36053. bottom: 71/1698
  36054. }
  36055. },
  36056. backDemi: {
  36057. height: math.unit(5 + 2/12, "feet"),
  36058. name: "Back (Demi)",
  36059. image: {
  36060. source: "./media/characters/gen/back-demi.svg",
  36061. extra: 1638/1548,
  36062. bottom: 69/1707
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(5 + 2/12, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36076. {
  36077. frontImp: {
  36078. height: math.unit(1 + 11/12, "feet"),
  36079. name: "Front (Imp)",
  36080. image: {
  36081. source: "./media/characters/max-kobold/front-imp.svg",
  36082. extra: 1238/1134,
  36083. bottom: 81/1319
  36084. }
  36085. },
  36086. backImp: {
  36087. height: math.unit(1 + 11/12, "feet"),
  36088. name: "Back (Imp)",
  36089. image: {
  36090. source: "./media/characters/max-kobold/back-imp.svg",
  36091. extra: 1334/1175,
  36092. bottom: 34/1368
  36093. }
  36094. },
  36095. frontDemi: {
  36096. height: math.unit(5 + 9/12, "feet"),
  36097. name: "Front (Demi)",
  36098. image: {
  36099. source: "./media/characters/max-kobold/front-demi.svg",
  36100. extra: 1715/1685,
  36101. bottom: 54/1769
  36102. }
  36103. },
  36104. backDemi: {
  36105. height: math.unit(5 + 9/12, "feet"),
  36106. name: "Back (Demi)",
  36107. image: {
  36108. source: "./media/characters/max-kobold/back-demi.svg",
  36109. extra: 1752/1729,
  36110. bottom: 41/1793
  36111. }
  36112. },
  36113. handImp: {
  36114. height: math.unit(0.45, "feet"),
  36115. name: "Hand (Imp)",
  36116. image: {
  36117. source: "./media/characters/max-kobold/hand.svg"
  36118. }
  36119. },
  36120. pawImp: {
  36121. height: math.unit(0.46, "feet"),
  36122. name: "Paw (Imp)",
  36123. image: {
  36124. source: "./media/characters/max-kobold/paw.svg"
  36125. }
  36126. },
  36127. handDemi: {
  36128. height: math.unit(0.80, "feet"),
  36129. name: "Hand (Demi)",
  36130. image: {
  36131. source: "./media/characters/max-kobold/hand.svg"
  36132. }
  36133. },
  36134. pawDemi: {
  36135. height: math.unit(1.1, "feet"),
  36136. name: "Paw (Demi)",
  36137. image: {
  36138. source: "./media/characters/max-kobold/paw.svg"
  36139. }
  36140. },
  36141. headImp: {
  36142. height: math.unit(1.33, "feet"),
  36143. name: "Head (Imp)",
  36144. image: {
  36145. source: "./media/characters/max-kobold/head-imp.svg"
  36146. }
  36147. },
  36148. mawImp: {
  36149. height: math.unit(0.75, "feet"),
  36150. name: "Maw (Imp)",
  36151. image: {
  36152. source: "./media/characters/max-kobold/maw-imp.svg"
  36153. }
  36154. },
  36155. mawDemi: {
  36156. height: math.unit(0.42, "feet"),
  36157. name: "Maw (Demi)",
  36158. image: {
  36159. source: "./media/characters/max-kobold/maw-demi.svg"
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(1 + 11/12, "feet"),
  36167. default: true
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36173. {
  36174. front: {
  36175. height: math.unit(7 + 5/12, "feet"),
  36176. name: "Front",
  36177. image: {
  36178. source: "./media/characters/carbon/front.svg",
  36179. extra: 1754/1689,
  36180. bottom: 65/1819
  36181. }
  36182. },
  36183. back: {
  36184. height: math.unit(7 + 5/12, "feet"),
  36185. name: "Back",
  36186. image: {
  36187. source: "./media/characters/carbon/back.svg",
  36188. extra: 1762/1695,
  36189. bottom: 24/1786
  36190. }
  36191. },
  36192. frontGigantamax: {
  36193. height: math.unit(150, "feet"),
  36194. name: "Front (Gigantamax)",
  36195. image: {
  36196. source: "./media/characters/carbon/front-gigantamax.svg",
  36197. extra: 1826/1669,
  36198. bottom: 59/1885
  36199. }
  36200. },
  36201. backGigantamax: {
  36202. height: math.unit(150, "feet"),
  36203. name: "Back (Gigantamax)",
  36204. image: {
  36205. source: "./media/characters/carbon/back-gigantamax.svg",
  36206. extra: 1796/1653,
  36207. bottom: 53/1849
  36208. }
  36209. },
  36210. maw: {
  36211. height: math.unit(0.48, "feet"),
  36212. name: "Maw",
  36213. image: {
  36214. source: "./media/characters/carbon/maw.svg"
  36215. }
  36216. },
  36217. mawGigantamax: {
  36218. height: math.unit(7.5, "feet"),
  36219. name: "Maw (Gigantamax)",
  36220. image: {
  36221. source: "./media/characters/carbon/maw-gigantamax.svg"
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Normal",
  36228. height: math.unit(7 + 5/12, "feet"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(6, "feet"),
  36238. name: "Front",
  36239. image: {
  36240. source: "./media/characters/maverick/front.svg",
  36241. extra: 1672/1661,
  36242. bottom: 85/1757
  36243. }
  36244. },
  36245. back: {
  36246. height: math.unit(6, "feet"),
  36247. name: "Back",
  36248. image: {
  36249. source: "./media/characters/maverick/back.svg",
  36250. extra: 1642/1631,
  36251. bottom: 38/1680
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(6, "feet"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(15, "feet"),
  36268. weight: math.unit(615, "lb"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/grockle/front.svg",
  36272. extra: 1535/1427,
  36273. bottom: 56/1591
  36274. }
  36275. },
  36276. },
  36277. [
  36278. {
  36279. name: "Normal",
  36280. height: math.unit(15, "feet"),
  36281. default: true
  36282. },
  36283. {
  36284. name: "Large",
  36285. height: math.unit(150, "feet")
  36286. },
  36287. {
  36288. name: "Macro",
  36289. height: math.unit(1876, "feet")
  36290. },
  36291. {
  36292. name: "Mega Macro",
  36293. height: math.unit(121940, "feet")
  36294. },
  36295. {
  36296. name: "Giga Macro",
  36297. height: math.unit(750, "km")
  36298. },
  36299. {
  36300. name: "Tera Macro",
  36301. height: math.unit(750000, "km")
  36302. },
  36303. {
  36304. name: "Galactic",
  36305. height: math.unit(1.4e5, "km")
  36306. },
  36307. {
  36308. name: "Godlike",
  36309. height: math.unit(9.8e280, "galaxies")
  36310. },
  36311. ]
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36315. {
  36316. front: {
  36317. height: math.unit(11, "meters"),
  36318. weight: math.unit(20, "tonnes"),
  36319. name: "Front",
  36320. image: {
  36321. source: "./media/characters/alistair/front.svg",
  36322. extra: 1265/1009,
  36323. bottom: 93/1358
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Normal",
  36330. height: math.unit(11, "meters"),
  36331. default: true
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36337. {
  36338. front: {
  36339. height: math.unit(5 + 8/12, "feet"),
  36340. name: "Front",
  36341. image: {
  36342. source: "./media/characters/haruka/front.svg",
  36343. extra: 2012/1952,
  36344. bottom: 0/2012
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(5 + 8/12, "feet"),
  36352. default: true
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36358. {
  36359. back: {
  36360. height: math.unit(9, "feet"),
  36361. name: "Back",
  36362. image: {
  36363. source: "./media/characters/vivian-sylveon/back.svg",
  36364. extra: 1853/1714,
  36365. bottom: 0/1853
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Normal",
  36372. height: math.unit(9, "feet"),
  36373. default: true
  36374. },
  36375. {
  36376. name: "Macro",
  36377. height: math.unit(500, "feet")
  36378. },
  36379. {
  36380. name: "Megamacro",
  36381. height: math.unit(600, "miles")
  36382. },
  36383. {
  36384. name: "Gigamacro",
  36385. height: math.unit(30000, "miles")
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36391. {
  36392. anthro: {
  36393. height: math.unit(5 + 10/12, "feet"),
  36394. weight: math.unit(100, "lb"),
  36395. name: "Anthro",
  36396. image: {
  36397. source: "./media/characters/daiki/anthro.svg",
  36398. extra: 1115/1027,
  36399. bottom: 69/1184
  36400. }
  36401. },
  36402. feral: {
  36403. height: math.unit(200, "feet"),
  36404. name: "Feral",
  36405. image: {
  36406. source: "./media/characters/daiki/feral.svg",
  36407. extra: 1256/313,
  36408. bottom: 39/1295
  36409. }
  36410. },
  36411. feralHead: {
  36412. height: math.unit(171, "feet"),
  36413. name: "Feral Head",
  36414. image: {
  36415. source: "./media/characters/daiki/feral-head.svg"
  36416. }
  36417. },
  36418. manaDragon: {
  36419. height: math.unit(170, "meters"),
  36420. name: "Mana-dragon",
  36421. image: {
  36422. source: "./media/characters/daiki/mana-dragon.svg",
  36423. extra: 763/420,
  36424. bottom: 97/860
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(5 + 10/12, "feet"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36438. {
  36439. fullyEquippedFront: {
  36440. height: math.unit(3 + 1/12, "feet"),
  36441. weight: math.unit(24, "lb"),
  36442. name: "Fully Equipped (Front)",
  36443. image: {
  36444. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36445. extra: 687/605,
  36446. bottom: 18/705
  36447. }
  36448. },
  36449. fullyEquippedBack: {
  36450. height: math.unit(3 + 1/12, "feet"),
  36451. weight: math.unit(24, "lb"),
  36452. name: "Fully Equipped (Back)",
  36453. image: {
  36454. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36455. extra: 689/590,
  36456. bottom: 18/707
  36457. }
  36458. },
  36459. dailyWear: {
  36460. height: math.unit(3 + 1/12, "feet"),
  36461. weight: math.unit(24, "lb"),
  36462. name: "Daily Wear",
  36463. image: {
  36464. source: "./media/characters/tea-spot/daily-wear.svg",
  36465. extra: 701/620,
  36466. bottom: 21/722
  36467. }
  36468. },
  36469. maidWork: {
  36470. height: math.unit(3 + 1/12, "feet"),
  36471. weight: math.unit(24, "lb"),
  36472. name: "Maid Work",
  36473. image: {
  36474. source: "./media/characters/tea-spot/maid-work.svg",
  36475. extra: 693/609,
  36476. bottom: 15/708
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(3 + 1/12, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(175, "cm"),
  36493. weight: math.unit(75, "kg"),
  36494. name: "Front",
  36495. image: {
  36496. source: "./media/characters/chee/front.svg",
  36497. extra: 1796/1740,
  36498. bottom: 40/1836
  36499. }
  36500. },
  36501. },
  36502. [
  36503. {
  36504. name: "Micro-Micro",
  36505. height: math.unit(1, "nm")
  36506. },
  36507. {
  36508. name: "Micro-erst",
  36509. height: math.unit(1, "micrometer")
  36510. },
  36511. {
  36512. name: "Micro-er",
  36513. height: math.unit(1, "cm")
  36514. },
  36515. {
  36516. name: "Normal",
  36517. height: math.unit(175, "cm"),
  36518. default: true
  36519. },
  36520. {
  36521. name: "Macro",
  36522. height: math.unit(100, "m")
  36523. },
  36524. {
  36525. name: "Macro-er",
  36526. height: math.unit(1, "km")
  36527. },
  36528. {
  36529. name: "Macro-erst",
  36530. height: math.unit(10, "km")
  36531. },
  36532. {
  36533. name: "Macro-Macro",
  36534. height: math.unit(100, "km")
  36535. },
  36536. ]
  36537. ))
  36538. characterMakers.push(() => makeCharacter(
  36539. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36540. {
  36541. front: {
  36542. height: math.unit(11 + 9/12, "feet"),
  36543. weight: math.unit(935, "lb"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/kingsley/front.svg",
  36547. extra: 1803/1674,
  36548. bottom: 127/1930
  36549. }
  36550. },
  36551. frontNude: {
  36552. height: math.unit(11 + 9/12, "feet"),
  36553. weight: math.unit(935, "lb"),
  36554. name: "Front (Nude)",
  36555. image: {
  36556. source: "./media/characters/kingsley/front-nude.svg",
  36557. extra: 1803/1674,
  36558. bottom: 127/1930
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(11 + 9/12, "feet"),
  36566. default: true
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36572. {
  36573. side: {
  36574. height: math.unit(9, "feet"),
  36575. name: "Side",
  36576. image: {
  36577. source: "./media/characters/rymel/side.svg",
  36578. extra: 792/469,
  36579. bottom: 121/913
  36580. }
  36581. },
  36582. maw: {
  36583. height: math.unit(2.4, "meters"),
  36584. name: "Maw",
  36585. image: {
  36586. source: "./media/characters/rymel/maw.svg"
  36587. }
  36588. },
  36589. },
  36590. [
  36591. {
  36592. name: "House Drake",
  36593. height: math.unit(2, "feet")
  36594. },
  36595. {
  36596. name: "Reduced",
  36597. height: math.unit(4.5, "feet")
  36598. },
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(9, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(1.74, "meters"),
  36611. weight: math.unit(55, "kg"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/rubus/front.svg",
  36615. extra: 1894/1742,
  36616. bottom: 44/1938
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(1.74, "meters"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(5 + 2/12, "feet"),
  36633. weight: math.unit(112, "lb"),
  36634. name: "Front",
  36635. image: {
  36636. source: "./media/characters/cassie-kingston/front.svg",
  36637. extra: 1438/1390,
  36638. bottom: 47/1485
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(5 + 2/12, "feet"),
  36646. default: true
  36647. },
  36648. {
  36649. name: "Macro",
  36650. height: math.unit(128, "feet")
  36651. },
  36652. {
  36653. name: "Megamacro",
  36654. height: math.unit(2.56, "miles")
  36655. },
  36656. ]
  36657. ))
  36658. characterMakers.push(() => makeCharacter(
  36659. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36660. {
  36661. front: {
  36662. height: math.unit(7, "feet"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/fox/front.svg",
  36666. extra: 1798/1703,
  36667. bottom: 55/1853
  36668. }
  36669. },
  36670. back: {
  36671. height: math.unit(7, "feet"),
  36672. name: "Back",
  36673. image: {
  36674. source: "./media/characters/fox/back.svg",
  36675. extra: 1748/1649,
  36676. bottom: 32/1780
  36677. }
  36678. },
  36679. head: {
  36680. height: math.unit(1.95, "feet"),
  36681. name: "Head",
  36682. image: {
  36683. source: "./media/characters/fox/head.svg"
  36684. }
  36685. },
  36686. dick: {
  36687. height: math.unit(1.33, "feet"),
  36688. name: "Dick",
  36689. image: {
  36690. source: "./media/characters/fox/dick.svg"
  36691. }
  36692. },
  36693. foot: {
  36694. height: math.unit(1, "feet"),
  36695. name: "Foot",
  36696. image: {
  36697. source: "./media/characters/fox/foot.svg"
  36698. }
  36699. },
  36700. paw: {
  36701. height: math.unit(0.92, "feet"),
  36702. name: "Paw",
  36703. image: {
  36704. source: "./media/characters/fox/paw.svg"
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Small",
  36711. height: math.unit(3, "inches")
  36712. },
  36713. {
  36714. name: "\"Realistic\"",
  36715. height: math.unit(7, "feet")
  36716. },
  36717. {
  36718. name: "Normal",
  36719. height: math.unit(150, "feet"),
  36720. default: true
  36721. },
  36722. {
  36723. name: "BIG",
  36724. height: math.unit(1200, "feet")
  36725. },
  36726. {
  36727. name: "👀",
  36728. height: math.unit(5, "miles")
  36729. },
  36730. {
  36731. name: "👀👀👀",
  36732. height: math.unit(64, "miles")
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(625, "feet"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/asonja-rossa/front.svg",
  36744. extra: 1833/1686,
  36745. bottom: 24/1857
  36746. }
  36747. },
  36748. back: {
  36749. height: math.unit(625, "feet"),
  36750. name: "Back",
  36751. image: {
  36752. source: "./media/characters/asonja-rossa/back.svg",
  36753. extra: 1852/1753,
  36754. bottom: 26/1878
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Macro",
  36761. height: math.unit(625, "feet"),
  36762. default: true
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36768. {
  36769. side: {
  36770. height: math.unit(6, "feet"),
  36771. weight: math.unit(150, "lb"),
  36772. name: "Side",
  36773. image: {
  36774. source: "./media/characters/rezukii/side.svg",
  36775. extra: 979/542,
  36776. bottom: 87/1066
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Tiny",
  36783. height: math.unit(2, "feet")
  36784. },
  36785. {
  36786. name: "Smol",
  36787. height: math.unit(4, "feet")
  36788. },
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(8, "feet"),
  36792. default: true
  36793. },
  36794. {
  36795. name: "Big",
  36796. height: math.unit(12, "feet")
  36797. },
  36798. {
  36799. name: "Macro",
  36800. height: math.unit(30, "feet")
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(14, "feet"),
  36809. weight: math.unit(9.5, "tonnes"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/dawnheart/front.svg",
  36813. extra: 2792/2675,
  36814. bottom: 64/2856
  36815. }
  36816. },
  36817. },
  36818. [
  36819. {
  36820. name: "Normal",
  36821. height: math.unit(14, "feet"),
  36822. default: true
  36823. },
  36824. ]
  36825. ))
  36826. characterMakers.push(() => makeCharacter(
  36827. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36828. {
  36829. front: {
  36830. height: math.unit(1.7, "m"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/gladi/front.svg",
  36834. extra: 1460/1362,
  36835. bottom: 19/1479
  36836. }
  36837. },
  36838. back: {
  36839. height: math.unit(1.7, "m"),
  36840. name: "Back",
  36841. image: {
  36842. source: "./media/characters/gladi/back.svg",
  36843. extra: 1459/1357,
  36844. bottom: 12/1471
  36845. }
  36846. },
  36847. feral: {
  36848. height: math.unit(2.05, "m"),
  36849. name: "Feral",
  36850. image: {
  36851. source: "./media/characters/gladi/feral.svg",
  36852. extra: 821/557,
  36853. bottom: 91/912
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Shortest",
  36860. height: math.unit(70, "cm")
  36861. },
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(1.7, "m")
  36865. },
  36866. {
  36867. name: "Macro",
  36868. height: math.unit(10, "m"),
  36869. default: true
  36870. },
  36871. {
  36872. name: "Tallest",
  36873. height: math.unit(200, "m")
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36879. {
  36880. front: {
  36881. height: math.unit(5 + 7/12, "feet"),
  36882. weight: math.unit(92, "kg"),
  36883. name: "Front",
  36884. image: {
  36885. source: "./media/characters/erdno/front.svg",
  36886. extra: 1954/1889,
  36887. bottom: 22/1976
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(5 + 7/12, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(5 + 10/12, "feet"),
  36904. weight: math.unit(150, "lb"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/jamie/front.svg",
  36908. extra: 1908/1768,
  36909. bottom: 19/1927
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Minimum",
  36916. height: math.unit(2, "cm")
  36917. },
  36918. {
  36919. name: "Micro",
  36920. height: math.unit(3, "inches")
  36921. },
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(5 + 10/12, "feet"),
  36925. default: true
  36926. },
  36927. {
  36928. name: "Macro",
  36929. height: math.unit(150, "feet")
  36930. },
  36931. {
  36932. name: "Megamacro",
  36933. height: math.unit(10000, "m")
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36939. {
  36940. front: {
  36941. height: math.unit(2, "meters"),
  36942. weight: math.unit(100, "kg"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/shiron/front.svg",
  36946. extra: 2103/1985,
  36947. bottom: 98/2201
  36948. }
  36949. },
  36950. back: {
  36951. height: math.unit(2, "meters"),
  36952. weight: math.unit(100, "kg"),
  36953. name: "Back",
  36954. image: {
  36955. source: "./media/characters/shiron/back.svg",
  36956. extra: 2110/2015,
  36957. bottom: 89/2199
  36958. }
  36959. },
  36960. hand: {
  36961. height: math.unit(0.96, "feet"),
  36962. name: "Hand",
  36963. image: {
  36964. source: "./media/characters/shiron/hand.svg"
  36965. }
  36966. },
  36967. foot: {
  36968. height: math.unit(1.464, "feet"),
  36969. name: "Foot",
  36970. image: {
  36971. source: "./media/characters/shiron/foot.svg"
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(2, "meters")
  36979. },
  36980. {
  36981. name: "Macro",
  36982. height: math.unit(500, "meters"),
  36983. default: true
  36984. },
  36985. {
  36986. name: "Megamacro",
  36987. height: math.unit(20, "km")
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(6, "feet"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/sam/front.svg",
  36999. extra: 849/826,
  37000. bottom: 19/868
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(6, "feet"),
  37008. default: true
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(8 + 4/12, "feet"),
  37017. weight: math.unit(122, "kg"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/namori-kurogawa/front.svg",
  37021. extra: 1894/1576,
  37022. bottom: 34/1928
  37023. }
  37024. },
  37025. },
  37026. [
  37027. {
  37028. name: "Normal",
  37029. height: math.unit(8 + 4/12, "feet"),
  37030. default: true
  37031. },
  37032. ]
  37033. ))
  37034. characterMakers.push(() => makeCharacter(
  37035. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37036. {
  37037. front: {
  37038. height: math.unit(9, "feet"),
  37039. weight: math.unit(621, "lb"),
  37040. name: "Front",
  37041. image: {
  37042. source: "./media/characters/unmru/front.svg",
  37043. extra: 1853/1747,
  37044. bottom: 73/1926
  37045. }
  37046. },
  37047. side: {
  37048. height: math.unit(9, "feet"),
  37049. weight: math.unit(621, "lb"),
  37050. name: "Side",
  37051. image: {
  37052. source: "./media/characters/unmru/side.svg",
  37053. extra: 1781/1671,
  37054. bottom: 127/1908
  37055. }
  37056. },
  37057. back: {
  37058. height: math.unit(9, "feet"),
  37059. weight: math.unit(621, "lb"),
  37060. name: "Back",
  37061. image: {
  37062. source: "./media/characters/unmru/back.svg",
  37063. extra: 1894/1765,
  37064. bottom: 75/1969
  37065. }
  37066. },
  37067. dick: {
  37068. height: math.unit(3, "feet"),
  37069. weight: math.unit(35, "lb"),
  37070. name: "Dick",
  37071. image: {
  37072. source: "./media/characters/unmru/dick.svg"
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Normal",
  37079. height: math.unit(9, "feet")
  37080. },
  37081. {
  37082. name: "Natural",
  37083. height: math.unit(27, "feet"),
  37084. default: true
  37085. },
  37086. {
  37087. name: "Giant",
  37088. height: math.unit(90, "feet")
  37089. },
  37090. {
  37091. name: "Kaiju",
  37092. height: math.unit(270, "feet")
  37093. },
  37094. {
  37095. name: "Macro",
  37096. height: math.unit(900, "feet")
  37097. },
  37098. {
  37099. name: "Macro+",
  37100. height: math.unit(2700, "feet")
  37101. },
  37102. {
  37103. name: "Megamacro",
  37104. height: math.unit(9000, "feet")
  37105. },
  37106. {
  37107. name: "City-Crushing",
  37108. height: math.unit(27000, "feet")
  37109. },
  37110. {
  37111. name: "Mountain-Mashing",
  37112. height: math.unit(90000, "feet")
  37113. },
  37114. {
  37115. name: "Earth-Eclipsing",
  37116. height: math.unit(2.7e8, "feet")
  37117. },
  37118. {
  37119. name: "Sol-Swallowing",
  37120. height: math.unit(9e10, "feet")
  37121. },
  37122. {
  37123. name: "Majoris-Munching",
  37124. height: math.unit(2.7e13, "feet")
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37130. {
  37131. front: {
  37132. height: math.unit(1, "inch"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/squeaks-mouse/front.svg",
  37136. extra: 352/308,
  37137. bottom: 25/377
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Micro",
  37144. height: math.unit(1, "inch"),
  37145. default: true
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37151. {
  37152. side: {
  37153. height: math.unit(35, "feet"),
  37154. name: "Side",
  37155. image: {
  37156. source: "./media/characters/sayko/side.svg",
  37157. extra: 1697/1021,
  37158. bottom: 82/1779
  37159. }
  37160. },
  37161. head: {
  37162. height: math.unit(16, "feet"),
  37163. name: "Head",
  37164. image: {
  37165. source: "./media/characters/sayko/head.svg"
  37166. }
  37167. },
  37168. forepaw: {
  37169. height: math.unit(7.85, "feet"),
  37170. name: "Forepaw",
  37171. image: {
  37172. source: "./media/characters/sayko/forepaw.svg"
  37173. }
  37174. },
  37175. hindpaw: {
  37176. height: math.unit(8.8, "feet"),
  37177. name: "Hindpaw",
  37178. image: {
  37179. source: "./media/characters/sayko/hindpaw.svg"
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(35, "feet"),
  37187. default: true
  37188. },
  37189. {
  37190. name: "Colossus",
  37191. height: math.unit(100, "meters")
  37192. },
  37193. {
  37194. name: "\"Small\" Deity",
  37195. height: math.unit(1, "km")
  37196. },
  37197. {
  37198. name: "\"Large\" Deity",
  37199. height: math.unit(15, "km")
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37205. {
  37206. front: {
  37207. height: math.unit(6, "feet"),
  37208. weight: math.unit(250, "lb"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/mukiro/front.svg",
  37212. extra: 1368/1310,
  37213. bottom: 34/1402
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(6, "feet"),
  37221. default: true
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(12 + 4/12, "feet"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37233. extra: 1346/1311,
  37234. bottom: 65/1411
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "Base",
  37241. height: math.unit(12 + 4/12, "feet"),
  37242. default: true
  37243. },
  37244. {
  37245. name: "Macro",
  37246. height: math.unit(150, "feet")
  37247. },
  37248. {
  37249. name: "Mega",
  37250. height: math.unit(2, "miles")
  37251. },
  37252. {
  37253. name: "Demi God",
  37254. height: math.unit(4, "AU")
  37255. },
  37256. {
  37257. name: "God Size",
  37258. height: math.unit(1, "universe")
  37259. },
  37260. ]
  37261. ))
  37262. characterMakers.push(() => makeCharacter(
  37263. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37264. {
  37265. front: {
  37266. height: math.unit(3 + 3/12, "feet"),
  37267. weight: math.unit(88, "lb"),
  37268. name: "Front",
  37269. image: {
  37270. source: "./media/characters/trey/front.svg",
  37271. extra: 1815/1509,
  37272. bottom: 60/1875
  37273. }
  37274. },
  37275. },
  37276. [
  37277. {
  37278. name: "Normal",
  37279. height: math.unit(3 + 3/12, "feet"),
  37280. default: true
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(4, "meters"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/adelonda/front.svg",
  37292. extra: 1077/982,
  37293. bottom: 39/1116
  37294. }
  37295. },
  37296. back: {
  37297. height: math.unit(4, "meters"),
  37298. name: "Back",
  37299. image: {
  37300. source: "./media/characters/adelonda/back.svg",
  37301. extra: 1105/1003,
  37302. bottom: 25/1130
  37303. }
  37304. },
  37305. },
  37306. [
  37307. {
  37308. name: "Normal",
  37309. height: math.unit(4, "meters"),
  37310. default: true
  37311. },
  37312. ]
  37313. ))
  37314. characterMakers.push(() => makeCharacter(
  37315. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37316. {
  37317. front: {
  37318. height: math.unit(8 + 4/12, "feet"),
  37319. weight: math.unit(670, "lb"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/acadiel/front.svg",
  37323. extra: 1901/1595,
  37324. bottom: 142/2043
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Normal",
  37331. height: math.unit(8 + 4/12, "feet"),
  37332. default: true
  37333. },
  37334. {
  37335. name: "Macro",
  37336. height: math.unit(200, "feet")
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37342. {
  37343. front: {
  37344. height: math.unit(6 + 2/12, "feet"),
  37345. weight: math.unit(185, "lb"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/kayne-ein/front.svg",
  37349. extra: 1780/1560,
  37350. bottom: 81/1861
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(6 + 2/12, "feet"),
  37358. default: true
  37359. },
  37360. {
  37361. name: "Transformation Stage",
  37362. height: math.unit(15, "feet")
  37363. },
  37364. {
  37365. name: "Macro",
  37366. height: math.unit(150, "feet")
  37367. },
  37368. {
  37369. name: "Earth's Shadow",
  37370. height: math.unit(6200, "miles")
  37371. },
  37372. {
  37373. name: "Universal Demon",
  37374. height: math.unit(28e9, "parsecs")
  37375. },
  37376. {
  37377. name: "Multiverse God",
  37378. height: math.unit(3, "multiverses")
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(5 + 5/12, "feet"),
  37387. name: "Front",
  37388. image: {
  37389. source: "./media/characters/fawn/front.svg",
  37390. extra: 1873/1731,
  37391. bottom: 95/1968
  37392. }
  37393. },
  37394. back: {
  37395. height: math.unit(5 + 5/12, "feet"),
  37396. name: "Back",
  37397. image: {
  37398. source: "./media/characters/fawn/back.svg",
  37399. extra: 1813/1700,
  37400. bottom: 14/1827
  37401. }
  37402. },
  37403. hoof: {
  37404. height: math.unit(1.45, "feet"),
  37405. name: "Hoof",
  37406. image: {
  37407. source: "./media/characters/fawn/hoof.svg"
  37408. }
  37409. },
  37410. },
  37411. [
  37412. {
  37413. name: "Normal",
  37414. height: math.unit(5 + 5/12, "feet"),
  37415. default: true
  37416. },
  37417. ]
  37418. ))
  37419. characterMakers.push(() => makeCharacter(
  37420. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37421. {
  37422. front: {
  37423. height: math.unit(2 + 5/12, "feet"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/orion/front.svg",
  37427. extra: 1366/1304,
  37428. bottom: 43/1409
  37429. }
  37430. },
  37431. paw: {
  37432. height: math.unit(0.52, "feet"),
  37433. name: "Paw",
  37434. image: {
  37435. source: "./media/characters/orion/paw.svg"
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(2 + 5/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(5 + 10/12, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/vera/front.svg",
  37455. extra: 1680/1575,
  37456. bottom: 49/1729
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(5 + 10/12, "feet"),
  37461. name: "Back",
  37462. image: {
  37463. source: "./media/characters/vera/back.svg",
  37464. extra: 1700/1588,
  37465. bottom: 18/1718
  37466. }
  37467. },
  37468. arcanine: {
  37469. height: math.unit(6 + 8/12, "feet"),
  37470. name: "Arcanine",
  37471. image: {
  37472. source: "./media/characters/vera/arcanine.svg",
  37473. extra: 1590/1511,
  37474. bottom: 71/1661
  37475. }
  37476. },
  37477. maw: {
  37478. height: math.unit(0.82, "feet"),
  37479. name: "Maw",
  37480. image: {
  37481. source: "./media/characters/vera/maw.svg"
  37482. }
  37483. },
  37484. mawArcanine: {
  37485. height: math.unit(0.97, "feet"),
  37486. name: "Maw (Arcanine)",
  37487. image: {
  37488. source: "./media/characters/vera/maw-arcanine.svg"
  37489. }
  37490. },
  37491. paw: {
  37492. height: math.unit(0.75, "feet"),
  37493. name: "Paw",
  37494. image: {
  37495. source: "./media/characters/vera/paw.svg"
  37496. }
  37497. },
  37498. pawprint: {
  37499. height: math.unit(0.52, "feet"),
  37500. name: "Pawprint",
  37501. image: {
  37502. source: "./media/characters/vera/pawprint.svg"
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(5 + 10/12, "feet"),
  37510. default: true
  37511. },
  37512. {
  37513. name: "Macro",
  37514. height: math.unit(75, "feet")
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(4, "feet"),
  37523. weight: math.unit(40, "lb"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/orvan-rabbit/front.svg",
  37527. extra: 1896/1642,
  37528. bottom: 29/1925
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(4, "feet"),
  37536. default: true
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37542. {
  37543. front: {
  37544. height: math.unit(6, "feet"),
  37545. weight: math.unit(168, "lb"),
  37546. name: "Front",
  37547. image: {
  37548. source: "./media/characters/lisa/front.svg",
  37549. extra: 2065/1867,
  37550. bottom: 46/2111
  37551. }
  37552. },
  37553. back: {
  37554. height: math.unit(6, "feet"),
  37555. weight: math.unit(168, "lb"),
  37556. name: "Back",
  37557. image: {
  37558. source: "./media/characters/lisa/back.svg",
  37559. extra: 1982/1838,
  37560. bottom: 29/2011
  37561. }
  37562. },
  37563. maw: {
  37564. height: math.unit(0.81, "feet"),
  37565. name: "Maw",
  37566. image: {
  37567. source: "./media/characters/lisa/maw.svg"
  37568. }
  37569. },
  37570. paw: {
  37571. height: math.unit(0.9, "feet"),
  37572. name: "Paw",
  37573. image: {
  37574. source: "./media/characters/lisa/paw.svg"
  37575. }
  37576. },
  37577. caribousune: {
  37578. height: math.unit(7 + 2/12, "feet"),
  37579. weight: math.unit(268, "lb"),
  37580. name: "Caribousune",
  37581. image: {
  37582. source: "./media/characters/lisa/caribousune.svg",
  37583. extra: 1843/1633,
  37584. bottom: 29/1872
  37585. }
  37586. },
  37587. frontCaribousune: {
  37588. height: math.unit(7 + 2/12, "feet"),
  37589. weight: math.unit(268, "lb"),
  37590. name: "Front (Caribousune)",
  37591. image: {
  37592. source: "./media/characters/lisa/front-caribousune.svg",
  37593. extra: 1818/1638,
  37594. bottom: 52/1870
  37595. }
  37596. },
  37597. sideCaribousune: {
  37598. height: math.unit(7 + 2/12, "feet"),
  37599. weight: math.unit(268, "lb"),
  37600. name: "Side (Caribousune)",
  37601. image: {
  37602. source: "./media/characters/lisa/side-caribousune.svg",
  37603. extra: 1851/1635,
  37604. bottom: 16/1867
  37605. }
  37606. },
  37607. backCaribousune: {
  37608. height: math.unit(7 + 2/12, "feet"),
  37609. weight: math.unit(268, "lb"),
  37610. name: "Back (Caribousune)",
  37611. image: {
  37612. source: "./media/characters/lisa/back-caribousune.svg",
  37613. extra: 1801/1604,
  37614. bottom: 44/1845
  37615. }
  37616. },
  37617. caribou: {
  37618. height: math.unit(7 + 2/12, "feet"),
  37619. weight: math.unit(268, "lb"),
  37620. name: "Caribou",
  37621. image: {
  37622. source: "./media/characters/lisa/caribou.svg",
  37623. extra: 1843/1633,
  37624. bottom: 29/1872
  37625. }
  37626. },
  37627. frontCaribou: {
  37628. height: math.unit(7 + 2/12, "feet"),
  37629. weight: math.unit(268, "lb"),
  37630. name: "Front (Caribou)",
  37631. image: {
  37632. source: "./media/characters/lisa/front-caribou.svg",
  37633. extra: 1818/1638,
  37634. bottom: 52/1870
  37635. }
  37636. },
  37637. sideCaribou: {
  37638. height: math.unit(7 + 2/12, "feet"),
  37639. weight: math.unit(268, "lb"),
  37640. name: "Side (Caribou)",
  37641. image: {
  37642. source: "./media/characters/lisa/side-caribou.svg",
  37643. extra: 1851/1635,
  37644. bottom: 16/1867
  37645. }
  37646. },
  37647. backCaribou: {
  37648. height: math.unit(7 + 2/12, "feet"),
  37649. weight: math.unit(268, "lb"),
  37650. name: "Back (Caribou)",
  37651. image: {
  37652. source: "./media/characters/lisa/back-caribou.svg",
  37653. extra: 1801/1604,
  37654. bottom: 44/1845
  37655. }
  37656. },
  37657. mawCaribou: {
  37658. height: math.unit(1.45, "feet"),
  37659. name: "Maw (Caribou)",
  37660. image: {
  37661. source: "./media/characters/lisa/maw-caribou.svg"
  37662. }
  37663. },
  37664. mawCaribousune: {
  37665. height: math.unit(1.45, "feet"),
  37666. name: "Maw (Caribousune)",
  37667. image: {
  37668. source: "./media/characters/lisa/maw-caribousune.svg"
  37669. }
  37670. },
  37671. pawCaribousune: {
  37672. height: math.unit(1.61, "feet"),
  37673. name: "Paw (Caribou)",
  37674. image: {
  37675. source: "./media/characters/lisa/paw-caribousune.svg"
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(6, "feet")
  37683. },
  37684. {
  37685. name: "God Size",
  37686. height: math.unit(72, "feet"),
  37687. default: true
  37688. },
  37689. {
  37690. name: "Towering",
  37691. height: math.unit(288, "feet")
  37692. },
  37693. {
  37694. name: "City Size",
  37695. height: math.unit(48384, "feet")
  37696. },
  37697. {
  37698. name: "Continental",
  37699. height: math.unit(4200, "miles")
  37700. },
  37701. {
  37702. name: "Planet Eater",
  37703. height: math.unit(42, "earths")
  37704. },
  37705. {
  37706. name: "Star Swallower",
  37707. height: math.unit(42, "solarradii")
  37708. },
  37709. {
  37710. name: "System Swallower",
  37711. height: math.unit(84000, "AU")
  37712. },
  37713. {
  37714. name: "Galaxy Gobbler",
  37715. height: math.unit(42, "galaxies")
  37716. },
  37717. {
  37718. name: "Universe Devourer",
  37719. height: math.unit(42, "universes")
  37720. },
  37721. {
  37722. name: "Multiverse Muncher",
  37723. height: math.unit(42, "multiverses")
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(36, "feet"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/shadow-rat/front.svg",
  37735. extra: 1845/1758,
  37736. bottom: 83/1928
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Macro",
  37743. height: math.unit(36, "feet"),
  37744. default: true
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37750. {
  37751. side: {
  37752. height: math.unit(8, "feet"),
  37753. weight: math.unit(2630, "lb"),
  37754. name: "Side",
  37755. image: {
  37756. source: "./media/characters/torallia/side.svg",
  37757. extra: 2164/2021,
  37758. bottom: 371/2535
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Mortal Interaction",
  37765. height: math.unit(8, "feet")
  37766. },
  37767. {
  37768. name: "Natural",
  37769. height: math.unit(24, "feet"),
  37770. default: true
  37771. },
  37772. {
  37773. name: "Giant",
  37774. height: math.unit(80, "feet")
  37775. },
  37776. {
  37777. name: "Kaiju",
  37778. height: math.unit(240, "feet")
  37779. },
  37780. {
  37781. name: "Macro",
  37782. height: math.unit(800, "feet")
  37783. },
  37784. {
  37785. name: "Macro+",
  37786. height: math.unit(2400, "feet")
  37787. },
  37788. {
  37789. name: "Macro++",
  37790. height: math.unit(8000, "feet")
  37791. },
  37792. {
  37793. name: "City-Crushing",
  37794. height: math.unit(24000, "feet")
  37795. },
  37796. {
  37797. name: "Mountain-Mashing",
  37798. height: math.unit(80000, "feet")
  37799. },
  37800. {
  37801. name: "District Demolisher",
  37802. height: math.unit(240000, "feet")
  37803. },
  37804. {
  37805. name: "Tri-County Terror",
  37806. height: math.unit(800000, "feet")
  37807. },
  37808. {
  37809. name: "State Smasher",
  37810. height: math.unit(2.4e6, "feet")
  37811. },
  37812. {
  37813. name: "Nation Nemesis",
  37814. height: math.unit(8e6, "feet")
  37815. },
  37816. {
  37817. name: "Continent Cracker",
  37818. height: math.unit(2.4e7, "feet")
  37819. },
  37820. {
  37821. name: "Planet-Pillaging",
  37822. height: math.unit(8e7, "feet")
  37823. },
  37824. {
  37825. name: "Earth-Eclipsing",
  37826. height: math.unit(2.4e8, "feet")
  37827. },
  37828. {
  37829. name: "Jovian-Jostling",
  37830. height: math.unit(8e8, "feet")
  37831. },
  37832. {
  37833. name: "Gas Giant Gulper",
  37834. height: math.unit(2.4e9, "feet")
  37835. },
  37836. {
  37837. name: "Astral Annihilator",
  37838. height: math.unit(8e9, "feet")
  37839. },
  37840. {
  37841. name: "Celestial Conqueror",
  37842. height: math.unit(2.4e10, "feet")
  37843. },
  37844. {
  37845. name: "Sol-Swallowing",
  37846. height: math.unit(8e10, "feet")
  37847. },
  37848. {
  37849. name: "Hunter of the Heavens",
  37850. height: math.unit(2.4e13, "feet")
  37851. },
  37852. ]
  37853. ))
  37854. characterMakers.push(() => makeCharacter(
  37855. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37856. {
  37857. front: {
  37858. height: math.unit(6 + 8/12, "feet"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/rebecca-pawlson/front.svg",
  37862. extra: 1737/1596,
  37863. bottom: 107/1844
  37864. }
  37865. },
  37866. back: {
  37867. height: math.unit(6 + 8/12, "feet"),
  37868. name: "Back",
  37869. image: {
  37870. source: "./media/characters/rebecca-pawlson/back.svg",
  37871. extra: 1702/1523,
  37872. bottom: 86/1788
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Normal",
  37879. height: math.unit(6 + 8/12, "feet")
  37880. },
  37881. {
  37882. name: "Mini Macro",
  37883. height: math.unit(10, "feet"),
  37884. default: true
  37885. },
  37886. {
  37887. name: "Macro",
  37888. height: math.unit(100, "feet")
  37889. },
  37890. {
  37891. name: "Mega Macro",
  37892. height: math.unit(2500, "feet")
  37893. },
  37894. {
  37895. name: "Giga Macro",
  37896. height: math.unit(50, "miles")
  37897. },
  37898. ]
  37899. ))
  37900. characterMakers.push(() => makeCharacter(
  37901. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37902. {
  37903. front: {
  37904. height: math.unit(7 + 6/12, "feet"),
  37905. weight: math.unit(600, "lb"),
  37906. name: "Front",
  37907. image: {
  37908. source: "./media/characters/moxie-nova/front.svg",
  37909. extra: 1734/1652,
  37910. bottom: 41/1775
  37911. }
  37912. },
  37913. },
  37914. [
  37915. {
  37916. name: "Normal",
  37917. height: math.unit(7 + 6/12, "feet"),
  37918. default: true
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(5, "feet"),
  37927. weight: math.unit(150, "lb"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/tiffany/front.svg",
  37931. extra: 1941/1845,
  37932. bottom: 58/1999
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(5, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(8, "feet"),
  37949. weight: math.unit(300, "lb"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/raxinath/front.svg",
  37953. extra: 1407/1309,
  37954. bottom: 39/1446
  37955. }
  37956. },
  37957. back: {
  37958. height: math.unit(8, "feet"),
  37959. weight: math.unit(300, "lb"),
  37960. name: "Back",
  37961. image: {
  37962. source: "./media/characters/raxinath/back.svg",
  37963. extra: 1405/1315,
  37964. bottom: 9/1414
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Speck",
  37971. height: math.unit(0.5, "nm")
  37972. },
  37973. {
  37974. name: "Micro",
  37975. height: math.unit(3, "inches")
  37976. },
  37977. {
  37978. name: "Kobold",
  37979. height: math.unit(3, "feet")
  37980. },
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(8, "feet"),
  37984. default: true
  37985. },
  37986. {
  37987. name: "Giant",
  37988. height: math.unit(50, "feet")
  37989. },
  37990. {
  37991. name: "Macro",
  37992. height: math.unit(1000, "feet")
  37993. },
  37994. {
  37995. name: "Megamacro",
  37996. height: math.unit(1, "mile")
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(10, "feet"),
  38005. weight: math.unit(1442, "lb"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/mal-dragon/front.svg",
  38009. extra: 1515/1444,
  38010. bottom: 113/1628
  38011. }
  38012. },
  38013. back: {
  38014. height: math.unit(10, "feet"),
  38015. weight: math.unit(1442, "lb"),
  38016. name: "Back",
  38017. image: {
  38018. source: "./media/characters/mal-dragon/back.svg",
  38019. extra: 1527/1434,
  38020. bottom: 25/1552
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Mortal Interaction",
  38027. height: math.unit(10, "feet"),
  38028. default: true
  38029. },
  38030. {
  38031. name: "Large",
  38032. height: math.unit(30, "feet")
  38033. },
  38034. {
  38035. name: "Kaiju",
  38036. height: math.unit(300, "feet")
  38037. },
  38038. {
  38039. name: "Megamacro",
  38040. height: math.unit(10000, "feet")
  38041. },
  38042. {
  38043. name: "Continent Cracker",
  38044. height: math.unit(30000000, "feet")
  38045. },
  38046. {
  38047. name: "Sol-Swallowing",
  38048. height: math.unit(1e11, "feet")
  38049. },
  38050. {
  38051. name: "Light Universal",
  38052. height: math.unit(5, "universes")
  38053. },
  38054. {
  38055. name: "Universe Atoms",
  38056. height: math.unit(1.829e9, "universes")
  38057. },
  38058. {
  38059. name: "Light Multiversal",
  38060. height: math.unit(5, "multiverses")
  38061. },
  38062. {
  38063. name: "Multiverse Atoms",
  38064. height: math.unit(1.829e9, "multiverses")
  38065. },
  38066. {
  38067. name: "Fabric of Time",
  38068. height: math.unit(1e262, "multiverses")
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(9, "feet"),
  38077. weight: math.unit(1050, "lb"),
  38078. name: "Front",
  38079. image: {
  38080. source: "./media/characters/tabitha/front.svg",
  38081. extra: 2083/1994,
  38082. bottom: 68/2151
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Baseline",
  38089. height: math.unit(9, "feet"),
  38090. default: true
  38091. },
  38092. {
  38093. name: "Giant",
  38094. height: math.unit(90, "feet")
  38095. },
  38096. {
  38097. name: "Macro",
  38098. height: math.unit(900, "feet")
  38099. },
  38100. {
  38101. name: "Megamacro",
  38102. height: math.unit(9000, "feet")
  38103. },
  38104. {
  38105. name: "City-Crushing",
  38106. height: math.unit(27000, "feet")
  38107. },
  38108. {
  38109. name: "Mountain-Mashing",
  38110. height: math.unit(90000, "feet")
  38111. },
  38112. {
  38113. name: "Nation Nemesis",
  38114. height: math.unit(9e6, "feet")
  38115. },
  38116. {
  38117. name: "Continent Cracker",
  38118. height: math.unit(27e6, "feet")
  38119. },
  38120. {
  38121. name: "Earth-Eclipsing",
  38122. height: math.unit(2.7e8, "feet")
  38123. },
  38124. {
  38125. name: "Gas Giant Gulper",
  38126. height: math.unit(2.7e9, "feet")
  38127. },
  38128. {
  38129. name: "Sol-Swallowing",
  38130. height: math.unit(9e10, "feet")
  38131. },
  38132. {
  38133. name: "Galaxy Gulper",
  38134. height: math.unit(9, "galaxies")
  38135. },
  38136. {
  38137. name: "Cosmos Churner",
  38138. height: math.unit(9, "universes")
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38144. {
  38145. front: {
  38146. height: math.unit(160, "cm"),
  38147. weight: math.unit(55, "kg"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/tow/front.svg",
  38151. extra: 1751/1722,
  38152. bottom: 74/1825
  38153. }
  38154. },
  38155. },
  38156. [
  38157. {
  38158. name: "Norm",
  38159. height: math.unit(160, "cm")
  38160. },
  38161. {
  38162. name: "Casual",
  38163. height: math.unit(3200, "m"),
  38164. default: true
  38165. },
  38166. {
  38167. name: "Show-Off",
  38168. height: math.unit(160, "km")
  38169. },
  38170. ]
  38171. ))
  38172. characterMakers.push(() => makeCharacter(
  38173. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38174. {
  38175. front: {
  38176. height: math.unit(7 + 11/12, "feet"),
  38177. weight: math.unit(342.8, "lb"),
  38178. name: "Front",
  38179. image: {
  38180. source: "./media/characters/vivian-orca-dragon/front.svg",
  38181. extra: 1890/1865,
  38182. bottom: 28/1918
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Micro",
  38189. height: math.unit(5, "inches")
  38190. },
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(7 + 11/12, "feet"),
  38194. default: true
  38195. },
  38196. {
  38197. name: "Macro",
  38198. height: math.unit(395 + 7/12, "feet")
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38204. {
  38205. side: {
  38206. height: math.unit(10, "feet"),
  38207. weight: math.unit(1442, "lb"),
  38208. name: "Side",
  38209. image: {
  38210. source: "./media/characters/lotherakon/side.svg",
  38211. extra: 1604/1497,
  38212. bottom: 89/1693
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Mortal Interaction",
  38219. height: math.unit(10, "feet")
  38220. },
  38221. {
  38222. name: "Large",
  38223. height: math.unit(30, "feet"),
  38224. default: true
  38225. },
  38226. {
  38227. name: "Giant",
  38228. height: math.unit(100, "feet")
  38229. },
  38230. {
  38231. name: "Kaiju",
  38232. height: math.unit(300, "feet")
  38233. },
  38234. {
  38235. name: "Macro",
  38236. height: math.unit(1000, "feet")
  38237. },
  38238. {
  38239. name: "Macro+",
  38240. height: math.unit(3000, "feet")
  38241. },
  38242. {
  38243. name: "Megamacro",
  38244. height: math.unit(10000, "feet")
  38245. },
  38246. {
  38247. name: "City-Crushing",
  38248. height: math.unit(30000, "feet")
  38249. },
  38250. {
  38251. name: "Continent Cracker",
  38252. height: math.unit(30e6, "feet")
  38253. },
  38254. {
  38255. name: "Earth Eclipsing",
  38256. height: math.unit(3e8, "feet")
  38257. },
  38258. {
  38259. name: "Gas Giant Gulper",
  38260. height: math.unit(3e9, "feet")
  38261. },
  38262. {
  38263. name: "Sol-Swallowing",
  38264. height: math.unit(1e11, "feet")
  38265. },
  38266. {
  38267. name: "System Swallower",
  38268. height: math.unit(3e14, "feet")
  38269. },
  38270. {
  38271. name: "Galaxy Gulper",
  38272. height: math.unit(10, "galaxies")
  38273. },
  38274. {
  38275. name: "Light Universal",
  38276. height: math.unit(5, "universes")
  38277. },
  38278. {
  38279. name: "Universe Palm",
  38280. height: math.unit(20, "universes")
  38281. },
  38282. {
  38283. name: "Light Multiversal",
  38284. height: math.unit(5, "multiverses")
  38285. },
  38286. {
  38287. name: "Multiverse Palm",
  38288. height: math.unit(20, "multiverses")
  38289. },
  38290. {
  38291. name: "Inferno Incarnate",
  38292. height: math.unit(1e7, "multiverses")
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38298. {
  38299. front: {
  38300. height: math.unit(8, "feet"),
  38301. weight: math.unit(1200, "lb"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/malithee/front.svg",
  38305. extra: 1675/1640,
  38306. bottom: 162/1837
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Mortal Interaction",
  38313. height: math.unit(8, "feet"),
  38314. default: true
  38315. },
  38316. {
  38317. name: "Large",
  38318. height: math.unit(24, "feet")
  38319. },
  38320. {
  38321. name: "Kaiju",
  38322. height: math.unit(240, "feet")
  38323. },
  38324. {
  38325. name: "Megamacro",
  38326. height: math.unit(8000, "feet")
  38327. },
  38328. {
  38329. name: "Continent Cracker",
  38330. height: math.unit(24e6, "feet")
  38331. },
  38332. {
  38333. name: "Earth-Eclipsing",
  38334. height: math.unit(2.4e8, "feet")
  38335. },
  38336. {
  38337. name: "Sol-Swallowing",
  38338. height: math.unit(8e10, "feet")
  38339. },
  38340. {
  38341. name: "Galaxy Gulper",
  38342. height: math.unit(8, "galaxies")
  38343. },
  38344. {
  38345. name: "Light Universal",
  38346. height: math.unit(4, "universes")
  38347. },
  38348. {
  38349. name: "Universe Atoms",
  38350. height: math.unit(1.829e9, "universes")
  38351. },
  38352. {
  38353. name: "Light Multiversal",
  38354. height: math.unit(4, "multiverses")
  38355. },
  38356. {
  38357. name: "Multiverse Atoms",
  38358. height: math.unit(1.829e9, "multiverses")
  38359. },
  38360. {
  38361. name: "Nigh-Omnipresence",
  38362. height: math.unit(8e261, "multiverses")
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(10, "feet"),
  38371. weight: math.unit(1500, "lb"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/miles-thestia/front.svg",
  38375. extra: 1812/1727,
  38376. bottom: 86/1898
  38377. }
  38378. },
  38379. back: {
  38380. height: math.unit(10, "feet"),
  38381. weight: math.unit(1500, "lb"),
  38382. name: "Back",
  38383. image: {
  38384. source: "./media/characters/miles-thestia/back.svg",
  38385. extra: 1799/1690,
  38386. bottom: 47/1846
  38387. }
  38388. },
  38389. frontNsfw: {
  38390. height: math.unit(10, "feet"),
  38391. weight: math.unit(1500, "lb"),
  38392. name: "Front (NSFW)",
  38393. image: {
  38394. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38395. extra: 1812/1727,
  38396. bottom: 86/1898
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Mini-Macro",
  38403. height: math.unit(10, "feet"),
  38404. default: true
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38410. {
  38411. front: {
  38412. height: math.unit(25, "feet"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/titan-s-wulf/front.svg",
  38416. extra: 1560/1484,
  38417. bottom: 76/1636
  38418. }
  38419. },
  38420. },
  38421. [
  38422. {
  38423. name: "Smallest",
  38424. height: math.unit(25, "feet"),
  38425. default: true
  38426. },
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(200, "feet")
  38430. },
  38431. {
  38432. name: "Macro",
  38433. height: math.unit(200000, "feet")
  38434. },
  38435. {
  38436. name: "Multiversal Original",
  38437. height: math.unit(10000, "multiverses")
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(8, "feet"),
  38446. weight: math.unit(553, "lb"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/tawendeh/front.svg",
  38450. extra: 2365/2268,
  38451. bottom: 83/2448
  38452. }
  38453. },
  38454. frontClothed: {
  38455. height: math.unit(8, "feet"),
  38456. weight: math.unit(553, "lb"),
  38457. name: "Front (Clothed)",
  38458. image: {
  38459. source: "./media/characters/tawendeh/front-clothed.svg",
  38460. extra: 2365/2268,
  38461. bottom: 83/2448
  38462. }
  38463. },
  38464. back: {
  38465. height: math.unit(8, "feet"),
  38466. weight: math.unit(553, "lb"),
  38467. name: "Back",
  38468. image: {
  38469. source: "./media/characters/tawendeh/back.svg",
  38470. extra: 2397/2294,
  38471. bottom: 42/2439
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Mortal Interaction",
  38478. height: math.unit(8, "feet"),
  38479. default: true
  38480. },
  38481. {
  38482. name: "Giant",
  38483. height: math.unit(80, "feet")
  38484. },
  38485. {
  38486. name: "Macro",
  38487. height: math.unit(800, "feet")
  38488. },
  38489. {
  38490. name: "Megamacro",
  38491. height: math.unit(8000, "feet")
  38492. },
  38493. {
  38494. name: "City-Crushing",
  38495. height: math.unit(24000, "feet")
  38496. },
  38497. {
  38498. name: "Mountain-Mashing",
  38499. height: math.unit(80000, "feet")
  38500. },
  38501. {
  38502. name: "Nation Nemesis",
  38503. height: math.unit(8e6, "feet")
  38504. },
  38505. {
  38506. name: "Continent Cracker",
  38507. height: math.unit(24e6, "feet")
  38508. },
  38509. {
  38510. name: "Earth-Eclipsing",
  38511. height: math.unit(2.4e8, "feet")
  38512. },
  38513. {
  38514. name: "Gas Giant Gulper",
  38515. height: math.unit(2.4e9, "feet")
  38516. },
  38517. {
  38518. name: "Sol-Swallowing",
  38519. height: math.unit(8e10, "feet")
  38520. },
  38521. {
  38522. name: "Galaxy Gulper",
  38523. height: math.unit(8, "galaxies")
  38524. },
  38525. {
  38526. name: "Cosmos Churner",
  38527. height: math.unit(8, "universes")
  38528. },
  38529. {
  38530. name: "Omnipotent Otter",
  38531. height: math.unit(80, "universes")
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(2.6, "meters"),
  38540. weight: math.unit(900, "kg"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/neesha/front.svg",
  38544. extra: 1803/1653,
  38545. bottom: 128/1931
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(2.6, "meters"),
  38553. default: true
  38554. },
  38555. {
  38556. name: "Macro",
  38557. height: math.unit(50, "meters")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(5, "feet"),
  38566. weight: math.unit(185, "lb"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/kyera/front.svg",
  38570. extra: 1875/1790,
  38571. bottom: 96/1971
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(5, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(7 + 6/12, "feet"),
  38588. weight: math.unit(540, "lb"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/yuko/front.svg",
  38592. extra: 1282/1222,
  38593. bottom: 101/1383
  38594. }
  38595. },
  38596. frontClothed: {
  38597. height: math.unit(7 + 6/12, "feet"),
  38598. weight: math.unit(540, "lb"),
  38599. name: "Front (Clothed)",
  38600. image: {
  38601. source: "./media/characters/yuko/front-clothed.svg",
  38602. extra: 1282/1222,
  38603. bottom: 101/1383
  38604. }
  38605. },
  38606. },
  38607. [
  38608. {
  38609. name: "Normal",
  38610. height: math.unit(7 + 6/12, "feet"),
  38611. default: true
  38612. },
  38613. {
  38614. name: "Macro",
  38615. height: math.unit(26 + 9/12, "feet")
  38616. },
  38617. {
  38618. name: "Megamacro",
  38619. height: math.unit(300, "feet")
  38620. },
  38621. {
  38622. name: "Gigamacro",
  38623. height: math.unit(5000, "feet")
  38624. },
  38625. {
  38626. name: "Planetary",
  38627. height: math.unit(10000, "miles")
  38628. },
  38629. ]
  38630. ))
  38631. characterMakers.push(() => makeCharacter(
  38632. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38633. {
  38634. front: {
  38635. height: math.unit(8 + 2/12, "feet"),
  38636. weight: math.unit(600, "lb"),
  38637. name: "Front",
  38638. image: {
  38639. source: "./media/characters/deam-nitrel/front.svg",
  38640. extra: 1308/1234,
  38641. bottom: 125/1433
  38642. }
  38643. },
  38644. },
  38645. [
  38646. {
  38647. name: "Normal",
  38648. height: math.unit(8 + 2/12, "feet"),
  38649. default: true
  38650. },
  38651. ]
  38652. ))
  38653. characterMakers.push(() => makeCharacter(
  38654. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38655. {
  38656. front: {
  38657. height: math.unit(6.1, "feet"),
  38658. weight: math.unit(180, "lb"),
  38659. name: "Front",
  38660. image: {
  38661. source: "./media/characters/skyress/front.svg",
  38662. extra: 1045/915,
  38663. bottom: 28/1073
  38664. }
  38665. },
  38666. maw: {
  38667. height: math.unit(1, "feet"),
  38668. name: "Maw",
  38669. image: {
  38670. source: "./media/characters/skyress/maw.svg"
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(6.1, "feet"),
  38678. default: true
  38679. },
  38680. {
  38681. name: "Macro",
  38682. height: math.unit(200, "feet")
  38683. },
  38684. ]
  38685. ))
  38686. characterMakers.push(() => makeCharacter(
  38687. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38688. {
  38689. front: {
  38690. height: math.unit(4 + 2/12, "feet"),
  38691. weight: math.unit(40, "kg"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/amethyst-jones/front.svg",
  38695. extra: 1220/1150,
  38696. bottom: 101/1321
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(4 + 2/12, "feet"),
  38704. default: true
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(1.7, "m"),
  38713. weight: math.unit(135, "lb"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/jade/front.svg",
  38717. extra: 1818/1767,
  38718. bottom: 32/1850
  38719. }
  38720. },
  38721. back: {
  38722. height: math.unit(1.7, "m"),
  38723. weight: math.unit(135, "lb"),
  38724. name: "Back",
  38725. image: {
  38726. source: "./media/characters/jade/back.svg",
  38727. extra: 1869/1809,
  38728. bottom: 35/1904
  38729. }
  38730. },
  38731. hand: {
  38732. height: math.unit(0.24, "m"),
  38733. name: "Hand",
  38734. image: {
  38735. source: "./media/characters/jade/hand.svg"
  38736. }
  38737. },
  38738. foot: {
  38739. height: math.unit(0.263, "m"),
  38740. name: "Foot",
  38741. image: {
  38742. source: "./media/characters/jade/foot.svg"
  38743. }
  38744. },
  38745. dick: {
  38746. height: math.unit(0.47, "m"),
  38747. name: "Dick",
  38748. image: {
  38749. source: "./media/characters/jade/dick.svg"
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Micro",
  38756. height: math.unit(22, "cm")
  38757. },
  38758. {
  38759. name: "Normal",
  38760. height: math.unit(1.7, "m"),
  38761. default: true
  38762. },
  38763. {
  38764. name: "Macro",
  38765. height: math.unit(152, "m")
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38771. {
  38772. front: {
  38773. height: math.unit(100, "miles"),
  38774. weight: math.unit(20000, "tons"),
  38775. name: "Front",
  38776. image: {
  38777. source: "./media/characters/cookie/front.svg",
  38778. extra: 1125/1070,
  38779. bottom: 30/1155
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Big",
  38786. height: math.unit(50, "feet")
  38787. },
  38788. {
  38789. name: "Macro",
  38790. height: math.unit(100, "miles"),
  38791. default: true
  38792. },
  38793. {
  38794. name: "Megamacro",
  38795. height: math.unit(90000, "miles")
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(6, "feet"),
  38804. weight: math.unit(145, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/farzian/front.svg",
  38808. extra: 1902/1693,
  38809. bottom: 108/2010
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Macro",
  38816. height: math.unit(500, "feet"),
  38817. default: true
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(3 + 6/12, "feet"),
  38826. weight: math.unit(50, "lb"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/kimberly-tilson/front.svg",
  38830. extra: 1400/1322,
  38831. bottom: 36/1436
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(3 + 6/12, "feet"),
  38836. weight: math.unit(50, "lb"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/kimberly-tilson/back.svg",
  38840. extra: 1370/1307,
  38841. bottom: 20/1390
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(3 + 6/12, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(1148, "feet"),
  38858. weight: math.unit(34057, "lb"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/harthos/front.svg",
  38862. extra: 1391/1339,
  38863. bottom: 13/1404
  38864. }
  38865. },
  38866. },
  38867. [
  38868. {
  38869. name: "Macro",
  38870. height: math.unit(1148, "feet"),
  38871. default: true
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(15, "feet"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/hypatia/front.svg",
  38883. extra: 1653/1591,
  38884. bottom: 79/1732
  38885. }
  38886. },
  38887. },
  38888. [
  38889. {
  38890. name: "Normal",
  38891. height: math.unit(15, "feet")
  38892. },
  38893. {
  38894. name: "Small",
  38895. height: math.unit(300, "feet")
  38896. },
  38897. {
  38898. name: "Macro",
  38899. height: math.unit(2500, "feet"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Mega Macro",
  38904. height: math.unit(1500, "miles")
  38905. },
  38906. {
  38907. name: "Giga Macro",
  38908. height: math.unit(1.5e6, "miles")
  38909. },
  38910. ]
  38911. ))
  38912. characterMakers.push(() => makeCharacter(
  38913. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38914. {
  38915. front: {
  38916. height: math.unit(6, "feet"),
  38917. weight: math.unit(200, "lb"),
  38918. name: "Front",
  38919. image: {
  38920. source: "./media/characters/wulver/front.svg",
  38921. extra: 1724/1632,
  38922. bottom: 130/1854
  38923. }
  38924. },
  38925. frontNsfw: {
  38926. height: math.unit(6, "feet"),
  38927. weight: math.unit(200, "lb"),
  38928. name: "Front (NSFW)",
  38929. image: {
  38930. source: "./media/characters/wulver/front-nsfw.svg",
  38931. extra: 1724/1632,
  38932. bottom: 130/1854
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Human-Sized",
  38939. height: math.unit(6, "feet")
  38940. },
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(4, "meters"),
  38944. default: true
  38945. },
  38946. {
  38947. name: "Large",
  38948. height: math.unit(6, "m")
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(7, "feet"),
  38957. name: "Front",
  38958. image: {
  38959. source: "./media/characters/maru/front.svg",
  38960. extra: 1595/1570,
  38961. bottom: 0/1595
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Normal",
  38968. height: math.unit(7, "feet"),
  38969. default: true
  38970. },
  38971. {
  38972. name: "Macro",
  38973. height: math.unit(700, "feet")
  38974. },
  38975. {
  38976. name: "Mega Macro",
  38977. height: math.unit(25, "miles")
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(6, "feet"),
  38986. weight: math.unit(170, "lb"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/xenon/front.svg",
  38990. extra: 1376/1305,
  38991. bottom: 56/1432
  38992. }
  38993. },
  38994. back: {
  38995. height: math.unit(6, "feet"),
  38996. weight: math.unit(170, "lb"),
  38997. name: "Back",
  38998. image: {
  38999. source: "./media/characters/xenon/back.svg",
  39000. extra: 1328/1259,
  39001. bottom: 95/1423
  39002. }
  39003. },
  39004. maw: {
  39005. height: math.unit(0.52, "feet"),
  39006. name: "Maw",
  39007. image: {
  39008. source: "./media/characters/xenon/maw.svg"
  39009. }
  39010. },
  39011. hand: {
  39012. height: math.unit(0.82, "feet"),
  39013. name: "Hand",
  39014. image: {
  39015. source: "./media/characters/xenon/hand.svg"
  39016. }
  39017. },
  39018. foot: {
  39019. height: math.unit(1.13, "feet"),
  39020. name: "Foot",
  39021. image: {
  39022. source: "./media/characters/xenon/foot.svg"
  39023. }
  39024. },
  39025. },
  39026. [
  39027. {
  39028. name: "Micro",
  39029. height: math.unit(0.8, "inches")
  39030. },
  39031. {
  39032. name: "Normal",
  39033. height: math.unit(6, "feet")
  39034. },
  39035. {
  39036. name: "Macro",
  39037. height: math.unit(50, "feet"),
  39038. default: true
  39039. },
  39040. {
  39041. name: "Macro+",
  39042. height: math.unit(250, "feet")
  39043. },
  39044. {
  39045. name: "Megamacro",
  39046. height: math.unit(1500, "feet")
  39047. },
  39048. ]
  39049. ))
  39050. characterMakers.push(() => makeCharacter(
  39051. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39052. {
  39053. front: {
  39054. height: math.unit(7 + 5/12, "feet"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/zane/front.svg",
  39058. extra: 1260/1203,
  39059. bottom: 94/1354
  39060. }
  39061. },
  39062. back: {
  39063. height: math.unit(5.05, "feet"),
  39064. name: "Back",
  39065. image: {
  39066. source: "./media/characters/zane/back.svg",
  39067. extra: 893/829,
  39068. bottom: 30/923
  39069. }
  39070. },
  39071. werewolf: {
  39072. height: math.unit(11, "feet"),
  39073. name: "Werewolf",
  39074. image: {
  39075. source: "./media/characters/zane/werewolf.svg",
  39076. extra: 1383/1323,
  39077. bottom: 89/1472
  39078. }
  39079. },
  39080. foot: {
  39081. height: math.unit(1.46, "feet"),
  39082. name: "Foot",
  39083. image: {
  39084. source: "./media/characters/zane/foot.svg"
  39085. }
  39086. },
  39087. footFront: {
  39088. height: math.unit(0.784, "feet"),
  39089. name: "Foot (Front)",
  39090. image: {
  39091. source: "./media/characters/zane/foot-front.svg"
  39092. }
  39093. },
  39094. dick: {
  39095. height: math.unit(1.95, "feet"),
  39096. name: "Dick",
  39097. image: {
  39098. source: "./media/characters/zane/dick.svg"
  39099. }
  39100. },
  39101. dickWerewolf: {
  39102. height: math.unit(3.77, "feet"),
  39103. name: "Dick (Werewolf)",
  39104. image: {
  39105. source: "./media/characters/zane/dick.svg"
  39106. }
  39107. },
  39108. },
  39109. [
  39110. {
  39111. name: "Normal",
  39112. height: math.unit(7 + 5/12, "feet"),
  39113. default: true
  39114. },
  39115. ]
  39116. ))
  39117. characterMakers.push(() => makeCharacter(
  39118. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39119. {
  39120. front: {
  39121. height: math.unit(6 + 2/12, "feet"),
  39122. weight: math.unit(284, "lb"),
  39123. name: "Front",
  39124. image: {
  39125. source: "./media/characters/benni-desparque/front.svg",
  39126. extra: 1353/1126,
  39127. bottom: 69/1422
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Civilian",
  39134. height: math.unit(6 + 2/12, "feet")
  39135. },
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(98, "feet"),
  39139. default: true
  39140. },
  39141. {
  39142. name: "Kaiju Fighter",
  39143. height: math.unit(268, "feet")
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(5, "feet"),
  39152. weight: math.unit(105, "lb"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/maxine/front.svg",
  39156. extra: 1386/1250,
  39157. bottom: 71/1457
  39158. }
  39159. },
  39160. },
  39161. [
  39162. {
  39163. name: "Normal",
  39164. height: math.unit(5, "feet"),
  39165. default: true
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(11 + 7/12, "feet"),
  39174. weight: math.unit(9576, "lb"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/scaly/front.svg",
  39178. extra: 888/867,
  39179. bottom: 36/924
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Normal",
  39186. height: math.unit(11 + 7/12, "feet"),
  39187. default: true
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(9, "inches"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/saelria/front.svg",
  39199. extra: 662/621,
  39200. bottom: 12/674
  39201. }
  39202. },
  39203. },
  39204. [
  39205. {
  39206. name: "Tiny",
  39207. height: math.unit(9, "inches"),
  39208. default: true
  39209. },
  39210. ]
  39211. ))
  39212. characterMakers.push(() => makeCharacter(
  39213. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39214. {
  39215. front: {
  39216. height: math.unit(80, "meters"),
  39217. weight: math.unit(7000, "tonnes"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/tef/front.svg",
  39221. extra: 2036/1991,
  39222. bottom: 54/2090
  39223. }
  39224. },
  39225. back: {
  39226. height: math.unit(80, "meters"),
  39227. weight: math.unit(7000, "tonnes"),
  39228. name: "Back",
  39229. image: {
  39230. source: "./media/characters/tef/back.svg",
  39231. extra: 2036/1991,
  39232. bottom: 54/2090
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Macro",
  39239. height: math.unit(80, "meters"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(13, "feet"),
  39249. weight: math.unit(6, "tons"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/rover/front.svg",
  39253. extra: 1233/1156,
  39254. bottom: 50/1283
  39255. }
  39256. },
  39257. back: {
  39258. height: math.unit(13, "feet"),
  39259. weight: math.unit(6, "tons"),
  39260. name: "Back",
  39261. image: {
  39262. source: "./media/characters/rover/back.svg",
  39263. extra: 1327/1258,
  39264. bottom: 39/1366
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(13, "feet"),
  39272. default: true
  39273. },
  39274. {
  39275. name: "Macro",
  39276. height: math.unit(1300, "feet")
  39277. },
  39278. {
  39279. name: "Megamacro",
  39280. height: math.unit(1300, "miles")
  39281. },
  39282. {
  39283. name: "Gigamacro",
  39284. height: math.unit(1300000, "miles")
  39285. },
  39286. ]
  39287. ))
  39288. characterMakers.push(() => makeCharacter(
  39289. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39290. {
  39291. front: {
  39292. height: math.unit(6, "feet"),
  39293. weight: math.unit(150, "lb"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/ariz/front.svg",
  39297. extra: 1401/1346,
  39298. bottom: 5/1406
  39299. }
  39300. },
  39301. },
  39302. [
  39303. {
  39304. name: "Normal",
  39305. height: math.unit(10, "feet"),
  39306. default: true
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39312. {
  39313. front: {
  39314. height: math.unit(6, "feet"),
  39315. weight: math.unit(140, "lb"),
  39316. name: "Front",
  39317. image: {
  39318. source: "./media/characters/sigrun/front.svg",
  39319. extra: 1418/1359,
  39320. bottom: 27/1445
  39321. }
  39322. },
  39323. },
  39324. [
  39325. {
  39326. name: "Macro",
  39327. height: math.unit(35, "feet"),
  39328. default: true
  39329. },
  39330. ]
  39331. ))
  39332. characterMakers.push(() => makeCharacter(
  39333. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39334. {
  39335. front: {
  39336. height: math.unit(6, "feet"),
  39337. weight: math.unit(150, "lb"),
  39338. name: "Front",
  39339. image: {
  39340. source: "./media/characters/numin/front.svg",
  39341. extra: 1433/1388,
  39342. bottom: 12/1445
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Macro",
  39349. height: math.unit(21.5, "km"),
  39350. default: true
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(6, "feet"),
  39359. weight: math.unit(463, "lb"),
  39360. name: "Front",
  39361. image: {
  39362. source: "./media/characters/melwa/front.svg",
  39363. extra: 1307/1248,
  39364. bottom: 93/1400
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Macro",
  39371. height: math.unit(50, "meters"),
  39372. default: true
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39378. {
  39379. front: {
  39380. height: math.unit(325, "feet"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/zorkaiju/front.svg",
  39384. extra: 1955/1814,
  39385. bottom: 40/1995
  39386. }
  39387. },
  39388. frontExtended: {
  39389. height: math.unit(325, "feet"),
  39390. name: "Front (Extended)",
  39391. image: {
  39392. source: "./media/characters/zorkaiju/front-extended.svg",
  39393. extra: 1955/1814,
  39394. bottom: 40/1995
  39395. }
  39396. },
  39397. side: {
  39398. height: math.unit(325, "feet"),
  39399. name: "Side",
  39400. image: {
  39401. source: "./media/characters/zorkaiju/side.svg",
  39402. extra: 1495/1396,
  39403. bottom: 17/1512
  39404. }
  39405. },
  39406. sideExtended: {
  39407. height: math.unit(325, "feet"),
  39408. name: "Side (Extended)",
  39409. image: {
  39410. source: "./media/characters/zorkaiju/side-extended.svg",
  39411. extra: 1495/1396,
  39412. bottom: 17/1512
  39413. }
  39414. },
  39415. back: {
  39416. height: math.unit(325, "feet"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/zorkaiju/back.svg",
  39420. extra: 1959/1821,
  39421. bottom: 31/1990
  39422. }
  39423. },
  39424. backExtended: {
  39425. height: math.unit(325, "feet"),
  39426. name: "Back (Extended)",
  39427. image: {
  39428. source: "./media/characters/zorkaiju/back-extended.svg",
  39429. extra: 1959/1821,
  39430. bottom: 31/1990
  39431. }
  39432. },
  39433. hand: {
  39434. height: math.unit(58.4, "feet"),
  39435. name: "Hand",
  39436. image: {
  39437. source: "./media/characters/zorkaiju/hand.svg"
  39438. }
  39439. },
  39440. handExtended: {
  39441. height: math.unit(61.4, "feet"),
  39442. name: "Hand (Extended)",
  39443. image: {
  39444. source: "./media/characters/zorkaiju/hand-extended.svg"
  39445. }
  39446. },
  39447. foot: {
  39448. height: math.unit(95, "feet"),
  39449. name: "Foot",
  39450. image: {
  39451. source: "./media/characters/zorkaiju/foot.svg"
  39452. }
  39453. },
  39454. leftArm: {
  39455. height: math.unit(59, "feet"),
  39456. name: "Left Arm",
  39457. image: {
  39458. source: "./media/characters/zorkaiju/left-arm.svg"
  39459. }
  39460. },
  39461. rightArm: {
  39462. height: math.unit(59, "feet"),
  39463. name: "Right Arm",
  39464. image: {
  39465. source: "./media/characters/zorkaiju/right-arm.svg"
  39466. }
  39467. },
  39468. tail: {
  39469. height: math.unit(104, "feet"),
  39470. name: "Tail",
  39471. image: {
  39472. source: "./media/characters/zorkaiju/tail.svg"
  39473. }
  39474. },
  39475. tailExtended: {
  39476. height: math.unit(104, "feet"),
  39477. name: "Tail (Extended)",
  39478. image: {
  39479. source: "./media/characters/zorkaiju/tail-extended.svg"
  39480. }
  39481. },
  39482. tailBottom: {
  39483. height: math.unit(104, "feet"),
  39484. name: "Tail Bottom",
  39485. image: {
  39486. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39487. }
  39488. },
  39489. crystal: {
  39490. height: math.unit(27.54, "feet"),
  39491. name: "Crystal",
  39492. image: {
  39493. source: "./media/characters/zorkaiju/crystal.svg"
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Kaiju",
  39500. height: math.unit(325, "feet"),
  39501. default: true
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(6 + 1/12, "feet"),
  39510. weight: math.unit(115, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/bailey-belfry/front.svg",
  39514. extra: 1240/1121,
  39515. bottom: 101/1341
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(6 + 1/12, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39529. {
  39530. side: {
  39531. height: math.unit(4, "meters"),
  39532. weight: math.unit(250, "kg"),
  39533. name: "Side",
  39534. image: {
  39535. source: "./media/characters/blacky/side.svg",
  39536. extra: 1027/919,
  39537. bottom: 43/1070
  39538. }
  39539. },
  39540. maw: {
  39541. height: math.unit(1, "meters"),
  39542. name: "Maw",
  39543. image: {
  39544. source: "./media/characters/blacky/maw.svg"
  39545. }
  39546. },
  39547. paw: {
  39548. height: math.unit(1, "meters"),
  39549. name: "Paw",
  39550. image: {
  39551. source: "./media/characters/blacky/paw.svg"
  39552. }
  39553. },
  39554. },
  39555. [
  39556. {
  39557. name: "Normal",
  39558. height: math.unit(4, "meters"),
  39559. default: true
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39565. {
  39566. front: {
  39567. height: math.unit(170, "cm"),
  39568. weight: math.unit(66, "kg"),
  39569. name: "Front",
  39570. image: {
  39571. source: "./media/characters/thux-ei/front.svg",
  39572. extra: 1109/1011,
  39573. bottom: 8/1117
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Normal",
  39580. height: math.unit(170, "cm"),
  39581. default: true
  39582. },
  39583. ]
  39584. ))
  39585. characterMakers.push(() => makeCharacter(
  39586. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39587. {
  39588. front: {
  39589. height: math.unit(5, "feet"),
  39590. weight: math.unit(120, "lb"),
  39591. name: "Front",
  39592. image: {
  39593. source: "./media/characters/roxanne-voltaire/front.svg",
  39594. extra: 1901/1779,
  39595. bottom: 53/1954
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Normal",
  39602. height: math.unit(5, "feet"),
  39603. default: true
  39604. },
  39605. {
  39606. name: "Giant",
  39607. height: math.unit(50, "feet")
  39608. },
  39609. {
  39610. name: "Titan",
  39611. height: math.unit(500, "feet")
  39612. },
  39613. {
  39614. name: "Macro",
  39615. height: math.unit(5000, "feet")
  39616. },
  39617. {
  39618. name: "Megamacro",
  39619. height: math.unit(50000, "feet")
  39620. },
  39621. {
  39622. name: "Gigamacro",
  39623. height: math.unit(500000, "feet")
  39624. },
  39625. {
  39626. name: "Teramacro",
  39627. height: math.unit(5e6, "feet")
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39633. {
  39634. front: {
  39635. height: math.unit(6 + 2/12, "feet"),
  39636. name: "Front",
  39637. image: {
  39638. source: "./media/characters/squeaks/front.svg",
  39639. extra: 1823/1768,
  39640. bottom: 138/1961
  39641. }
  39642. },
  39643. },
  39644. [
  39645. {
  39646. name: "Micro",
  39647. height: math.unit(0.5, "inches")
  39648. },
  39649. {
  39650. name: "Normal",
  39651. height: math.unit(6 + 2/12, "feet"),
  39652. default: true
  39653. },
  39654. {
  39655. name: "Macro",
  39656. height: math.unit(600, "feet")
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39662. {
  39663. front: {
  39664. height: math.unit(1.72, "meters"),
  39665. name: "Front",
  39666. image: {
  39667. source: "./media/characters/archinger/front.svg",
  39668. extra: 1861/1675,
  39669. bottom: 125/1986
  39670. }
  39671. },
  39672. back: {
  39673. height: math.unit(1.72, "meters"),
  39674. name: "Back",
  39675. image: {
  39676. source: "./media/characters/archinger/back.svg",
  39677. extra: 1844/1701,
  39678. bottom: 104/1948
  39679. }
  39680. },
  39681. cock: {
  39682. height: math.unit(0.59, "feet"),
  39683. name: "Cock",
  39684. image: {
  39685. source: "./media/characters/archinger/cock.svg"
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(1.72, "meters"),
  39693. default: true
  39694. },
  39695. {
  39696. name: "Macro",
  39697. height: math.unit(84, "meters")
  39698. },
  39699. {
  39700. name: "Macro+",
  39701. height: math.unit(112, "meters")
  39702. },
  39703. {
  39704. name: "Macro++",
  39705. height: math.unit(960, "meters")
  39706. },
  39707. {
  39708. name: "Macro+++",
  39709. height: math.unit(4, "km")
  39710. },
  39711. {
  39712. name: "Macro++++",
  39713. height: math.unit(48, "km")
  39714. },
  39715. {
  39716. name: "Macro+++++",
  39717. height: math.unit(4500, "km")
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39723. {
  39724. front: {
  39725. height: math.unit(5 + 5/12, "feet"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/alsnapz/front.svg",
  39729. extra: 1157/1065,
  39730. bottom: 42/1199
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Normal",
  39737. height: math.unit(5 + 5/12, "feet"),
  39738. default: true
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39744. {
  39745. side: {
  39746. height: math.unit(3.2, "earths"),
  39747. name: "Side",
  39748. image: {
  39749. source: "./media/characters/mag/side.svg",
  39750. extra: 1331/1008,
  39751. bottom: 52/1383
  39752. }
  39753. },
  39754. wing: {
  39755. height: math.unit(1.94, "earths"),
  39756. name: "Wing",
  39757. image: {
  39758. source: "./media/characters/mag/wing.svg"
  39759. }
  39760. },
  39761. dick: {
  39762. height: math.unit(1.8, "earths"),
  39763. name: "Dick",
  39764. image: {
  39765. source: "./media/characters/mag/dick.svg"
  39766. }
  39767. },
  39768. ass: {
  39769. height: math.unit(1.33, "earths"),
  39770. name: "Ass",
  39771. image: {
  39772. source: "./media/characters/mag/ass.svg"
  39773. }
  39774. },
  39775. head: {
  39776. height: math.unit(1.1, "earths"),
  39777. name: "Head",
  39778. image: {
  39779. source: "./media/characters/mag/head.svg"
  39780. }
  39781. },
  39782. maw: {
  39783. height: math.unit(1.62, "earths"),
  39784. name: "Maw",
  39785. image: {
  39786. source: "./media/characters/mag/maw.svg"
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Small",
  39793. height: math.unit(162, "feet")
  39794. },
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(3.2, "earths"),
  39798. default: true
  39799. },
  39800. ]
  39801. ))
  39802. characterMakers.push(() => makeCharacter(
  39803. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39804. {
  39805. front: {
  39806. height: math.unit(512, "feet"),
  39807. weight: math.unit(63509, "tonnes"),
  39808. name: "Front",
  39809. image: {
  39810. source: "./media/characters/vorrel-harroc/front.svg",
  39811. extra: 1075/1063,
  39812. bottom: 62/1137
  39813. }
  39814. },
  39815. },
  39816. [
  39817. {
  39818. name: "Normal",
  39819. height: math.unit(10, "feet")
  39820. },
  39821. {
  39822. name: "Macro",
  39823. height: math.unit(512, "feet"),
  39824. default: true
  39825. },
  39826. {
  39827. name: "Megamacro",
  39828. height: math.unit(256, "miles")
  39829. },
  39830. {
  39831. name: "Gigamacro",
  39832. height: math.unit(4096, "miles")
  39833. },
  39834. ]
  39835. ))
  39836. characterMakers.push(() => makeCharacter(
  39837. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39838. {
  39839. side: {
  39840. height: math.unit(50, "feet"),
  39841. name: "Side",
  39842. image: {
  39843. source: "./media/characters/froimar/side.svg",
  39844. extra: 855/638,
  39845. bottom: 99/954
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Macro",
  39852. height: math.unit(50, "feet"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(210, "miles"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/timothy/front.svg",
  39865. extra: 1007/943,
  39866. bottom: 62/1069
  39867. }
  39868. },
  39869. frontSkirt: {
  39870. height: math.unit(210, "miles"),
  39871. name: "Front (Skirt)",
  39872. image: {
  39873. source: "./media/characters/timothy/front-skirt.svg",
  39874. extra: 1007/943,
  39875. bottom: 62/1069
  39876. }
  39877. },
  39878. frontCoat: {
  39879. height: math.unit(210, "miles"),
  39880. name: "Front (Coat)",
  39881. image: {
  39882. source: "./media/characters/timothy/front-coat.svg",
  39883. extra: 1007/943,
  39884. bottom: 62/1069
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Macro",
  39891. height: math.unit(210, "miles"),
  39892. default: true
  39893. },
  39894. {
  39895. name: "Megamacro",
  39896. height: math.unit(210000, "miles")
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(188, "feet"),
  39905. name: "Front",
  39906. image: {
  39907. source: "./media/characters/pyotr/front.svg",
  39908. extra: 1912/1826,
  39909. bottom: 18/1930
  39910. }
  39911. },
  39912. },
  39913. [
  39914. {
  39915. name: "Macro",
  39916. height: math.unit(188, "feet"),
  39917. default: true
  39918. },
  39919. {
  39920. name: "Megamacro",
  39921. height: math.unit(8, "miles")
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39927. {
  39928. side: {
  39929. height: math.unit(10, "feet"),
  39930. weight: math.unit(4500, "lb"),
  39931. name: "Side",
  39932. image: {
  39933. source: "./media/characters/ackart/side.svg",
  39934. extra: 1776/1668,
  39935. bottom: 116/1892
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(10, "feet"),
  39943. default: true
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39949. {
  39950. side: {
  39951. height: math.unit(21, "feet"),
  39952. name: "Side",
  39953. image: {
  39954. source: "./media/characters/nolow/side.svg",
  39955. extra: 1484/1434,
  39956. bottom: 85/1569
  39957. }
  39958. },
  39959. sideErect: {
  39960. height: math.unit(21, "feet"),
  39961. name: "Side-erect",
  39962. image: {
  39963. source: "./media/characters/nolow/side-erect.svg",
  39964. extra: 1484/1434,
  39965. bottom: 85/1569
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Regular",
  39972. height: math.unit(12, "feet")
  39973. },
  39974. {
  39975. name: "Big Chee",
  39976. height: math.unit(21, "feet"),
  39977. default: true
  39978. },
  39979. ]
  39980. ))
  39981. characterMakers.push(() => makeCharacter(
  39982. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39983. {
  39984. front: {
  39985. height: math.unit(7, "feet"),
  39986. weight: math.unit(250, "lb"),
  39987. name: "Front",
  39988. image: {
  39989. source: "./media/characters/nines/front.svg",
  39990. extra: 1741/1607,
  39991. bottom: 41/1782
  39992. }
  39993. },
  39994. side: {
  39995. height: math.unit(7, "feet"),
  39996. weight: math.unit(250, "lb"),
  39997. name: "Side",
  39998. image: {
  39999. source: "./media/characters/nines/side.svg",
  40000. extra: 1854/1735,
  40001. bottom: 93/1947
  40002. }
  40003. },
  40004. back: {
  40005. height: math.unit(7, "feet"),
  40006. weight: math.unit(250, "lb"),
  40007. name: "Back",
  40008. image: {
  40009. source: "./media/characters/nines/back.svg",
  40010. extra: 1748/1615,
  40011. bottom: 20/1768
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Megamacro",
  40018. height: math.unit(99, "km"),
  40019. default: true
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(5 + 10/12, "feet"),
  40028. weight: math.unit(210, "lb"),
  40029. name: "Front",
  40030. image: {
  40031. source: "./media/characters/zenith/front.svg",
  40032. extra: 1531/1452,
  40033. bottom: 198/1729
  40034. }
  40035. },
  40036. back: {
  40037. height: math.unit(5 + 10/12, "feet"),
  40038. weight: math.unit(210, "lb"),
  40039. name: "Back",
  40040. image: {
  40041. source: "./media/characters/zenith/back.svg",
  40042. extra: 1571/1487,
  40043. bottom: 75/1646
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(5 + 10/12, "feet"),
  40051. default: true
  40052. }
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(4, "feet"),
  40060. weight: math.unit(60, "lb"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/jasper/front.svg",
  40064. extra: 1450/1379,
  40065. bottom: 19/1469
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(4, "feet"),
  40073. default: true
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(6 + 5/12, "feet"),
  40082. weight: math.unit(290, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/tiberius-thyben/front.svg",
  40086. extra: 757/739,
  40087. bottom: 39/796
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Micro",
  40094. height: math.unit(1.5, "inches")
  40095. },
  40096. {
  40097. name: "Normal",
  40098. height: math.unit(6 + 5/12, "feet"),
  40099. default: true
  40100. },
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(300, "feet")
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40109. {
  40110. front: {
  40111. height: math.unit(5 + 6/12, "feet"),
  40112. weight: math.unit(60, "kg"),
  40113. name: "Front",
  40114. image: {
  40115. source: "./media/characters/sabre/front.svg",
  40116. extra: 738/671,
  40117. bottom: 27/765
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Teeny",
  40124. height: math.unit(2, "inches")
  40125. },
  40126. {
  40127. name: "Smol",
  40128. height: math.unit(8, "inches")
  40129. },
  40130. {
  40131. name: "Normal",
  40132. height: math.unit(5 + 6/12, "feet"),
  40133. default: true
  40134. },
  40135. {
  40136. name: "Mini-Macro",
  40137. height: math.unit(15, "feet")
  40138. },
  40139. {
  40140. name: "Macro",
  40141. height: math.unit(50, "feet")
  40142. },
  40143. ]
  40144. ))
  40145. characterMakers.push(() => makeCharacter(
  40146. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40147. {
  40148. front: {
  40149. height: math.unit(6 + 4/12, "feet"),
  40150. weight: math.unit(170, "lb"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/charlie/front.svg",
  40154. extra: 1348/1228,
  40155. bottom: 15/1363
  40156. }
  40157. },
  40158. },
  40159. [
  40160. {
  40161. name: "Macro",
  40162. height: math.unit(1700, "meters"),
  40163. default: true
  40164. },
  40165. {
  40166. name: "MegaMacro",
  40167. height: math.unit(20400, "meters")
  40168. },
  40169. ]
  40170. ))
  40171. characterMakers.push(() => makeCharacter(
  40172. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40173. {
  40174. front: {
  40175. height: math.unit(6 + 3/12, "feet"),
  40176. weight: math.unit(185, "lb"),
  40177. name: "Front",
  40178. image: {
  40179. source: "./media/characters/susan-grant/front.svg",
  40180. extra: 1351/1327,
  40181. bottom: 26/1377
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Normal",
  40188. height: math.unit(6 + 3/12, "feet"),
  40189. default: true
  40190. },
  40191. {
  40192. name: "Macro",
  40193. height: math.unit(225, "feet")
  40194. },
  40195. {
  40196. name: "Macro+",
  40197. height: math.unit(900, "feet")
  40198. },
  40199. {
  40200. name: "MegaMacro",
  40201. height: math.unit(14400, "feet")
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(5 + 4/12, "feet"),
  40210. weight: math.unit(110, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/axel-isanov/front.svg",
  40214. extra: 1096/1065,
  40215. bottom: 13/1109
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Normal",
  40222. height: math.unit(5 + 4/12, "feet"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40229. {
  40230. front: {
  40231. height: math.unit(9, "feet"),
  40232. weight: math.unit(467, "lb"),
  40233. name: "Front",
  40234. image: {
  40235. source: "./media/characters/necahual/front.svg",
  40236. extra: 920/873,
  40237. bottom: 26/946
  40238. }
  40239. },
  40240. back: {
  40241. height: math.unit(9, "feet"),
  40242. weight: math.unit(467, "lb"),
  40243. name: "Back",
  40244. image: {
  40245. source: "./media/characters/necahual/back.svg",
  40246. extra: 930/884,
  40247. bottom: 16/946
  40248. }
  40249. },
  40250. frontUnderwear: {
  40251. height: math.unit(9, "feet"),
  40252. weight: math.unit(467, "lb"),
  40253. name: "Front (Underwear)",
  40254. image: {
  40255. source: "./media/characters/necahual/front-underwear.svg",
  40256. extra: 920/873,
  40257. bottom: 26/946
  40258. }
  40259. },
  40260. frontDressed: {
  40261. height: math.unit(9, "feet"),
  40262. weight: math.unit(467, "lb"),
  40263. name: "Front (Dressed)",
  40264. image: {
  40265. source: "./media/characters/necahual/front-dressed.svg",
  40266. extra: 920/873,
  40267. bottom: 26/946
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Comprsesed",
  40274. height: math.unit(9, "feet")
  40275. },
  40276. {
  40277. name: "Natural",
  40278. height: math.unit(15, "feet"),
  40279. default: true
  40280. },
  40281. {
  40282. name: "Boosted",
  40283. height: math.unit(50, "feet")
  40284. },
  40285. {
  40286. name: "Boosted+",
  40287. height: math.unit(150, "feet")
  40288. },
  40289. {
  40290. name: "Max",
  40291. height: math.unit(500, "feet")
  40292. },
  40293. ]
  40294. ))
  40295. characterMakers.push(() => makeCharacter(
  40296. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40297. {
  40298. front: {
  40299. height: math.unit(22 + 1/12, "feet"),
  40300. weight: math.unit(3200, "lb"),
  40301. name: "Front",
  40302. image: {
  40303. source: "./media/characters/theo-acacia/front.svg",
  40304. extra: 1796/1741,
  40305. bottom: 83/1879
  40306. }
  40307. },
  40308. frontUnderwear: {
  40309. height: math.unit(22 + 1/12, "feet"),
  40310. weight: math.unit(3200, "lb"),
  40311. name: "Front (Underwear)",
  40312. image: {
  40313. source: "./media/characters/theo-acacia/front-underwear.svg",
  40314. extra: 1796/1741,
  40315. bottom: 83/1879
  40316. }
  40317. },
  40318. frontNude: {
  40319. height: math.unit(22 + 1/12, "feet"),
  40320. weight: math.unit(3200, "lb"),
  40321. name: "Front (Nude)",
  40322. image: {
  40323. source: "./media/characters/theo-acacia/front-nude.svg",
  40324. extra: 1796/1741,
  40325. bottom: 83/1879
  40326. }
  40327. },
  40328. },
  40329. [
  40330. {
  40331. name: "Normal",
  40332. height: math.unit(22 + 1/12, "feet"),
  40333. default: true
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(20, "feet"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/astra/front.svg",
  40345. extra: 1850/1714,
  40346. bottom: 106/1956
  40347. }
  40348. },
  40349. frontUndressed: {
  40350. height: math.unit(20, "feet"),
  40351. name: "Front (Undressed)",
  40352. image: {
  40353. source: "./media/characters/astra/front-undressed.svg",
  40354. extra: 1926/1749,
  40355. bottom: 0/1926
  40356. }
  40357. },
  40358. hand: {
  40359. height: math.unit(1.53, "feet"),
  40360. name: "Hand",
  40361. image: {
  40362. source: "./media/characters/astra/hand.svg"
  40363. }
  40364. },
  40365. paw: {
  40366. height: math.unit(1.53, "feet"),
  40367. name: "Paw",
  40368. image: {
  40369. source: "./media/characters/astra/paw.svg"
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Smallest",
  40376. height: math.unit(20, "feet")
  40377. },
  40378. {
  40379. name: "Normal",
  40380. height: math.unit(1e9, "miles"),
  40381. default: true
  40382. },
  40383. {
  40384. name: "Larger",
  40385. height: math.unit(5, "multiverses")
  40386. },
  40387. {
  40388. name: "Largest",
  40389. height: math.unit(1e9, "multiverses")
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(8, "feet"),
  40398. name: "Front",
  40399. image: {
  40400. source: "./media/characters/breanna/front.svg",
  40401. extra: 1912/1632,
  40402. bottom: 33/1945
  40403. }
  40404. },
  40405. },
  40406. [
  40407. {
  40408. name: "Smallest",
  40409. height: math.unit(8, "feet")
  40410. },
  40411. {
  40412. name: "Normal",
  40413. height: math.unit(1, "mile"),
  40414. default: true
  40415. },
  40416. {
  40417. name: "Maximum",
  40418. height: math.unit(1500000000000, "lightyears")
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(5 + 11/12, "feet"),
  40427. weight: math.unit(155, "lb"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/cai/front.svg",
  40431. extra: 1823/1702,
  40432. bottom: 32/1855
  40433. }
  40434. },
  40435. back: {
  40436. height: math.unit(5 + 11/12, "feet"),
  40437. weight: math.unit(155, "lb"),
  40438. name: "Back",
  40439. image: {
  40440. source: "./media/characters/cai/back.svg",
  40441. extra: 1809/1708,
  40442. bottom: 31/1840
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(5 + 11/12, "feet"),
  40450. default: true
  40451. },
  40452. {
  40453. name: "Big",
  40454. height: math.unit(15, "feet")
  40455. },
  40456. {
  40457. name: "Macro",
  40458. height: math.unit(200, "feet")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(5 + 6/12, "feet"),
  40467. weight: math.unit(160, "lb"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40471. extra: 1227/1174,
  40472. bottom: 37/1264
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Macro",
  40479. height: math.unit(444, "meters"),
  40480. default: true
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(18 + 7/12, "feet"),
  40489. name: "Front",
  40490. image: {
  40491. source: "./media/characters/rex/front.svg",
  40492. extra: 1941/1807,
  40493. bottom: 66/2007
  40494. }
  40495. },
  40496. back: {
  40497. height: math.unit(18 + 7/12, "feet"),
  40498. name: "Back",
  40499. image: {
  40500. source: "./media/characters/rex/back.svg",
  40501. extra: 1937/1822,
  40502. bottom: 42/1979
  40503. }
  40504. },
  40505. boot: {
  40506. height: math.unit(3.45, "feet"),
  40507. name: "Boot",
  40508. image: {
  40509. source: "./media/characters/rex/boot.svg"
  40510. }
  40511. },
  40512. paw: {
  40513. height: math.unit(4.17, "feet"),
  40514. name: "Paw",
  40515. image: {
  40516. source: "./media/characters/rex/paw.svg"
  40517. }
  40518. },
  40519. head: {
  40520. height: math.unit(6.728, "feet"),
  40521. name: "Head",
  40522. image: {
  40523. source: "./media/characters/rex/head.svg"
  40524. }
  40525. },
  40526. },
  40527. [
  40528. {
  40529. name: "Nano",
  40530. height: math.unit(18 + 7/12, "feet")
  40531. },
  40532. {
  40533. name: "Micro",
  40534. height: math.unit(1.5, "megameters")
  40535. },
  40536. {
  40537. name: "Normal",
  40538. height: math.unit(440, "megameters"),
  40539. default: true
  40540. },
  40541. {
  40542. name: "Macro",
  40543. height: math.unit(2.5, "gigameters")
  40544. },
  40545. {
  40546. name: "Gigamacro",
  40547. height: math.unit(2, "galaxies")
  40548. },
  40549. ]
  40550. ))
  40551. characterMakers.push(() => makeCharacter(
  40552. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40553. {
  40554. side: {
  40555. height: math.unit(32, "feet"),
  40556. weight: math.unit(250000, "lb"),
  40557. name: "Side",
  40558. image: {
  40559. source: "./media/characters/silverwing/side.svg",
  40560. extra: 1100/1019,
  40561. bottom: 204/1304
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Normal",
  40568. height: math.unit(32, "feet"),
  40569. default: true
  40570. },
  40571. ]
  40572. ))
  40573. characterMakers.push(() => makeCharacter(
  40574. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40575. {
  40576. front: {
  40577. height: math.unit(6 + 6/12, "feet"),
  40578. weight: math.unit(350, "lb"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/tristan-hawthorne/front.svg",
  40582. extra: 1159/1124,
  40583. bottom: 37/1196
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Normal",
  40590. height: math.unit(6 + 6/12, "feet"),
  40591. default: true
  40592. },
  40593. ]
  40594. ))
  40595. characterMakers.push(() => makeCharacter(
  40596. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40597. {
  40598. front: {
  40599. height: math.unit(5 + 11/12, "feet"),
  40600. weight: math.unit(190, "lb"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/mizu/front.svg",
  40604. extra: 1988/1788,
  40605. bottom: 14/2002
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Normal",
  40612. height: math.unit(5 + 11/12, "feet"),
  40613. default: true
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40619. {
  40620. front: {
  40621. height: math.unit(6, "feet"),
  40622. name: "Front",
  40623. image: {
  40624. source: "./media/characters/moonlight-rose-terra/front.svg",
  40625. extra: 1434/1252,
  40626. bottom: 48/1482
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "TRAPPIST-1D",
  40633. height: math.unit(4992*2, "km")
  40634. },
  40635. {
  40636. name: "Earth",
  40637. height: math.unit(6367*2, "km"),
  40638. default: true
  40639. },
  40640. {
  40641. name: "Kepler-22b",
  40642. height: math.unit(15282*2, "km")
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40648. {
  40649. front: {
  40650. height: math.unit(6, "feet"),
  40651. name: "Front",
  40652. image: {
  40653. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40654. extra: 1851/1712,
  40655. bottom: 0/1851
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Enceladus",
  40662. height: math.unit(513*2, "km")
  40663. },
  40664. {
  40665. name: "Europe",
  40666. height: math.unit(1560*2, "km")
  40667. },
  40668. {
  40669. name: "Neptune",
  40670. height: math.unit(24622*2, "km"),
  40671. default: true
  40672. },
  40673. {
  40674. name: "CoRoT-9b",
  40675. height: math.unit(75067*2, "km")
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40681. {
  40682. front: {
  40683. height: math.unit(6, "feet"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40687. extra: 1367/1286,
  40688. bottom: 55/1422
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Saturn",
  40695. height: math.unit(58232*2, "km")
  40696. },
  40697. {
  40698. name: "Jupiter",
  40699. height: math.unit(69911*2, "km"),
  40700. default: true
  40701. },
  40702. {
  40703. name: "HD 100546 b",
  40704. height: math.unit(482938, "km")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(1.7, "feet"),
  40713. weight: math.unit(50, "lb"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/dechroma/front.svg",
  40717. extra: 1095/859,
  40718. bottom: 64/1159
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Normal",
  40725. height: math.unit(1.7, "feet"),
  40726. default: true
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40732. {
  40733. side: {
  40734. height: math.unit(30, "feet"),
  40735. name: "Side",
  40736. image: {
  40737. source: "./media/characters/veluren-thanazel/side.svg",
  40738. extra: 1611/633,
  40739. bottom: 118/1729
  40740. }
  40741. },
  40742. front: {
  40743. height: math.unit(30, "feet"),
  40744. name: "Front",
  40745. image: {
  40746. source: "./media/characters/veluren-thanazel/front.svg",
  40747. extra: 1486/636,
  40748. bottom: 238/1724
  40749. }
  40750. },
  40751. head: {
  40752. height: math.unit(21.4, "feet"),
  40753. name: "Head",
  40754. image: {
  40755. source: "./media/characters/veluren-thanazel/head.svg"
  40756. }
  40757. },
  40758. genitals: {
  40759. height: math.unit(19.4, "feet"),
  40760. name: "Genitals",
  40761. image: {
  40762. source: "./media/characters/veluren-thanazel/genitals.svg"
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Social",
  40769. height: math.unit(6, "feet")
  40770. },
  40771. {
  40772. name: "Play",
  40773. height: math.unit(12, "feet")
  40774. },
  40775. {
  40776. name: "True",
  40777. height: math.unit(30, "feet"),
  40778. default: true
  40779. },
  40780. ]
  40781. ))
  40782. characterMakers.push(() => makeCharacter(
  40783. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40784. {
  40785. front: {
  40786. height: math.unit(7 + 6/12, "feet"),
  40787. weight: math.unit(500, "kg"),
  40788. name: "Front",
  40789. image: {
  40790. source: "./media/characters/arcturas/front.svg",
  40791. extra: 1700/1500,
  40792. bottom: 145/1845
  40793. }
  40794. },
  40795. },
  40796. [
  40797. {
  40798. name: "Normal",
  40799. height: math.unit(7 + 6/12, "feet"),
  40800. default: true
  40801. },
  40802. ]
  40803. ))
  40804. characterMakers.push(() => makeCharacter(
  40805. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40806. {
  40807. side: {
  40808. height: math.unit(6, "feet"),
  40809. weight: math.unit(2, "tons"),
  40810. name: "Side",
  40811. image: {
  40812. source: "./media/characters/vitaen/side.svg",
  40813. extra: 1157/617,
  40814. bottom: 122/1279
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Normal",
  40821. height: math.unit(6, "feet"),
  40822. default: true
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40828. {
  40829. front: {
  40830. height: math.unit(19, "feet"),
  40831. name: "Front",
  40832. image: {
  40833. source: "./media/characters/fia-dreamweaver/front.svg",
  40834. extra: 1630/1504,
  40835. bottom: 25/1655
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Normal",
  40842. height: math.unit(19, "feet"),
  40843. default: true
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(5 + 4/12, "feet"),
  40852. name: "Front",
  40853. image: {
  40854. source: "./media/characters/artan/front.svg",
  40855. extra: 1618/1535,
  40856. bottom: 46/1664
  40857. }
  40858. },
  40859. back: {
  40860. height: math.unit(5 + 4/12, "feet"),
  40861. name: "Back",
  40862. image: {
  40863. source: "./media/characters/artan/back.svg",
  40864. extra: 1618/1543,
  40865. bottom: 31/1649
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(5 + 4/12, "feet"),
  40873. default: true
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40879. {
  40880. side: {
  40881. height: math.unit(182, "cm"),
  40882. weight: math.unit(1000, "lb"),
  40883. name: "Side",
  40884. image: {
  40885. source: "./media/characters/silver-dragon/side.svg",
  40886. extra: 710/287,
  40887. bottom: 88/798
  40888. }
  40889. },
  40890. },
  40891. [
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(182, "cm"),
  40895. default: true
  40896. },
  40897. ]
  40898. ))
  40899. characterMakers.push(() => makeCharacter(
  40900. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40901. {
  40902. side: {
  40903. height: math.unit(6 + 6/12, "feet"),
  40904. weight: math.unit(1.5, "tons"),
  40905. name: "Side",
  40906. image: {
  40907. source: "./media/characters/zephyr/side.svg",
  40908. extra: 1433/586,
  40909. bottom: 109/1542
  40910. }
  40911. },
  40912. },
  40913. [
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(6 + 6/12, "feet"),
  40917. default: true
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40923. {
  40924. side: {
  40925. height: math.unit(1, "feet"),
  40926. name: "Side",
  40927. image: {
  40928. source: "./media/characters/vixye/side.svg",
  40929. extra: 632/541,
  40930. bottom: 0/632
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Normal",
  40937. height: math.unit(1, "feet"),
  40938. default: true
  40939. },
  40940. {
  40941. name: "True",
  40942. height: math.unit(1e15, "multiverses")
  40943. },
  40944. ]
  40945. ))
  40946. characterMakers.push(() => makeCharacter(
  40947. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40948. {
  40949. front: {
  40950. height: math.unit(8 + 2/12, "feet"),
  40951. weight: math.unit(650, "lb"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40955. extra: 1174/1137,
  40956. bottom: 82/1256
  40957. }
  40958. },
  40959. back: {
  40960. height: math.unit(8 + 2/12, "feet"),
  40961. weight: math.unit(650, "lb"),
  40962. name: "Back",
  40963. image: {
  40964. source: "./media/characters/darla-mac-lochlainn/back.svg",
  40965. extra: 1204/1157,
  40966. bottom: 46/1250
  40967. }
  40968. },
  40969. },
  40970. [
  40971. {
  40972. name: "Wildform",
  40973. height: math.unit(8 + 2/12, "feet"),
  40974. default: true
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(18, "feet"),
  40983. name: "Front",
  40984. image: {
  40985. source: "./media/characters/cyphin/front.svg",
  40986. extra: 970/886,
  40987. bottom: 42/1012
  40988. }
  40989. },
  40990. back: {
  40991. height: math.unit(18, "feet"),
  40992. name: "Back",
  40993. image: {
  40994. source: "./media/characters/cyphin/back.svg",
  40995. extra: 1009/894,
  40996. bottom: 24/1033
  40997. }
  40998. },
  40999. head: {
  41000. height: math.unit(5.05, "feet"),
  41001. name: "Head",
  41002. image: {
  41003. source: "./media/characters/cyphin/head.svg"
  41004. }
  41005. },
  41006. tailbud: {
  41007. height: math.unit(5, "feet"),
  41008. name: "Tailbud",
  41009. image: {
  41010. source: "./media/characters/cyphin/tailbud.svg"
  41011. }
  41012. },
  41013. },
  41014. [
  41015. ]
  41016. ))
  41017. characterMakers.push(() => makeCharacter(
  41018. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41019. {
  41020. side: {
  41021. height: math.unit(10, "feet"),
  41022. weight: math.unit(6, "tons"),
  41023. name: "Side",
  41024. image: {
  41025. source: "./media/characters/raijin/side.svg",
  41026. extra: 1529/613,
  41027. bottom: 337/1866
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(10, "feet"),
  41035. default: true
  41036. },
  41037. ]
  41038. ))
  41039. characterMakers.push(() => makeCharacter(
  41040. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41041. {
  41042. side: {
  41043. height: math.unit(9, "feet"),
  41044. name: "Side",
  41045. image: {
  41046. source: "./media/characters/nilghais/side.svg",
  41047. extra: 1047/744,
  41048. bottom: 91/1138
  41049. }
  41050. },
  41051. head: {
  41052. height: math.unit(3.14, "feet"),
  41053. name: "Head",
  41054. image: {
  41055. source: "./media/characters/nilghais/head.svg"
  41056. }
  41057. },
  41058. mouth: {
  41059. height: math.unit(4.6, "feet"),
  41060. name: "Mouth",
  41061. image: {
  41062. source: "./media/characters/nilghais/mouth.svg"
  41063. }
  41064. },
  41065. wings: {
  41066. height: math.unit(24, "feet"),
  41067. name: "Wings",
  41068. image: {
  41069. source: "./media/characters/nilghais/wings.svg"
  41070. }
  41071. },
  41072. ass: {
  41073. height: math.unit(6.12, "feet"),
  41074. name: "Ass",
  41075. image: {
  41076. source: "./media/characters/nilghais/ass.svg"
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(9, "feet"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41090. {
  41091. regular: {
  41092. height: math.unit(16 + 2/12, "feet"),
  41093. weight: math.unit(2300, "lb"),
  41094. name: "Regular",
  41095. image: {
  41096. source: "./media/characters/zolgar/regular.svg",
  41097. extra: 1246/1004,
  41098. bottom: 124/1370
  41099. }
  41100. },
  41101. boxers: {
  41102. height: math.unit(16 + 2/12, "feet"),
  41103. weight: math.unit(2300, "lb"),
  41104. name: "Boxers",
  41105. image: {
  41106. source: "./media/characters/zolgar/boxers.svg",
  41107. extra: 1246/1004,
  41108. bottom: 124/1370
  41109. }
  41110. },
  41111. armored: {
  41112. height: math.unit(16 + 2/12, "feet"),
  41113. weight: math.unit(2300, "lb"),
  41114. name: "Armored",
  41115. image: {
  41116. source: "./media/characters/zolgar/armored.svg",
  41117. extra: 1246/1004,
  41118. bottom: 124/1370
  41119. }
  41120. },
  41121. goth: {
  41122. height: math.unit(16 + 2/12, "feet"),
  41123. weight: math.unit(2300, "lb"),
  41124. name: "Goth",
  41125. image: {
  41126. source: "./media/characters/zolgar/goth.svg",
  41127. extra: 1246/1004,
  41128. bottom: 124/1370
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Shrunken Down",
  41135. height: math.unit(9 + 2/12, "feet")
  41136. },
  41137. {
  41138. name: "Normal",
  41139. height: math.unit(16 + 2/12, "feet"),
  41140. default: true
  41141. },
  41142. ]
  41143. ))
  41144. characterMakers.push(() => makeCharacter(
  41145. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41146. {
  41147. front: {
  41148. height: math.unit(6, "feet"),
  41149. weight: math.unit(168, "lb"),
  41150. name: "Front",
  41151. image: {
  41152. source: "./media/characters/luca/front.svg",
  41153. extra: 841/667,
  41154. bottom: 102/943
  41155. }
  41156. },
  41157. },
  41158. [
  41159. {
  41160. name: "Normal",
  41161. height: math.unit(6, "feet"),
  41162. default: true
  41163. },
  41164. ]
  41165. ))
  41166. characterMakers.push(() => makeCharacter(
  41167. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41168. {
  41169. side: {
  41170. height: math.unit(7 + 3/12, "feet"),
  41171. weight: math.unit(312, "lb"),
  41172. name: "Side",
  41173. image: {
  41174. source: "./media/characters/zezo/side.svg",
  41175. extra: 1192/1067,
  41176. bottom: 63/1255
  41177. }
  41178. },
  41179. },
  41180. [
  41181. {
  41182. name: "Normal",
  41183. height: math.unit(7 + 3/12, "feet"),
  41184. default: true
  41185. },
  41186. ]
  41187. ))
  41188. characterMakers.push(() => makeCharacter(
  41189. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41190. {
  41191. front: {
  41192. height: math.unit(5 + 5/12, "feet"),
  41193. weight: math.unit(170, "lb"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/mayso/front.svg",
  41197. extra: 1215/1108,
  41198. bottom: 16/1231
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Normal",
  41205. height: math.unit(5 + 5/12, "feet"),
  41206. default: true
  41207. },
  41208. ]
  41209. ))
  41210. characterMakers.push(() => makeCharacter(
  41211. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41212. {
  41213. front: {
  41214. height: math.unit(4 + 3/12, "feet"),
  41215. weight: math.unit(80, "lb"),
  41216. name: "Front",
  41217. image: {
  41218. source: "./media/characters/hess/front.svg",
  41219. extra: 1200/1123,
  41220. bottom: 16/1216
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Normal",
  41227. height: math.unit(4 + 3/12, "feet"),
  41228. default: true
  41229. },
  41230. ]
  41231. ))
  41232. characterMakers.push(() => makeCharacter(
  41233. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41234. {
  41235. front: {
  41236. height: math.unit(1.9, "meters"),
  41237. name: "Front",
  41238. image: {
  41239. source: "./media/characters/ashgar/front.svg",
  41240. extra: 1177/1146,
  41241. bottom: 99/1276
  41242. }
  41243. },
  41244. back: {
  41245. height: math.unit(1.9, "meters"),
  41246. name: "Back",
  41247. image: {
  41248. source: "./media/characters/ashgar/back.svg",
  41249. extra: 1201/1183,
  41250. bottom: 53/1254
  41251. }
  41252. },
  41253. feral: {
  41254. height: math.unit(1.4, "meters"),
  41255. name: "Feral",
  41256. image: {
  41257. source: "./media/characters/ashgar/feral.svg",
  41258. extra: 370/345,
  41259. bottom: 45/415
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(1.9, "meters"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41273. {
  41274. regular: {
  41275. height: math.unit(6, "feet"),
  41276. weight: math.unit(220, "lb"),
  41277. name: "Regular",
  41278. image: {
  41279. source: "./media/characters/phillip/regular.svg",
  41280. extra: 1373/1277,
  41281. bottom: 75/1448
  41282. }
  41283. },
  41284. dressed: {
  41285. height: math.unit(6, "feet"),
  41286. weight: math.unit(220, "lb"),
  41287. name: "Dressed",
  41288. image: {
  41289. source: "./media/characters/phillip/dressed.svg",
  41290. extra: 1373/1277,
  41291. bottom: 75/1448
  41292. }
  41293. },
  41294. paw: {
  41295. height: math.unit(1.44, "feet"),
  41296. name: "Paw",
  41297. image: {
  41298. source: "./media/characters/phillip/paw.svg"
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(6, "feet"),
  41306. default: true
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41312. {
  41313. side: {
  41314. height: math.unit(42, "feet"),
  41315. name: "Side",
  41316. image: {
  41317. source: "./media/characters/uvula/side.svg",
  41318. extra: 683/586,
  41319. bottom: 60/743
  41320. }
  41321. },
  41322. front: {
  41323. height: math.unit(42, "feet"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/uvula/front.svg",
  41327. extra: 705/613,
  41328. bottom: 54/759
  41329. }
  41330. },
  41331. maw: {
  41332. height: math.unit(23.5, "feet"),
  41333. name: "Maw",
  41334. image: {
  41335. source: "./media/characters/uvula/maw.svg"
  41336. }
  41337. },
  41338. },
  41339. [
  41340. {
  41341. name: "Original Size",
  41342. height: math.unit(14, "inches")
  41343. },
  41344. {
  41345. name: "Human Size",
  41346. height: math.unit(6, "feet")
  41347. },
  41348. {
  41349. name: "Big",
  41350. height: math.unit(42, "feet"),
  41351. default: true
  41352. },
  41353. {
  41354. name: "Bigger",
  41355. height: math.unit(100, "feet")
  41356. },
  41357. ]
  41358. ))
  41359. characterMakers.push(() => makeCharacter(
  41360. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41361. {
  41362. front: {
  41363. height: math.unit(5 + 11/12, "feet"),
  41364. name: "Front",
  41365. image: {
  41366. source: "./media/characters/lannah/front.svg",
  41367. extra: 1208/1113,
  41368. bottom: 97/1305
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Normal",
  41375. height: math.unit(5 + 11/12, "feet"),
  41376. default: true
  41377. },
  41378. ]
  41379. ))
  41380. characterMakers.push(() => makeCharacter(
  41381. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41382. {
  41383. front: {
  41384. height: math.unit(6 + 3/12, "feet"),
  41385. weight: math.unit(3.5, "tons"),
  41386. name: "Front",
  41387. image: {
  41388. source: "./media/characters/emberflame/front.svg",
  41389. extra: 1198/672,
  41390. bottom: 82/1280
  41391. }
  41392. },
  41393. side: {
  41394. height: math.unit(6 + 3/12, "feet"),
  41395. weight: math.unit(3.5, "tons"),
  41396. name: "Side",
  41397. image: {
  41398. source: "./media/characters/emberflame/side.svg",
  41399. extra: 938/527,
  41400. bottom: 56/994
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(6 + 3/12, "feet"),
  41408. default: true
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41414. {
  41415. side: {
  41416. height: math.unit(17.5, "feet"),
  41417. weight: math.unit(35, "tons"),
  41418. name: "Side",
  41419. image: {
  41420. source: "./media/characters/sophie-ambrose/side.svg",
  41421. extra: 1573/1242,
  41422. bottom: 71/1644
  41423. }
  41424. },
  41425. maw: {
  41426. height: math.unit(7.4, "feet"),
  41427. name: "Maw",
  41428. image: {
  41429. source: "./media/characters/sophie-ambrose/maw.svg"
  41430. }
  41431. },
  41432. },
  41433. [
  41434. {
  41435. name: "Normal",
  41436. height: math.unit(17.5, "feet"),
  41437. default: true
  41438. },
  41439. ]
  41440. ))
  41441. characterMakers.push(() => makeCharacter(
  41442. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41443. {
  41444. front: {
  41445. height: math.unit(280, "feet"),
  41446. weight: math.unit(550, "tons"),
  41447. name: "Front",
  41448. image: {
  41449. source: "./media/characters/king-mugi/front.svg",
  41450. extra: 1102/947,
  41451. bottom: 104/1206
  41452. }
  41453. },
  41454. },
  41455. [
  41456. {
  41457. name: "King Mugi",
  41458. height: math.unit(280, "feet"),
  41459. default: true
  41460. },
  41461. ]
  41462. ))
  41463. characterMakers.push(() => makeCharacter(
  41464. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41465. {
  41466. front: {
  41467. height: math.unit(64, "meters"),
  41468. name: "Front",
  41469. image: {
  41470. source: "./media/characters/nova-fox/front.svg",
  41471. extra: 1310/1246,
  41472. bottom: 65/1375
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Macro",
  41479. height: math.unit(64, "meters"),
  41480. default: true
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41486. {
  41487. front: {
  41488. height: math.unit(6 + 3/12, "feet"),
  41489. weight: math.unit(170, "lb"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/sam-bat/front.svg",
  41493. extra: 1601/1411,
  41494. bottom: 125/1726
  41495. }
  41496. },
  41497. back: {
  41498. height: math.unit(6 + 3/12, "feet"),
  41499. weight: math.unit(170, "lb"),
  41500. name: "Back",
  41501. image: {
  41502. source: "./media/characters/sam-bat/back.svg",
  41503. extra: 1577/1405,
  41504. bottom: 58/1635
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(6 + 3/12, "feet"),
  41512. default: true
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41518. {
  41519. front: {
  41520. height: math.unit(59, "feet"),
  41521. weight: math.unit(40000, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/inari/front.svg",
  41525. extra: 1884/1350,
  41526. bottom: 95/1979
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Gigantamax",
  41533. height: math.unit(59, "feet"),
  41534. default: true
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41540. {
  41541. front: {
  41542. height: math.unit(5 + 8/12, "feet"),
  41543. name: "Front",
  41544. image: {
  41545. source: "./media/characters/elizabeth/front.svg",
  41546. extra: 1395/1298,
  41547. bottom: 54/1449
  41548. }
  41549. },
  41550. mouth: {
  41551. height: math.unit(1.97, "feet"),
  41552. name: "Mouth",
  41553. image: {
  41554. source: "./media/characters/elizabeth/mouth.svg"
  41555. }
  41556. },
  41557. foot: {
  41558. height: math.unit(1.17, "feet"),
  41559. name: "Foot",
  41560. image: {
  41561. source: "./media/characters/elizabeth/foot.svg"
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(5 + 8/12, "feet"),
  41569. default: true
  41570. },
  41571. {
  41572. name: "Minimacro",
  41573. height: math.unit(18, "feet")
  41574. },
  41575. {
  41576. name: "Macro",
  41577. height: math.unit(180, "feet")
  41578. },
  41579. ]
  41580. ))
  41581. //characters
  41582. function makeCharacters() {
  41583. const results = [];
  41584. characterMakers.forEach(character => {
  41585. results.push(character());
  41586. });
  41587. return results;
  41588. }