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

41481 строка
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. }
  1698. }
  1699. //species
  1700. function getSpeciesInfo(speciesList) {
  1701. let result = new Set();
  1702. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1703. result.add(entry)
  1704. });
  1705. return Array.from(result);
  1706. };
  1707. function getSpeciesInfoHelper(species) {
  1708. if (!speciesData[species]) {
  1709. console.warn(species + " doesn't exist");
  1710. return [];
  1711. }
  1712. if (speciesData[species].parents) {
  1713. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1714. } else {
  1715. return [species];
  1716. }
  1717. }
  1718. characterMakers.push(() => makeCharacter(
  1719. {
  1720. name: "Fen",
  1721. species: ["crux"],
  1722. description: {
  1723. title: "Bio",
  1724. text: "Very furry. Sheds on everything."
  1725. },
  1726. tags: [
  1727. "anthro",
  1728. "goo"
  1729. ]
  1730. },
  1731. {
  1732. back: {
  1733. height: math.unit(2.2428, "meter"),
  1734. weight: math.unit(124.738, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/fen/back.svg",
  1738. },
  1739. info: {
  1740. description: {
  1741. mode: "append",
  1742. text: "\n\nHe is not currently looking at you."
  1743. }
  1744. }
  1745. },
  1746. full: {
  1747. height: math.unit(1.34, "meter"),
  1748. weight: math.unit(225, "kg"),
  1749. name: "Full",
  1750. image: {
  1751. source: "./media/characters/fen/full.svg"
  1752. },
  1753. info: {
  1754. description: {
  1755. mode: "append",
  1756. text: "\n\nMunch."
  1757. }
  1758. }
  1759. },
  1760. kneeling: {
  1761. height: math.unit(5.4, "feet"),
  1762. weight: math.unit(124.738, "kg"),
  1763. name: "Kneeling",
  1764. image: {
  1765. source: "./media/characters/fen/kneeling.svg",
  1766. extra: 563 / 507
  1767. }
  1768. },
  1769. goo: {
  1770. height: math.unit(2.8, "feet"),
  1771. weight: math.unit(125, "kg"),
  1772. capacity: math.unit(1, "people"),
  1773. name: "Goo",
  1774. image: {
  1775. source: "./media/characters/fen/goo.svg",
  1776. bottom: 116 / 613
  1777. }
  1778. },
  1779. lounging: {
  1780. height: math.unit(6.5, "feet"),
  1781. weight: math.unit(125, "kg"),
  1782. name: "Lounging",
  1783. image: {
  1784. source: "./media/characters/fen/lounging.svg"
  1785. }
  1786. },
  1787. },
  1788. [
  1789. {
  1790. name: "Normal",
  1791. height: math.unit(2.2428, "meter")
  1792. },
  1793. {
  1794. name: "Big",
  1795. height: math.unit(12, "feet")
  1796. },
  1797. {
  1798. name: "Minimacro",
  1799. height: math.unit(40, "feet"),
  1800. default: true,
  1801. info: {
  1802. description: {
  1803. mode: "append",
  1804. text: "\n\nTOO DAMN BIG"
  1805. }
  1806. }
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(100, "feet"),
  1811. info: {
  1812. description: {
  1813. mode: "append",
  1814. text: "\n\nTOO DAMN BIG"
  1815. }
  1816. }
  1817. },
  1818. {
  1819. name: "Macro+",
  1820. height: math.unit(300, "feet")
  1821. },
  1822. {
  1823. name: "Megamacro",
  1824. height: math.unit(2, "miles")
  1825. }
  1826. ]
  1827. ))
  1828. characterMakers.push(() => makeCharacter(
  1829. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1830. {
  1831. front: {
  1832. height: math.unit(183, "cm"),
  1833. weight: math.unit(80, "kg"),
  1834. name: "Front",
  1835. image: {
  1836. source: "./media/characters/sofia-fluttertail/front.svg",
  1837. bottom: 0.01,
  1838. extra: 2154 / 2081
  1839. }
  1840. },
  1841. frontAlt: {
  1842. height: math.unit(183, "cm"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Front (alt)",
  1845. image: {
  1846. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1847. }
  1848. },
  1849. back: {
  1850. height: math.unit(183, "cm"),
  1851. weight: math.unit(80, "kg"),
  1852. name: "Back",
  1853. image: {
  1854. source: "./media/characters/sofia-fluttertail/back.svg"
  1855. }
  1856. },
  1857. kneeling: {
  1858. height: math.unit(125, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Kneeling",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1863. extra: 1033 / 977,
  1864. bottom: 23.7 / 1057
  1865. }
  1866. },
  1867. maw: {
  1868. height: math.unit(183 / 5, "cm"),
  1869. name: "Maw",
  1870. image: {
  1871. source: "./media/characters/sofia-fluttertail/maw.svg"
  1872. }
  1873. },
  1874. mawcloseup: {
  1875. height: math.unit(183 / 5 * 0.41, "cm"),
  1876. name: "Maw (Closeup)",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1879. }
  1880. },
  1881. paws: {
  1882. height: math.unit(1.17, "feet"),
  1883. name: "Paws",
  1884. image: {
  1885. source: "./media/characters/sofia-fluttertail/paws.svg",
  1886. extra: 851 / 851,
  1887. bottom: 17 / 868
  1888. }
  1889. },
  1890. },
  1891. [
  1892. {
  1893. name: "Normal",
  1894. height: math.unit(1.83, "meter")
  1895. },
  1896. {
  1897. name: "Size Thief",
  1898. height: math.unit(18, "feet")
  1899. },
  1900. {
  1901. name: "50 Foot Collie",
  1902. height: math.unit(50, "feet")
  1903. },
  1904. {
  1905. name: "Macro",
  1906. height: math.unit(96, "feet"),
  1907. default: true
  1908. },
  1909. {
  1910. name: "Megamerger",
  1911. height: math.unit(650, "feet")
  1912. },
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1917. {
  1918. front: {
  1919. height: math.unit(7, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/march/front.svg",
  1924. extra: 1992/1851,
  1925. bottom: 39/2031
  1926. }
  1927. },
  1928. foot: {
  1929. height: math.unit(0.9, "feet"),
  1930. name: "Foot",
  1931. image: {
  1932. source: "./media/characters/march/foot.svg"
  1933. }
  1934. },
  1935. },
  1936. [
  1937. {
  1938. name: "Normal",
  1939. height: math.unit(7.9, "feet")
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(220, "meters")
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2.98, "km"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Gigamacro",
  1952. height: math.unit(15963, "km")
  1953. },
  1954. {
  1955. name: "Teramacro",
  1956. height: math.unit(2980000000, "km")
  1957. },
  1958. {
  1959. name: "Examacro",
  1960. height: math.unit(250, "parsecs")
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(60, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/noir/front.svg",
  1973. extra: 1,
  1974. bottom: 0.032
  1975. }
  1976. },
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(6.6, "feet")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(500, "feet")
  1986. },
  1987. {
  1988. name: "Megamacro",
  1989. height: math.unit(2.5, "km"),
  1990. default: true
  1991. },
  1992. {
  1993. name: "Gigamacro",
  1994. height: math.unit(22500, "km")
  1995. },
  1996. {
  1997. name: "Teramacro",
  1998. height: math.unit(2500000000, "km")
  1999. },
  2000. {
  2001. name: "Examacro",
  2002. height: math.unit(200, "parsecs")
  2003. },
  2004. ]
  2005. ))
  2006. characterMakers.push(() => makeCharacter(
  2007. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2008. {
  2009. front: {
  2010. height: math.unit(7, "feet"),
  2011. weight: math.unit(100, "kg"),
  2012. name: "Front",
  2013. image: {
  2014. source: "./media/characters/okuri/front.svg",
  2015. extra: 1,
  2016. bottom: 0.037
  2017. }
  2018. },
  2019. back: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Back",
  2023. image: {
  2024. source: "./media/characters/okuri/back.svg",
  2025. extra: 1,
  2026. bottom: 0.007
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Megamacro",
  2033. height: math.unit(100, "miles"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/manny/front.svg",
  2047. extra: 1,
  2048. bottom: 0.06
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(100, "kg"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/manny/back.svg",
  2057. extra: 1,
  2058. bottom: 0.014
  2059. }
  2060. },
  2061. },
  2062. [
  2063. {
  2064. name: "Normal",
  2065. height: math.unit(7, "feet"),
  2066. },
  2067. {
  2068. name: "Macro",
  2069. height: math.unit(78, "feet"),
  2070. default: true
  2071. },
  2072. {
  2073. name: "Macro+",
  2074. height: math.unit(300, "meters")
  2075. },
  2076. {
  2077. name: "Macro++",
  2078. height: math.unit(2400, "meters")
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(5167, "meters")
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(41769, "miles")
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/adake/front-1.svg"
  2099. }
  2100. },
  2101. frontAlt: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front (Alt)",
  2105. image: {
  2106. source: "./media/characters/adake/front-2.svg",
  2107. extra: 1,
  2108. bottom: 0.01
  2109. }
  2110. },
  2111. back: {
  2112. height: math.unit(7, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Back",
  2115. image: {
  2116. source: "./media/characters/adake/back.svg",
  2117. }
  2118. },
  2119. kneel: {
  2120. height: math.unit(5.385, "feet"),
  2121. weight: math.unit(100, "kg"),
  2122. name: "Kneeling",
  2123. image: {
  2124. source: "./media/characters/adake/kneel.svg",
  2125. bottom: 0.052
  2126. }
  2127. },
  2128. },
  2129. [
  2130. {
  2131. name: "Normal",
  2132. height: math.unit(7, "feet"),
  2133. },
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(78, "feet"),
  2137. default: true
  2138. },
  2139. {
  2140. name: "Macro+",
  2141. height: math.unit(300, "meters")
  2142. },
  2143. {
  2144. name: "Macro++",
  2145. height: math.unit(2400, "meters")
  2146. },
  2147. {
  2148. name: "Megamacro",
  2149. height: math.unit(5167, "meters")
  2150. },
  2151. {
  2152. name: "Gigamacro",
  2153. height: math.unit(41769, "miles")
  2154. },
  2155. ]
  2156. ))
  2157. characterMakers.push(() => makeCharacter(
  2158. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2159. {
  2160. front: {
  2161. height: math.unit(1.65, "meters"),
  2162. weight: math.unit(50, "kg"),
  2163. name: "Front",
  2164. image: {
  2165. source: "./media/characters/elijah/front.svg",
  2166. extra: 858 / 830,
  2167. bottom: 95.5 / 953.8559
  2168. }
  2169. },
  2170. back: {
  2171. height: math.unit(1.65, "meters"),
  2172. weight: math.unit(50, "kg"),
  2173. name: "Back",
  2174. image: {
  2175. source: "./media/characters/elijah/back.svg",
  2176. extra: 895 / 850,
  2177. bottom: 5.3 / 897.956
  2178. }
  2179. },
  2180. frontNsfw: {
  2181. height: math.unit(1.65, "meters"),
  2182. weight: math.unit(50, "kg"),
  2183. name: "Front (NSFW)",
  2184. image: {
  2185. source: "./media/characters/elijah/front-nsfw.svg",
  2186. extra: 858 / 830,
  2187. bottom: 95.5 / 953.8559
  2188. }
  2189. },
  2190. backNsfw: {
  2191. height: math.unit(1.65, "meters"),
  2192. weight: math.unit(50, "kg"),
  2193. name: "Back (NSFW)",
  2194. image: {
  2195. source: "./media/characters/elijah/back-nsfw.svg",
  2196. extra: 895 / 850,
  2197. bottom: 5.3 / 897.956
  2198. }
  2199. },
  2200. dick: {
  2201. height: math.unit(1, "feet"),
  2202. name: "Dick",
  2203. image: {
  2204. source: "./media/characters/elijah/dick.svg"
  2205. }
  2206. },
  2207. beakOpen: {
  2208. height: math.unit(1.25, "feet"),
  2209. name: "Beak (Open)",
  2210. image: {
  2211. source: "./media/characters/elijah/beak-open.svg"
  2212. }
  2213. },
  2214. beakShut: {
  2215. height: math.unit(1.25, "feet"),
  2216. name: "Beak (Shut)",
  2217. image: {
  2218. source: "./media/characters/elijah/beak-shut.svg"
  2219. }
  2220. },
  2221. footFlexing: {
  2222. height: math.unit(1.61, "feet"),
  2223. name: "Foot (Flexing)",
  2224. image: {
  2225. source: "./media/characters/elijah/foot-flexing.svg"
  2226. }
  2227. },
  2228. footStepping: {
  2229. height: math.unit(1.44, "feet"),
  2230. name: "Foot (Stepping)",
  2231. image: {
  2232. source: "./media/characters/elijah/foot-stepping.svg"
  2233. }
  2234. },
  2235. plantigradeLeg: {
  2236. height: math.unit(2.34, "feet"),
  2237. name: "Plantigrade Leg",
  2238. image: {
  2239. source: "./media/characters/elijah/plantigrade-leg.svg"
  2240. }
  2241. },
  2242. plantigradeFootLeft: {
  2243. height: math.unit(0.9, "feet"),
  2244. name: "Plantigrade Foot (Left)",
  2245. image: {
  2246. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2247. }
  2248. },
  2249. plantigradeFootRight: {
  2250. height: math.unit(0.9, "feet"),
  2251. name: "Plantigrade Foot (Right)",
  2252. image: {
  2253. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(1.65, "meters")
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(55, "meters"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro+",
  2269. height: math.unit(105, "meters")
  2270. },
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(11, "feet"),
  2278. weight: math.unit(320, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/rai/front.svg",
  2282. extra: 1802/1696,
  2283. bottom: 68/1870
  2284. }
  2285. },
  2286. frontDressed: {
  2287. height: math.unit(11, "feet"),
  2288. weight: math.unit(320, "kg"),
  2289. name: "Front (Dressed)",
  2290. image: {
  2291. source: "./media/characters/rai/front-dressed.svg",
  2292. extra: 1802/1696,
  2293. bottom: 68/1870
  2294. }
  2295. },
  2296. side: {
  2297. height: math.unit(11, "feet"),
  2298. weight: math.unit(320, "kg"),
  2299. name: "Side",
  2300. image: {
  2301. source: "./media/characters/rai/side.svg",
  2302. extra: 1789/1710,
  2303. bottom: 115/1904
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(11, "feet"),
  2308. weight: math.unit(320, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/rai/back.svg",
  2312. extra: 1770/1707,
  2313. bottom: 28/1798
  2314. }
  2315. },
  2316. feral: {
  2317. height: math.unit(11, "feet"),
  2318. weight: math.unit(640, "kg"),
  2319. name: "Feral",
  2320. image: {
  2321. source: "./media/characters/rai/feral.svg",
  2322. extra: 1035/642,
  2323. bottom: 86/1121
  2324. }
  2325. },
  2326. dragon: {
  2327. height: math.unit(23, "feet"),
  2328. weight: math.unit(50000, "lb"),
  2329. name: "Dragon",
  2330. image: {
  2331. source: "./media/characters/rai/dragon.svg",
  2332. extra: 2498 / 2030,
  2333. bottom: 85.2 / 2584
  2334. }
  2335. },
  2336. maw: {
  2337. height: math.unit(6 / 3.81416, "feet"),
  2338. name: "Maw",
  2339. image: {
  2340. source: "./media/characters/rai/maw.svg"
  2341. }
  2342. },
  2343. },
  2344. [
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(11, "feet")
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(302, "feet"),
  2352. default: true
  2353. },
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2358. {
  2359. frontDressed: {
  2360. height: math.unit(216, "feet"),
  2361. weight: math.unit(7000000, "lb"),
  2362. name: "Front (Dressed)",
  2363. image: {
  2364. source: "./media/characters/jazzy/front-dressed.svg",
  2365. extra: 2738 / 2651,
  2366. bottom: 41.8 / 2786
  2367. }
  2368. },
  2369. backDressed: {
  2370. height: math.unit(216, "feet"),
  2371. weight: math.unit(7000000, "lb"),
  2372. name: "Back (Dressed)",
  2373. image: {
  2374. source: "./media/characters/jazzy/back-dressed.svg",
  2375. extra: 2775 / 2673,
  2376. bottom: 36.8 / 2817
  2377. }
  2378. },
  2379. front: {
  2380. height: math.unit(216, "feet"),
  2381. weight: math.unit(7000000, "lb"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/jazzy/front.svg",
  2385. extra: 2738 / 2651,
  2386. bottom: 41.8 / 2786
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(216, "feet"),
  2391. weight: math.unit(7000000, "lb"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/jazzy/back.svg",
  2395. extra: 2775 / 2673,
  2396. bottom: 36.8 / 2817
  2397. }
  2398. },
  2399. maw: {
  2400. height: math.unit(20, "feet"),
  2401. name: "Maw",
  2402. image: {
  2403. source: "./media/characters/jazzy/maw.svg"
  2404. }
  2405. },
  2406. paws: {
  2407. height: math.unit(27.5, "feet"),
  2408. name: "Paws",
  2409. image: {
  2410. source: "./media/characters/jazzy/paws.svg"
  2411. }
  2412. },
  2413. eye: {
  2414. height: math.unit(4.4, "feet"),
  2415. name: "Eye",
  2416. image: {
  2417. source: "./media/characters/jazzy/eye.svg"
  2418. }
  2419. },
  2420. droneOffense: {
  2421. height: math.unit(9.5, "inches"),
  2422. name: "Drone (Offense)",
  2423. image: {
  2424. source: "./media/characters/jazzy/drone-offense.svg"
  2425. }
  2426. },
  2427. droneRecon: {
  2428. height: math.unit(9.5, "inches"),
  2429. name: "Drone (Recon)",
  2430. image: {
  2431. source: "./media/characters/jazzy/drone-recon.svg"
  2432. }
  2433. },
  2434. droneDefense: {
  2435. height: math.unit(9.5, "inches"),
  2436. name: "Drone (Defense)",
  2437. image: {
  2438. source: "./media/characters/jazzy/drone-defense.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(216, "feet"),
  2446. default: true
  2447. },
  2448. ]
  2449. ))
  2450. characterMakers.push(() => makeCharacter(
  2451. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2452. {
  2453. front: {
  2454. height: math.unit(9 + 6/12, "feet"),
  2455. weight: math.unit(700, "lb"),
  2456. name: "Front",
  2457. image: {
  2458. source: "./media/characters/flamm/front.svg",
  2459. extra: 1751/1632,
  2460. bottom: 46/1797
  2461. }
  2462. },
  2463. buff: {
  2464. height: math.unit(9 + 6/12, "feet"),
  2465. weight: math.unit(950, "lb"),
  2466. name: "Buff",
  2467. image: {
  2468. source: "./media/characters/flamm/buff.svg",
  2469. extra: 3018/2874,
  2470. bottom: 221/3239
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(9.5, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(200, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(5 + 3/12, "feet"),
  2491. weight: math.unit(60, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/zephiro/front.svg",
  2495. extra: 2309 / 2162,
  2496. bottom: 0.069
  2497. }
  2498. },
  2499. side: {
  2500. height: math.unit(5 + 3/12, "feet"),
  2501. weight: math.unit(60, "kg"),
  2502. name: "Side",
  2503. image: {
  2504. source: "./media/characters/zephiro/side.svg",
  2505. extra: 2403 / 2279,
  2506. bottom: 0.015
  2507. }
  2508. },
  2509. back: {
  2510. height: math.unit(5 + 3/12, "feet"),
  2511. weight: math.unit(60, "kg"),
  2512. name: "Back",
  2513. image: {
  2514. source: "./media/characters/zephiro/back.svg",
  2515. extra: 2373 / 2244,
  2516. bottom: 0.013
  2517. }
  2518. },
  2519. hand: {
  2520. height: math.unit(0.68, "feet"),
  2521. name: "Hand",
  2522. image: {
  2523. source: "./media/characters/zephiro/hand.svg"
  2524. }
  2525. },
  2526. paw: {
  2527. height: math.unit(1, "feet"),
  2528. name: "Paw",
  2529. image: {
  2530. source: "./media/characters/zephiro/paw.svg"
  2531. }
  2532. },
  2533. beans: {
  2534. height: math.unit(0.93, "feet"),
  2535. name: "Beans",
  2536. image: {
  2537. source: "./media/characters/zephiro/beans.svg"
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Micro",
  2544. height: math.unit(3, "inches")
  2545. },
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(5 + 3 / 12, "feet"),
  2549. default: true
  2550. },
  2551. {
  2552. name: "Macro",
  2553. height: math.unit(118, "feet")
  2554. },
  2555. ]
  2556. ))
  2557. characterMakers.push(() => makeCharacter(
  2558. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2559. {
  2560. front: {
  2561. height: math.unit(5, "feet"),
  2562. weight: math.unit(90, "kg"),
  2563. name: "Front",
  2564. image: {
  2565. source: "./media/characters/fory/front.svg",
  2566. extra: 2862 / 2674,
  2567. bottom: 180 / 3043.8
  2568. }
  2569. },
  2570. back: {
  2571. height: math.unit(5, "feet"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Back",
  2574. image: {
  2575. source: "./media/characters/fory/back.svg",
  2576. extra: 2962 / 2791,
  2577. bottom: 106 / 3071.8
  2578. }
  2579. },
  2580. foot: {
  2581. height: math.unit(2.14, "feet"),
  2582. name: "Foot",
  2583. image: {
  2584. source: "./media/characters/fory/foot.svg"
  2585. }
  2586. },
  2587. },
  2588. [
  2589. {
  2590. name: "Normal",
  2591. height: math.unit(5, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(50, "feet"),
  2596. default: true
  2597. },
  2598. {
  2599. name: "Megamacro",
  2600. height: math.unit(10, "miles")
  2601. },
  2602. {
  2603. name: "Gigamacro",
  2604. height: math.unit(5, "earths")
  2605. },
  2606. ]
  2607. ))
  2608. characterMakers.push(() => makeCharacter(
  2609. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2610. {
  2611. front: {
  2612. height: math.unit(7, "feet"),
  2613. weight: math.unit(90, "kg"),
  2614. name: "Front",
  2615. image: {
  2616. source: "./media/characters/kurrikage/front.svg",
  2617. extra: 1,
  2618. bottom: 0.035
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(7, "feet"),
  2623. weight: math.unit(90, "lb"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/kurrikage/back.svg"
  2627. }
  2628. },
  2629. paw: {
  2630. height: math.unit(1.5, "feet"),
  2631. name: "Paw",
  2632. image: {
  2633. source: "./media/characters/kurrikage/paw.svg"
  2634. }
  2635. },
  2636. staff: {
  2637. height: math.unit(6.7, "feet"),
  2638. name: "Staff",
  2639. image: {
  2640. source: "./media/characters/kurrikage/staff.svg"
  2641. }
  2642. },
  2643. peek: {
  2644. height: math.unit(1.05, "feet"),
  2645. name: "Peeking",
  2646. image: {
  2647. source: "./media/characters/kurrikage/peek.svg",
  2648. bottom: 0.08
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(500, "feet")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(20, "miles")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(6, "feet"),
  2677. weight: math.unit(75, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/shingo/front.svg",
  2681. extra: 706/681,
  2682. bottom: 11/717
  2683. }
  2684. },
  2685. frontAlt: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front (Alt)",
  2689. image: {
  2690. source: "./media/characters/shingo/front-alt.svg",
  2691. extra: 3511 / 3338,
  2692. bottom: 0.005
  2693. }
  2694. },
  2695. paw: {
  2696. height: math.unit(1, "feet"),
  2697. name: "Paw",
  2698. image: {
  2699. source: "./media/characters/shingo/paw.svg"
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Micro",
  2706. height: math.unit(4, "inches")
  2707. },
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(6, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(108, "feet")
  2716. },
  2717. {
  2718. name: "Macro+",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2725. {
  2726. side: {
  2727. height: math.unit(6, "feet"),
  2728. weight: math.unit(75, "kg"),
  2729. name: "Side",
  2730. image: {
  2731. source: "./media/characters/aigey/side.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(200, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(100, "miles")
  2744. },
  2745. ]
  2746. )
  2747. )
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(5 + 5 / 12, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/natasha/front.svg",
  2757. extra: 859 / 824,
  2758. bottom: 23 / 879.6
  2759. }
  2760. },
  2761. frontNsfw: {
  2762. height: math.unit(5 + 5 / 12, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Front (NSFW)",
  2765. image: {
  2766. source: "./media/characters/natasha/front-nsfw.svg",
  2767. extra: 859 / 824,
  2768. bottom: 23 / 879.6
  2769. }
  2770. },
  2771. frontErect: {
  2772. height: math.unit(5 + 5 / 12, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Front (Erect)",
  2775. image: {
  2776. source: "./media/characters/natasha/front-erect.svg",
  2777. extra: 859 / 824,
  2778. bottom: 23 / 879.6
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(5 + 5 / 12, "feet"),
  2783. weight: math.unit(75, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/natasha/back.svg",
  2787. extra: 887.9 / 852.6,
  2788. bottom: 9.7 / 896.4
  2789. }
  2790. },
  2791. backAlt: {
  2792. height: math.unit(5 + 5 / 12, "feet"),
  2793. weight: math.unit(75, "kg"),
  2794. name: "Back (Alt)",
  2795. image: {
  2796. source: "./media/characters/natasha/back-alt.svg",
  2797. extra: 1236.7 / 1192,
  2798. bottom: 22.3 / 1258.2
  2799. }
  2800. },
  2801. dick: {
  2802. height: math.unit(1.772, "feet"),
  2803. name: "Dick",
  2804. image: {
  2805. source: "./media/characters/natasha/dick.svg"
  2806. }
  2807. },
  2808. paw: {
  2809. height: math.unit(0.250, "meters"),
  2810. name: "Paw",
  2811. image: {
  2812. source: "./media/characters/natasha/paw.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(5 + 5 / 12, "feet")
  2820. },
  2821. {
  2822. name: "Large",
  2823. height: math.unit(12, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(100, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro+",
  2832. height: math.unit(260, "feet")
  2833. },
  2834. {
  2835. name: "Macro++",
  2836. height: math.unit(1, "mile")
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/malik/front.svg"
  2849. }
  2850. },
  2851. side: {
  2852. height: math.unit(6, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Side",
  2855. image: {
  2856. source: "./media/characters/malik/side.svg",
  2857. extra: 1.1539
  2858. }
  2859. },
  2860. back: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/malik/back.svg"
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(156, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro+",
  2877. height: math.unit(1188, "feet")
  2878. },
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/sefer/front.svg",
  2890. extra: 848 / 659,
  2891. bottom: 28.3 / 876.442
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/sefer/back.svg",
  2900. extra: 864 / 695,
  2901. bottom: 10 / 871
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(75, "kg"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/sefer/front-dressed.svg",
  2910. extra: 839 / 653,
  2911. bottom: 37.6 / 878
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(6, "feet"),
  2919. default: true
  2920. },
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2925. {
  2926. body: {
  2927. height: math.unit(2.2428, "meter"),
  2928. weight: math.unit(124.738, "kg"),
  2929. name: "Body",
  2930. image: {
  2931. extra: 1225 / 1050,
  2932. source: "./media/characters/north/front.svg"
  2933. }
  2934. }
  2935. },
  2936. [
  2937. {
  2938. name: "Micro",
  2939. height: math.unit(4, "inches")
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(63, "meters")
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(101, "miles"),
  2948. default: true
  2949. }
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2954. {
  2955. angled: {
  2956. height: math.unit(4, "meter"),
  2957. weight: math.unit(150, "kg"),
  2958. name: "Angled",
  2959. image: {
  2960. source: "./media/characters/talan/angled-sfw.svg",
  2961. bottom: 29 / 3734
  2962. }
  2963. },
  2964. angledNsfw: {
  2965. height: math.unit(4, "meter"),
  2966. weight: math.unit(150, "kg"),
  2967. name: "Angled (NSFW)",
  2968. image: {
  2969. source: "./media/characters/talan/angled-nsfw.svg",
  2970. bottom: 29 / 3734
  2971. }
  2972. },
  2973. frontNsfw: {
  2974. height: math.unit(4, "meter"),
  2975. weight: math.unit(150, "kg"),
  2976. name: "Front (NSFW)",
  2977. image: {
  2978. source: "./media/characters/talan/front-nsfw.svg",
  2979. bottom: 29 / 3734
  2980. }
  2981. },
  2982. sideNsfw: {
  2983. height: math.unit(4, "meter"),
  2984. weight: math.unit(150, "kg"),
  2985. name: "Side (NSFW)",
  2986. image: {
  2987. source: "./media/characters/talan/side-nsfw.svg",
  2988. bottom: 29 / 3734
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(4, "meter"),
  2993. weight: math.unit(150, "kg"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/talan/back.svg"
  2997. }
  2998. },
  2999. dickBottom: {
  3000. height: math.unit(0.621, "meter"),
  3001. name: "Dick (Bottom)",
  3002. image: {
  3003. source: "./media/characters/talan/dick-bottom.svg"
  3004. }
  3005. },
  3006. dickTop: {
  3007. height: math.unit(0.621, "meter"),
  3008. name: "Dick (Top)",
  3009. image: {
  3010. source: "./media/characters/talan/dick-top.svg"
  3011. }
  3012. },
  3013. dickSide: {
  3014. height: math.unit(0.305, "meter"),
  3015. name: "Dick (Side)",
  3016. image: {
  3017. source: "./media/characters/talan/dick-side.svg"
  3018. }
  3019. },
  3020. dickFront: {
  3021. height: math.unit(0.305, "meter"),
  3022. name: "Dick (Front)",
  3023. image: {
  3024. source: "./media/characters/talan/dick-front.svg"
  3025. }
  3026. },
  3027. },
  3028. [
  3029. {
  3030. name: "Normal",
  3031. height: math.unit(4, "meters")
  3032. },
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(100, "meters")
  3036. },
  3037. {
  3038. name: "Megamacro",
  3039. height: math.unit(2, "miles"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Gigamacro",
  3044. height: math.unit(5000, "miles")
  3045. },
  3046. {
  3047. name: "Teramacro",
  3048. height: math.unit(100, "parsecs")
  3049. }
  3050. ]
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3054. {
  3055. front: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/gael'rathus/front.svg"
  3061. }
  3062. },
  3063. frontAlt: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(90, "kg"),
  3066. name: "Front (alt)",
  3067. image: {
  3068. source: "./media/characters/gael'rathus/front-alt.svg"
  3069. }
  3070. },
  3071. frontAlt2: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front (alt 2)",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(9, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Large",
  3088. height: math.unit(25, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(0.25, "miles")
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(10, "miles")
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3102. {
  3103. side: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(140, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/sosha/side.svg",
  3109. bottom: 0.042
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. }
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3123. {
  3124. side: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(170, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/runnola/side.svg",
  3130. extra: 741 / 448,
  3131. bottom: 0.05
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Small",
  3138. height: math.unit(3, "feet")
  3139. },
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(5 + 5 / 12, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Big",
  3147. height: math.unit(10, "feet")
  3148. },
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(50, "kg"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/kurribird/front.svg",
  3160. bottom: 0.015
  3161. }
  3162. },
  3163. frontAlt: {
  3164. height: math.unit(1.5, "meter"),
  3165. weight: math.unit(50, "kg"),
  3166. name: "Front (Alt)",
  3167. image: {
  3168. source: "./media/characters/kurribird/front-alt.svg",
  3169. extra: 1.45
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Normal",
  3176. height: math.unit(7, "feet")
  3177. },
  3178. {
  3179. name: "Big",
  3180. height: math.unit(12, "feet"),
  3181. default: true
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(1500, "feet")
  3186. },
  3187. {
  3188. name: "Megamacro",
  3189. height: math.unit(2, "miles")
  3190. }
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(2, "meter"),
  3198. weight: math.unit(80, "kg"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/elbial/front.svg",
  3202. extra: 1643 / 1556,
  3203. bottom: 60.2 / 1696
  3204. }
  3205. },
  3206. side: {
  3207. height: math.unit(2, "meter"),
  3208. weight: math.unit(80, "kg"),
  3209. name: "Side",
  3210. image: {
  3211. source: "./media/characters/elbial/side.svg",
  3212. extra: 1630 / 1565,
  3213. bottom: 71.5 / 1697
  3214. }
  3215. },
  3216. back: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(80, "kg"),
  3219. name: "Back",
  3220. image: {
  3221. source: "./media/characters/elbial/back.svg",
  3222. extra: 1668 / 1595,
  3223. bottom: 5.6 / 1672
  3224. }
  3225. },
  3226. frontDressed: {
  3227. height: math.unit(2, "meter"),
  3228. weight: math.unit(80, "kg"),
  3229. name: "Front (Dressed)",
  3230. image: {
  3231. source: "./media/characters/elbial/front-dressed.svg",
  3232. extra: 1653 / 1584,
  3233. bottom: 57 / 1708
  3234. }
  3235. },
  3236. genitals: {
  3237. height: math.unit(2 / 3.367, "meter"),
  3238. name: "Genitals",
  3239. image: {
  3240. source: "./media/characters/elbial/genitals.svg"
  3241. }
  3242. },
  3243. },
  3244. [
  3245. {
  3246. name: "Large",
  3247. height: math.unit(100, "feet")
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(500, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Megamacro",
  3256. height: math.unit(10, "miles")
  3257. },
  3258. {
  3259. name: "Gigamacro",
  3260. height: math.unit(25000, "miles")
  3261. },
  3262. {
  3263. name: "Full-Size",
  3264. height: math.unit(8000000, "gigaparsecs")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(60, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/noah/front.svg"
  3277. }
  3278. },
  3279. talons: {
  3280. height: math.unit(0.315, "meter"),
  3281. name: "Talons",
  3282. image: {
  3283. source: "./media/characters/noah/talons.svg"
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Large",
  3290. height: math.unit(50, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(750, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(50, "miles")
  3300. },
  3301. {
  3302. name: "Gigamacro",
  3303. height: math.unit(100000, "miles")
  3304. },
  3305. {
  3306. name: "Full-Size",
  3307. height: math.unit(3000000000, "miles")
  3308. }
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/natalya/front.svg"
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(80, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/natalya/back.svg"
  3328. }
  3329. }
  3330. },
  3331. [
  3332. {
  3333. name: "Normal",
  3334. height: math.unit(150, "feet"),
  3335. default: true
  3336. },
  3337. {
  3338. name: "Megamacro",
  3339. height: math.unit(5, "miles")
  3340. },
  3341. {
  3342. name: "Full-Size",
  3343. height: math.unit(600, "kiloparsecs")
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(50, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/erestrebah/front.svg",
  3356. extra: 208 / 193,
  3357. bottom: 0.055
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(50, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/erestrebah/back.svg",
  3366. extra: 1.3
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(10, "feet")
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(50, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(300, "feet")
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(750, "feet")
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(3, "miles")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(80, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/jennifer/front.svg",
  3403. bottom: 0.11,
  3404. extra: 1.16
  3405. }
  3406. },
  3407. frontAlt: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(80, "kg"),
  3410. name: "Front (Alt)",
  3411. image: {
  3412. source: "./media/characters/jennifer/front-alt.svg"
  3413. }
  3414. }
  3415. },
  3416. [
  3417. {
  3418. name: "Canon Height",
  3419. height: math.unit(120, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Macro+",
  3424. height: math.unit(300, "feet")
  3425. },
  3426. {
  3427. name: "Megamacro",
  3428. height: math.unit(20000, "feet")
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kalista/front.svg",
  3441. extra: 1947 / 1700,
  3442. bottom: 76.6 / 1412.98
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(50, "kg"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/kalista/back.svg",
  3451. extra: 1366 / 1156,
  3452. bottom: 33.9 / 1362.78
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Uncomfortably Small",
  3459. height: math.unit(10, "feet")
  3460. },
  3461. {
  3462. name: "Small",
  3463. height: math.unit(30, "feet")
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(100, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro+",
  3472. height: math.unit(2000, "feet")
  3473. },
  3474. {
  3475. name: "True Form",
  3476. height: math.unit(8924, "miles")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(120, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/ggv/front.svg"
  3489. }
  3490. },
  3491. side: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(120, "kg"),
  3494. name: "Side",
  3495. image: {
  3496. source: "./media/characters/ggv/side.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Extremely Puny",
  3503. height: math.unit(9 + 5 / 12, "feet")
  3504. },
  3505. {
  3506. name: "Horribly Small",
  3507. height: math.unit(47.7, "miles"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Reasonably Sized",
  3512. height: math.unit(25000, "parsecs")
  3513. },
  3514. {
  3515. name: "Slightly Uncompressed",
  3516. height: math.unit(7.77e31, "parsecs")
  3517. },
  3518. {
  3519. name: "Omniversal",
  3520. height: math.unit(1e300, "meters")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(75, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/napalm/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(75, "lb"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/napalm/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Standard",
  3547. height: math.unit(55, "feet"),
  3548. default: true
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(7 + 5 / 6, "feet"),
  3557. weight: math.unit(325, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/asana/front.svg",
  3561. extra: 1133 / 1060,
  3562. bottom: 15.2 / 1148.6
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(7 + 5 / 6, "feet"),
  3567. weight: math.unit(325, "lb"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/asana/back.svg",
  3571. extra: 1114 / 1043,
  3572. bottom: 5 / 1120
  3573. }
  3574. },
  3575. dressedDark: {
  3576. height: math.unit(7 + 5 / 6, "feet"),
  3577. weight: math.unit(325, "lb"),
  3578. name: "Dressed (Dark)",
  3579. image: {
  3580. source: "./media/characters/asana/dressed-dark.svg",
  3581. extra: 1133 / 1060,
  3582. bottom: 15.2 / 1148.6
  3583. }
  3584. },
  3585. dressedLight: {
  3586. height: math.unit(7 + 5 / 6, "feet"),
  3587. weight: math.unit(325, "lb"),
  3588. name: "Dressed (Light)",
  3589. image: {
  3590. source: "./media/characters/asana/dressed-light.svg",
  3591. extra: 1133 / 1060,
  3592. bottom: 15.2 / 1148.6
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Standard",
  3599. height: math.unit(7 + 5 / 6, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(10, "meters")
  3605. },
  3606. {
  3607. name: "Macro",
  3608. height: math.unit(2500, "meters")
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(5e6, "meters")
  3613. },
  3614. {
  3615. name: "Examacro",
  3616. height: math.unit(5e12, "lightyears")
  3617. },
  3618. {
  3619. name: "Max Size",
  3620. height: math.unit(1e31, "lightyears")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(60, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/ebony/front.svg",
  3633. bottom: 0.03,
  3634. extra: 1045 / 810 + 0.03
  3635. }
  3636. },
  3637. side: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(60, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/ebony/side.svg",
  3643. bottom: 0.03,
  3644. extra: 1045 / 810 + 0.03
  3645. }
  3646. },
  3647. back: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(60, "kg"),
  3650. name: "Back",
  3651. image: {
  3652. source: "./media/characters/ebony/back.svg",
  3653. bottom: 0.01,
  3654. extra: 1045 / 810 + 0.01
  3655. }
  3656. },
  3657. },
  3658. [
  3659. // TODO check why I did this lol
  3660. {
  3661. name: "Standard",
  3662. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(200, "feet")
  3668. },
  3669. {
  3670. name: "Gigamacro",
  3671. height: math.unit(13000, "km")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(6, "feet"),
  3680. weight: math.unit(175, "lb"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/mountain/front.svg",
  3684. extra: 972 / 955,
  3685. bottom: 64 / 1036.6
  3686. }
  3687. },
  3688. back: {
  3689. height: math.unit(6, "feet"),
  3690. weight: math.unit(175, "lb"),
  3691. name: "Back",
  3692. image: {
  3693. source: "./media/characters/mountain/back.svg",
  3694. extra: 970 / 950,
  3695. bottom: 28.25 / 999
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Large",
  3702. height: math.unit(20, "meters")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(300, "meters")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(10000, "km"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Examacro",
  3715. height: math.unit(10e9, "lightyears")
  3716. }
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3721. {
  3722. front: {
  3723. height: math.unit(8, "feet"),
  3724. weight: math.unit(500, "lb"),
  3725. name: "Front",
  3726. image: {
  3727. source: "./media/characters/rick/front.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(8, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(5, "km")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(120, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/ona/front.svg"
  3752. }
  3753. },
  3754. frontAlt: {
  3755. height: math.unit(8, "feet"),
  3756. weight: math.unit(120, "lb"),
  3757. name: "Front (Alt)",
  3758. image: {
  3759. source: "./media/characters/ona/front-alt.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/ona/back.svg"
  3768. }
  3769. },
  3770. foot: {
  3771. height: math.unit(1.1, "feet"),
  3772. name: "Foot",
  3773. image: {
  3774. source: "./media/characters/ona/foot.svg"
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(70, "km"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(681818, "miles")
  3787. },
  3788. {
  3789. name: "Examacro",
  3790. height: math.unit(3800000, "lightyears")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(12, "feet"),
  3799. weight: math.unit(3000, "lb"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/mech/front.svg",
  3803. extra: 2900 / 2770,
  3804. bottom: 110 / 3010
  3805. }
  3806. },
  3807. back: {
  3808. height: math.unit(12, "feet"),
  3809. weight: math.unit(3000, "lb"),
  3810. name: "Back",
  3811. image: {
  3812. source: "./media/characters/mech/back.svg",
  3813. extra: 3011 / 2890,
  3814. bottom: 94 / 3105
  3815. }
  3816. },
  3817. maw: {
  3818. height: math.unit(3.07, "feet"),
  3819. name: "Maw",
  3820. image: {
  3821. source: "./media/characters/mech/maw.svg"
  3822. }
  3823. },
  3824. head: {
  3825. height: math.unit(2.82, "feet"),
  3826. name: "Head",
  3827. image: {
  3828. source: "./media/characters/mech/head.svg"
  3829. }
  3830. },
  3831. dick: {
  3832. height: math.unit(1.43, "feet"),
  3833. name: "Dick",
  3834. image: {
  3835. source: "./media/characters/mech/dick.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Normal",
  3842. height: math.unit(12, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(300, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro+",
  3851. height: math.unit(1500, "feet")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(1.3, "meter"),
  3860. weight: math.unit(30, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/gregory/front.svg",
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(1.3, "meter"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(20, "meter")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2.8, "meter"),
  3884. weight: math.unit(200, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/elory/front.svg",
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(2.8, "meter"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(38, "meter")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(470, "feet"),
  3908. weight: math.unit(924, "tons"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/angelpatamon/front.svg",
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(470, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Deity Size I",
  3923. height: math.unit(28651.2, "km")
  3924. },
  3925. {
  3926. name: "Deity Size II",
  3927. height: math.unit(171907.2, "km")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3933. {
  3934. side: {
  3935. height: math.unit(7.2, "meter"),
  3936. weight: math.unit(8.2, "tons"),
  3937. name: "Side",
  3938. image: {
  3939. source: "./media/characters/cryae/side.svg",
  3940. extra: 3500 / 1500
  3941. }
  3942. }
  3943. },
  3944. [
  3945. {
  3946. name: "Normal",
  3947. height: math.unit(7.2, "meter"),
  3948. default: true
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(175, "lb"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/xera/front.svg",
  3961. extra: 2377 / 1972,
  3962. bottom: 75.5 / 2452
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(175, "lb"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/xera/side.svg",
  3971. extra: 2345 / 2019,
  3972. bottom: 39.7 / 2384
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(175, "lb"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/xera/back.svg",
  3981. extra: 2095 / 1984,
  3982. bottom: 67 / 2166
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Small",
  3989. height: math.unit(10, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(500, "meters"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro+",
  3998. height: math.unit(10, "km")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(25000, "km")
  4003. },
  4004. {
  4005. name: "Teramacro",
  4006. height: math.unit(3e6, "km")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(175, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/nebula/front.svg",
  4019. extra: 2566 / 2362,
  4020. bottom: 81 / 2644
  4021. }
  4022. }
  4023. },
  4024. [
  4025. {
  4026. name: "Small",
  4027. height: math.unit(4.5, "meters")
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(1500, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(150, "km")
  4037. },
  4038. {
  4039. name: "Gigamacro",
  4040. height: math.unit(27000, "km")
  4041. }
  4042. ]
  4043. ))
  4044. characterMakers.push(() => makeCharacter(
  4045. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4046. {
  4047. front: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(225, "lb"),
  4050. name: "Front",
  4051. image: {
  4052. source: "./media/characters/abysgar/front.svg"
  4053. }
  4054. }
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(4.5, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(1250, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(125, "km")
  4069. },
  4070. {
  4071. name: "Gigamacro",
  4072. height: math.unit(26000, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(180, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/yakuz/front.svg"
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Small",
  4091. height: math.unit(5, "meters")
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(1500, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(200, "km")
  4101. },
  4102. {
  4103. name: "Gigamacro",
  4104. height: math.unit(100000, "km")
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/mirova/front.svg",
  4117. extra: 3334 / 3071,
  4118. bottom: 42 / 3375.6
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(5, "meters")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(900, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(135, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(20000, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4144. {
  4145. side: {
  4146. height: math.unit(28.35, "feet"),
  4147. weight: math.unit(99.75, "tons"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/asana-mech/side.svg",
  4151. extra: 923 / 699,
  4152. bottom: 50 / 975
  4153. }
  4154. },
  4155. chaingun: {
  4156. height: math.unit(7, "feet"),
  4157. weight: math.unit(2400, "lb"),
  4158. name: "Chaingun",
  4159. image: {
  4160. source: "./media/characters/asana-mech/chaingun.svg"
  4161. }
  4162. },
  4163. laser: {
  4164. height: math.unit(7.12, "feet"),
  4165. weight: math.unit(2000, "lb"),
  4166. name: "Laser",
  4167. image: {
  4168. source: "./media/characters/asana-mech/laser.svg"
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(28.35, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(2500, "feet")
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(25, "miles")
  4185. },
  4186. {
  4187. name: "Examacro",
  4188. height: math.unit(6e8, "lightyears")
  4189. },
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(5, "meters"),
  4197. weight: math.unit(1000, "kg"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/asche/front.svg",
  4201. extra: 1258 / 1190,
  4202. bottom: 47 / 1305
  4203. }
  4204. },
  4205. frontUnderwear: {
  4206. height: math.unit(5, "meters"),
  4207. weight: math.unit(1000, "kg"),
  4208. name: "Front (Underwear)",
  4209. image: {
  4210. source: "./media/characters/asche/front-underwear.svg",
  4211. extra: 1258 / 1190,
  4212. bottom: 47 / 1305
  4213. }
  4214. },
  4215. frontDressed: {
  4216. height: math.unit(5, "meters"),
  4217. weight: math.unit(1000, "kg"),
  4218. name: "Front (Dressed)",
  4219. image: {
  4220. source: "./media/characters/asche/front-dressed.svg",
  4221. extra: 1258 / 1190,
  4222. bottom: 47 / 1305
  4223. }
  4224. },
  4225. frontArmor: {
  4226. height: math.unit(5, "meters"),
  4227. weight: math.unit(1000, "kg"),
  4228. name: "Front (Armored)",
  4229. image: {
  4230. source: "./media/characters/asche/front-armored.svg",
  4231. extra: 1374 / 1308,
  4232. bottom: 23 / 1397
  4233. }
  4234. },
  4235. mp724: {
  4236. height: math.unit(0.96, "meters"),
  4237. weight: math.unit(38, "kg"),
  4238. name: "H&K MP724",
  4239. image: {
  4240. source: "./media/characters/asche/h&k-mp724.svg"
  4241. }
  4242. },
  4243. side: {
  4244. height: math.unit(5, "meters"),
  4245. weight: math.unit(1000, "kg"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/asche/side.svg",
  4249. extra: 1717 / 1609,
  4250. bottom: 0.005
  4251. }
  4252. },
  4253. back: {
  4254. height: math.unit(5, "meters"),
  4255. weight: math.unit(1000, "kg"),
  4256. name: "Back",
  4257. image: {
  4258. source: "./media/characters/asche/back.svg",
  4259. extra: 1570 / 1501
  4260. }
  4261. },
  4262. },
  4263. [
  4264. {
  4265. name: "DEFCON 5",
  4266. height: math.unit(5, "meters")
  4267. },
  4268. {
  4269. name: "DEFCON 4",
  4270. height: math.unit(500, "meters"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "DEFCON 3",
  4275. height: math.unit(5, "km")
  4276. },
  4277. {
  4278. name: "DEFCON 2",
  4279. height: math.unit(500, "km")
  4280. },
  4281. {
  4282. name: "DEFCON 1",
  4283. height: math.unit(500000, "km")
  4284. },
  4285. {
  4286. name: "DEFCON 0",
  4287. height: math.unit(3, "gigaparsecs")
  4288. },
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(2, "meters"),
  4296. weight: math.unit(76, "kg"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/gale/front.svg"
  4300. }
  4301. },
  4302. frontAlt1: {
  4303. height: math.unit(2, "meters"),
  4304. weight: math.unit(76, "kg"),
  4305. name: "Front (Alt 1)",
  4306. image: {
  4307. source: "./media/characters/gale/front-alt-1.svg"
  4308. }
  4309. },
  4310. frontAlt2: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front (Alt 2)",
  4314. image: {
  4315. source: "./media/characters/gale/front-alt-2.svg"
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Normal",
  4322. height: math.unit(7, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(150, "feet"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro+",
  4331. height: math.unit(300, "feet")
  4332. },
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(2, "meters"),
  4340. weight: math.unit(76, "kg"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/draylen/front.svg"
  4344. }
  4345. }
  4346. },
  4347. [
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(150, "feet"),
  4351. default: true
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(7 + 9 / 12, "feet"),
  4360. weight: math.unit(379, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/chez/front.svg"
  4364. }
  4365. },
  4366. side: {
  4367. height: math.unit(7 + 9 / 12, "feet"),
  4368. weight: math.unit(379, "lbs"),
  4369. name: "Side",
  4370. image: {
  4371. source: "./media/characters/chez/side.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(7 + 9 / 12, "feet"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "God King",
  4383. height: math.unit(9750000, "meters")
  4384. }
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4389. {
  4390. front: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(275, "lbs"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/kaylum/front.svg",
  4396. bottom: 0.01,
  4397. extra: 1166 / 1031
  4398. }
  4399. },
  4400. frontWingless: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(275, "lbs"),
  4403. name: "Front (Wingless)",
  4404. image: {
  4405. source: "./media/characters/kaylum/front-wingless.svg",
  4406. bottom: 0.01,
  4407. extra: 1117 / 1031
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(3.05, "meters")
  4415. },
  4416. {
  4417. name: "Master",
  4418. height: math.unit(5.5, "meters")
  4419. },
  4420. {
  4421. name: "Rampage",
  4422. height: math.unit(19, "meters")
  4423. },
  4424. {
  4425. name: "Macro Lite",
  4426. height: math.unit(37, "meters")
  4427. },
  4428. {
  4429. name: "Hyper Predator",
  4430. height: math.unit(61, "meters")
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(138, "meters"),
  4435. default: true
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(150, "lbs"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/geta/front.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Micro",
  4454. height: math.unit(3, "inches"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(5 + 5 / 12, "feet")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(300, "lbs"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/tyrnn/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Main Height",
  4478. height: math.unit(355, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Fave. Height",
  4483. height: math.unit(2400, "feet")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(300, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/appledectomy/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(2500, "feet")
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Gigamacro",
  4511. height: math.unit(5000, "miles")
  4512. },
  4513. {
  4514. name: "Teramacro",
  4515. height: math.unit(250000, "miles")
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(200, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/vulpes/front.svg",
  4528. extra: 573 / 543,
  4529. bottom: 0.033
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(200, "lbs"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/vulpes/side.svg",
  4538. extra: 577 / 549,
  4539. bottom: 11 / 588
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(200, "lbs"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/vulpes/back.svg",
  4548. extra: 573 / 549,
  4549. bottom: 20 / 593
  4550. }
  4551. },
  4552. feet: {
  4553. height: math.unit(1.276, "feet"),
  4554. name: "Feet",
  4555. image: {
  4556. source: "./media/characters/vulpes/feet.svg"
  4557. }
  4558. },
  4559. maw: {
  4560. height: math.unit(1.18, "feet"),
  4561. name: "Maw",
  4562. image: {
  4563. source: "./media/characters/vulpes/maw.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Micro",
  4570. height: math.unit(2, "inches")
  4571. },
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(6.3, "feet")
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(850, "feet")
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(7500, "feet"),
  4583. default: true
  4584. },
  4585. {
  4586. name: "Gigamacro",
  4587. height: math.unit(570000, "miles")
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(210, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/rain-fallen/front.svg"
  4600. }
  4601. },
  4602. side: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(210, "lbs"),
  4605. name: "Side",
  4606. image: {
  4607. source: "./media/characters/rain-fallen/side.svg"
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/back.svg"
  4616. }
  4617. },
  4618. feral: {
  4619. height: math.unit(9, "feet"),
  4620. weight: math.unit(700, "lbs"),
  4621. name: "Feral",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/feral.svg"
  4624. }
  4625. },
  4626. },
  4627. [
  4628. {
  4629. name: "Meddling with Mortals",
  4630. height: math.unit(8 + 8/12, "feet")
  4631. },
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(5, "meter")
  4635. },
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(150, "meter"),
  4639. default: true
  4640. },
  4641. {
  4642. name: "Megamacro",
  4643. height: math.unit(278e6, "meter")
  4644. },
  4645. {
  4646. name: "Gigamacro",
  4647. height: math.unit(2e9, "meter")
  4648. },
  4649. {
  4650. name: "Teramacro",
  4651. height: math.unit(8e12, "meter")
  4652. },
  4653. {
  4654. name: "Devourer",
  4655. height: math.unit(14, "zettameters")
  4656. },
  4657. {
  4658. name: "Scarlet King",
  4659. height: math.unit(18, "yottameters")
  4660. },
  4661. {
  4662. name: "Void",
  4663. height: math.unit(1e88, "yottameters")
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4669. {
  4670. standing: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Standing",
  4674. image: {
  4675. source: "./media/characters/zaakira/standing.svg",
  4676. extra: 1599/1504,
  4677. bottom: 39/1638
  4678. }
  4679. },
  4680. laying: {
  4681. height: math.unit(3, "feet"),
  4682. weight: math.unit(180, "lbs"),
  4683. name: "Laying",
  4684. image: {
  4685. source: "./media/characters/zaakira/laying.svg"
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(12, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(279, "feet"),
  4697. default: true
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4703. {
  4704. femSfw: {
  4705. height: math.unit(8, "feet"),
  4706. weight: math.unit(350, "lb"),
  4707. name: "Fem",
  4708. image: {
  4709. source: "./media/characters/sigvald/fem-sfw.svg",
  4710. extra: 182 / 164,
  4711. bottom: 8.7 / 190.5
  4712. }
  4713. },
  4714. femNsfw: {
  4715. height: math.unit(8, "feet"),
  4716. weight: math.unit(350, "lb"),
  4717. name: "Fem (NSFW)",
  4718. image: {
  4719. source: "./media/characters/sigvald/fem-nsfw.svg",
  4720. extra: 182 / 164,
  4721. bottom: 8.7 / 190.5
  4722. }
  4723. },
  4724. maleNsfw: {
  4725. height: math.unit(8, "feet"),
  4726. weight: math.unit(350, "lb"),
  4727. name: "Male (NSFW)",
  4728. image: {
  4729. source: "./media/characters/sigvald/male-nsfw.svg",
  4730. extra: 182 / 164,
  4731. bottom: 8.7 / 190.5
  4732. }
  4733. },
  4734. hermNsfw: {
  4735. height: math.unit(8, "feet"),
  4736. weight: math.unit(350, "lb"),
  4737. name: "Herm (NSFW)",
  4738. image: {
  4739. source: "./media/characters/sigvald/herm-nsfw.svg",
  4740. extra: 182 / 164,
  4741. bottom: 8.7 / 190.5
  4742. }
  4743. },
  4744. dick: {
  4745. height: math.unit(2.36, "feet"),
  4746. name: "Dick",
  4747. image: {
  4748. source: "./media/characters/sigvald/dick.svg"
  4749. }
  4750. },
  4751. eye: {
  4752. height: math.unit(0.31, "feet"),
  4753. name: "Eye",
  4754. image: {
  4755. source: "./media/characters/sigvald/eye.svg"
  4756. }
  4757. },
  4758. mouth: {
  4759. height: math.unit(0.92, "feet"),
  4760. name: "Mouth",
  4761. image: {
  4762. source: "./media/characters/sigvald/mouth.svg"
  4763. }
  4764. },
  4765. paws: {
  4766. height: math.unit(2.2, "feet"),
  4767. name: "Paws",
  4768. image: {
  4769. source: "./media/characters/sigvald/paws.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(8, "feet")
  4777. },
  4778. {
  4779. name: "Large",
  4780. height: math.unit(12, "feet")
  4781. },
  4782. {
  4783. name: "Larger",
  4784. height: math.unit(20, "feet")
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(150, "feet")
  4789. },
  4790. {
  4791. name: "Macro+",
  4792. height: math.unit(200, "feet"),
  4793. default: true
  4794. },
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4799. {
  4800. side: {
  4801. height: math.unit(12, "feet"),
  4802. weight: math.unit(2000, "kg"),
  4803. name: "Side",
  4804. image: {
  4805. source: "./media/characters/scott/side.svg",
  4806. extra: 754 / 724,
  4807. bottom: 0.069
  4808. }
  4809. },
  4810. upright: {
  4811. height: math.unit(12, "feet"),
  4812. weight: math.unit(2000, "kg"),
  4813. name: "Upright",
  4814. image: {
  4815. source: "./media/characters/scott/upright.svg",
  4816. extra: 3881 / 3722,
  4817. bottom: 0.05
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(12, "feet"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4831. {
  4832. side: {
  4833. height: math.unit(8, "meters"),
  4834. weight: math.unit(84755, "lbs"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/tobias/side.svg",
  4838. extra: 1474 / 1096,
  4839. bottom: 38.9 / 1513.1235
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(8, "meters"),
  4847. default: true
  4848. },
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4853. {
  4854. front: {
  4855. height: math.unit(5.5, "feet"),
  4856. weight: math.unit(400, "lbs"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/kieran/front.svg",
  4860. extra: 2694 / 2364,
  4861. bottom: 217 / 2908
  4862. }
  4863. },
  4864. side: {
  4865. height: math.unit(5.5, "feet"),
  4866. weight: math.unit(400, "lbs"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/kieran/side.svg",
  4870. extra: 875 / 777,
  4871. bottom: 84.6 / 959
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(5.5, "feet"),
  4879. default: true
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4885. {
  4886. side: {
  4887. height: math.unit(2, "meters"),
  4888. weight: math.unit(70, "kg"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/sanya/side.svg",
  4892. bottom: 0.02,
  4893. extra: 1.02
  4894. }
  4895. },
  4896. },
  4897. [
  4898. {
  4899. name: "Small",
  4900. height: math.unit(2, "meters")
  4901. },
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(3, "meters")
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(16, "meters"),
  4909. default: true
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(2, "meters"),
  4918. weight: math.unit(120, "kg"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/miranda/front.svg",
  4922. extra: 195 / 185,
  4923. bottom: 10.9 / 206.5
  4924. }
  4925. },
  4926. back: {
  4927. height: math.unit(2, "meters"),
  4928. weight: math.unit(120, "kg"),
  4929. name: "Back",
  4930. image: {
  4931. source: "./media/characters/miranda/back.svg",
  4932. extra: 201 / 193,
  4933. bottom: 2.3 / 203.7
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(10, "feet"),
  4941. default: true
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "James", species: ["deer"], tags: ["anthro"] },
  4947. {
  4948. side: {
  4949. height: math.unit(2, "meters"),
  4950. weight: math.unit(100, "kg"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/james/front.svg",
  4954. extra: 10 / 8.5
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(8.5, "feet"),
  4962. default: true
  4963. }
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4968. {
  4969. side: {
  4970. height: math.unit(9.5, "feet"),
  4971. weight: math.unit(2500, "lbs"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/heather/side.svg"
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(9.5, "feet"),
  4982. default: true
  4983. }
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4988. {
  4989. side: {
  4990. height: math.unit(6.5, "feet"),
  4991. weight: math.unit(400, "lbs"),
  4992. name: "Side",
  4993. image: {
  4994. source: "./media/characters/lukas/side.svg",
  4995. extra: 7.25 / 6.5
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(6.5, "feet"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5009. {
  5010. side: {
  5011. height: math.unit(5, "feet"),
  5012. weight: math.unit(3000, "lbs"),
  5013. name: "Side",
  5014. image: {
  5015. source: "./media/characters/louise/side.svg"
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(5, "feet"),
  5023. default: true
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5029. {
  5030. side: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(150, "lbs"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/ramona/side.svg"
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(5.3, "meters"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(20, "stories")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(50, "stories")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5057. {
  5058. standing: {
  5059. height: math.unit(5.75, "feet"),
  5060. weight: math.unit(160, "lbs"),
  5061. name: "Standing",
  5062. image: {
  5063. source: "./media/characters/deerpuff/standing.svg",
  5064. extra: 682 / 624
  5065. }
  5066. },
  5067. sitting: {
  5068. height: math.unit(5.75 / 1.79, "feet"),
  5069. weight: math.unit(160, "lbs"),
  5070. name: "Sitting",
  5071. image: {
  5072. source: "./media/characters/deerpuff/sitting.svg",
  5073. bottom: 44 / 400,
  5074. extra: 1
  5075. }
  5076. },
  5077. taurLaying: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(400, "lbs"),
  5080. name: "Taur (Laying)",
  5081. image: {
  5082. source: "./media/characters/deerpuff/taur-laying.svg"
  5083. }
  5084. },
  5085. },
  5086. [
  5087. {
  5088. name: "Puffball",
  5089. height: math.unit(6, "inches")
  5090. },
  5091. {
  5092. name: "Normalpuff",
  5093. height: math.unit(5.75, "feet")
  5094. },
  5095. {
  5096. name: "Macropuff",
  5097. height: math.unit(1500, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Megapuff",
  5102. height: math.unit(500, "miles")
  5103. },
  5104. {
  5105. name: "Gigapuff",
  5106. height: math.unit(250000, "miles")
  5107. },
  5108. {
  5109. name: "Omegapuff",
  5110. height: math.unit(1000, "lightyears")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5116. {
  5117. stomping: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(170, "lbs"),
  5120. name: "Stomping",
  5121. image: {
  5122. source: "./media/characters/vivian/stomping.svg"
  5123. }
  5124. },
  5125. sitting: {
  5126. height: math.unit(6 / 1.75, "feet"),
  5127. weight: math.unit(170, "lbs"),
  5128. name: "Sitting",
  5129. image: {
  5130. source: "./media/characters/vivian/sitting.svg",
  5131. bottom: 1 / 6.4,
  5132. extra: 1,
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(7, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(10, "stories")
  5145. },
  5146. {
  5147. name: "Macro+",
  5148. height: math.unit(30, "stories")
  5149. },
  5150. {
  5151. name: "Megamacro",
  5152. height: math.unit(10, "miles")
  5153. },
  5154. {
  5155. name: "Megamacro+",
  5156. height: math.unit(2750000, "meters")
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5162. {
  5163. front: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(160, "lbs"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/prince/front.svg",
  5169. extra: 3400 / 3000
  5170. }
  5171. },
  5172. jumping: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(160, "lbs"),
  5175. name: "Jumping",
  5176. image: {
  5177. source: "./media/characters/prince/jump.svg",
  5178. extra: 2555 / 2134
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(7.75, "feet"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Not cute",
  5190. height: math.unit(17, "feet")
  5191. },
  5192. {
  5193. name: "I said NOT",
  5194. height: math.unit(91, "feet")
  5195. },
  5196. {
  5197. name: "Please stop",
  5198. height: math.unit(560, "feet")
  5199. },
  5200. {
  5201. name: "What have you done",
  5202. height: math.unit(2200, "feet")
  5203. },
  5204. {
  5205. name: "Deer God",
  5206. height: math.unit(3.6, "miles")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5212. {
  5213. standing: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Standing",
  5217. image: {
  5218. source: "./media/characters/psymon/standing.svg",
  5219. extra: 1888 / 1810,
  5220. bottom: 0.05
  5221. }
  5222. },
  5223. slithering: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(300, "lbs"),
  5226. name: "Slithering",
  5227. image: {
  5228. source: "./media/characters/psymon/slithering.svg",
  5229. extra: 1330 / 1224
  5230. }
  5231. },
  5232. slitheringAlt: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(300, "lbs"),
  5235. name: "Slithering (Alt)",
  5236. image: {
  5237. source: "./media/characters/psymon/slithering-alt.svg",
  5238. extra: 1330 / 1224
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(11.25, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Large",
  5250. height: math.unit(27, "feet")
  5251. },
  5252. {
  5253. name: "Giant",
  5254. height: math.unit(87, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(365, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(3, "miles")
  5263. },
  5264. {
  5265. name: "World Serpent",
  5266. height: math.unit(8000, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/daimos/front.svg",
  5279. extra: 4160 / 3897,
  5280. bottom: 0.021
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(8, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Big Dog",
  5292. height: math.unit(22, "feet")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(127, "feet")
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(3600, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5306. {
  5307. side: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lbs"),
  5310. name: "Side",
  5311. image: {
  5312. source: "./media/characters/blake/side.svg",
  5313. extra: 1212 / 1120,
  5314. bottom: 0.05
  5315. }
  5316. },
  5317. crouched: {
  5318. height: math.unit(6 * 0.57, "feet"),
  5319. weight: math.unit(180, "lbs"),
  5320. name: "Crouched",
  5321. image: {
  5322. source: "./media/characters/blake/crouched.svg",
  5323. extra: 840 / 587,
  5324. bottom: 0.04
  5325. }
  5326. },
  5327. bent: {
  5328. height: math.unit(6 * 0.75, "feet"),
  5329. weight: math.unit(180, "lbs"),
  5330. name: "Bent",
  5331. image: {
  5332. source: "./media/characters/blake/bent.svg",
  5333. extra: 592 / 544,
  5334. bottom: 0.035
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(8 + 1 / 6, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Big Backside",
  5346. height: math.unit(37, "feet")
  5347. },
  5348. {
  5349. name: "Subway Shredder",
  5350. height: math.unit(72, "feet")
  5351. },
  5352. {
  5353. name: "City Carver",
  5354. height: math.unit(1675, "feet")
  5355. },
  5356. {
  5357. name: "Tectonic Tweaker",
  5358. height: math.unit(2300, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/guisetto/front.svg",
  5371. extra: 856 / 817,
  5372. bottom: 0.06
  5373. }
  5374. },
  5375. airborne: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Airborne",
  5379. image: {
  5380. source: "./media/characters/guisetto/airborne.svg",
  5381. extra: 584 / 525
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(10 + 11 / 12, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Large",
  5393. height: math.unit(35, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(475, "feet")
  5398. },
  5399. ]
  5400. ))
  5401. characterMakers.push(() => makeCharacter(
  5402. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5403. {
  5404. front: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(180, "lbs"),
  5407. name: "Front",
  5408. image: {
  5409. source: "./media/characters/luxor/front.svg",
  5410. extra: 2940 / 2152
  5411. }
  5412. },
  5413. back: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(180, "lbs"),
  5416. name: "Back",
  5417. image: {
  5418. source: "./media/characters/luxor/back.svg",
  5419. extra: 1083 / 960
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(5 + 5 / 6, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Lamp",
  5431. height: math.unit(50, "feet")
  5432. },
  5433. {
  5434. name: "Lämp",
  5435. height: math.unit(300, "feet")
  5436. },
  5437. {
  5438. name: "The sun is a lamp",
  5439. height: math.unit(250000, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(50, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/huoyan/front.svg"
  5452. }
  5453. },
  5454. side: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(180, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/huoyan/side.svg"
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Chef",
  5466. height: math.unit(9, "feet")
  5467. },
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(65, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(780, "feet")
  5476. },
  5477. {
  5478. name: "Flaming Mountain",
  5479. height: math.unit(4.8, "miles")
  5480. },
  5481. {
  5482. name: "Celestial",
  5483. height: math.unit(765000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5 + 3 / 4, "feet"),
  5492. weight: math.unit(120, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/tails/front.svg"
  5496. }
  5497. }
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(5 + 3 / 4, "feet"),
  5503. default: true
  5504. }
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(4, "feet"),
  5512. weight: math.unit(50, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/rainy/front.svg"
  5516. }
  5517. }
  5518. },
  5519. [
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(800, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(150, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/rainier/front.svg"
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(2, "mm"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(8 + 4/12, "feet"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/andy-renard/front.svg",
  5555. extra: 1839/1726,
  5556. bottom: 134/1973
  5557. }
  5558. },
  5559. back: {
  5560. height: math.unit(8 + 4/12, "feet"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/andy-renard/back.svg",
  5564. extra: 1838/1710,
  5565. bottom: 105/1943
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Tall",
  5572. height: math.unit(8 + 4/12, "feet")
  5573. },
  5574. {
  5575. name: "Mini Macro",
  5576. height: math.unit(15, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(100, "feet")
  5582. },
  5583. {
  5584. name: "Mega Macro",
  5585. height: math.unit(1000, "feet")
  5586. },
  5587. {
  5588. name: "Giga Macro",
  5589. height: math.unit(10, "miles")
  5590. },
  5591. {
  5592. name: "God Macro",
  5593. height: math.unit(1, "multiverse")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(210, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/cimmaron/front-sfw.svg",
  5606. extra: 701 / 676,
  5607. bottom: 0.046
  5608. }
  5609. },
  5610. back: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(210, "lbs"),
  5613. name: "Back",
  5614. image: {
  5615. source: "./media/characters/cimmaron/back-sfw.svg",
  5616. extra: 701 / 676,
  5617. bottom: 0.046
  5618. }
  5619. },
  5620. frontNsfw: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(210, "lbs"),
  5623. name: "Front (NSFW)",
  5624. image: {
  5625. source: "./media/characters/cimmaron/front-nsfw.svg",
  5626. extra: 701 / 676,
  5627. bottom: 0.046
  5628. }
  5629. },
  5630. backNsfw: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(210, "lbs"),
  5633. name: "Back (NSFW)",
  5634. image: {
  5635. source: "./media/characters/cimmaron/back-nsfw.svg",
  5636. extra: 701 / 676,
  5637. bottom: 0.046
  5638. }
  5639. },
  5640. dick: {
  5641. height: math.unit(1.714, "feet"),
  5642. name: "Dick",
  5643. image: {
  5644. source: "./media/characters/cimmaron/dick.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(6, "feet"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Macro Mayor",
  5656. height: math.unit(350, "meters")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(200, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/akari/front.svg",
  5669. extra: 962 / 901,
  5670. bottom: 0.04
  5671. }
  5672. }
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(5, "inches"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(7, "feet")
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(140, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/cynosura/front.svg",
  5695. extra: 896 / 847
  5696. }
  5697. },
  5698. back: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(140, "lbs"),
  5701. name: "Back",
  5702. image: {
  5703. source: "./media/characters/cynosura/back.svg",
  5704. extra: 1365 / 1250
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Micro",
  5711. height: math.unit(4, "inches")
  5712. },
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(5.75, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Tall",
  5720. height: math.unit(10, "feet")
  5721. },
  5722. {
  5723. name: "Big",
  5724. height: math.unit(20, "feet")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(50, "feet")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(13 + 2/12, "feet"),
  5737. weight: math.unit(800, "kg"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/gin/front.svg",
  5741. extra: 1312/1191,
  5742. bottom: 45/1357
  5743. }
  5744. },
  5745. mouth: {
  5746. height: math.unit(2.39 * 1.8, "feet"),
  5747. name: "Mouth",
  5748. image: {
  5749. source: "./media/characters/gin/mouth.svg"
  5750. }
  5751. },
  5752. hand: {
  5753. height: math.unit(1.57 * 2.19, "feet"),
  5754. name: "Hand",
  5755. image: {
  5756. source: "./media/characters/gin/hand.svg"
  5757. }
  5758. },
  5759. foot: {
  5760. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5761. name: "Foot",
  5762. image: {
  5763. source: "./media/characters/gin/foot.svg"
  5764. }
  5765. },
  5766. sole: {
  5767. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5768. name: "Sole",
  5769. image: {
  5770. source: "./media/characters/gin/sole.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Very Small",
  5777. height: math.unit(13 + 2 / 12, "feet")
  5778. },
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(600, "miles")
  5782. },
  5783. {
  5784. name: "Regular",
  5785. height: math.unit(20, "earths"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(2.2, "solarradii")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(1.2, "galaxies")
  5795. },
  5796. {
  5797. name: "Omegamacro",
  5798. height: math.unit(200, "universes")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6 + 1 / 6, "feet"),
  5807. weight: math.unit(178, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/guy/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(6 + 1 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Large",
  5822. height: math.unit(25 + 7 / 12, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(60 + 9 / 12, "feet")
  5827. },
  5828. {
  5829. name: "Macro+",
  5830. height: math.unit(246, "feet")
  5831. },
  5832. {
  5833. name: "Macro++",
  5834. height: math.unit(878, "feet")
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(9, "feet"),
  5843. weight: math.unit(800, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/tiberius/front.svg",
  5847. extra: 2295 / 2071
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(9, "feet"),
  5852. weight: math.unit(800, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/tiberius/back.svg",
  5856. extra: 2373 / 2160
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(9, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(600, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/surgo/front.svg",
  5877. extra: 3591 / 2227
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(600, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/surgo/back.svg",
  5886. extra: 3557 / 2228
  5887. }
  5888. },
  5889. laying: {
  5890. height: math.unit(6 * 0.85, "feet"),
  5891. weight: math.unit(600, "lbs"),
  5892. name: "Laying",
  5893. image: {
  5894. source: "./media/characters/surgo/laying.svg"
  5895. }
  5896. },
  5897. },
  5898. [
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(6, "feet"),
  5902. default: true
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5908. {
  5909. side: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(150, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/cibus/side.svg",
  5915. extra: 800 / 400
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(6, "feet"),
  5923. default: true
  5924. }
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(240, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/nibbles/front.svg"
  5936. }
  5937. },
  5938. side: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(240, "lbs"),
  5941. name: "Side",
  5942. image: {
  5943. source: "./media/characters/nibbles/side.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(9, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5 + 1 / 6, "feet"),
  5960. weight: math.unit(130, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/rikky/side.svg",
  5964. extra: 851 / 801
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(5 + 1 / 6, "feet")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(152, "feet"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Megamacro",
  5980. height: math.unit(7, "miles")
  5981. }
  5982. ]
  5983. ))
  5984. characterMakers.push(() => makeCharacter(
  5985. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5986. {
  5987. side: {
  5988. height: math.unit(370, "cm"),
  5989. weight: math.unit(350, "lbs"),
  5990. name: "Side",
  5991. image: {
  5992. source: "./media/characters/malfressa/side.svg"
  5993. }
  5994. },
  5995. walking: {
  5996. height: math.unit(370, "cm"),
  5997. weight: math.unit(350, "lbs"),
  5998. name: "Walking",
  5999. image: {
  6000. source: "./media/characters/malfressa/walking.svg"
  6001. }
  6002. },
  6003. feral: {
  6004. height: math.unit(2500, "cm"),
  6005. weight: math.unit(100000, "lbs"),
  6006. name: "Feral",
  6007. image: {
  6008. source: "./media/characters/malfressa/feral.svg",
  6009. extra: 2108 / 837,
  6010. bottom: 0.02
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(370, "cm")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(300, "meters"),
  6022. default: true
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(60, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/jaro/front.svg"
  6035. }
  6036. },
  6037. back: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(60, "kg"),
  6040. name: "Back",
  6041. image: {
  6042. source: "./media/characters/jaro/back.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(7, "inches")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(5.5, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Minimacro",
  6058. height: math.unit(20, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(200, "meters")
  6063. }
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(195, "lb"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/rogue/front.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(90, "feet"),
  6082. default: true
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(5 + 8 / 12, "feet"),
  6091. weight: math.unit(140, "lb"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/piper/front.svg",
  6095. extra: 3948/3655,
  6096. bottom: 0/3948
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Micro",
  6103. height: math.unit(2, "inches")
  6104. },
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 8 / 12, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(250, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(7, "miles")
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(220, "lb"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/gemini/front.svg"
  6129. }
  6130. },
  6131. back: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(220, "lb"),
  6134. name: "Back",
  6135. image: {
  6136. source: "./media/characters/gemini/back.svg"
  6137. }
  6138. },
  6139. kneeling: {
  6140. height: math.unit(6 / 1.5, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Kneeling",
  6143. image: {
  6144. source: "./media/characters/gemini/kneeling.svg",
  6145. bottom: 0.02
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(300, "meters"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Megamacro",
  6157. height: math.unit(6900, "meters")
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6163. {
  6164. anthro: {
  6165. height: math.unit(2.35, "meters"),
  6166. weight: math.unit(73, "kg"),
  6167. name: "Anthro",
  6168. image: {
  6169. source: "./media/characters/alicia/anthro.svg",
  6170. extra: 2571 / 2385,
  6171. bottom: 75 / 2648
  6172. }
  6173. },
  6174. paw: {
  6175. height: math.unit(1.32, "feet"),
  6176. name: "Paw",
  6177. image: {
  6178. source: "./media/characters/alicia/paw.svg"
  6179. }
  6180. },
  6181. feral: {
  6182. height: math.unit(1.69, "meters"),
  6183. weight: math.unit(73, "kg"),
  6184. name: "Feral",
  6185. image: {
  6186. source: "./media/characters/alicia/feral.svg",
  6187. extra: 2123 / 1715,
  6188. bottom: 222 / 2349
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(2.35, "meters")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(60, "meters"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Megamacro",
  6204. height: math.unit(10000, "kilometers")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(7, "feet"),
  6213. weight: math.unit(250, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/archy/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(1, "inch")
  6224. },
  6225. {
  6226. name: "Shorty",
  6227. height: math.unit(5, "feet")
  6228. },
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(7, "feet")
  6232. },
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(600, "meters"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(1, "mile")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(1.65, "meters"),
  6249. weight: math.unit(74, "kg"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/berri/front.svg",
  6253. extra: 857 / 837,
  6254. bottom: 18 / 877
  6255. }
  6256. },
  6257. bum: {
  6258. height: math.unit(1.46, "feet"),
  6259. name: "Bum",
  6260. image: {
  6261. source: "./media/characters/berri/bum.svg"
  6262. }
  6263. },
  6264. mouth: {
  6265. height: math.unit(0.44, "feet"),
  6266. name: "Mouth",
  6267. image: {
  6268. source: "./media/characters/berri/mouth.svg"
  6269. }
  6270. },
  6271. paw: {
  6272. height: math.unit(0.826, "feet"),
  6273. name: "Paw",
  6274. image: {
  6275. source: "./media/characters/berri/paw.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(1.65, "meters")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(60, "m"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Megamacro",
  6291. height: math.unit(9.213, "km")
  6292. },
  6293. {
  6294. name: "Planet Eater",
  6295. height: math.unit(489, "megameters")
  6296. },
  6297. {
  6298. name: "Teramacro",
  6299. height: math.unit(2471635000000, "meters")
  6300. },
  6301. {
  6302. name: "Examacro",
  6303. height: math.unit(8.0624e+26, "meters")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6309. {
  6310. front: {
  6311. height: math.unit(1.72, "meters"),
  6312. weight: math.unit(68, "kg"),
  6313. name: "Front",
  6314. image: {
  6315. source: "./media/characters/lexi/front.svg"
  6316. }
  6317. }
  6318. },
  6319. [
  6320. {
  6321. name: "Very Smol",
  6322. height: math.unit(10, "mm")
  6323. },
  6324. {
  6325. name: "Micro",
  6326. height: math.unit(6.8, "cm"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(1.72, "m")
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(1.69, "meters"),
  6340. weight: math.unit(68, "kg"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/martin/front.svg",
  6344. extra: 596 / 581
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(6.85, "cm"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(1.69, "m")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(1.69, "meters"),
  6365. weight: math.unit(68, "kg"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/juno/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(7, "cm")
  6376. },
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(1.89, "m")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(353, "meters"),
  6384. default: true
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(1.93, "meters"),
  6393. weight: math.unit(83, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/samantha/front.svg"
  6397. }
  6398. },
  6399. frontClothed: {
  6400. height: math.unit(1.93, "meters"),
  6401. weight: math.unit(83, "kg"),
  6402. name: "Front (Clothed)",
  6403. image: {
  6404. source: "./media/characters/samantha/front-clothed.svg"
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/samantha/back.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(1.93, "m")
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(74, "meters"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Macro+",
  6428. height: math.unit(223, "meters"),
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(8381, "meters"),
  6433. },
  6434. {
  6435. name: "Megamacro+",
  6436. height: math.unit(12000, "kilometers")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(1.92, "meters"),
  6445. weight: math.unit(80, "kg"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/dr-clay/front.svg"
  6449. }
  6450. },
  6451. frontClothed: {
  6452. height: math.unit(1.92, "meters"),
  6453. weight: math.unit(80, "kg"),
  6454. name: "Front (Clothed)",
  6455. image: {
  6456. source: "./media/characters/dr-clay/front-clothed.svg"
  6457. }
  6458. }
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(1.92, "m")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(214, "meters"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Macro+",
  6472. height: math.unit(12.237, "meters"),
  6473. },
  6474. {
  6475. name: "Megamacro",
  6476. height: math.unit(557, "megameters"),
  6477. },
  6478. {
  6479. name: "Unimaginable",
  6480. height: math.unit(120e9, "lightyears")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6486. {
  6487. front: {
  6488. height: math.unit(2, "meters"),
  6489. weight: math.unit(80, "kg"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Teramacro",
  6499. height: math.unit(500000, "lightyears"),
  6500. default: true
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(150, "kg"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/vemus/front.svg",
  6513. extra: 1074/936,
  6514. bottom: 23/1097
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(3.75, "meters"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Big",
  6526. height: math.unit(8, "meters")
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(100, "meters")
  6531. },
  6532. {
  6533. name: "Macro+",
  6534. height: math.unit(1500, "meters")
  6535. },
  6536. {
  6537. name: "Stellar",
  6538. height: math.unit(14e8, "meters")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(2, "meters"),
  6547. weight: math.unit(70, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/beherit/front.svg",
  6551. extra: 1408 / 1242
  6552. }
  6553. }
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(6, "feet")
  6559. },
  6560. {
  6561. name: "Lorg",
  6562. height: math.unit(25, "feet"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Lorger",
  6567. height: math.unit(75, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(200, "meters")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(2, "meters"),
  6580. weight: math.unit(150, "kg"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/everett/front.svg",
  6584. extra: 2038 / 1737,
  6585. bottom: 0.03
  6586. }
  6587. },
  6588. paw: {
  6589. height: math.unit(2 / 3.6, "meters"),
  6590. name: "Paw",
  6591. image: {
  6592. source: "./media/characters/everett/paw.svg"
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(15, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Lorg",
  6604. height: math.unit(70, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Lorger",
  6609. height: math.unit(250, "feet")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(500, "meters")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(2, "meters"),
  6622. weight: math.unit(86, "kg"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/rose/front.svg",
  6626. extra: 1785/1636,
  6627. bottom: 30/1815
  6628. }
  6629. },
  6630. frontSporty: {
  6631. height: math.unit(2, "meters"),
  6632. weight: math.unit(86, "kg"),
  6633. name: "Front (Sporty)",
  6634. image: {
  6635. source: "./media/characters/rose/front-sporty.svg",
  6636. extra: 350/335,
  6637. bottom: 10/360
  6638. }
  6639. },
  6640. frontAlt: {
  6641. height: math.unit(1.6, "meters"),
  6642. weight: math.unit(86, "kg"),
  6643. name: "Front (Alt)",
  6644. image: {
  6645. source: "./media/characters/rose/front-alt.svg",
  6646. extra: 299/283,
  6647. bottom: 3/302
  6648. }
  6649. },
  6650. plush: {
  6651. height: math.unit(2, "meters"),
  6652. weight: math.unit(86/3, "kg"),
  6653. name: "Plush",
  6654. image: {
  6655. source: "./media/characters/rose/plush.svg",
  6656. extra: 361/337,
  6657. bottom: 11/372
  6658. }
  6659. },
  6660. },
  6661. [
  6662. {
  6663. name: "True Micro",
  6664. height: math.unit(9, "cm")
  6665. },
  6666. {
  6667. name: "Micro",
  6668. height: math.unit(16, "cm")
  6669. },
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(1.85, "meters"),
  6673. default: true
  6674. },
  6675. {
  6676. name: "Mini-Macro",
  6677. height: math.unit(5, "meters")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(15, "meters")
  6682. },
  6683. {
  6684. name: "True Macro",
  6685. height: math.unit(40, "meters")
  6686. },
  6687. {
  6688. name: "City Scale",
  6689. height: math.unit(1, "km")
  6690. },
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6695. {
  6696. front: {
  6697. height: math.unit(2, "meters"),
  6698. weight: math.unit(350, "lbs"),
  6699. name: "Front",
  6700. image: {
  6701. source: "./media/characters/regal/front.svg"
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(2, "meters"),
  6706. weight: math.unit(350, "lbs"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/regal/back.svg"
  6710. }
  6711. },
  6712. },
  6713. [
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(350, "feet"),
  6717. default: true
  6718. }
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(4 + 11 / 12, "feet"),
  6726. weight: math.unit(100, "lbs"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/opal/front.svg"
  6730. }
  6731. },
  6732. frontAlt: {
  6733. height: math.unit(4 + 11 / 12, "feet"),
  6734. weight: math.unit(100, "lbs"),
  6735. name: "Front (Alt)",
  6736. image: {
  6737. source: "./media/characters/opal/front-alt.svg"
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Small",
  6744. height: math.unit(4 + 11 / 12, "feet")
  6745. },
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(20, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(120, "feet")
  6754. },
  6755. {
  6756. name: "Megamacro",
  6757. height: math.unit(80, "miles")
  6758. },
  6759. {
  6760. name: "True Size",
  6761. height: math.unit(100000, "lightyears")
  6762. },
  6763. ]
  6764. ))
  6765. characterMakers.push(() => makeCharacter(
  6766. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6767. {
  6768. front: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(200, "lbs"),
  6771. name: "Front",
  6772. image: {
  6773. source: "./media/characters/vector-wuff/front.svg"
  6774. }
  6775. }
  6776. },
  6777. [
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(2.8, "meters")
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(450, "meters"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Megamacro",
  6789. height: math.unit(15, "kilometers")
  6790. }
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(256, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/dannik/front.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(69.57, "meters"),
  6809. default: true
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(120, "lbs"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/azura-saharah/front.svg"
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(120, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/azura-saharah/back.svg"
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(100, "feet"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6843. {
  6844. side: {
  6845. height: math.unit(5 + 4 / 12, "feet"),
  6846. weight: math.unit(163, "lbs"),
  6847. name: "Side",
  6848. image: {
  6849. source: "./media/characters/kennedy/side.svg"
  6850. }
  6851. }
  6852. },
  6853. [
  6854. {
  6855. name: "Standard Doggo",
  6856. height: math.unit(5 + 4 / 12, "feet")
  6857. },
  6858. {
  6859. name: "Big Doggo",
  6860. height: math.unit(25 + 3 / 12, "feet"),
  6861. default: true
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(90, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/odi-lunar/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Micro",
  6880. height: math.unit(3, "inches"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5.5, "feet")
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6891. {
  6892. back: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(220, "lbs"),
  6895. name: "Back",
  6896. image: {
  6897. source: "./media/characters/mandake/back.svg"
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(7, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(78, "feet")
  6910. },
  6911. {
  6912. name: "Macro+",
  6913. height: math.unit(300, "meters")
  6914. },
  6915. {
  6916. name: "Macro++",
  6917. height: math.unit(2400, "feet")
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(5167, "meters")
  6922. },
  6923. {
  6924. name: "Gigamacro",
  6925. height: math.unit(41769, "miles")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(120, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/yozey/front.svg"
  6938. }
  6939. },
  6940. frontAlt: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(120, "lbs"),
  6943. name: "Front (Alt)",
  6944. image: {
  6945. source: "./media/characters/yozey/front-alt.svg"
  6946. }
  6947. },
  6948. side: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(120, "lbs"),
  6951. name: "Side",
  6952. image: {
  6953. source: "./media/characters/yozey/side.svg"
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Micro",
  6960. height: math.unit(3, "inches"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(6, "feet")
  6966. }
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(103, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/valeska-voss/front.svg"
  6978. }
  6979. }
  6980. },
  6981. [
  6982. {
  6983. name: "Mini-Sized Sub",
  6984. height: math.unit(3.1, "inches")
  6985. },
  6986. {
  6987. name: "Mid-Sized Sub",
  6988. height: math.unit(6.2, "inches")
  6989. },
  6990. {
  6991. name: "Full-Sized Sub",
  6992. height: math.unit(9.3, "inches")
  6993. },
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(5 + 2 / 12, "foot"),
  6997. default: true
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(160, "lbs"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/gene-zeta/front.svg",
  7010. extra: 3006 / 2826,
  7011. bottom: 182 / 3188
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(6, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 11 / 12, "foot"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(140, "feet")
  7028. },
  7029. {
  7030. name: "Supercharged",
  7031. height: math.unit(2500, "feet")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(350, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/razinox/front.svg",
  7044. extra: 1686 / 1548,
  7045. bottom: 28.2 / 1868
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/razinox/back.svg",
  7054. extra: 1660 / 1590,
  7055. bottom: 15 / 1665
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(10 + 8 / 12, "foot")
  7063. },
  7064. {
  7065. name: "Minimacro",
  7066. height: math.unit(15, "foot")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(60, "foot"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(5, "miles")
  7076. },
  7077. {
  7078. name: "Gigamacro",
  7079. height: math.unit(6000, "miles")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(150, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/cobalt/front.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(8 + 1 / 12, "foot")
  7099. },
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(111, "foot"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Supracosmic",
  7107. height: math.unit(1e42, "feet")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(140, "lbs"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/amanda/front.svg"
  7120. }
  7121. }
  7122. },
  7123. [
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(5, "inches"),
  7127. default: true
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(2.75, "meters"),
  7136. weight: math.unit(1200, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/teal/front.svg",
  7140. extra: 2463 / 2320,
  7141. bottom: 166 / 2629
  7142. }
  7143. },
  7144. back: {
  7145. height: math.unit(2.75, "meters"),
  7146. weight: math.unit(1200, "lb"),
  7147. name: "Back",
  7148. image: {
  7149. source: "./media/characters/teal/back.svg",
  7150. extra: 2580 / 2489,
  7151. bottom: 151 / 2731
  7152. }
  7153. },
  7154. sitting: {
  7155. height: math.unit(1.9, "meters"),
  7156. weight: math.unit(1200, "lb"),
  7157. name: "Sitting",
  7158. image: {
  7159. source: "./media/characters/teal/sitting.svg",
  7160. extra: 623 / 590,
  7161. bottom: 121 / 744
  7162. }
  7163. },
  7164. standing: {
  7165. height: math.unit(2.75, "meters"),
  7166. weight: math.unit(1200, "lb"),
  7167. name: "Standing",
  7168. image: {
  7169. source: "./media/characters/teal/standing.svg",
  7170. extra: 923 / 893,
  7171. bottom: 60 / 983
  7172. }
  7173. },
  7174. stretching: {
  7175. height: math.unit(3.65, "meters"),
  7176. weight: math.unit(1200, "lb"),
  7177. name: "Stretching",
  7178. image: {
  7179. source: "./media/characters/teal/stretching.svg",
  7180. extra: 1276 / 1244,
  7181. bottom: 0 / 1276
  7182. }
  7183. },
  7184. legged: {
  7185. height: math.unit(1.3, "meters"),
  7186. weight: math.unit(100, "lb"),
  7187. name: "Legged",
  7188. image: {
  7189. source: "./media/characters/teal/legged.svg",
  7190. extra: 462 / 437,
  7191. bottom: 24 / 486
  7192. }
  7193. },
  7194. naga: {
  7195. height: math.unit(5.4, "meters"),
  7196. weight: math.unit(4000, "lb"),
  7197. name: "Naga",
  7198. image: {
  7199. source: "./media/characters/teal/naga.svg",
  7200. extra: 1902 / 1858,
  7201. bottom: 0 / 1902
  7202. }
  7203. },
  7204. hand: {
  7205. height: math.unit(0.52, "meters"),
  7206. name: "Hand",
  7207. image: {
  7208. source: "./media/characters/teal/hand.svg"
  7209. }
  7210. },
  7211. maw: {
  7212. height: math.unit(0.43, "meters"),
  7213. name: "Maw",
  7214. image: {
  7215. source: "./media/characters/teal/maw.svg"
  7216. }
  7217. },
  7218. slit: {
  7219. height: math.unit(0.25, "meters"),
  7220. name: "Slit",
  7221. image: {
  7222. source: "./media/characters/teal/slit.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(2.75, "meters"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(300, "feet")
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(2000, "feet")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7244. {
  7245. frontCat: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(180, "lbs"),
  7248. name: "Front (Cat)",
  7249. image: {
  7250. source: "./media/characters/ravin-amulet/front-cat.svg"
  7251. }
  7252. },
  7253. frontCatAlt: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(180, "lbs"),
  7256. name: "Front (Alt, Cat)",
  7257. image: {
  7258. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7259. }
  7260. },
  7261. frontWerewolf: {
  7262. height: math.unit(6 * 1.2, "feet"),
  7263. weight: math.unit(225, "lbs"),
  7264. name: "Front (Werewolf)",
  7265. image: {
  7266. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7267. }
  7268. },
  7269. backWerewolf: {
  7270. height: math.unit(6 * 1.2, "feet"),
  7271. weight: math.unit(225, "lbs"),
  7272. name: "Back (Werewolf)",
  7273. image: {
  7274. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Nano",
  7281. height: math.unit(1, "micrometer")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(1, "inch")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(6, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(60, "feet")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(165, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/fluoresce/front.svg"
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Micro",
  7313. height: math.unit(6, "cm")
  7314. },
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(5 + 7 / 12, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(56, "feet")
  7323. },
  7324. {
  7325. name: "Megamacro",
  7326. height: math.unit(1.9, "miles")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(9 + 6 / 12, "feet"),
  7335. weight: math.unit(523, "lbs"),
  7336. name: "Side",
  7337. image: {
  7338. source: "./media/characters/aurora/side.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(9 + 6 / 12, "feet")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(96, "feet"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(243, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(194, "cm"),
  7363. weight: math.unit(90, "kg"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/ranek/front.svg"
  7367. }
  7368. },
  7369. side: {
  7370. height: math.unit(194, "cm"),
  7371. weight: math.unit(90, "kg"),
  7372. name: "Side",
  7373. image: {
  7374. source: "./media/characters/ranek/side.svg"
  7375. }
  7376. },
  7377. back: {
  7378. height: math.unit(194, "cm"),
  7379. weight: math.unit(90, "kg"),
  7380. name: "Back",
  7381. image: {
  7382. source: "./media/characters/ranek/back.svg"
  7383. }
  7384. },
  7385. feral: {
  7386. height: math.unit(30, "cm"),
  7387. weight: math.unit(1.6, "lbs"),
  7388. name: "Feral",
  7389. image: {
  7390. source: "./media/characters/ranek/feral.svg"
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(194, "cm"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(100, "meters")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(5 + 6 / 12, "feet"),
  7411. weight: math.unit(153, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/andrew-cooper/front.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Nano",
  7421. height: math.unit(1, "mm")
  7422. },
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(2, "inches")
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(5 + 6 / 12, "feet"),
  7430. default: true
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(180, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/akane-sato/front.svg",
  7443. extra: 1219 / 1140
  7444. }
  7445. },
  7446. back: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(180, "lbs"),
  7449. name: "Back",
  7450. image: {
  7451. source: "./media/characters/akane-sato/back.svg",
  7452. extra: 1219 / 1170
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(2.5, "meters")
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(250, "meters"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Megamacro",
  7468. height: math.unit(25, "km")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(65, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/rook/front.svg",
  7481. extra: 960 / 950
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Normal",
  7488. height: math.unit(8.8, "feet")
  7489. },
  7490. {
  7491. name: "Macro",
  7492. height: math.unit(88, "feet"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Megamacro",
  7497. height: math.unit(8, "miles")
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7503. {
  7504. front: {
  7505. height: math.unit(12 + 2 / 12, "feet"),
  7506. weight: math.unit(808, "lbs"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/prodigy/front.svg"
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(12 + 2 / 12, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(143, "feet")
  7522. },
  7523. {
  7524. name: "Macro+",
  7525. height: math.unit(400, "feet")
  7526. },
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(225, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/daniel/front.svg"
  7538. }
  7539. },
  7540. leaning: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(225, "lbs"),
  7543. name: "Leaning",
  7544. image: {
  7545. source: "./media/characters/daniel/leaning.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(1000, "feet"),
  7553. default: true
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(88, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/chiros/front.svg",
  7566. extra: 306 / 226
  7567. }
  7568. },
  7569. side: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(88, "lbs"),
  7572. name: "Side",
  7573. image: {
  7574. source: "./media/characters/chiros/side.svg",
  7575. extra: 306 / 226
  7576. }
  7577. },
  7578. },
  7579. [
  7580. {
  7581. name: "Normal",
  7582. height: math.unit(6, "cm"),
  7583. default: true
  7584. },
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7589. {
  7590. front: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(100, "lbs"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/selka/front.svg",
  7596. extra: 947 / 887
  7597. }
  7598. }
  7599. },
  7600. [
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5, "cm"),
  7604. default: true
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(8 + 3 / 12, "feet"),
  7613. weight: math.unit(424, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/verin/front.svg",
  7617. extra: 1845 / 1550
  7618. }
  7619. },
  7620. frontArmored: {
  7621. height: math.unit(8 + 3 / 12, "feet"),
  7622. weight: math.unit(424, "lbs"),
  7623. name: "Front (Armored)",
  7624. image: {
  7625. source: "./media/characters/verin/front-armor.svg",
  7626. extra: 1845 / 1550,
  7627. bottom: 0.01
  7628. }
  7629. },
  7630. back: {
  7631. height: math.unit(8 + 3 / 12, "feet"),
  7632. weight: math.unit(424, "lbs"),
  7633. name: "Back",
  7634. image: {
  7635. source: "./media/characters/verin/back.svg",
  7636. bottom: 0.1,
  7637. extra: 1
  7638. }
  7639. },
  7640. foot: {
  7641. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7642. name: "Foot",
  7643. image: {
  7644. source: "./media/characters/verin/foot.svg"
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(8 + 3 / 12, "feet")
  7652. },
  7653. {
  7654. name: "Minimacro",
  7655. height: math.unit(21, "feet"),
  7656. default: true
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(626, "feet")
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(2.718, "meters"),
  7669. weight: math.unit(150, "lbs"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/sovrim-terraquian/front.svg"
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(2.718, "meters"),
  7677. weight: math.unit(150, "lbs"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/sovrim-terraquian/back.svg"
  7681. }
  7682. }
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(2, "inches")
  7688. },
  7689. {
  7690. name: "Small",
  7691. height: math.unit(1, "meter")
  7692. },
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(Math.E, "meters"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(20, "meters")
  7701. },
  7702. {
  7703. name: "Macro+",
  7704. height: math.unit(400, "meters")
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(7, "feet"),
  7713. weight: math.unit(489, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/reece-silvermane/front.svg",
  7717. bottom: 0.02,
  7718. extra: 1
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(1.5, "miles"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(78, "kg"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/kane/front.svg",
  7739. extra: 978 / 899
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(2.1, "m"),
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(1, "km"),
  7751. default: true
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(6, "feet"),
  7760. weight: math.unit(200, "kg"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/tegon/front.svg",
  7764. bottom: 0.01,
  7765. extra: 1
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Micro",
  7772. height: math.unit(1, "inch")
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(6 + 3 / 12, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(300, "feet")
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(69, "miles")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7791. {
  7792. side: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(2304, "lbs"),
  7795. name: "Side",
  7796. image: {
  7797. source: "./media/characters/arcturax/side.svg",
  7798. extra: 790 / 376,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(2, "inch")
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(6, "feet")
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(39, "feet"),
  7815. default: true
  7816. },
  7817. {
  7818. name: "Megamacro",
  7819. height: math.unit(7, "miles")
  7820. },
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(50, "lbs"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/sentri/front.svg",
  7832. extra: 1750 / 1570,
  7833. bottom: 0.025
  7834. }
  7835. },
  7836. frontAlt: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(50, "lbs"),
  7839. name: "Front (Alt)",
  7840. image: {
  7841. source: "./media/characters/sentri/front-alt.svg",
  7842. extra: 1750 / 1570,
  7843. bottom: 0.025
  7844. }
  7845. },
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(15, "feet"),
  7851. default: true
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(2500, "feet")
  7856. }
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7861. {
  7862. front: {
  7863. height: math.unit(5 + 8 / 12, "feet"),
  7864. weight: math.unit(130, "lbs"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/corvin/front.svg",
  7868. extra: 1803 / 1629
  7869. }
  7870. },
  7871. frontShirt: {
  7872. height: math.unit(5 + 8 / 12, "feet"),
  7873. weight: math.unit(130, "lbs"),
  7874. name: "Front (Shirt)",
  7875. image: {
  7876. source: "./media/characters/corvin/front-shirt.svg",
  7877. extra: 1803 / 1629
  7878. }
  7879. },
  7880. frontPoncho: {
  7881. height: math.unit(5 + 8 / 12, "feet"),
  7882. weight: math.unit(130, "lbs"),
  7883. name: "Front (Poncho)",
  7884. image: {
  7885. source: "./media/characters/corvin/front-poncho.svg",
  7886. extra: 1803 / 1629
  7887. }
  7888. },
  7889. side: {
  7890. height: math.unit(5 + 8 / 12, "feet"),
  7891. weight: math.unit(130, "lbs"),
  7892. name: "Side",
  7893. image: {
  7894. source: "./media/characters/corvin/side.svg",
  7895. extra: 1012 / 945
  7896. }
  7897. },
  7898. back: {
  7899. height: math.unit(5 + 8 / 12, "feet"),
  7900. weight: math.unit(130, "lbs"),
  7901. name: "Back",
  7902. image: {
  7903. source: "./media/characters/corvin/back.svg",
  7904. extra: 1803 / 1629
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Micro",
  7911. height: math.unit(3, "inches")
  7912. },
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(5 + 8 / 12, "feet")
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(300, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Megamacro",
  7924. height: math.unit(500, "miles")
  7925. }
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(135, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/q/front.svg",
  7937. extra: 854 / 752,
  7938. bottom: 0.005
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(130, "lbs"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/q/back.svg",
  7947. extra: 854 / 752
  7948. }
  7949. },
  7950. },
  7951. [
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(90, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Extra Macro",
  7959. height: math.unit(300, "feet"),
  7960. },
  7961. {
  7962. name: "BIG WALF",
  7963. height: math.unit(750, "feet"),
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(150, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/carley/front.svg",
  7976. extra: 3927 / 3540,
  7977. bottom: 29.2 / 735
  7978. }
  7979. }
  7980. },
  7981. [
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(6 + 3 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(185, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Megamacro",
  7993. height: math.unit(8, "miles"),
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(3, "feet"),
  8002. weight: math.unit(28, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/citrine/front.svg"
  8006. }
  8007. }
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(3, "feet"),
  8013. default: true
  8014. }
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8019. {
  8020. front: {
  8021. height: math.unit(14, "feet"),
  8022. weight: math.unit(1450, "kg"),
  8023. capacity: math.unit(15, "people"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/aura-starwind/front.svg",
  8027. extra: 1455 / 1335
  8028. }
  8029. },
  8030. side: {
  8031. height: math.unit(14, "feet"),
  8032. weight: math.unit(1450, "kg"),
  8033. capacity: math.unit(15, "people"),
  8034. name: "Side",
  8035. image: {
  8036. source: "./media/characters/aura-starwind/side.svg",
  8037. extra: 1654 / 1497
  8038. }
  8039. },
  8040. taur: {
  8041. height: math.unit(18, "feet"),
  8042. weight: math.unit(5500, "kg"),
  8043. capacity: math.unit(50, "people"),
  8044. name: "Taur",
  8045. image: {
  8046. source: "./media/characters/aura-starwind/taur.svg",
  8047. extra: 1760 / 1650
  8048. }
  8049. },
  8050. feral: {
  8051. height: math.unit(46, "feet"),
  8052. weight: math.unit(25000, "kg"),
  8053. capacity: math.unit(120, "people"),
  8054. name: "Feral",
  8055. image: {
  8056. source: "./media/characters/aura-starwind/feral.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(14, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(50, "meters")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(5000, "meters")
  8073. },
  8074. {
  8075. name: "Gigamacro",
  8076. height: math.unit(100000, "kilometers")
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8082. {
  8083. front: {
  8084. height: math.unit(2 + 7 / 12, "feet"),
  8085. weight: math.unit(32, "lbs"),
  8086. name: "Front",
  8087. image: {
  8088. source: "./media/characters/rivet/front.svg",
  8089. extra: 1716 / 1658,
  8090. bottom: 0.03
  8091. }
  8092. },
  8093. foot: {
  8094. height: math.unit(0.551, "feet"),
  8095. name: "Rivet's Foot",
  8096. image: {
  8097. source: "./media/characters/rivet/foot.svg"
  8098. },
  8099. rename: true
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(1.5, "inches"),
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(2 + 7 / 12, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(85, "feet")
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(2.2, "km")
  8119. }
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(5 + 9 / 12, "feet"),
  8127. weight: math.unit(150, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/coffee/front.svg",
  8131. extra: 3666 / 3032,
  8132. bottom: 0.04
  8133. }
  8134. },
  8135. foot: {
  8136. height: math.unit(1.29, "feet"),
  8137. name: "Foot",
  8138. image: {
  8139. source: "./media/characters/coffee/foot.svg"
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Micro",
  8146. height: math.unit(2, "inches"),
  8147. },
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(5 + 9 / 12, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(800, "feet")
  8156. },
  8157. {
  8158. name: "Megamacro",
  8159. height: math.unit(25, "miles")
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(200, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/chari-gal/front.svg",
  8172. extra: 1568 / 1385,
  8173. bottom: 0.047
  8174. }
  8175. },
  8176. gigantamax: {
  8177. height: math.unit(6 * 16, "feet"),
  8178. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8179. name: "Gigantamax",
  8180. image: {
  8181. source: "./media/characters/chari-gal/gigantamax.svg",
  8182. extra: 1124 / 888,
  8183. bottom: 0.03
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(5 + 7 / 12, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(200, "feet"),
  8195. default: true
  8196. }
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(150, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/nova/front.svg",
  8208. extra: 5000 / 4722,
  8209. bottom: 0.02
  8210. }
  8211. }
  8212. },
  8213. [
  8214. {
  8215. name: "Micro-",
  8216. height: math.unit(0.8, "inches")
  8217. },
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(3 + 1 / 12, "feet"),
  8230. weight: math.unit(21.7, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/argent/front.svg",
  8234. extra: 1471 / 1331,
  8235. bottom: 100.8 / 1575.5
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(2, "inches")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(3 + 1 / 12, "feet"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Macro",
  8251. height: math.unit(120, "feet")
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8257. {
  8258. lamp: {
  8259. height: math.unit(7 * 1559 / 989, "feet"),
  8260. name: "Magic Lamp",
  8261. image: {
  8262. source: "./media/characters/mira-al-cul/lamp.svg",
  8263. extra: 1617 / 1559
  8264. }
  8265. },
  8266. front: {
  8267. height: math.unit(7, "feet"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/mira-al-cul/front.svg",
  8271. extra: 1044 / 990
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Heavily Restricted",
  8278. height: math.unit(7 * 1559 / 989, "feet")
  8279. },
  8280. {
  8281. name: "Freshly Freed",
  8282. height: math.unit(50 * 1559 / 989, "feet")
  8283. },
  8284. {
  8285. name: "World Encompassing",
  8286. height: math.unit(10000 * 1559 / 989, "miles")
  8287. },
  8288. {
  8289. name: "Galactic",
  8290. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8291. },
  8292. {
  8293. name: "Palmed Universe",
  8294. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Multiversal Matriarch",
  8299. height: math.unit(8.87e10, "yottameters")
  8300. },
  8301. {
  8302. name: "Void Mother",
  8303. height: math.unit(3.14e110, "yottaparsecs")
  8304. },
  8305. {
  8306. name: "Toying with Transcendence",
  8307. height: math.unit(1e307, "meters")
  8308. },
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8313. {
  8314. front: {
  8315. height: math.unit(17 + 1 / 12, "feet"),
  8316. weight: math.unit(476.2 * 5, "lbs"),
  8317. name: "Front",
  8318. image: {
  8319. source: "./media/characters/kuro-shi-uchū/front.svg",
  8320. extra: 2329 / 1835,
  8321. bottom: 0.02
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches")
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(12, "meters")
  8333. },
  8334. {
  8335. name: "Planetary",
  8336. height: math.unit(0.00929, "AU"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Universal",
  8341. height: math.unit(20, "gigaparsecs")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(5 + 2 / 12, "feet"),
  8350. weight: math.unit(120, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/katherine/front.svg",
  8354. extra: 2075 / 1969
  8355. }
  8356. },
  8357. dress: {
  8358. height: math.unit(5 + 2 / 12, "feet"),
  8359. weight: math.unit(120, "lbs"),
  8360. name: "Dress",
  8361. image: {
  8362. source: "./media/characters/katherine/dress.svg",
  8363. extra: 2258 / 2064
  8364. }
  8365. },
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(1, "inches"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 2 / 12, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(100, "meters")
  8380. },
  8381. {
  8382. name: "Megamacro",
  8383. height: math.unit(80, "miles")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(7 + 8 / 12, "feet"),
  8392. weight: math.unit(250, "lbs"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/yevis/front.svg",
  8396. extra: 1938 / 1755
  8397. }
  8398. }
  8399. },
  8400. [
  8401. {
  8402. name: "Mortal",
  8403. height: math.unit(7 + 8 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Battle",
  8407. height: math.unit(25 + 11 / 12, "feet")
  8408. },
  8409. {
  8410. name: "Wrath",
  8411. height: math.unit(1654 + 11 / 12, "feet")
  8412. },
  8413. {
  8414. name: "Planet Destroyer",
  8415. height: math.unit(12000, "miles")
  8416. },
  8417. {
  8418. name: "Galaxy Conqueror",
  8419. height: math.unit(1.45, "zettameters"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Universal War",
  8424. height: math.unit(184, "gigaparsecs")
  8425. },
  8426. {
  8427. name: "Eternity War",
  8428. height: math.unit(1.98e55, "yottaparsecs")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(5 + 8 / 12, "feet"),
  8437. weight: math.unit(63, "kg"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/xavier/front.svg",
  8441. extra: 944 / 883
  8442. }
  8443. },
  8444. frontStretch: {
  8445. height: math.unit(5 + 8 / 12, "feet"),
  8446. weight: math.unit(63, "kg"),
  8447. name: "Stretching",
  8448. image: {
  8449. source: "./media/characters/xavier/front-stretch.svg",
  8450. extra: 962 / 820
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(5 + 8 / 12, "feet")
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(100, "meters"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "McLargeHuge",
  8466. height: math.unit(10, "miles")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(5 + 5 / 12, "feet"),
  8475. weight: math.unit(150, "lb"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/joshii/front.svg",
  8479. extra: 765 / 653,
  8480. bottom: 51 / 816
  8481. }
  8482. },
  8483. foot: {
  8484. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8485. name: "Foot",
  8486. image: {
  8487. source: "./media/characters/joshii/foot.svg"
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(2, "inches"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 5 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(785, "feet")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(24.5, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(6, "feet"),
  8516. weight: math.unit(150, "lb"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/goddess-elizabeth/front.svg",
  8520. extra: 1800 / 1525,
  8521. bottom: 0.005
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/goddess-elizabeth/foot.svg"
  8529. }
  8530. },
  8531. mouth: {
  8532. height: math.unit(6, "feet"),
  8533. name: "Mouth",
  8534. image: {
  8535. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Micro",
  8542. height: math.unit(12, "feet")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(80, "miles"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(15000, "parsecs")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(5 + 9 / 12, "feet"),
  8560. weight: math.unit(144, "lb"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/kara/front.svg"
  8564. }
  8565. },
  8566. feet: {
  8567. height: math.unit(6 / 6.765, "feet"),
  8568. name: "Kara's Feet",
  8569. rename: true,
  8570. image: {
  8571. source: "./media/characters/kara/feet.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 9 / 12, "feet")
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(174, "feet"),
  8583. default: true
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(18, "feet"),
  8592. weight: math.unit(4050, "lb"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/tyrone/front.svg",
  8596. extra: 2405 / 2270,
  8597. bottom: 182 / 2587
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(18, "feet"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Macro",
  8609. height: math.unit(300, "feet")
  8610. },
  8611. {
  8612. name: "Megamacro",
  8613. height: math.unit(15, "km")
  8614. },
  8615. {
  8616. name: "Gigamacro",
  8617. height: math.unit(500, "km")
  8618. },
  8619. {
  8620. name: "Teramacro",
  8621. height: math.unit(0.5, "gigameters")
  8622. },
  8623. {
  8624. name: "Omnimacro",
  8625. height: math.unit(1e252, "yottauniverse")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(7 + 8 / 12, "feet"),
  8634. weight: math.unit(120, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/danny/front.svg",
  8638. extra: 1490 / 1350
  8639. }
  8640. },
  8641. back: {
  8642. height: math.unit(7 + 8 / 12, "feet"),
  8643. weight: math.unit(120, "lb"),
  8644. name: "Back",
  8645. image: {
  8646. source: "./media/characters/danny/back.svg",
  8647. extra: 1490 / 1350
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(7 + 8 / 12, "feet"),
  8655. default: true
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(3.5, "inches"),
  8664. weight: math.unit(19, "grams"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/mallow/front.svg",
  8668. extra: 471 / 431
  8669. }
  8670. },
  8671. back: {
  8672. height: math.unit(3.5, "inches"),
  8673. weight: math.unit(19, "grams"),
  8674. name: "Back",
  8675. image: {
  8676. source: "./media/characters/mallow/back.svg",
  8677. extra: 471 / 431
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(3.5, "inches"),
  8685. default: true
  8686. },
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(9, "feet"),
  8694. weight: math.unit(230, "kg"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/starry-aqua/front.svg"
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(9, "feet"),
  8702. weight: math.unit(230, "kg"),
  8703. name: "Back",
  8704. image: {
  8705. source: "./media/characters/starry-aqua/back.svg"
  8706. }
  8707. },
  8708. hand: {
  8709. height: math.unit(9 * 0.1168, "feet"),
  8710. name: "Hand",
  8711. image: {
  8712. source: "./media/characters/starry-aqua/hand.svg"
  8713. }
  8714. },
  8715. foot: {
  8716. height: math.unit(9 * 0.18, "feet"),
  8717. name: "Foot",
  8718. image: {
  8719. source: "./media/characters/starry-aqua/foot.svg"
  8720. }
  8721. }
  8722. },
  8723. [
  8724. {
  8725. name: "Micro",
  8726. height: math.unit(3, "inches")
  8727. },
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(9, "feet")
  8731. },
  8732. {
  8733. name: "Macro",
  8734. height: math.unit(300, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Megamacro",
  8739. height: math.unit(3200, "feet")
  8740. }
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(230, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/luka/front.svg",
  8752. extra: 1,
  8753. bottom: 0.025
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(12 + 8 / 12, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Minimacro",
  8765. height: math.unit(20, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(250, "feet")
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(5, "miles")
  8774. },
  8775. {
  8776. name: "Gigamacro",
  8777. height: math.unit(8000, "miles")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(150, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/natalie-nightring/front.svg",
  8790. extra: 1,
  8791. bottom: 0.06
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Uh Oh",
  8798. height: math.unit(0.1, "mm")
  8799. },
  8800. {
  8801. name: "Small",
  8802. height: math.unit(3, "inches")
  8803. },
  8804. {
  8805. name: "Human Scale",
  8806. height: math.unit(6, "feet")
  8807. },
  8808. {
  8809. name: "Librarian",
  8810. height: math.unit(50, "feet"),
  8811. default: true
  8812. },
  8813. {
  8814. name: "Immense",
  8815. height: math.unit(200, "miles")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(180, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/danni-rosie/front.svg",
  8828. extra: 1260 / 1128,
  8829. bottom: 0.022
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Micro",
  8836. height: math.unit(2, "inches"),
  8837. default: true
  8838. },
  8839. ]
  8840. ))
  8841. characterMakers.push(() => makeCharacter(
  8842. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8843. {
  8844. front: {
  8845. height: math.unit(5 + 9 / 12, "feet"),
  8846. weight: math.unit(220, "lb"),
  8847. name: "Front",
  8848. image: {
  8849. source: "./media/characters/samantha-kruse/front.svg",
  8850. extra: (985 / 935),
  8851. bottom: 0.03
  8852. }
  8853. },
  8854. frontUndressed: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(220, "lb"),
  8857. name: "Front (Undressed)",
  8858. image: {
  8859. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8860. extra: (973 / 923),
  8861. bottom: 0.025
  8862. }
  8863. },
  8864. fat: {
  8865. height: math.unit(5 + 9 / 12, "feet"),
  8866. weight: math.unit(900, "lb"),
  8867. name: "Front (Fat)",
  8868. image: {
  8869. source: "./media/characters/samantha-kruse/fat.svg",
  8870. extra: 2688 / 2561
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(5 + 9 / 12, "feet"),
  8878. default: true
  8879. }
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8884. {
  8885. back: {
  8886. height: math.unit(5 + 4 / 12, "feet"),
  8887. weight: math.unit(4963, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/amelia-rosie/back.svg",
  8891. extra: 1113 / 963,
  8892. bottom: 0.01
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Level 0",
  8899. height: math.unit(5 + 4 / 12, "feet")
  8900. },
  8901. {
  8902. name: "Level 1",
  8903. height: math.unit(164597, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Level 2",
  8908. height: math.unit(956243, "miles")
  8909. },
  8910. {
  8911. name: "Level 3",
  8912. height: math.unit(29421709423, "miles")
  8913. },
  8914. {
  8915. name: "Level 4",
  8916. height: math.unit(154, "lightyears")
  8917. },
  8918. {
  8919. name: "Level 5",
  8920. height: math.unit(4738272, "lightyears")
  8921. },
  8922. {
  8923. name: "Level 6",
  8924. height: math.unit(145787152896, "lightyears")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(5 + 11 / 12, "feet"),
  8933. weight: math.unit(65, "kg"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/rook-kitara/front.svg",
  8937. extra: 1347 / 1274,
  8938. bottom: 0.005
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Totally Unfair",
  8945. height: math.unit(1.8, "mm")
  8946. },
  8947. {
  8948. name: "Lap Rookie",
  8949. height: math.unit(1.4, "feet")
  8950. },
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(5 + 11 / 12, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "How Did This Happen",
  8958. height: math.unit(80, "miles")
  8959. }
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(7, "feet"),
  8967. weight: math.unit(300, "lb"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/pisces/front.svg",
  8971. extra: 2255 / 2115,
  8972. bottom: 0.03
  8973. }
  8974. },
  8975. back: {
  8976. height: math.unit(7, "feet"),
  8977. weight: math.unit(300, "lb"),
  8978. name: "Back",
  8979. image: {
  8980. source: "./media/characters/pisces/back.svg",
  8981. extra: 2146 / 2055,
  8982. bottom: 0.04
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(7, "feet"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Swimming Pool",
  8994. height: math.unit(12.2, "meters")
  8995. },
  8996. {
  8997. name: "Olympic Swimming Pool",
  8998. height: math.unit(56.3, "meters")
  8999. },
  9000. {
  9001. name: "Lake Superior",
  9002. height: math.unit(93900, "meters")
  9003. },
  9004. {
  9005. name: "Mediterranean Sea",
  9006. height: math.unit(644457, "meters")
  9007. },
  9008. {
  9009. name: "World's Oceans",
  9010. height: math.unit(4567491, "meters")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(2.3, "meters"),
  9019. weight: math.unit(120, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/zelas/front.svg"
  9023. }
  9024. },
  9025. side: {
  9026. height: math.unit(2.3, "meters"),
  9027. weight: math.unit(120, "kg"),
  9028. name: "Side",
  9029. image: {
  9030. source: "./media/characters/zelas/side.svg"
  9031. }
  9032. },
  9033. back: {
  9034. height: math.unit(2.3, "meters"),
  9035. weight: math.unit(120, "kg"),
  9036. name: "Back",
  9037. image: {
  9038. source: "./media/characters/zelas/back.svg"
  9039. }
  9040. },
  9041. foot: {
  9042. height: math.unit(1.116, "feet"),
  9043. name: "Foot",
  9044. image: {
  9045. source: "./media/characters/zelas/foot.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(2.3, "meters")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(30, "meters"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(1, "inch"),
  9066. weight: math.unit(0.21, "grams"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/talbot/front.svg",
  9070. extra: 594 / 544
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Micro",
  9077. height: math.unit(1, "inch"),
  9078. default: true
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9084. {
  9085. front: {
  9086. height: math.unit(3 + 3 / 12, "feet"),
  9087. weight: math.unit(51.8, "lb"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/fliss/front.svg",
  9091. extra: 840 / 640
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Teeny Tiny",
  9098. height: math.unit(1, "mm")
  9099. },
  9100. {
  9101. name: "Small",
  9102. height: math.unit(1, "inch"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Standard Sylveon",
  9107. height: math.unit(3 + 3 / 12, "feet")
  9108. },
  9109. {
  9110. name: "Large Nuisance",
  9111. height: math.unit(33, "feet")
  9112. },
  9113. {
  9114. name: "City Filler",
  9115. height: math.unit(3000, "feet")
  9116. },
  9117. {
  9118. name: "New Horizon",
  9119. height: math.unit(6000, "miles")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(5, "cm"),
  9128. weight: math.unit(1.94, "g"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/fleta/front.svg",
  9132. extra: 835 / 803
  9133. }
  9134. },
  9135. back: {
  9136. height: math.unit(5, "cm"),
  9137. weight: math.unit(1.94, "g"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/fleta/back.svg",
  9141. extra: 835 / 803
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(5, "cm"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(225, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/dominic/front.svg",
  9162. extra: 1770 / 1620,
  9163. bottom: 0.025
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(225, "lb"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/dominic/back.svg",
  9172. extra: 1745 / 1620,
  9173. bottom: 0.065
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Nano",
  9180. height: math.unit(0.1, "mm")
  9181. },
  9182. {
  9183. name: "Micro-",
  9184. height: math.unit(1, "mm")
  9185. },
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(4, "inches")
  9189. },
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(6 + 4 / 12, "feet"),
  9193. default: true
  9194. },
  9195. {
  9196. name: "Macro",
  9197. height: math.unit(115, "feet")
  9198. },
  9199. {
  9200. name: "Macro+",
  9201. height: math.unit(955, "feet")
  9202. },
  9203. {
  9204. name: "Megamacro",
  9205. height: math.unit(8990, "feet")
  9206. },
  9207. {
  9208. name: "Gigmacro",
  9209. height: math.unit(9310, "miles")
  9210. },
  9211. {
  9212. name: "Teramacro",
  9213. height: math.unit(1567005010, "miles")
  9214. },
  9215. {
  9216. name: "Examacro",
  9217. height: math.unit(1425, "parsecs")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(400, "feet"),
  9226. weight: math.unit(44444444, "lb"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/major-colonel/front.svg"
  9230. }
  9231. },
  9232. back: {
  9233. height: math.unit(400, "feet"),
  9234. weight: math.unit(44444444, "lb"),
  9235. name: "Back",
  9236. image: {
  9237. source: "./media/characters/major-colonel/back.svg"
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Macro",
  9244. height: math.unit(400, "feet"),
  9245. default: true
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9251. {
  9252. catFront: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(120, "lb"),
  9255. name: "Front (Cat Side)",
  9256. image: {
  9257. source: "./media/characters/axel-lycan/cat-front.svg",
  9258. extra: 430 / 402,
  9259. bottom: 43 / 472.35
  9260. }
  9261. },
  9262. catBack: {
  9263. height: math.unit(6, "feet"),
  9264. weight: math.unit(120, "lb"),
  9265. name: "Back (Cat Side)",
  9266. image: {
  9267. source: "./media/characters/axel-lycan/cat-back.svg",
  9268. extra: 447 / 419,
  9269. bottom: 23.3 / 469
  9270. }
  9271. },
  9272. wolfFront: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(120, "lb"),
  9275. name: "Front (Wolf Side)",
  9276. image: {
  9277. source: "./media/characters/axel-lycan/wolf-front.svg",
  9278. extra: 485 / 456,
  9279. bottom: 19 / 504
  9280. }
  9281. },
  9282. wolfBack: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(120, "lb"),
  9285. name: "Back (Wolf Side)",
  9286. image: {
  9287. source: "./media/characters/axel-lycan/wolf-back.svg",
  9288. extra: 475 / 438,
  9289. bottom: 39.2 / 514
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(1, "km"),
  9297. default: true
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(175, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/vanrel-hyena/front.svg",
  9310. extra: 1086 / 1010,
  9311. bottom: 0.04
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(5 + 9 / 12, "feet"),
  9319. default: true
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(6, "feet"),
  9328. weight: math.unit(103, "lb"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/abbott-absol/front.svg",
  9332. extra: 2010 / 1842
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Megamicro",
  9339. height: math.unit(0.1, "mm")
  9340. },
  9341. {
  9342. name: "Micro",
  9343. height: math.unit(1, "inch")
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(6, "feet"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(264, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/hector/front.svg",
  9361. extra: 2280 / 2130,
  9362. bottom: 0.07
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(12.25, "foot"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(160, "feet")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(150, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/sal/front.svg",
  9387. extra: 1846 / 1699,
  9388. bottom: 0.04
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Megamacro",
  9395. height: math.unit(10, "miles"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9402. {
  9403. front: {
  9404. height: math.unit(3, "meters"),
  9405. weight: math.unit(450, "kg"),
  9406. name: "front",
  9407. image: {
  9408. source: "./media/characters/ranger/front.svg",
  9409. extra: 2401 / 2243,
  9410. bottom: 0.05
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(3, "meters"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(14, "feet"),
  9427. weight: math.unit(800, "kg"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/theresa/front.svg",
  9431. extra: 3575 / 3346,
  9432. bottom: 0.03
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(14, "feet"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9446. {
  9447. front: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(3, "kg"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/ine/front.svg",
  9453. extra: 678 / 539,
  9454. bottom: 0.023
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(2.265, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(5, "feet"),
  9471. weight: math.unit(30, "kg"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/vial/front.svg",
  9475. extra: 1365 / 1277,
  9476. bottom: 0.04
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(5, "feet"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9490. {
  9491. side: {
  9492. height: math.unit(3.4, "meters"),
  9493. weight: math.unit(1000, "lb"),
  9494. name: "Side",
  9495. image: {
  9496. source: "./media/characters/rovoska/side.svg",
  9497. extra: 4403 / 1515
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(3.4, "meters"),
  9505. default: true
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9511. {
  9512. front: {
  9513. height: math.unit(8, "feet"),
  9514. weight: math.unit(315, "lb"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/gunner-rotthbauer/front.svg"
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(8, "feet"),
  9522. weight: math.unit(315, "lb"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/gunner-rotthbauer/back.svg"
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Micro",
  9532. height: math.unit(3.5, "inches")
  9533. },
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(8, "feet"),
  9537. default: true
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(250, "feet")
  9542. },
  9543. {
  9544. name: "Megamacro",
  9545. height: math.unit(1, "AU")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 5 / 12, "feet"),
  9554. weight: math.unit(140, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/allatia/front.svg",
  9558. extra: 1227 / 1180,
  9559. bottom: 0.027
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 5 / 12, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(250, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(8, "miles")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(120, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/tene/front.svg",
  9588. extra: 1728 / 1578,
  9589. bottom: 0.022
  9590. }
  9591. },
  9592. stomping: {
  9593. height: math.unit(2.025, "meters"),
  9594. weight: math.unit(120, "lb"),
  9595. name: "Stomping",
  9596. image: {
  9597. source: "./media/characters/tene/stomping.svg",
  9598. extra: 938 / 873,
  9599. bottom: 0.01
  9600. }
  9601. },
  9602. sitting: {
  9603. height: math.unit(1, "meter"),
  9604. weight: math.unit(120, "lb"),
  9605. name: "Sitting",
  9606. image: {
  9607. source: "./media/characters/tene/sitting.svg",
  9608. extra: 437 / 415,
  9609. bottom: 0.1
  9610. }
  9611. },
  9612. feral: {
  9613. height: math.unit(3.9, "feet"),
  9614. weight: math.unit(250, "lb"),
  9615. name: "Feral",
  9616. image: {
  9617. source: "./media/characters/tene/feral.svg",
  9618. extra: 717 / 458,
  9619. bottom: 0.179
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(6, "feet")
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(300, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Megamacro",
  9635. height: math.unit(5, "miles")
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9641. {
  9642. side: {
  9643. height: math.unit(6, "feet"),
  9644. name: "Side",
  9645. image: {
  9646. source: "./media/characters/evander/side.svg",
  9647. extra: 877 / 477
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(0.83, "meters"),
  9655. default: true
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(12, "feet"),
  9664. weight: math.unit(1000, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9668. extra: 1762 / 1611
  9669. }
  9670. },
  9671. back: {
  9672. height: math.unit(12, "feet"),
  9673. weight: math.unit(1000, "lb"),
  9674. name: "Back",
  9675. image: {
  9676. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9677. extra: 1762 / 1611
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(12, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Kaiju",
  9689. height: math.unit(150, "feet")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/zero-alurus/front.svg"
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/zero-alurus/back.svg"
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Normal",
  9716. height: math.unit(5 + 10 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(60, "feet"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Macro+",
  9725. height: math.unit(450, "feet")
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(200, "lb"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/mega-shi/front.svg",
  9738. extra: 1279 / 1250,
  9739. bottom: 0.02
  9740. }
  9741. },
  9742. back: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(200, "lb"),
  9745. name: "Back",
  9746. image: {
  9747. source: "./media/characters/mega-shi/back.svg",
  9748. extra: 1279 / 1250,
  9749. bottom: 0.02
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(16 + 6 / 12, "feet")
  9757. },
  9758. {
  9759. name: "Third Dimension",
  9760. height: math.unit(40, "meters")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(660, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(10, "miles")
  9770. },
  9771. {
  9772. name: "Planetary Launch",
  9773. height: math.unit(500, "miles")
  9774. },
  9775. {
  9776. name: "Interstellar",
  9777. height: math.unit(1e9, "miles")
  9778. },
  9779. {
  9780. name: "Leaving the Universe",
  9781. height: math.unit(1, "gigaparsec")
  9782. },
  9783. {
  9784. name: "Travelling Universes",
  9785. height: math.unit(30e15, "parsecs")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(150, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/odyssey/front.svg",
  9798. extra: 1782 / 1582,
  9799. bottom: 0.01
  9800. }
  9801. },
  9802. side: {
  9803. height: math.unit(5.7, "feet"),
  9804. weight: math.unit(140, "lb"),
  9805. name: "Side",
  9806. image: {
  9807. source: "./media/characters/odyssey/side.svg",
  9808. extra: 6462 / 5700
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(5 + 4 / 12, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(1, "km")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(3000, "km")
  9824. },
  9825. {
  9826. name: "Gigamacro",
  9827. height: math.unit(1, "AU"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Omniversal",
  9832. height: math.unit(100e14, "lightyears")
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(300, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/mekuto/front.svg",
  9845. extra: 921 / 832,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. hand: {
  9850. height: math.unit(6 / 10.24, "feet"),
  9851. name: "Hand",
  9852. image: {
  9853. source: "./media/characters/mekuto/hand.svg"
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(6 / 5.05, "feet"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/mekuto/foot.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Minimicro",
  9867. height: math.unit(0.2, "inches")
  9868. },
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(1.5, "inches")
  9872. },
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(5 + 11 / 12, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Minimacro",
  9880. height: math.unit(17 + 9 / 12, "feet")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(177.5, "feet")
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(152, "miles")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6.5, "inches"),
  9897. weight: math.unit(13, "oz"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/dafydd-tomos/front.svg",
  9901. extra: 2990 / 2603,
  9902. bottom: 0.03
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(6.5, "inches"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(150, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/splinter/front.svg",
  9923. extra: 2990 / 2882,
  9924. bottom: 0.04
  9925. }
  9926. },
  9927. back: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "lb"),
  9930. name: "Back",
  9931. image: {
  9932. source: "./media/characters/splinter/back.svg",
  9933. extra: 2990 / 2882,
  9934. bottom: 0.04
  9935. }
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(6, "feet")
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(230, "meters"),
  9946. default: true
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9952. {
  9953. front: {
  9954. height: math.unit(4 + 10 / 12, "feet"),
  9955. weight: math.unit(480, "lb"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/snow-gabumon/front.svg",
  9959. extra: 1140 / 963,
  9960. bottom: 0.058
  9961. }
  9962. },
  9963. back: {
  9964. height: math.unit(4 + 10 / 12, "feet"),
  9965. weight: math.unit(480, "lb"),
  9966. name: "Back",
  9967. image: {
  9968. source: "./media/characters/snow-gabumon/back.svg",
  9969. extra: 1115 / 962,
  9970. bottom: 0.041
  9971. }
  9972. },
  9973. frontUndresed: {
  9974. height: math.unit(4 + 10 / 12, "feet"),
  9975. weight: math.unit(480, "lb"),
  9976. name: "Front (Undressed)",
  9977. image: {
  9978. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9979. extra: 1061 / 960,
  9980. bottom: 0.045
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Micro",
  9987. height: math.unit(1, "inch")
  9988. },
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(4 + 10 / 12, "feet"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(200, "feet")
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(120, "miles")
  10001. },
  10002. {
  10003. name: "Gigamacro",
  10004. height: math.unit(9800, "miles")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(1.7, "meters"),
  10013. weight: math.unit(140, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/moody/front.svg",
  10017. extra: 3226 / 3007,
  10018. bottom: 0.087
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Micro",
  10025. height: math.unit(1, "mm")
  10026. },
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(1.7, "meters"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(80, "meters")
  10035. },
  10036. {
  10037. name: "Macro+",
  10038. height: math.unit(500, "meters")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/zyas/front.svg",
  10051. extra: 1180 / 1120,
  10052. bottom: 0.045
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(10, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(500, "feet")
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(5, "miles")
  10069. },
  10070. {
  10071. name: "Teramacro",
  10072. height: math.unit(150000, "miles")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10078. {
  10079. front: {
  10080. height: math.unit(6, "feet"),
  10081. weight: math.unit(150, "lb"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/cuon/front.svg",
  10085. extra: 1390 / 1320,
  10086. bottom: 0.008
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(3, "inches")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(18 + 9 / 12, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(360, "feet")
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(360, "miles")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(2.4, "meters"),
  10115. weight: math.unit(70, "kg"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/nyanuxk/front.svg",
  10119. extra: 1172 / 1084,
  10120. bottom: 0.065
  10121. }
  10122. },
  10123. side: {
  10124. height: math.unit(2.4, "meters"),
  10125. weight: math.unit(70, "kg"),
  10126. name: "Side",
  10127. image: {
  10128. source: "./media/characters/nyanuxk/side.svg",
  10129. extra: 1190 / 1132,
  10130. bottom: 0.007
  10131. }
  10132. },
  10133. back: {
  10134. height: math.unit(2.4, "meters"),
  10135. weight: math.unit(70, "kg"),
  10136. name: "Back",
  10137. image: {
  10138. source: "./media/characters/nyanuxk/back.svg",
  10139. extra: 1200 / 1141,
  10140. bottom: 0.015
  10141. }
  10142. },
  10143. foot: {
  10144. height: math.unit(0.52, "meters"),
  10145. name: "Foot",
  10146. image: {
  10147. source: "./media/characters/nyanuxk/foot.svg"
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Micro",
  10154. height: math.unit(2, "cm")
  10155. },
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(2.4, "meters"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Smaller Macro",
  10163. height: math.unit(120, "meters")
  10164. },
  10165. {
  10166. name: "Bigger Macro",
  10167. height: math.unit(1.2, "km")
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(15, "kilometers")
  10172. },
  10173. {
  10174. name: "Gigamacro",
  10175. height: math.unit(2000, "km")
  10176. },
  10177. {
  10178. name: "Teramacro",
  10179. height: math.unit(500000, "km")
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10185. {
  10186. side: {
  10187. height: math.unit(6, "feet"),
  10188. name: "Side",
  10189. image: {
  10190. source: "./media/characters/ailbhe/side.svg",
  10191. extra: 757 / 464,
  10192. bottom: 0.041
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(1.07, "meters"),
  10200. default: true
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(120, "kg"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/zevulfius/front.svg",
  10213. extra: 965 / 903
  10214. }
  10215. },
  10216. side: {
  10217. height: math.unit(6, "feet"),
  10218. weight: math.unit(120, "kg"),
  10219. name: "Side",
  10220. image: {
  10221. source: "./media/characters/zevulfius/side.svg",
  10222. extra: 939 / 900
  10223. }
  10224. },
  10225. back: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(120, "kg"),
  10228. name: "Back",
  10229. image: {
  10230. source: "./media/characters/zevulfius/back.svg",
  10231. extra: 918 / 854,
  10232. bottom: 0.005
  10233. }
  10234. },
  10235. foot: {
  10236. height: math.unit(6 / 3.72, "feet"),
  10237. name: "Foot",
  10238. image: {
  10239. source: "./media/characters/zevulfius/foot.svg"
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(750, "meters")
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(20, "km"),
  10251. default: true
  10252. },
  10253. {
  10254. name: "Gigamacro",
  10255. height: math.unit(2000, "km")
  10256. },
  10257. {
  10258. name: "Teramacro",
  10259. height: math.unit(250000, "km")
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10265. {
  10266. front: {
  10267. height: math.unit(100, "feet"),
  10268. weight: math.unit(350, "kg"),
  10269. name: "Front",
  10270. image: {
  10271. source: "./media/characters/rikes/front.svg",
  10272. extra: 1565 / 1483,
  10273. bottom: 0.017
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(100, "feet"),
  10281. default: true
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10287. {
  10288. anthro: {
  10289. height: math.unit(8, "feet"),
  10290. weight: math.unit(120, "kg"),
  10291. name: "Anthro",
  10292. image: {
  10293. source: "./media/characters/adam-silver-mane/anthro.svg",
  10294. extra: 5743 / 5339,
  10295. bottom: 0.07
  10296. }
  10297. },
  10298. taur: {
  10299. height: math.unit(16, "feet"),
  10300. weight: math.unit(1500, "kg"),
  10301. name: "Taur",
  10302. image: {
  10303. source: "./media/characters/adam-silver-mane/taur.svg",
  10304. extra: 1713 / 1571,
  10305. bottom: 0.01
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(8, "feet")
  10313. },
  10314. {
  10315. name: "Minimacro",
  10316. height: math.unit(80, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(800, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(8000, "feet")
  10326. },
  10327. {
  10328. name: "Gigamacro",
  10329. height: math.unit(800, "miles")
  10330. },
  10331. {
  10332. name: "Teramacro",
  10333. height: math.unit(80000, "miles")
  10334. },
  10335. {
  10336. name: "Celestial",
  10337. height: math.unit(8e6, "miles")
  10338. },
  10339. {
  10340. name: "Star Dragon",
  10341. height: math.unit(800000, "parsecs")
  10342. },
  10343. {
  10344. name: "Godly",
  10345. height: math.unit(800, "teraparsecs")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/ky'owin/front.svg",
  10358. extra: 3888 / 3068,
  10359. bottom: 0.015
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(6 + 8 / 12, "feet")
  10367. },
  10368. {
  10369. name: "Large",
  10370. height: math.unit(68, "feet")
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(132, "feet")
  10375. },
  10376. {
  10377. name: "Macro+",
  10378. height: math.unit(340, "feet")
  10379. },
  10380. {
  10381. name: "Macro++",
  10382. height: math.unit(680, "feet"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Megamacro",
  10387. height: math.unit(1, "mile")
  10388. },
  10389. {
  10390. name: "Megamacro+",
  10391. height: math.unit(10, "miles")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(4, "feet"),
  10400. weight: math.unit(50, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/mal/front.svg",
  10404. extra: 785 / 724,
  10405. bottom: 0.07
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Micro",
  10412. height: math.unit(4, "inches")
  10413. },
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(4, "feet"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(200, "feet")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(150, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/jordan-deware/front.svg",
  10434. extra: 1191 / 1012
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Nano",
  10441. height: math.unit(0.01, "mm")
  10442. },
  10443. {
  10444. name: "Minimicro",
  10445. height: math.unit(1, "mm")
  10446. },
  10447. {
  10448. name: "Micro",
  10449. height: math.unit(0.5, "inches")
  10450. },
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(4, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Minimacro",
  10458. height: math.unit(40, "meters")
  10459. },
  10460. {
  10461. name: "Small Macro",
  10462. height: math.unit(400, "meters")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(4, "miles")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(40, "miles")
  10471. },
  10472. {
  10473. name: "Megamacro+",
  10474. height: math.unit(400, "miles")
  10475. },
  10476. {
  10477. name: "Gigamacro",
  10478. height: math.unit(400000, "miles")
  10479. },
  10480. ]
  10481. ))
  10482. characterMakers.push(() => makeCharacter(
  10483. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10484. {
  10485. side: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(150, "lb"),
  10488. name: "Side",
  10489. image: {
  10490. source: "./media/characters/kimiko/side.svg",
  10491. extra: 600 / 358
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(15, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(220, "feet")
  10504. },
  10505. {
  10506. name: "Macro+",
  10507. height: math.unit(1450, "feet")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(11500, "feet")
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(9500, "miles")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(2208005005, "miles")
  10520. },
  10521. {
  10522. name: "Examacro",
  10523. height: math.unit(2750, "parsecs")
  10524. },
  10525. {
  10526. name: "Zettamacro",
  10527. height: math.unit(101500, "parsecs")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(70, "kg"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/andrew-sleepy/front.svg"
  10540. }
  10541. },
  10542. side: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(70, "kg"),
  10545. name: "Side",
  10546. image: {
  10547. source: "./media/characters/andrew-sleepy/side.svg"
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Micro",
  10554. height: math.unit(1, "mm"),
  10555. default: true
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/judio/front.svg",
  10568. extra: 1258 / 1110
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(5 + 6 / 12, "feet")
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(1000, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Megamacro",
  10584. height: math.unit(10, "miles")
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(68, "kg"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/nomaxice/front.svg",
  10597. extra: 1498 / 1073,
  10598. bottom: 0.075
  10599. }
  10600. },
  10601. foot: {
  10602. height: math.unit(1.1, "feet"),
  10603. name: "Foot",
  10604. image: {
  10605. source: "./media/characters/nomaxice/foot.svg"
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(8, "cm")
  10613. },
  10614. {
  10615. name: "Norm",
  10616. height: math.unit(1.82, "m")
  10617. },
  10618. {
  10619. name: "Norm+",
  10620. height: math.unit(8.8, "feet")
  10621. },
  10622. {
  10623. name: "Big",
  10624. height: math.unit(8, "meters"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(18, "meters")
  10630. },
  10631. {
  10632. name: "Macro+",
  10633. height: math.unit(88, "meters")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(12, "feet"),
  10642. weight: math.unit(1.5, "tons"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/dydros/front.svg",
  10646. extra: 863 / 800,
  10647. bottom: 0.015
  10648. }
  10649. },
  10650. back: {
  10651. height: math.unit(12, "feet"),
  10652. weight: math.unit(1.5, "tons"),
  10653. name: "Back",
  10654. image: {
  10655. source: "./media/characters/dydros/back.svg",
  10656. extra: 900 / 843,
  10657. bottom: 0.005
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(12, "feet"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(100, "kg"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/riggi/front.svg",
  10678. extra: 5787 / 5303
  10679. }
  10680. },
  10681. hyper: {
  10682. height: math.unit(6 * 5 / 3, "feet"),
  10683. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10684. name: "Hyper",
  10685. image: {
  10686. source: "./media/characters/riggi/hyper.svg",
  10687. extra: 3595 / 3485
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Small Macro",
  10694. height: math.unit(50, "feet")
  10695. },
  10696. {
  10697. name: "Default",
  10698. height: math.unit(200, "feet"),
  10699. default: true
  10700. },
  10701. {
  10702. name: "Loom",
  10703. height: math.unit(10000, "feet")
  10704. },
  10705. {
  10706. name: "Cruising Altitude",
  10707. height: math.unit(30000, "feet")
  10708. },
  10709. {
  10710. name: "Megamacro",
  10711. height: math.unit(100, "miles")
  10712. },
  10713. {
  10714. name: "Continent Sized",
  10715. height: math.unit(2800, "miles")
  10716. },
  10717. {
  10718. name: "Earth Sized",
  10719. height: math.unit(8000, "miles")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(250, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/alexi/front.svg",
  10732. extra: 3483 / 3291,
  10733. bottom: 0.04
  10734. }
  10735. },
  10736. back: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(250, "lb"),
  10739. name: "Back",
  10740. image: {
  10741. source: "./media/characters/alexi/back.svg",
  10742. extra: 3533 / 3356,
  10743. bottom: 0.021
  10744. }
  10745. },
  10746. frontTransforming: {
  10747. height: math.unit(8.58, "feet"),
  10748. weight: math.unit(1300, "lb"),
  10749. name: "Transforming",
  10750. image: {
  10751. source: "./media/characters/alexi/front-transforming.svg",
  10752. extra: 437 / 409,
  10753. bottom: 19 / 458.66
  10754. }
  10755. },
  10756. frontTransformed: {
  10757. height: math.unit(12.5, "feet"),
  10758. weight: math.unit(4000, "lb"),
  10759. name: "Transformed",
  10760. image: {
  10761. source: "./media/characters/alexi/front-transformed.svg",
  10762. extra: 639 / 614,
  10763. bottom: 30.55 / 671
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(14, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Minimacro",
  10775. height: math.unit(30, "meters")
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(500, "meters")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(9000, "km")
  10784. },
  10785. {
  10786. name: "Teramacro",
  10787. height: math.unit(384000, "km")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/kayroo/front.svg",
  10800. extra: 1153 / 1038,
  10801. bottom: 0.06
  10802. }
  10803. },
  10804. foot: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Foot",
  10808. image: {
  10809. source: "./media/characters/kayroo/foot.svg"
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(8, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Minimacro",
  10821. height: math.unit(250, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(2800, "feet")
  10826. },
  10827. {
  10828. name: "Megamacro",
  10829. height: math.unit(5200, "feet")
  10830. },
  10831. {
  10832. name: "Gigamacro",
  10833. height: math.unit(27000, "feet")
  10834. },
  10835. {
  10836. name: "Omega",
  10837. height: math.unit(45000, "feet")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(18, "feet"),
  10846. weight: math.unit(5800, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/rhys/front.svg",
  10850. extra: 3386 / 3090,
  10851. bottom: 0.07
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(18, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Working Size",
  10863. height: math.unit(200, "feet")
  10864. },
  10865. {
  10866. name: "Demolition Size",
  10867. height: math.unit(2000, "feet")
  10868. },
  10869. {
  10870. name: "Maximum Licensed Size",
  10871. height: math.unit(5, "miles")
  10872. },
  10873. {
  10874. name: "Maximum Observed Size",
  10875. height: math.unit(10, "yottameters")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(250, "lb"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/toto/front.svg",
  10888. extra: 527 / 479,
  10889. bottom: 0.05
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Micro",
  10896. height: math.unit(3, "feet")
  10897. },
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(10, "feet")
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(150, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(1200, "feet")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "King", species: ["lion"], tags: ["anthro"] },
  10915. {
  10916. back: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(150, "lb"),
  10919. name: "Back",
  10920. image: {
  10921. source: "./media/characters/king/back.svg"
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(2, "inches")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(8, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(200, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(50, "miles")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10947. {
  10948. anthro: {
  10949. height: math.unit(6 + 5 / 12, "feet"),
  10950. weight: math.unit(280, "lb"),
  10951. name: "Anthro",
  10952. image: {
  10953. source: "./media/characters/cordite/anthro.svg",
  10954. extra: 1986 / 1905,
  10955. bottom: 0.025
  10956. }
  10957. },
  10958. feral: {
  10959. height: math.unit(2, "feet"),
  10960. weight: math.unit(90, "lb"),
  10961. name: "Feral",
  10962. image: {
  10963. source: "./media/characters/cordite/feral.svg",
  10964. extra: 1260 / 755,
  10965. bottom: 0.05
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(6 + 5 / 12, "feet"),
  10973. default: true
  10974. },
  10975. ]
  10976. ))
  10977. characterMakers.push(() => makeCharacter(
  10978. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10979. {
  10980. front: {
  10981. height: math.unit(6, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Front",
  10984. image: {
  10985. source: "./media/characters/pianostrong/front.svg",
  10986. extra: 6577 / 6254,
  10987. bottom: 0.02
  10988. }
  10989. },
  10990. side: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(150, "lb"),
  10993. name: "Side",
  10994. image: {
  10995. source: "./media/characters/pianostrong/side.svg",
  10996. extra: 6106 / 5730
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/pianostrong/back.svg",
  11005. extra: 6085 / 5733,
  11006. bottom: 0.01
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Macro",
  11013. height: math.unit(100, "feet")
  11014. },
  11015. {
  11016. name: "Macro+",
  11017. height: math.unit(300, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro++",
  11022. height: math.unit(1000, "feet")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/kona/front.svg",
  11035. extra: 2960 / 2629,
  11036. bottom: 0.005
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(11 + 8 / 12, "feet")
  11044. },
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(850, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Macro+",
  11052. height: math.unit(1.5, "km"),
  11053. default: true
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(80, "miles")
  11058. },
  11059. {
  11060. name: "Gigamacro",
  11061. height: math.unit(3500, "miles")
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11067. {
  11068. side: {
  11069. height: math.unit(1.9, "meters"),
  11070. weight: math.unit(326, "kg"),
  11071. name: "Side",
  11072. image: {
  11073. source: "./media/characters/levi/side.svg",
  11074. extra: 1704 / 1334,
  11075. bottom: 0.02
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(1.9, "meters"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(20, "meters")
  11088. },
  11089. {
  11090. name: "Macro+",
  11091. height: math.unit(200, "meters")
  11092. },
  11093. {
  11094. name: "Megamacro",
  11095. height: math.unit(2, "km")
  11096. },
  11097. {
  11098. name: "Megamacro+",
  11099. height: math.unit(20, "km")
  11100. },
  11101. {
  11102. name: "Gigamacro",
  11103. height: math.unit(2500, "km")
  11104. },
  11105. {
  11106. name: "Gigamacro+",
  11107. height: math.unit(120000, "km")
  11108. },
  11109. {
  11110. name: "Teramacro",
  11111. height: math.unit(7.77e6, "km")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(6 + 4 / 12, "feet"),
  11120. weight: math.unit(188, "lb"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/bmc/front.svg",
  11124. extra: 1067 / 1022,
  11125. bottom: 0.047
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Human-sized",
  11132. height: math.unit(6 + 4 / 12, "feet")
  11133. },
  11134. {
  11135. name: "Small",
  11136. height: math.unit(250, "feet")
  11137. },
  11138. {
  11139. name: "Normal",
  11140. height: math.unit(1250, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Good Day",
  11145. height: math.unit(88, "miles")
  11146. },
  11147. {
  11148. name: "Largest Measured Size",
  11149. height: math.unit(11.2e6, "lightyears")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(20, "feet"),
  11158. weight: math.unit(2016, "kg"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/sven-the-kaiju/front.svg",
  11162. extra: 1277/1250,
  11163. bottom: 35/1312
  11164. }
  11165. },
  11166. mouth: {
  11167. height: math.unit(1.85, "feet"),
  11168. name: "Mouth",
  11169. image: {
  11170. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Fairy",
  11177. height: math.unit(6, "inches")
  11178. },
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(20, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Rampage",
  11186. height: math.unit(200, "feet")
  11187. },
  11188. {
  11189. name: "Archfey Forest Guardian",
  11190. height: math.unit(1, "mile")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(4, "meters"),
  11199. weight: math.unit(2, "tons"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/marik/front.svg",
  11203. extra: 1057 / 1003,
  11204. bottom: 0.08
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(4, "meters"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(20, "meters")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(50, "km")
  11221. },
  11222. {
  11223. name: "Gigamacro",
  11224. height: math.unit(100, "km")
  11225. },
  11226. {
  11227. name: "Alpha Macro",
  11228. height: math.unit(7.88e7, "yottameters")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(110, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/mel/front.svg",
  11241. extra: 736 / 617,
  11242. bottom: 0.017
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Pico",
  11249. height: math.unit(3, "pm")
  11250. },
  11251. {
  11252. name: "Nano",
  11253. height: math.unit(3, "nm")
  11254. },
  11255. {
  11256. name: "Micro",
  11257. height: math.unit(0.3, "mm"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Micro+",
  11262. height: math.unit(3, "mm")
  11263. },
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(5 + 10.5 / 12, "feet")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11272. {
  11273. kaiju: {
  11274. height: math.unit(1.75, "meters"),
  11275. weight: math.unit(55, "kg"),
  11276. name: "Kaiju",
  11277. image: {
  11278. source: "./media/characters/lykonous/kaiju.svg",
  11279. extra: 1055 / 946,
  11280. bottom: 0.135
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Normal",
  11287. height: math.unit(2.5, "meters"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Kaiju Dragon",
  11292. height: math.unit(60, "meters")
  11293. },
  11294. {
  11295. name: "Mega Kaiju",
  11296. height: math.unit(120, "km")
  11297. },
  11298. {
  11299. name: "Giga Kaiju",
  11300. height: math.unit(200, "megameters")
  11301. },
  11302. {
  11303. name: "Terra Kaiju",
  11304. height: math.unit(400, "gigameters")
  11305. },
  11306. {
  11307. name: "Kaiju Dragon God",
  11308. height: math.unit(13000, "exaparsecs")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(150, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/blü/front.svg",
  11321. extra: 1883 / 1564,
  11322. bottom: 0.031
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(13, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Big Boi",
  11334. height: math.unit(150, "meters")
  11335. },
  11336. {
  11337. name: "Mini Stomper",
  11338. height: math.unit(300, "meters")
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(1000, "meters")
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(11000, "meters")
  11347. },
  11348. {
  11349. name: "Gigamacro",
  11350. height: math.unit(11000, "km")
  11351. },
  11352. {
  11353. name: "Teramacro",
  11354. height: math.unit(420000, "km")
  11355. },
  11356. {
  11357. name: "Examacro",
  11358. height: math.unit(120, "parsecs")
  11359. },
  11360. {
  11361. name: "God Tho",
  11362. height: math.unit(98000000000, "parsecs")
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11368. {
  11369. taurFront: {
  11370. height: math.unit(6, "feet"),
  11371. weight: math.unit(200, "lb"),
  11372. name: "Taur (Front)",
  11373. image: {
  11374. source: "./media/characters/scales/taur-front.svg",
  11375. extra: 1,
  11376. bottom: 0.05
  11377. }
  11378. },
  11379. taurBack: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(200, "lb"),
  11382. name: "Taur (Back)",
  11383. image: {
  11384. source: "./media/characters/scales/taur-back.svg",
  11385. extra: 1,
  11386. bottom: 0.08
  11387. }
  11388. },
  11389. anthro: {
  11390. height: math.unit(6 * 7 / 12, "feet"),
  11391. weight: math.unit(100, "lb"),
  11392. name: "Anthro",
  11393. image: {
  11394. source: "./media/characters/scales/anthro.svg",
  11395. extra: 1,
  11396. bottom: 0.06
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(12, "feet"),
  11404. default: true
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(150, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/koragos/front.svg",
  11417. extra: 841 / 794,
  11418. bottom: 0.035
  11419. }
  11420. },
  11421. back: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Back",
  11425. image: {
  11426. source: "./media/characters/koragos/back.svg",
  11427. extra: 841 / 810,
  11428. bottom: 0.022
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(6 + 11 / 12, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(490, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(10, "miles")
  11445. },
  11446. {
  11447. name: "Gigamacro",
  11448. height: math.unit(50, "miles")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(250, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/xylrem/front.svg",
  11461. extra: 3323 / 3050,
  11462. bottom: 0.065
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Micro",
  11469. height: math.unit(4, "feet")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(16, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(2720, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(25000, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(8, "feet"),
  11491. weight: math.unit(250, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/ikideru/front.svg",
  11495. extra: 930 / 870,
  11496. bottom: 0.087
  11497. }
  11498. },
  11499. back: {
  11500. height: math.unit(8, "feet"),
  11501. weight: math.unit(250, "kg"),
  11502. name: "Back",
  11503. image: {
  11504. source: "./media/characters/ikideru/back.svg",
  11505. extra: 919 / 852,
  11506. bottom: 0.055
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Rare",
  11513. height: math.unit(8, "feet"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Playful Loom",
  11518. height: math.unit(80, "feet")
  11519. },
  11520. {
  11521. name: "City Leaner",
  11522. height: math.unit(230, "feet")
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(2500, "feet")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(26400, "feet")
  11531. },
  11532. {
  11533. name: "Tectonic Shifter",
  11534. height: math.unit(1.7, "megameters")
  11535. },
  11536. {
  11537. name: "Planet Carer",
  11538. height: math.unit(21, "megameters")
  11539. },
  11540. {
  11541. name: "God",
  11542. height: math.unit(11157.22, "parsecs")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(120, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/neo/front.svg"
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Micro",
  11561. height: math.unit(2, "inches"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Human Size",
  11566. height: math.unit(5 + 8 / 12, "feet")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(13 + 10 / 12, "feet"),
  11575. weight: math.unit(5320, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/chauncey-chantz/front.svg",
  11579. extra: 1587 / 1435,
  11580. bottom: 0.02
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(13 + 10 / 12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(45, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(250, "miles")
  11597. },
  11598. {
  11599. name: "Planetary",
  11600. height: math.unit(10000, "miles")
  11601. },
  11602. {
  11603. name: "Galactic",
  11604. height: math.unit(40000, "parsecs")
  11605. },
  11606. {
  11607. name: "Universal",
  11608. height: math.unit(1, "yottameter")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/epifox/front.svg",
  11621. extra: 1,
  11622. bottom: 0.075
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Micro",
  11629. height: math.unit(6, "inches")
  11630. },
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(12, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(3810, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(500, "miles")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(1.8796, "m"),
  11651. weight: math.unit(230, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/colin-t/front.svg",
  11655. extra: 1272 / 1193,
  11656. bottom: 0.07
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(0.571, "meters")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(1.8796, "meters"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Tall",
  11672. height: math.unit(4, "meters")
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(67.241, "meters")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(371.856, "meters")
  11681. },
  11682. {
  11683. name: "Planetary",
  11684. height: math.unit(12631.5689, "km")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(1.85, "meters"),
  11693. weight: math.unit(80, "kg"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/matvei/front.svg",
  11697. extra: 614 / 594,
  11698. bottom: 0.01
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(1.85, "meters"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(5 + 9 / 12, "feet"),
  11715. weight: math.unit(70, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/quincy/front.svg",
  11719. extra: 3041 / 2751
  11720. }
  11721. },
  11722. back: {
  11723. height: math.unit(5 + 9 / 12, "feet"),
  11724. weight: math.unit(70, "lb"),
  11725. name: "Back",
  11726. image: {
  11727. source: "./media/characters/quincy/back.svg",
  11728. extra: 3041 / 2751
  11729. }
  11730. },
  11731. flying: {
  11732. height: math.unit(5 + 4 / 12, "feet"),
  11733. weight: math.unit(70, "lb"),
  11734. name: "Flying",
  11735. image: {
  11736. source: "./media/characters/quincy/flying.svg",
  11737. extra: 1044 / 930
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Micro",
  11744. height: math.unit(3, "cm")
  11745. },
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(5 + 9 / 12, "feet")
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(200, "meters"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Megamacro",
  11757. height: math.unit(1000, "meters")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(4 + 7 / 12, "feet"),
  11766. weight: math.unit(50, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/vanrel/front.svg",
  11770. extra: 1,
  11771. bottom: 0.02
  11772. }
  11773. },
  11774. frontAlt: {
  11775. height: math.unit(4 + 7 / 12, "feet"),
  11776. weight: math.unit(50, "lb"),
  11777. name: "Front-alt",
  11778. image: {
  11779. source: "./media/characters/vanrel/front-alt.svg",
  11780. extra: 1,
  11781. bottom: 15 / 1511
  11782. }
  11783. },
  11784. elemental: {
  11785. height: math.unit(3, "feet"),
  11786. weight: math.unit(50, "lb"),
  11787. name: "Elemental",
  11788. image: {
  11789. source: "./media/characters/vanrel/elemental.svg",
  11790. extra: 192.3 / 162.8,
  11791. bottom: 1.79 / 194.17
  11792. }
  11793. },
  11794. side: {
  11795. height: math.unit(4 + 7 / 12, "feet"),
  11796. weight: math.unit(50, "lb"),
  11797. name: "Side",
  11798. image: {
  11799. source: "./media/characters/vanrel/side.svg",
  11800. extra: 1,
  11801. bottom: 0.025
  11802. }
  11803. },
  11804. tome: {
  11805. height: math.unit(1.35, "feet"),
  11806. weight: math.unit(10, "lb"),
  11807. name: "Vanrel's Tome",
  11808. rename: true,
  11809. image: {
  11810. source: "./media/characters/vanrel/tome.svg"
  11811. }
  11812. },
  11813. beans: {
  11814. height: math.unit(0.89, "feet"),
  11815. name: "Beans",
  11816. image: {
  11817. source: "./media/characters/vanrel/beans.svg"
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(4 + 7 / 12, "feet"),
  11825. default: true
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(7 + 5 / 12, "feet"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/kuiper-vanrel/front.svg",
  11837. extra: 1219/1169,
  11838. bottom: 69/1288
  11839. }
  11840. },
  11841. back: {
  11842. height: math.unit(7 + 5 / 12, "feet"),
  11843. name: "Back",
  11844. image: {
  11845. source: "./media/characters/kuiper-vanrel/back.svg",
  11846. extra: 1236/1193,
  11847. bottom: 27/1263
  11848. }
  11849. },
  11850. foot: {
  11851. height: math.unit(0.55, "meters"),
  11852. name: "Foot",
  11853. image: {
  11854. source: "./media/characters/kuiper-vanrel/foot.svg",
  11855. }
  11856. },
  11857. battle: {
  11858. height: math.unit(6.824, "feet"),
  11859. name: "Battle",
  11860. image: {
  11861. source: "./media/characters/kuiper-vanrel/battle.svg",
  11862. extra: 1466 / 1327,
  11863. bottom: 29 / 1492.5
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(7 + 5 / 12, "feet"),
  11871. default: true
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(8 + 5 / 12, "feet"),
  11880. weight: math.unit(150, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/keset-vanrel/front.svg",
  11884. extra: 1150 / 1084,
  11885. bottom: 0.05
  11886. }
  11887. },
  11888. hand: {
  11889. height: math.unit(0.6, "meters"),
  11890. name: "Hand",
  11891. image: {
  11892. source: "./media/characters/keset-vanrel/hand.svg"
  11893. }
  11894. },
  11895. foot: {
  11896. height: math.unit(0.94978, "meters"),
  11897. name: "Foot",
  11898. image: {
  11899. source: "./media/characters/keset-vanrel/foot.svg"
  11900. }
  11901. },
  11902. battle: {
  11903. height: math.unit(7.408, "feet"),
  11904. weight: math.unit(150, "lb"),
  11905. name: "Battle",
  11906. image: {
  11907. source: "./media/characters/keset-vanrel/battle.svg",
  11908. extra: 1890 / 1386,
  11909. bottom: 73.28 / 1970
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(8 + 5 / 12, "feet"),
  11917. default: true
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/neos/front.svg",
  11930. extra: 1696 / 992,
  11931. bottom: 0.14
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Normal",
  11938. height: math.unit(54, "cm"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Macro",
  11943. height: math.unit(100, "m")
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(10, "km")
  11948. },
  11949. {
  11950. name: "Megamacro+",
  11951. height: math.unit(100, "km")
  11952. },
  11953. {
  11954. name: "Gigamacro",
  11955. height: math.unit(100, "Mm")
  11956. },
  11957. {
  11958. name: "Teramacro",
  11959. height: math.unit(100, "Gm")
  11960. },
  11961. {
  11962. name: "Examacro",
  11963. height: math.unit(100, "Em")
  11964. },
  11965. {
  11966. name: "Godly",
  11967. height: math.unit(10000, "Ym")
  11968. },
  11969. {
  11970. name: "Beyond Godly",
  11971. height: math.unit(25, "multiverses")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11977. {
  11978. feminine: {
  11979. height: math.unit(5, "feet"),
  11980. weight: math.unit(100, "lb"),
  11981. name: "Feminine",
  11982. image: {
  11983. source: "./media/characters/sammy-mouse/feminine.svg",
  11984. extra: 2526 / 2425,
  11985. bottom: 0.123
  11986. }
  11987. },
  11988. masculine: {
  11989. height: math.unit(5, "feet"),
  11990. weight: math.unit(100, "lb"),
  11991. name: "Masculine",
  11992. image: {
  11993. source: "./media/characters/sammy-mouse/masculine.svg",
  11994. extra: 2526 / 2425,
  11995. bottom: 0.123
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Micro",
  12002. height: math.unit(5, "inches")
  12003. },
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(5, "feet"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(60, "feet")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(4, "feet"),
  12020. weight: math.unit(50, "lb"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/kole/front.svg",
  12024. extra: 1423 / 1303,
  12025. bottom: 0.025
  12026. }
  12027. },
  12028. back: {
  12029. height: math.unit(4, "feet"),
  12030. weight: math.unit(50, "lb"),
  12031. name: "Back",
  12032. image: {
  12033. source: "./media/characters/kole/back.svg",
  12034. extra: 1426 / 1280,
  12035. bottom: 0.02
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(4, "feet"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(2 + 6 / 12, "feet"),
  12052. weight: math.unit(20, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/rufran/front.svg",
  12056. extra: 2041 / 1839,
  12057. bottom: 0.055
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(2 + 6 / 12, "feet"),
  12062. weight: math.unit(20, "lb"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/rufran/back.svg",
  12066. extra: 2054 / 1839,
  12067. bottom: 0.01
  12068. }
  12069. },
  12070. hand: {
  12071. height: math.unit(0.2166, "meters"),
  12072. name: "Hand",
  12073. image: {
  12074. source: "./media/characters/rufran/hand.svg"
  12075. }
  12076. },
  12077. foot: {
  12078. height: math.unit(0.185, "meters"),
  12079. name: "Foot",
  12080. image: {
  12081. source: "./media/characters/rufran/foot.svg"
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Micro",
  12088. height: math.unit(1, "inch")
  12089. },
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(2 + 6 / 12, "feet"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Big",
  12097. height: math.unit(60, "feet")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(325, "feet")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(0.3, "meters"),
  12110. weight: math.unit(3.5, "kg"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/chip/front.svg",
  12114. extra: 748 / 674
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(1, "inch"),
  12122. default: true
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12128. {
  12129. side: {
  12130. height: math.unit(2.3, "meters"),
  12131. weight: math.unit(3500, "lb"),
  12132. name: "Side",
  12133. image: {
  12134. source: "./media/characters/torvid/side.svg",
  12135. extra: 1972 / 722,
  12136. bottom: 0.035
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Normal",
  12143. height: math.unit(2.3, "meters"),
  12144. default: true
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(2, "meters"),
  12153. weight: math.unit(150.5, "kg"),
  12154. name: "Front",
  12155. image: {
  12156. source: "./media/characters/susan/front.svg",
  12157. extra: 693 / 635,
  12158. bottom: 0.05
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(505, "miles"),
  12166. default: true
  12167. },
  12168. ]
  12169. ))
  12170. characterMakers.push(() => makeCharacter(
  12171. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12172. {
  12173. front: {
  12174. height: math.unit(6, "feet"),
  12175. weight: math.unit(150, "lb"),
  12176. name: "Front",
  12177. image: {
  12178. source: "./media/characters/raindrops/front.svg",
  12179. extra: 2655 / 2461,
  12180. bottom: 49 / 2705
  12181. }
  12182. },
  12183. back: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(150, "lb"),
  12186. name: "Back",
  12187. image: {
  12188. source: "./media/characters/raindrops/back.svg",
  12189. extra: 2574 / 2400,
  12190. bottom: 65 / 2634
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Micro",
  12197. height: math.unit(6, "inches")
  12198. },
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(6 + 2 / 12, "feet")
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(131, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Megamacro",
  12210. height: math.unit(15, "miles")
  12211. },
  12212. {
  12213. name: "Gigamacro",
  12214. height: math.unit(4000, "miles")
  12215. },
  12216. {
  12217. name: "Teramacro",
  12218. height: math.unit(315000, "miles")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(2.794, "meters"),
  12227. weight: math.unit(325, "kg"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/tezwa/front.svg",
  12231. extra: 2083 / 1906,
  12232. bottom: 0.031
  12233. }
  12234. },
  12235. foot: {
  12236. height: math.unit(0.687, "meters"),
  12237. name: "Foot",
  12238. image: {
  12239. source: "./media/characters/tezwa/foot.svg"
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Normal",
  12246. height: math.unit(9 + 2 / 12, "feet"),
  12247. default: true
  12248. },
  12249. ]
  12250. ))
  12251. characterMakers.push(() => makeCharacter(
  12252. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12253. {
  12254. front: {
  12255. height: math.unit(58, "feet"),
  12256. weight: math.unit(89000, "lb"),
  12257. name: "Front",
  12258. image: {
  12259. source: "./media/characters/typhus/front.svg",
  12260. extra: 816 / 800,
  12261. bottom: 0.065
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(58, "feet"),
  12269. default: true
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12275. {
  12276. front: {
  12277. height: math.unit(12, "feet"),
  12278. weight: math.unit(6, "tonnes"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/lyra-von-wulf/front.svg",
  12282. extra: 1,
  12283. bottom: 0.10
  12284. }
  12285. },
  12286. frontMecha: {
  12287. height: math.unit(12, "feet"),
  12288. weight: math.unit(12, "tonnes"),
  12289. name: "Front (Mecha)",
  12290. image: {
  12291. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12292. extra: 1,
  12293. bottom: 0.042
  12294. }
  12295. },
  12296. maw: {
  12297. height: math.unit(2.2, "feet"),
  12298. name: "Maw",
  12299. image: {
  12300. source: "./media/characters/lyra-von-wulf/maw.svg"
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(12, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Classic",
  12312. height: math.unit(50, "feet")
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(500, "feet")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(1, "mile")
  12321. },
  12322. {
  12323. name: "Gigamacro",
  12324. height: math.unit(400, "miles")
  12325. },
  12326. {
  12327. name: "Teramacro",
  12328. height: math.unit(22000, "miles")
  12329. },
  12330. {
  12331. name: "Solarmacro",
  12332. height: math.unit(8600000, "miles")
  12333. },
  12334. {
  12335. name: "Galactic",
  12336. height: math.unit(1057000, "lightyears")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6 + 10 / 12, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/dixon/front.svg",
  12349. extra: 3361 / 3209,
  12350. bottom: 0.01
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(6 + 10 / 12, "feet"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Big",
  12362. height: math.unit(12, "meters")
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(500, "meters")
  12367. },
  12368. {
  12369. name: "Megamacro",
  12370. height: math.unit(2, "km")
  12371. },
  12372. ]
  12373. ))
  12374. characterMakers.push(() => makeCharacter(
  12375. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12376. {
  12377. front: {
  12378. height: math.unit(185, "cm"),
  12379. weight: math.unit(68, "kg"),
  12380. name: "Front",
  12381. image: {
  12382. source: "./media/characters/kauko/front.svg",
  12383. extra: 1455 / 1421,
  12384. bottom: 0.03
  12385. }
  12386. },
  12387. back: {
  12388. height: math.unit(185, "cm"),
  12389. weight: math.unit(68, "kg"),
  12390. name: "Back",
  12391. image: {
  12392. source: "./media/characters/kauko/back.svg",
  12393. extra: 1455 / 1421,
  12394. bottom: 0.004
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(185, "cm"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "kg"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/varg/front.svg",
  12415. extra: 1108 / 1018,
  12416. bottom: 0.0375
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(5, "meters")
  12424. },
  12425. {
  12426. name: "Macro",
  12427. height: math.unit(200, "meters")
  12428. },
  12429. {
  12430. name: "Megamacro",
  12431. height: math.unit(20, "kilometers")
  12432. },
  12433. {
  12434. name: "True Size",
  12435. height: math.unit(211, "km"),
  12436. default: true
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(1000, "km")
  12441. },
  12442. {
  12443. name: "Gigamacro+",
  12444. height: math.unit(8000, "km")
  12445. },
  12446. {
  12447. name: "Teramacro",
  12448. height: math.unit(1000000, "km")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(7 + 7 / 12, "feet"),
  12457. weight: math.unit(267, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/dayza/front.svg",
  12461. extra: 1262 / 1200,
  12462. bottom: 0.035
  12463. }
  12464. },
  12465. side: {
  12466. height: math.unit(7 + 7 / 12, "feet"),
  12467. weight: math.unit(267, "lb"),
  12468. name: "Side",
  12469. image: {
  12470. source: "./media/characters/dayza/side.svg",
  12471. extra: 1295 / 1245,
  12472. bottom: 0.05
  12473. }
  12474. },
  12475. back: {
  12476. height: math.unit(7 + 7 / 12, "feet"),
  12477. weight: math.unit(267, "lb"),
  12478. name: "Back",
  12479. image: {
  12480. source: "./media/characters/dayza/back.svg",
  12481. extra: 1241 / 1170
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(7 + 7 / 12, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(155, "feet")
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(6 + 5 / 12, "feet"),
  12502. weight: math.unit(160, "lb"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/xanthos/front.svg",
  12506. extra: 1,
  12507. bottom: 0.04
  12508. }
  12509. },
  12510. back: {
  12511. height: math.unit(6 + 5 / 12, "feet"),
  12512. weight: math.unit(160, "lb"),
  12513. name: "Back",
  12514. image: {
  12515. source: "./media/characters/xanthos/back.svg",
  12516. extra: 1,
  12517. bottom: 0.03
  12518. }
  12519. },
  12520. hand: {
  12521. height: math.unit(0.928, "feet"),
  12522. name: "Hand",
  12523. image: {
  12524. source: "./media/characters/xanthos/hand.svg"
  12525. }
  12526. },
  12527. foot: {
  12528. height: math.unit(1.286, "feet"),
  12529. name: "Foot",
  12530. image: {
  12531. source: "./media/characters/xanthos/foot.svg"
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(6 + 5 / 12, "feet"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Normal+",
  12543. height: math.unit(6, "meters")
  12544. },
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(40, "feet")
  12548. },
  12549. {
  12550. name: "Macro+",
  12551. height: math.unit(200, "meters")
  12552. },
  12553. {
  12554. name: "Megamacro",
  12555. height: math.unit(20, "km")
  12556. },
  12557. {
  12558. name: "Megamacro+",
  12559. height: math.unit(100, "km")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(6 + 3 / 12, "feet"),
  12568. weight: math.unit(215, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/grynn/front.svg",
  12572. extra: 4627 / 4209,
  12573. bottom: 0.047
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Micro",
  12580. height: math.unit(6, "inches")
  12581. },
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(6 + 3 / 12, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Big",
  12589. height: math.unit(104, "feet")
  12590. },
  12591. {
  12592. name: "Macro",
  12593. height: math.unit(944, "feet")
  12594. },
  12595. {
  12596. name: "Macro+",
  12597. height: math.unit(9480, "feet")
  12598. },
  12599. {
  12600. name: "Megamacro",
  12601. height: math.unit(78752, "feet")
  12602. },
  12603. {
  12604. name: "Megamacro+",
  12605. height: math.unit(630128, "feet")
  12606. },
  12607. {
  12608. name: "Megamacro++",
  12609. height: math.unit(3150695, "feet")
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12615. {
  12616. front: {
  12617. height: math.unit(7 + 5 / 12, "feet"),
  12618. weight: math.unit(450, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/mocha-aura/front.svg",
  12622. extra: 1907 / 1817,
  12623. bottom: 0.04
  12624. }
  12625. },
  12626. back: {
  12627. height: math.unit(7 + 5 / 12, "feet"),
  12628. weight: math.unit(450, "lb"),
  12629. name: "Back",
  12630. image: {
  12631. source: "./media/characters/mocha-aura/back.svg",
  12632. extra: 1900 / 1825,
  12633. bottom: 0.045
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Nano",
  12640. height: math.unit(1, "nm")
  12641. },
  12642. {
  12643. name: "Megamicro",
  12644. height: math.unit(1, "mm")
  12645. },
  12646. {
  12647. name: "Micro",
  12648. height: math.unit(3, "inches")
  12649. },
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(7 + 5 / 12, "feet"),
  12653. default: true
  12654. },
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(30, "feet")
  12658. },
  12659. {
  12660. name: "Megamacro",
  12661. height: math.unit(3500, "feet")
  12662. },
  12663. {
  12664. name: "Teramacro",
  12665. height: math.unit(500000, "miles")
  12666. },
  12667. {
  12668. name: "Petamacro",
  12669. height: math.unit(50000000000000000, "parsecs")
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12675. {
  12676. front: {
  12677. height: math.unit(6, "feet"),
  12678. weight: math.unit(150, "lb"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/ilisha-devya/front.svg",
  12682. extra: 1,
  12683. bottom: 0.175
  12684. }
  12685. },
  12686. back: {
  12687. height: math.unit(6, "feet"),
  12688. weight: math.unit(150, "lb"),
  12689. name: "Back",
  12690. image: {
  12691. source: "./media/characters/ilisha-devya/back.svg",
  12692. extra: 1,
  12693. bottom: 0.015
  12694. }
  12695. },
  12696. },
  12697. [
  12698. {
  12699. name: "Macro",
  12700. height: math.unit(500, "feet"),
  12701. default: true
  12702. },
  12703. {
  12704. name: "Megamacro",
  12705. height: math.unit(10, "miles")
  12706. },
  12707. {
  12708. name: "Gigamacro",
  12709. height: math.unit(100000, "miles")
  12710. },
  12711. {
  12712. name: "Examacro",
  12713. height: math.unit(1e9, "lightyears")
  12714. },
  12715. {
  12716. name: "Omniversal",
  12717. height: math.unit(1e33, "lightyears")
  12718. },
  12719. {
  12720. name: "Beyond Infinite",
  12721. height: math.unit(1e100, "lightyears")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12727. {
  12728. Side: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Side",
  12732. image: {
  12733. source: "./media/characters/mira/side.svg",
  12734. extra: 900 / 799,
  12735. bottom: 0.02
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Human Size",
  12742. height: math.unit(6, "feet")
  12743. },
  12744. {
  12745. name: "Macro",
  12746. height: math.unit(100, "feet"),
  12747. default: true
  12748. },
  12749. {
  12750. name: "Megamacro",
  12751. height: math.unit(10, "miles")
  12752. },
  12753. {
  12754. name: "Gigamacro",
  12755. height: math.unit(25000, "miles")
  12756. },
  12757. {
  12758. name: "Teramacro",
  12759. height: math.unit(300, "AU")
  12760. },
  12761. {
  12762. name: "Full Size",
  12763. height: math.unit(4.5e10, "lightyears")
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/holly/front.svg",
  12776. extra: 639 / 606
  12777. }
  12778. },
  12779. back: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Back",
  12783. image: {
  12784. source: "./media/characters/holly/back.svg",
  12785. extra: 623 / 598
  12786. }
  12787. },
  12788. frontWorking: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(150, "lb"),
  12791. name: "Front (Working)",
  12792. image: {
  12793. source: "./media/characters/holly/front-working.svg",
  12794. extra: 607 / 577,
  12795. bottom: 0.048
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(12 + 3 / 12, "feet"),
  12803. default: true
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(150, "lb"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/porter/front.svg",
  12816. extra: 1,
  12817. bottom: 0.01
  12818. }
  12819. },
  12820. frontRobes: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front (Robes)",
  12824. image: {
  12825. source: "./media/characters/porter/front-robes.svg",
  12826. extra: 1.01,
  12827. bottom: 0.01
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(11 + 9 / 12, "feet"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12841. {
  12842. legendary: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "lb"),
  12845. name: "Legendary",
  12846. image: {
  12847. source: "./media/characters/lucy/legendary.svg",
  12848. extra: 1355 / 1100,
  12849. bottom: 0.045
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Legendary",
  12856. height: math.unit(86882 * 2, "miles"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(6, "feet"),
  12866. weight: math.unit(150, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/drusilla/front.svg",
  12870. extra: 678 / 635,
  12871. bottom: 0.03
  12872. }
  12873. },
  12874. back: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "lb"),
  12877. name: "Back",
  12878. image: {
  12879. source: "./media/characters/drusilla/back.svg",
  12880. extra: 678 / 635,
  12881. bottom: 0.005
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Macro",
  12888. height: math.unit(100, "feet")
  12889. },
  12890. {
  12891. name: "Canon Height",
  12892. height: math.unit(2000, "feet"),
  12893. default: true
  12894. },
  12895. ]
  12896. ))
  12897. characterMakers.push(() => makeCharacter(
  12898. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12899. {
  12900. front: {
  12901. height: math.unit(6, "feet"),
  12902. weight: math.unit(180, "lb"),
  12903. name: "Front",
  12904. image: {
  12905. source: "./media/characters/renard-thatch/front.svg",
  12906. extra: 2411 / 2275,
  12907. bottom: 0.01
  12908. }
  12909. },
  12910. frontPosing: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(180, "lb"),
  12913. name: "Front (Posing)",
  12914. image: {
  12915. source: "./media/characters/renard-thatch/front-posing.svg",
  12916. extra: 2381 / 2261,
  12917. bottom: 0.01
  12918. }
  12919. },
  12920. back: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(180, "lb"),
  12923. name: "Back",
  12924. image: {
  12925. source: "./media/characters/renard-thatch/back.svg",
  12926. extra: 2428 / 2288
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Micro",
  12933. height: math.unit(3, "inches")
  12934. },
  12935. {
  12936. name: "Default",
  12937. height: math.unit(6, "feet"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(75, "feet")
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12948. {
  12949. front: {
  12950. height: math.unit(1450, "feet"),
  12951. weight: math.unit(1.21e6, "tons"),
  12952. name: "Front",
  12953. image: {
  12954. source: "./media/characters/sekvra/front.svg",
  12955. extra: 1,
  12956. bottom: 0.03
  12957. }
  12958. },
  12959. frontClothed: {
  12960. height: math.unit(1450, "feet"),
  12961. weight: math.unit(1.21e6, "tons"),
  12962. name: "Front (Clothed)",
  12963. image: {
  12964. source: "./media/characters/sekvra/front-clothed.svg",
  12965. extra: 1,
  12966. bottom: 0.03
  12967. }
  12968. },
  12969. side: {
  12970. height: math.unit(1450, "feet"),
  12971. weight: math.unit(1.21e6, "tons"),
  12972. name: "Side",
  12973. image: {
  12974. source: "./media/characters/sekvra/side.svg",
  12975. extra: 1,
  12976. bottom: 0.025
  12977. }
  12978. },
  12979. back: {
  12980. height: math.unit(1450, "feet"),
  12981. weight: math.unit(1.21e6, "tons"),
  12982. name: "Back",
  12983. image: {
  12984. source: "./media/characters/sekvra/back.svg",
  12985. extra: 1,
  12986. bottom: 0.005
  12987. }
  12988. },
  12989. },
  12990. [
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(1450, "feet"),
  12994. default: true
  12995. },
  12996. {
  12997. name: "Megamacro",
  12998. height: math.unit(15000, "feet")
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(150, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/carmine/front.svg",
  13011. extra: 1,
  13012. bottom: 0.035
  13013. }
  13014. },
  13015. frontArmor: {
  13016. height: math.unit(6, "feet"),
  13017. weight: math.unit(150, "lb"),
  13018. name: "Front (Armor)",
  13019. image: {
  13020. source: "./media/characters/carmine/front-armor.svg",
  13021. extra: 1,
  13022. bottom: 0.035
  13023. }
  13024. },
  13025. },
  13026. [
  13027. {
  13028. name: "Large",
  13029. height: math.unit(1, "mile")
  13030. },
  13031. {
  13032. name: "Huge",
  13033. height: math.unit(40, "miles"),
  13034. default: true
  13035. },
  13036. {
  13037. name: "Colossal",
  13038. height: math.unit(2500, "miles")
  13039. },
  13040. ]
  13041. ))
  13042. characterMakers.push(() => makeCharacter(
  13043. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13044. {
  13045. front: {
  13046. height: math.unit(6, "feet"),
  13047. weight: math.unit(150, "lb"),
  13048. name: "Front",
  13049. image: {
  13050. source: "./media/characters/elyssia/front.svg",
  13051. extra: 2201 / 2035,
  13052. bottom: 0.05
  13053. }
  13054. },
  13055. frontClothed: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Front (Clothed)",
  13059. image: {
  13060. source: "./media/characters/elyssia/front-clothed.svg",
  13061. extra: 2201 / 2035,
  13062. bottom: 0.05
  13063. }
  13064. },
  13065. back: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(150, "lb"),
  13068. name: "Back",
  13069. image: {
  13070. source: "./media/characters/elyssia/back.svg",
  13071. extra: 2201 / 2035,
  13072. bottom: 0.013
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Smaller",
  13079. height: math.unit(150, "feet")
  13080. },
  13081. {
  13082. name: "Standard",
  13083. height: math.unit(1400, "feet"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Distracted",
  13088. height: math.unit(15000, "feet")
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(7 + 4 / 12, "feet"),
  13097. weight: math.unit(500, "lb"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/geno-maxwell/front.svg",
  13101. extra: 2207 / 2040,
  13102. bottom: 0.015
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Micro",
  13109. height: math.unit(3, "inches")
  13110. },
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(7 + 4 / 12, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Macro",
  13118. height: math.unit(220, "feet")
  13119. },
  13120. {
  13121. name: "Megamacro",
  13122. height: math.unit(11, "miles")
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(7 + 4 / 12, "feet"),
  13131. weight: math.unit(500, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/regena-maxwell/front.svg",
  13135. extra: 3115 / 2770,
  13136. bottom: 0.02
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(7 + 4 / 12, "feet"),
  13144. default: true
  13145. },
  13146. {
  13147. name: "Macro",
  13148. height: math.unit(220, "feet")
  13149. },
  13150. {
  13151. name: "Megamacro",
  13152. height: math.unit(11, "miles")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(6, "feet"),
  13161. weight: math.unit(150, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13165. extra: 860 / 690,
  13166. bottom: 0.03
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(1.7, "meters"),
  13174. default: true
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13180. {
  13181. front: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Front",
  13185. image: {
  13186. source: "./media/characters/quilly/front.svg",
  13187. extra: 890 / 776
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Gigamacro",
  13194. height: math.unit(404090, "miles"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(7 + 8 / 12, "feet"),
  13204. weight: math.unit(350, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/tempest/front.svg",
  13208. extra: 1175 / 1086,
  13209. bottom: 0.02
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(7 + 8 / 12, "feet"),
  13217. default: true
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13223. {
  13224. side: {
  13225. height: math.unit(4 + 5 / 12, "feet"),
  13226. weight: math.unit(80, "lb"),
  13227. name: "Side",
  13228. image: {
  13229. source: "./media/characters/rodger/side.svg",
  13230. extra: 1235 / 1118
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Micro",
  13237. height: math.unit(1, "inch")
  13238. },
  13239. {
  13240. name: "Normal",
  13241. height: math.unit(4 + 5 / 12, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Macro",
  13246. height: math.unit(120, "feet")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13252. {
  13253. front: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/danyel/front.svg",
  13259. extra: 1185 / 1123,
  13260. bottom: 0.05
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Shrunken",
  13267. height: math.unit(0.5, "mm")
  13268. },
  13269. {
  13270. name: "Micro",
  13271. height: math.unit(1, "mm"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Upsized",
  13276. height: math.unit(5 + 5 / 12, "feet")
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(5 + 6 / 12, "feet"),
  13285. weight: math.unit(200, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/vivian-bijoux/front.svg",
  13289. extra: 1,
  13290. bottom: 0.072
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(5 + 6 / 12, "feet"),
  13298. default: true
  13299. },
  13300. {
  13301. name: "Bad Dream",
  13302. height: math.unit(500, "feet")
  13303. },
  13304. {
  13305. name: "Nightmare",
  13306. height: math.unit(500, "miles")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(6 + 1 / 12, "feet"),
  13315. weight: math.unit(260, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/zeta/front.svg",
  13319. extra: 1968 / 1889,
  13320. bottom: 0.06
  13321. }
  13322. },
  13323. back: {
  13324. height: math.unit(6 + 1 / 12, "feet"),
  13325. weight: math.unit(260, "lb"),
  13326. name: "Back",
  13327. image: {
  13328. source: "./media/characters/zeta/back.svg",
  13329. extra: 1944 / 1858,
  13330. bottom: 0.03
  13331. }
  13332. },
  13333. hand: {
  13334. height: math.unit(1.112, "feet"),
  13335. name: "Hand",
  13336. image: {
  13337. source: "./media/characters/zeta/hand.svg"
  13338. }
  13339. },
  13340. foot: {
  13341. height: math.unit(1.48, "feet"),
  13342. name: "Foot",
  13343. image: {
  13344. source: "./media/characters/zeta/foot.svg"
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Micro",
  13351. height: math.unit(6, "inches")
  13352. },
  13353. {
  13354. name: "Normal",
  13355. height: math.unit(6 + 1 / 12, "feet"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Macro",
  13360. height: math.unit(20, "feet")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/jamie-larsen/front.svg",
  13373. extra: 962 / 933,
  13374. bottom: 0.02
  13375. }
  13376. },
  13377. back: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Back",
  13381. image: {
  13382. source: "./media/characters/jamie-larsen/back.svg",
  13383. extra: 997 / 946
  13384. }
  13385. },
  13386. },
  13387. [
  13388. {
  13389. name: "Macro",
  13390. height: math.unit(28 + 7 / 12, "feet"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Macro+",
  13395. height: math.unit(180, "feet")
  13396. },
  13397. {
  13398. name: "Megamacro",
  13399. height: math.unit(10, "miles")
  13400. },
  13401. {
  13402. name: "Gigamacro",
  13403. height: math.unit(200000, "miles")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(120, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/vance/front.svg",
  13416. extra: 1980 / 1890,
  13417. bottom: 0.09
  13418. }
  13419. },
  13420. back: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(120, "lb"),
  13423. name: "Back",
  13424. image: {
  13425. source: "./media/characters/vance/back.svg",
  13426. extra: 2081 / 1994,
  13427. bottom: 0.014
  13428. }
  13429. },
  13430. hand: {
  13431. height: math.unit(0.88, "feet"),
  13432. name: "Hand",
  13433. image: {
  13434. source: "./media/characters/vance/hand.svg"
  13435. }
  13436. },
  13437. foot: {
  13438. height: math.unit(0.64, "feet"),
  13439. name: "Foot",
  13440. image: {
  13441. source: "./media/characters/vance/foot.svg"
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Small",
  13448. height: math.unit(90, "feet"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Macro",
  13453. height: math.unit(100, "meters")
  13454. },
  13455. {
  13456. name: "Megamacro",
  13457. height: math.unit(15, "miles")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(180, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/xochitl/front.svg",
  13470. extra: 2297 / 2261,
  13471. bottom: 0.065
  13472. }
  13473. },
  13474. back: {
  13475. height: math.unit(6, "feet"),
  13476. weight: math.unit(180, "lb"),
  13477. name: "Back",
  13478. image: {
  13479. source: "./media/characters/xochitl/back.svg",
  13480. extra: 2386 / 2354,
  13481. bottom: 0.01
  13482. }
  13483. },
  13484. foot: {
  13485. height: math.unit(6 / 5 * 1.15, "feet"),
  13486. weight: math.unit(150, "lb"),
  13487. name: "Foot",
  13488. image: {
  13489. source: "./media/characters/xochitl/foot.svg"
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Macro",
  13496. height: math.unit(80, "feet")
  13497. },
  13498. {
  13499. name: "Macro+",
  13500. height: math.unit(400, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Gigamacro",
  13505. height: math.unit(80000, "miles")
  13506. },
  13507. {
  13508. name: "Gigamacro+",
  13509. height: math.unit(400000, "miles")
  13510. },
  13511. {
  13512. name: "Teramacro",
  13513. height: math.unit(300, "AU")
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(6, "feet"),
  13522. weight: math.unit(150, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/vincent/front.svg",
  13526. extra: 1130 / 1080,
  13527. bottom: 0.055
  13528. }
  13529. },
  13530. beak: {
  13531. height: math.unit(6 * 0.1, "feet"),
  13532. name: "Beak",
  13533. image: {
  13534. source: "./media/characters/vincent/beak.svg"
  13535. }
  13536. },
  13537. hand: {
  13538. height: math.unit(6 * 0.85, "feet"),
  13539. weight: math.unit(150, "lb"),
  13540. name: "Hand",
  13541. image: {
  13542. source: "./media/characters/vincent/hand.svg"
  13543. }
  13544. },
  13545. foot: {
  13546. height: math.unit(6 * 0.19, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Foot",
  13549. image: {
  13550. source: "./media/characters/vincent/foot.svg"
  13551. }
  13552. },
  13553. },
  13554. [
  13555. {
  13556. name: "Base",
  13557. height: math.unit(6 + 5 / 12, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macro",
  13562. height: math.unit(300, "feet")
  13563. },
  13564. {
  13565. name: "Megamacro",
  13566. height: math.unit(2, "miles")
  13567. },
  13568. {
  13569. name: "Gigamacro",
  13570. height: math.unit(1000, "miles")
  13571. },
  13572. ]
  13573. ))
  13574. characterMakers.push(() => makeCharacter(
  13575. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13576. {
  13577. front: {
  13578. height: math.unit(2, "meters"),
  13579. weight: math.unit(500, "kg"),
  13580. name: "Front",
  13581. image: {
  13582. source: "./media/characters/coatl/front.svg",
  13583. extra: 3948 / 3500,
  13584. bottom: 0.082
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(4, "meters")
  13592. },
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(100, "meters"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Macro+",
  13600. height: math.unit(300, "meters")
  13601. },
  13602. {
  13603. name: "Megamacro",
  13604. height: math.unit(3, "gigameters")
  13605. },
  13606. {
  13607. name: "Megamacro+",
  13608. height: math.unit(300, "terameters")
  13609. },
  13610. {
  13611. name: "Megamacro++",
  13612. height: math.unit(3, "lightyears")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(50, "kg"),
  13622. name: "front",
  13623. image: {
  13624. source: "./media/characters/shiroryu/front.svg",
  13625. extra: 1990 / 1935
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Mortal Mingling",
  13632. height: math.unit(3, "meters")
  13633. },
  13634. {
  13635. name: "Kaiju-ish",
  13636. height: math.unit(250, "meters")
  13637. },
  13638. {
  13639. name: "Somewhat Godly",
  13640. height: math.unit(400, "km"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Planetary",
  13645. height: math.unit(300, "megameters")
  13646. },
  13647. {
  13648. name: "Galaxy-dwarfing",
  13649. height: math.unit(450, "kiloparsecs")
  13650. },
  13651. {
  13652. name: "Universe Eater",
  13653. height: math.unit(150, "gigaparsecs")
  13654. },
  13655. {
  13656. name: "Almost Immeasurable",
  13657. height: math.unit(1.3e266, "yottaparsecs")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(150, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/umeko/front.svg",
  13670. extra: 1,
  13671. bottom: 0.019
  13672. }
  13673. },
  13674. frontArmored: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(150, "lb"),
  13677. name: "Front (Armored)",
  13678. image: {
  13679. source: "./media/characters/umeko/front-armored.svg",
  13680. extra: 1,
  13681. bottom: 0.021
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Macro",
  13688. height: math.unit(220, "feet"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Guardian Dragon",
  13693. height: math.unit(50, "miles")
  13694. },
  13695. {
  13696. name: "Cosmic",
  13697. height: math.unit(800000, "miles")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/cassidy/front.svg",
  13710. extra: 1,
  13711. bottom: 0.043
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Canon Height",
  13718. height: math.unit(120, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro+",
  13723. height: math.unit(400, "feet")
  13724. },
  13725. {
  13726. name: "Macro++",
  13727. height: math.unit(4000, "feet")
  13728. },
  13729. {
  13730. name: "Megamacro",
  13731. height: math.unit(3, "miles")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/isaac/front.svg",
  13744. extra: 896 / 815,
  13745. bottom: 0.11
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Human Size",
  13752. height: math.unit(8, "feet"),
  13753. default: true
  13754. },
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(400, "feet")
  13758. },
  13759. {
  13760. name: "Megamacro",
  13761. height: math.unit(50, "miles")
  13762. },
  13763. {
  13764. name: "Canon Height",
  13765. height: math.unit(200, "AU")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(6, "feet"),
  13774. weight: math.unit(72, "kg"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/sleekit/front.svg",
  13778. extra: 4693 / 4487,
  13779. bottom: 0.012
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Minimum Height",
  13786. height: math.unit(10, "meters")
  13787. },
  13788. {
  13789. name: "Smaller",
  13790. height: math.unit(25, "meters")
  13791. },
  13792. {
  13793. name: "Larger",
  13794. height: math.unit(38, "meters"),
  13795. default: true
  13796. },
  13797. {
  13798. name: "Maximum height",
  13799. height: math.unit(100, "meters")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/nillia/front.svg",
  13812. extra: 2195 / 2037,
  13813. bottom: 0.005
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/nillia/back.svg",
  13822. extra: 2195 / 2037,
  13823. bottom: 0.005
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Canon Height",
  13830. height: math.unit(489, "feet"),
  13831. default: true
  13832. }
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/mesmyriza/front.svg",
  13844. extra: 2067 / 1784,
  13845. bottom: 0.035
  13846. }
  13847. },
  13848. foot: {
  13849. height: math.unit(6 / (250 / 35), "feet"),
  13850. name: "Foot",
  13851. image: {
  13852. source: "./media/characters/mesmyriza/foot.svg"
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(457, "meters"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(8, "megameters")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(250, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/saudade/front.svg",
  13877. extra: 1172 / 1139,
  13878. bottom: 0.035
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Micro",
  13885. height: math.unit(3, "inches")
  13886. },
  13887. {
  13888. name: "Normal",
  13889. height: math.unit(6, "feet"),
  13890. default: true
  13891. },
  13892. {
  13893. name: "Macro",
  13894. height: math.unit(50, "feet")
  13895. },
  13896. {
  13897. name: "Megamacro",
  13898. height: math.unit(2800, "feet")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(5 + 4 / 12, "feet"),
  13907. weight: math.unit(100, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/keireer/front.svg",
  13911. extra: 716 / 666,
  13912. bottom: 0.05
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(5 + 4 / 12, "feet"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(90, "kg"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/mirja/front.svg",
  13933. extra: 1789 / 1683,
  13934. bottom: 0.05
  13935. }
  13936. },
  13937. frontDressed: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(90, "lb"),
  13940. name: "Front (Dressed)",
  13941. image: {
  13942. source: "./media/characters/mirja/front-dressed.svg",
  13943. extra: 1789 / 1683,
  13944. bottom: 0.05
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(90, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/mirja/back.svg",
  13953. extra: 953 / 917,
  13954. bottom: 0.017
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "\"Incognito\"",
  13961. height: math.unit(3, "meters")
  13962. },
  13963. {
  13964. name: "Strolling Size",
  13965. height: math.unit(15, "km")
  13966. },
  13967. {
  13968. name: "Larger Strolling Size",
  13969. height: math.unit(400, "km")
  13970. },
  13971. {
  13972. name: "Preferred Size",
  13973. height: math.unit(5000, "km")
  13974. },
  13975. {
  13976. name: "True Size",
  13977. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13978. default: true
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(15, "feet"),
  13987. weight: math.unit(880, "kg"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/nightraver/front.svg",
  13991. extra: 2444 / 2160,
  13992. bottom: 0.027
  13993. }
  13994. },
  13995. back: {
  13996. height: math.unit(15, "feet"),
  13997. weight: math.unit(880, "kg"),
  13998. name: "Back",
  13999. image: {
  14000. source: "./media/characters/nightraver/back.svg",
  14001. extra: 2309 / 2180,
  14002. bottom: 0.005
  14003. }
  14004. },
  14005. sole: {
  14006. height: math.unit(2.878, "feet"),
  14007. name: "Sole",
  14008. image: {
  14009. source: "./media/characters/nightraver/sole.svg"
  14010. }
  14011. },
  14012. foot: {
  14013. height: math.unit(2.285, "feet"),
  14014. name: "Foot",
  14015. image: {
  14016. source: "./media/characters/nightraver/foot.svg"
  14017. }
  14018. },
  14019. maw: {
  14020. height: math.unit(2.67, "feet"),
  14021. name: "Maw",
  14022. image: {
  14023. source: "./media/characters/nightraver/maw.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Micro",
  14030. height: math.unit(1, "cm")
  14031. },
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(15, "feet"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(300, "feet")
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(300, "miles")
  14044. },
  14045. {
  14046. name: "Gigamacro",
  14047. height: math.unit(10000, "miles")
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14053. {
  14054. side: {
  14055. height: math.unit(2, "inches"),
  14056. weight: math.unit(5, "grams"),
  14057. name: "Side",
  14058. image: {
  14059. source: "./media/characters/arc/side.svg"
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Micro",
  14066. height: math.unit(2, "inches"),
  14067. default: true
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14073. {
  14074. front: {
  14075. height: math.unit(1.1938, "meters"),
  14076. weight: math.unit(54, "kg"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/nebula-shahar/front.svg",
  14080. extra: 1642 / 1436,
  14081. bottom: 0.06
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Megamicro",
  14088. height: math.unit(0.3, "mm")
  14089. },
  14090. {
  14091. name: "Micro",
  14092. height: math.unit(3, "cm")
  14093. },
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(138, "cm"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(30, "m")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(5.24, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/shayla/front.svg",
  14114. extra: 1512 / 1414,
  14115. bottom: 0.01
  14116. }
  14117. },
  14118. back: {
  14119. height: math.unit(5.24, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Back",
  14122. image: {
  14123. source: "./media/characters/shayla/back.svg",
  14124. extra: 1512 / 1414
  14125. }
  14126. },
  14127. hand: {
  14128. height: math.unit(0.7781496062992126, "feet"),
  14129. name: "Hand",
  14130. image: {
  14131. source: "./media/characters/shayla/hand.svg"
  14132. }
  14133. },
  14134. foot: {
  14135. height: math.unit(1.4206036745406823, "feet"),
  14136. name: "Foot",
  14137. image: {
  14138. source: "./media/characters/shayla/foot.svg"
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Micro",
  14145. height: math.unit(0.32, "feet")
  14146. },
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(5.24, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Macro",
  14154. height: math.unit(492.12, "feet")
  14155. },
  14156. {
  14157. name: "Megamacro",
  14158. height: math.unit(186.41, "miles")
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(2.2, "m"),
  14167. weight: math.unit(120, "kg"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/pia-jr/front.svg",
  14171. extra: 1000 / 970,
  14172. bottom: 0.035
  14173. }
  14174. },
  14175. hand: {
  14176. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14177. name: "Hand",
  14178. image: {
  14179. source: "./media/characters/pia-jr/hand.svg"
  14180. }
  14181. },
  14182. paw: {
  14183. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14184. name: "Paw",
  14185. image: {
  14186. source: "./media/characters/pia-jr/paw.svg"
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Micro",
  14193. height: math.unit(1.2, "cm")
  14194. },
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(2.2, "m"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Macro",
  14202. height: math.unit(180, "m")
  14203. },
  14204. {
  14205. name: "Megamacro",
  14206. height: math.unit(420, "km")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(2, "m"),
  14215. weight: math.unit(115, "kg"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/pia-sr/front.svg",
  14219. extra: 760 / 730,
  14220. bottom: 0.015
  14221. }
  14222. },
  14223. back: {
  14224. height: math.unit(2, "m"),
  14225. weight: math.unit(115, "kg"),
  14226. name: "Back",
  14227. image: {
  14228. source: "./media/characters/pia-sr/back.svg",
  14229. extra: 760 / 730,
  14230. bottom: 0.01
  14231. }
  14232. },
  14233. hand: {
  14234. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14235. name: "Hand",
  14236. image: {
  14237. source: "./media/characters/pia-sr/hand.svg"
  14238. }
  14239. },
  14240. foot: {
  14241. height: math.unit(1.83, "feet"),
  14242. name: "Foot",
  14243. image: {
  14244. source: "./media/characters/pia-sr/foot.svg"
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Micro",
  14251. height: math.unit(88, "mm")
  14252. },
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(2, "m"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(200, "m")
  14261. },
  14262. {
  14263. name: "Megamacro",
  14264. height: math.unit(420, "km")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(8 + 2 / 12, "feet"),
  14273. weight: math.unit(300, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/kibibyte/front.svg",
  14277. extra: 2221 / 2098,
  14278. bottom: 0.04
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(8 + 2 / 12, "feet"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Socialable Macro",
  14290. height: math.unit(50, "feet")
  14291. },
  14292. {
  14293. name: "Macro",
  14294. height: math.unit(300, "feet")
  14295. },
  14296. {
  14297. name: "Megamacro",
  14298. height: math.unit(500, "miles")
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/felix/front.svg",
  14311. extra: 762 / 722,
  14312. bottom: 0.02
  14313. }
  14314. },
  14315. frontClothed: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(150, "lb"),
  14318. name: "Front (Clothed)",
  14319. image: {
  14320. source: "./media/characters/felix/front-clothed.svg",
  14321. extra: 762 / 722,
  14322. bottom: 0.02
  14323. }
  14324. },
  14325. },
  14326. [
  14327. {
  14328. name: "Normal",
  14329. height: math.unit(6 + 8 / 12, "feet"),
  14330. default: true
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(2600, "feet")
  14335. },
  14336. {
  14337. name: "Megamacro",
  14338. height: math.unit(450, "miles")
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6 + 1 / 12, "feet"),
  14347. weight: math.unit(250, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/tobo/front.svg",
  14351. extra: 608 / 586,
  14352. bottom: 0.023
  14353. }
  14354. },
  14355. back: {
  14356. height: math.unit(6 + 1 / 12, "feet"),
  14357. weight: math.unit(250, "lb"),
  14358. name: "Back",
  14359. image: {
  14360. source: "./media/characters/tobo/back.svg",
  14361. extra: 608 / 586
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Nano",
  14368. height: math.unit(2, "nm")
  14369. },
  14370. {
  14371. name: "Megamicro",
  14372. height: math.unit(0.1, "mm")
  14373. },
  14374. {
  14375. name: "Micro",
  14376. height: math.unit(1, "inch"),
  14377. default: true
  14378. },
  14379. {
  14380. name: "Human-sized",
  14381. height: math.unit(6 + 1 / 12, "feet")
  14382. },
  14383. {
  14384. name: "Macro",
  14385. height: math.unit(250, "feet")
  14386. },
  14387. {
  14388. name: "Megamacro",
  14389. height: math.unit(75, "miles")
  14390. },
  14391. {
  14392. name: "Texas-sized",
  14393. height: math.unit(750, "miles")
  14394. },
  14395. {
  14396. name: "Teramacro",
  14397. height: math.unit(50000, "miles")
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(6, "feet"),
  14406. weight: math.unit(269, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/danny-kapowsky/front.svg",
  14410. extra: 766 / 736,
  14411. bottom: 0.044
  14412. }
  14413. },
  14414. back: {
  14415. height: math.unit(6, "feet"),
  14416. weight: math.unit(269, "lb"),
  14417. name: "Back",
  14418. image: {
  14419. source: "./media/characters/danny-kapowsky/back.svg",
  14420. extra: 797 / 760,
  14421. bottom: 0.025
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Macro",
  14428. height: math.unit(150, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Macro+",
  14433. height: math.unit(200, "feet")
  14434. },
  14435. {
  14436. name: "Macro++",
  14437. height: math.unit(300, "feet")
  14438. },
  14439. {
  14440. name: "Macro+++",
  14441. height: math.unit(400, "feet")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14447. {
  14448. side: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(170, "lb"),
  14451. name: "Side",
  14452. image: {
  14453. source: "./media/characters/finn/side.svg",
  14454. extra: 1953 / 1807,
  14455. bottom: 0.057
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Megamacro",
  14462. height: math.unit(14445, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(5 + 6 / 12, "feet"),
  14472. weight: math.unit(125, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/roy/front.svg",
  14476. extra: 1,
  14477. bottom: 0.11
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Micro",
  14484. height: math.unit(3, "inches"),
  14485. default: true
  14486. },
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(5 + 6 / 12, "feet")
  14490. },
  14491. {
  14492. name: "Lesser Macro",
  14493. height: math.unit(60, "feet")
  14494. },
  14495. {
  14496. name: "Greater Macro",
  14497. height: math.unit(120, "feet")
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(100, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/aevsivs/front.svg",
  14510. extra: 1,
  14511. bottom: 0.03
  14512. }
  14513. },
  14514. back: {
  14515. height: math.unit(6, "feet"),
  14516. weight: math.unit(100, "lb"),
  14517. name: "Back",
  14518. image: {
  14519. source: "./media/characters/aevsivs/back.svg"
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Micro",
  14526. height: math.unit(2, "inches"),
  14527. default: true
  14528. },
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(5, "feet")
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(5 + 7 / 12, "feet"),
  14540. weight: math.unit(159, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/hildegard/front.svg",
  14544. extra: 289 / 269,
  14545. bottom: 7.63 / 297.8
  14546. }
  14547. },
  14548. back: {
  14549. height: math.unit(5 + 7 / 12, "feet"),
  14550. weight: math.unit(159, "lb"),
  14551. name: "Back",
  14552. image: {
  14553. source: "./media/characters/hildegard/back.svg",
  14554. extra: 280 / 260,
  14555. bottom: 2.3 / 282
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(5 + 7 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14569. {
  14570. bernard: {
  14571. height: math.unit(2 + 7 / 12, "feet"),
  14572. weight: math.unit(66, "lb"),
  14573. name: "Bernard",
  14574. rename: true,
  14575. image: {
  14576. source: "./media/characters/bernard-wilder/bernard.svg",
  14577. extra: 192 / 128,
  14578. bottom: 0.05
  14579. }
  14580. },
  14581. wilder: {
  14582. height: math.unit(5 + 8 / 12, "feet"),
  14583. weight: math.unit(143, "lb"),
  14584. name: "Wilder",
  14585. rename: true,
  14586. image: {
  14587. source: "./media/characters/bernard-wilder/wilder.svg",
  14588. extra: 361 / 312,
  14589. bottom: 0.02
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(2 + 7 / 12, "feet"),
  14597. default: true
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14603. {
  14604. anthro: {
  14605. height: math.unit(6 + 1 / 12, "feet"),
  14606. weight: math.unit(155, "lb"),
  14607. name: "Anthro",
  14608. image: {
  14609. source: "./media/characters/hearth/anthro.svg",
  14610. extra: 260 / 250,
  14611. bottom: 0.02
  14612. }
  14613. },
  14614. feral: {
  14615. height: math.unit(3.78, "feet"),
  14616. weight: math.unit(35, "kg"),
  14617. name: "Feral",
  14618. image: {
  14619. source: "./media/characters/hearth/feral.svg",
  14620. extra: 153 / 135,
  14621. bottom: 0.03
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(6 + 1 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(182, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/ingrid/front.svg",
  14642. extra: 294 / 268,
  14643. bottom: 0.027
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(6, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14657. {
  14658. eevee: {
  14659. height: math.unit(2 + 10 / 12, "feet"),
  14660. weight: math.unit(86, "lb"),
  14661. name: "Malgam",
  14662. image: {
  14663. source: "./media/characters/malgam/eevee.svg",
  14664. extra: 218 / 180,
  14665. bottom: 0.2
  14666. }
  14667. },
  14668. sylveon: {
  14669. height: math.unit(4, "feet"),
  14670. weight: math.unit(101, "lb"),
  14671. name: "Future Malgam",
  14672. rename: true,
  14673. image: {
  14674. source: "./media/characters/malgam/sylveon.svg",
  14675. extra: 371 / 325,
  14676. bottom: 0.015
  14677. }
  14678. },
  14679. gigantamax: {
  14680. height: math.unit(50, "feet"),
  14681. name: "Gigantamax Malgam",
  14682. rename: true,
  14683. image: {
  14684. source: "./media/characters/malgam/gigantamax.svg"
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(2 + 10 / 12, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(5 + 11 / 12, "feet"),
  14701. weight: math.unit(188, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/fleur/front.svg",
  14705. extra: 309 / 283,
  14706. bottom: 0.007
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(5 + 11 / 12, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(5 + 4 / 12, "feet"),
  14723. weight: math.unit(122, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/jude/front.svg",
  14727. extra: 288 / 273,
  14728. bottom: 0.03
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(5 + 4 / 12, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(5 + 11 / 12, "feet"),
  14745. weight: math.unit(190, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/seara/front.svg",
  14749. extra: 1,
  14750. bottom: 0.05
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(5 + 11 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(16 + 5 / 12, "feet"),
  14767. weight: math.unit(524, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/caspian/front.svg",
  14771. extra: 1,
  14772. bottom: 0.04
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(16 + 5 / 12, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(5 + 7 / 12, "feet"),
  14789. weight: math.unit(170, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/mika/front.svg",
  14793. extra: 1,
  14794. bottom: 0.016
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(5 + 7 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6 + 2 / 12, "feet"),
  14811. weight: math.unit(268, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/sol/front.svg",
  14815. extra: 247 / 231,
  14816. bottom: 0.05
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(6 + 2 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14830. {
  14831. buizel: {
  14832. height: math.unit(2 + 5 / 12, "feet"),
  14833. weight: math.unit(87, "lb"),
  14834. name: "Buizel",
  14835. image: {
  14836. source: "./media/characters/umiko/buizel.svg",
  14837. extra: 172 / 157,
  14838. bottom: 0.01
  14839. }
  14840. },
  14841. floatzel: {
  14842. height: math.unit(5 + 9 / 12, "feet"),
  14843. weight: math.unit(250, "lb"),
  14844. name: "Floatzel",
  14845. image: {
  14846. source: "./media/characters/umiko/floatzel.svg",
  14847. extra: 262 / 248
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(2 + 5 / 12, "feet"),
  14855. default: true
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6 + 2 / 12, "feet"),
  14864. weight: math.unit(146, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/iliac/front.svg",
  14868. extra: 389 / 365,
  14869. bottom: 0.035
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(6 + 2 / 12, "feet"),
  14877. default: true
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(6, "feet"),
  14886. weight: math.unit(170, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/topaz/front.svg",
  14890. extra: 317 / 303,
  14891. bottom: 0.055
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(6, "feet"),
  14899. default: true
  14900. },
  14901. ]
  14902. ))
  14903. characterMakers.push(() => makeCharacter(
  14904. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14905. {
  14906. front: {
  14907. height: math.unit(5 + 11 / 12, "feet"),
  14908. weight: math.unit(144, "lb"),
  14909. name: "Front",
  14910. image: {
  14911. source: "./media/characters/gabriel/front.svg",
  14912. extra: 285 / 262,
  14913. bottom: 0.004
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Normal",
  14920. height: math.unit(5 + 11 / 12, "feet"),
  14921. default: true
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14927. {
  14928. side: {
  14929. height: math.unit(6 + 5 / 12, "feet"),
  14930. weight: math.unit(300, "lb"),
  14931. name: "Side",
  14932. image: {
  14933. source: "./media/characters/tempest-suicune/side.svg",
  14934. extra: 195 / 154,
  14935. bottom: 0.04
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(6 + 5 / 12, "feet"),
  14943. default: true
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(7 + 2 / 12, "feet"),
  14952. weight: math.unit(322, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/vulcan/front.svg",
  14956. extra: 154 / 147,
  14957. bottom: 0.04
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(7 + 2 / 12, "feet"),
  14965. default: true
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(5 + 10 / 12, "feet"),
  14974. weight: math.unit(264, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/gault/front.svg",
  14978. extra: 161 / 140,
  14979. bottom: 0.028
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Normal",
  14986. height: math.unit(5 + 10 / 12, "feet"),
  14987. default: true
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(6, "feet"),
  14996. weight: math.unit(150, "lb"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/shard/front.svg",
  15000. extra: 273 / 238,
  15001. bottom: 0.02
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(3 + 6 / 12, "feet"),
  15009. default: true
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(5 + 11 / 12, "feet"),
  15018. weight: math.unit(146, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/ashe/front.svg",
  15022. extra: 400 / 373,
  15023. bottom: 0.01
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Normal",
  15030. height: math.unit(5 + 11 / 12, "feet"),
  15031. default: true
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(5 + 5 / 12, "feet"),
  15040. weight: math.unit(135, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/beatrix/front.svg",
  15044. extra: 392 / 379,
  15045. bottom: 0.01
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(6, "feet"),
  15053. default: true
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/ignatius/front.svg",
  15066. extra: 245 / 222,
  15067. bottom: 0.01
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(5 + 5 / 12, "feet"),
  15075. default: true
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15081. {
  15082. front: {
  15083. height: math.unit(6 + 2 / 12, "feet"),
  15084. weight: math.unit(138, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/mei-li/front.svg",
  15088. extra: 237 / 229,
  15089. bottom: 0.03
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Normal",
  15096. height: math.unit(6 + 2 / 12, "feet"),
  15097. default: true
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(2 + 4 / 12, "feet"),
  15106. weight: math.unit(62, "lb"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/puru/front.svg",
  15110. extra: 206 / 149,
  15111. bottom: 0.06
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "Normal",
  15118. height: math.unit(2 + 4 / 12, "feet"),
  15119. default: true
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15125. {
  15126. anthro: {
  15127. height: math.unit(5 + 8/12, "feet"),
  15128. weight: math.unit(200, "lb"),
  15129. energyNeed: math.unit(2000, "kcal"),
  15130. name: "Anthro",
  15131. image: {
  15132. source: "./media/characters/kee/anthro.svg",
  15133. extra: 3251/3184,
  15134. bottom: 250/3501
  15135. }
  15136. },
  15137. taur: {
  15138. height: math.unit(11, "feet"),
  15139. weight: math.unit(500, "lb"),
  15140. energyNeed: math.unit(5000, "kcal"),
  15141. name: "Taur",
  15142. image: {
  15143. source: "./media/characters/kee/taur.svg",
  15144. extra: 1362/1320,
  15145. bottom: 83/1445
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(5 + 8/12, "feet"),
  15153. default: true
  15154. },
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(35, "feet")
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15163. {
  15164. anthro: {
  15165. height: math.unit(7, "feet"),
  15166. weight: math.unit(190, "lb"),
  15167. name: "Anthro",
  15168. image: {
  15169. source: "./media/characters/cobalt-dracha/anthro.svg",
  15170. extra: 231 / 225,
  15171. bottom: 0.04
  15172. }
  15173. },
  15174. feral: {
  15175. height: math.unit(9 + 7 / 12, "feet"),
  15176. weight: math.unit(294, "lb"),
  15177. name: "Feral",
  15178. image: {
  15179. source: "./media/characters/cobalt-dracha/feral.svg",
  15180. extra: 692 / 633,
  15181. bottom: 0.05
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(7, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15195. {
  15196. fallen: {
  15197. height: math.unit(11 + 8 / 12, "feet"),
  15198. weight: math.unit(485, "lb"),
  15199. name: "Java (Fallen)",
  15200. rename: true,
  15201. image: {
  15202. source: "./media/characters/java/fallen.svg",
  15203. extra: 226 / 208,
  15204. bottom: 0.005
  15205. }
  15206. },
  15207. godkin: {
  15208. height: math.unit(10 + 6 / 12, "feet"),
  15209. weight: math.unit(328, "lb"),
  15210. name: "Java (Godkin)",
  15211. rename: true,
  15212. image: {
  15213. source: "./media/characters/java/godkin.svg",
  15214. extra: 270 / 262,
  15215. bottom: 0.02
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Normal",
  15222. height: math.unit(11 + 8 / 12, "feet"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(7 + 8 / 12, "feet"),
  15232. weight: math.unit(320, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/skoll/front.svg",
  15236. extra: 232 / 220,
  15237. bottom: 0.02
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(7 + 8 / 12, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(5 + 9 / 12, "feet"),
  15254. weight: math.unit(170, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/purna/front.svg",
  15258. extra: 239 / 229,
  15259. bottom: 0.01
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(5 + 9 / 12, "feet"),
  15267. default: true
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(5 + 9 / 12, "feet"),
  15276. weight: math.unit(142, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/kuva/front.svg",
  15280. extra: 281 / 271,
  15281. bottom: 0.006
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(5 + 9 / 12, "feet"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15295. {
  15296. anthro: {
  15297. height: math.unit(9 + 2 / 12, "feet"),
  15298. weight: math.unit(270, "lb"),
  15299. name: "Anthro",
  15300. image: {
  15301. source: "./media/characters/embra/anthro.svg",
  15302. extra: 200 / 187,
  15303. bottom: 0.02
  15304. }
  15305. },
  15306. feral: {
  15307. height: math.unit(18 + 8 / 12, "feet"),
  15308. weight: math.unit(576, "lb"),
  15309. name: "Feral",
  15310. image: {
  15311. source: "./media/characters/embra/feral.svg",
  15312. extra: 152 / 137,
  15313. bottom: 0.037
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(9 + 2 / 12, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15327. {
  15328. anthro: {
  15329. height: math.unit(10 + 9 / 12, "feet"),
  15330. weight: math.unit(224, "lb"),
  15331. name: "Anthro",
  15332. image: {
  15333. source: "./media/characters/grottos/anthro.svg",
  15334. extra: 350 / 332,
  15335. bottom: 0.045
  15336. }
  15337. },
  15338. feral: {
  15339. height: math.unit(20 + 7 / 12, "feet"),
  15340. weight: math.unit(629, "lb"),
  15341. name: "Feral",
  15342. image: {
  15343. source: "./media/characters/grottos/feral.svg",
  15344. extra: 207 / 190,
  15345. bottom: 0.05
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(10 + 9 / 12, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15359. {
  15360. anthro: {
  15361. height: math.unit(9 + 6 / 12, "feet"),
  15362. weight: math.unit(298, "lb"),
  15363. name: "Anthro",
  15364. image: {
  15365. source: "./media/characters/frifna/anthro.svg",
  15366. extra: 282 / 269,
  15367. bottom: 0.015
  15368. }
  15369. },
  15370. feral: {
  15371. height: math.unit(16 + 2 / 12, "feet"),
  15372. weight: math.unit(624, "lb"),
  15373. name: "Feral",
  15374. image: {
  15375. source: "./media/characters/frifna/feral.svg"
  15376. }
  15377. },
  15378. },
  15379. [
  15380. {
  15381. name: "Normal",
  15382. height: math.unit(9 + 6 / 12, "feet"),
  15383. default: true
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(6 + 2 / 12, "feet"),
  15392. weight: math.unit(168, "lb"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/elise/front.svg",
  15396. extra: 276 / 271
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(6 + 2 / 12, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(5 + 10 / 12, "feet"),
  15413. weight: math.unit(210, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/glade/front.svg",
  15417. extra: 258 / 247,
  15418. bottom: 0.008
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(5 + 10 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(5 + 10 / 12, "feet"),
  15435. weight: math.unit(129, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/rina/front.svg",
  15439. extra: 266 / 255,
  15440. bottom: 0.005
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(5 + 10 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6 + 1 / 12, "feet"),
  15457. weight: math.unit(192, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/veronica/front.svg",
  15461. extra: 319 / 309,
  15462. bottom: 0.005
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(6 + 1 / 12, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(9 + 3 / 12, "feet"),
  15479. weight: math.unit(1100, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/braxton/front.svg",
  15483. extra: 1057 / 984,
  15484. bottom: 0.05
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(9 + 3 / 12, "feet")
  15492. },
  15493. {
  15494. name: "Giant",
  15495. height: math.unit(300, "feet"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Macro",
  15500. height: math.unit(700, "feet")
  15501. },
  15502. {
  15503. name: "Megamacro",
  15504. height: math.unit(6000, "feet")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6 + 7 / 12, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/blue-feyonics/front.svg",
  15517. extra: 1403 / 1306,
  15518. bottom: 0.047
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(6 + 7 / 12, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(1.8, "meters"),
  15535. weight: math.unit(60, "kg"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/maxwell/front.svg",
  15539. extra: 2060 / 1873
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Micro",
  15546. height: math.unit(1, "mm")
  15547. },
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(1.8, "meter"),
  15551. default: true
  15552. },
  15553. {
  15554. name: "Macro",
  15555. height: math.unit(30, "meters")
  15556. },
  15557. {
  15558. name: "Megamacro",
  15559. height: math.unit(10, "km")
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15565. {
  15566. front: {
  15567. height: math.unit(6, "feet"),
  15568. weight: math.unit(150, "lb"),
  15569. name: "Front",
  15570. image: {
  15571. source: "./media/characters/jack/front.svg",
  15572. extra: 1754 / 1640,
  15573. bottom: 0.01
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(80000, "feet"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Max size",
  15585. height: math.unit(10, "lightyears")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15591. {
  15592. urban: {
  15593. height: math.unit(5, "feet"),
  15594. weight: math.unit(240, "lb"),
  15595. name: "Urban",
  15596. image: {
  15597. source: "./media/characters/cafat/urban.svg",
  15598. extra: 1223/1126,
  15599. bottom: 205/1428
  15600. }
  15601. },
  15602. summer: {
  15603. height: math.unit(5, "feet"),
  15604. weight: math.unit(240, "lb"),
  15605. name: "Summer",
  15606. image: {
  15607. source: "./media/characters/cafat/summer.svg",
  15608. extra: 1223/1126,
  15609. bottom: 205/1428
  15610. }
  15611. },
  15612. winter: {
  15613. height: math.unit(5, "feet"),
  15614. weight: math.unit(240, "lb"),
  15615. name: "Winter",
  15616. image: {
  15617. source: "./media/characters/cafat/winter.svg",
  15618. extra: 1223/1126,
  15619. bottom: 205/1428
  15620. }
  15621. },
  15622. lingerie: {
  15623. height: math.unit(5, "feet"),
  15624. weight: math.unit(240, "lb"),
  15625. name: "Lingerie",
  15626. image: {
  15627. source: "./media/characters/cafat/lingerie.svg",
  15628. extra: 1223/1126,
  15629. bottom: 205/1428
  15630. }
  15631. },
  15632. upright: {
  15633. height: math.unit(6.3, "feet"),
  15634. weight: math.unit(240, "lb"),
  15635. name: "Upright",
  15636. image: {
  15637. source: "./media/characters/cafat/upright.svg",
  15638. bottom: 0.01
  15639. }
  15640. },
  15641. uprightFull: {
  15642. height: math.unit(6.3, "feet"),
  15643. weight: math.unit(240, "lb"),
  15644. name: "Upright (Full)",
  15645. image: {
  15646. source: "./media/characters/cafat/upright-full.svg",
  15647. bottom: 0.01
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Small",
  15654. height: math.unit(5, "feet"),
  15655. default: true
  15656. },
  15657. {
  15658. name: "Large",
  15659. height: math.unit(13, "feet")
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/verin-raharra/front.svg",
  15672. extra: 5019 / 4835,
  15673. bottom: 0.023
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(7 + 5 / 12, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Upsized",
  15685. height: math.unit(20, "feet")
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(7, "feet"),
  15694. weight: math.unit(230, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/nakata/front.svg",
  15698. extra: 1.005,
  15699. bottom: 0.01
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Normal",
  15706. height: math.unit(7, "feet"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Big",
  15711. height: math.unit(14, "feet")
  15712. },
  15713. {
  15714. name: "Macro",
  15715. height: math.unit(400, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(4.91, "feet"),
  15724. weight: math.unit(100, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/lily/front.svg",
  15728. extra: 1585 / 1415,
  15729. bottom: 0.02
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Normal",
  15736. height: math.unit(4.91, "feet"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15743. {
  15744. laying: {
  15745. height: math.unit(4 + 4 / 12, "feet"),
  15746. weight: math.unit(600, "lb"),
  15747. name: "Laying",
  15748. image: {
  15749. source: "./media/characters/sheila/laying.svg",
  15750. extra: 1333 / 1265,
  15751. bottom: 0.16
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(4 + 4 / 12, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(190, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/sax/front.svg",
  15772. extra: 1187 / 973,
  15773. bottom: 0.042
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Micro",
  15780. height: math.unit(4, "inches"),
  15781. default: true
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(6, "feet"),
  15790. weight: math.unit(150, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/pandora/front.svg",
  15794. extra: 2720 / 2556,
  15795. bottom: 0.015
  15796. }
  15797. },
  15798. back: {
  15799. height: math.unit(6, "feet"),
  15800. weight: math.unit(150, "lb"),
  15801. name: "Back",
  15802. image: {
  15803. source: "./media/characters/pandora/back.svg",
  15804. extra: 2720 / 2556,
  15805. bottom: 0.01
  15806. }
  15807. },
  15808. beans: {
  15809. height: math.unit(6 / 8, "feet"),
  15810. name: "Beans",
  15811. image: {
  15812. source: "./media/characters/pandora/beans.svg"
  15813. }
  15814. },
  15815. collar: {
  15816. height: math.unit(0.31, "feet"),
  15817. name: "Collar",
  15818. image: {
  15819. source: "./media/characters/pandora/collar.svg"
  15820. }
  15821. },
  15822. skirt: {
  15823. height: math.unit(6, "feet"),
  15824. weight: math.unit(150, "lb"),
  15825. name: "Skirt",
  15826. image: {
  15827. source: "./media/characters/pandora/skirt.svg",
  15828. extra: 1622 / 1525,
  15829. bottom: 0.015
  15830. }
  15831. },
  15832. hoodie: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(150, "lb"),
  15835. name: "Hoodie",
  15836. image: {
  15837. source: "./media/characters/pandora/hoodie.svg",
  15838. extra: 1622 / 1525,
  15839. bottom: 0.015
  15840. }
  15841. },
  15842. casual: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Casual",
  15846. image: {
  15847. source: "./media/characters/pandora/casual.svg",
  15848. extra: 1622 / 1525,
  15849. bottom: 0.015
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(6, "feet")
  15857. },
  15858. {
  15859. name: "Big Steppy",
  15860. height: math.unit(1, "km"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Galactic Steppy",
  15865. height: math.unit(2, "gigameters")
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15871. {
  15872. side: {
  15873. height: math.unit(10, "feet"),
  15874. weight: math.unit(800, "kg"),
  15875. name: "Side",
  15876. image: {
  15877. source: "./media/characters/venio-darcony/side.svg",
  15878. extra: 1373 / 1003,
  15879. bottom: 0.037
  15880. }
  15881. },
  15882. front: {
  15883. height: math.unit(19, "feet"),
  15884. weight: math.unit(800, "kg"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/venio-darcony/front.svg"
  15888. }
  15889. },
  15890. back: {
  15891. height: math.unit(19, "feet"),
  15892. weight: math.unit(800, "kg"),
  15893. name: "Back",
  15894. image: {
  15895. source: "./media/characters/venio-darcony/back.svg"
  15896. }
  15897. },
  15898. sideNsfw: {
  15899. height: math.unit(10, "feet"),
  15900. weight: math.unit(800, "kg"),
  15901. name: "Side (NSFW)",
  15902. image: {
  15903. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15904. extra: 1373 / 1003,
  15905. bottom: 0.037
  15906. }
  15907. },
  15908. frontNsfw: {
  15909. height: math.unit(19, "feet"),
  15910. weight: math.unit(800, "kg"),
  15911. name: "Front (NSFW)",
  15912. image: {
  15913. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15914. }
  15915. },
  15916. backNsfw: {
  15917. height: math.unit(19, "feet"),
  15918. weight: math.unit(800, "kg"),
  15919. name: "Back (NSFW)",
  15920. image: {
  15921. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15922. }
  15923. },
  15924. sideArmored: {
  15925. height: math.unit(10, "feet"),
  15926. weight: math.unit(800, "kg"),
  15927. name: "Side (Armored)",
  15928. image: {
  15929. source: "./media/characters/venio-darcony/side-armored.svg",
  15930. extra: 1373 / 1003,
  15931. bottom: 0.037
  15932. }
  15933. },
  15934. frontArmored: {
  15935. height: math.unit(19, "feet"),
  15936. weight: math.unit(900, "kg"),
  15937. name: "Front (Armored)",
  15938. image: {
  15939. source: "./media/characters/venio-darcony/front-armored.svg"
  15940. }
  15941. },
  15942. backArmored: {
  15943. height: math.unit(19, "feet"),
  15944. weight: math.unit(900, "kg"),
  15945. name: "Back (Armored)",
  15946. image: {
  15947. source: "./media/characters/venio-darcony/back-armored.svg"
  15948. }
  15949. },
  15950. sword: {
  15951. height: math.unit(10, "feet"),
  15952. weight: math.unit(50, "lb"),
  15953. name: "Sword",
  15954. image: {
  15955. source: "./media/characters/venio-darcony/sword.svg"
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(10, "feet")
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(130, "feet"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Macro+",
  15971. height: math.unit(240, "feet")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(6, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/veski/front.svg",
  15984. extra: 1299 / 1225,
  15985. bottom: 0.04
  15986. }
  15987. },
  15988. back: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Back",
  15992. image: {
  15993. source: "./media/characters/veski/back.svg",
  15994. extra: 1299 / 1225,
  15995. bottom: 0.008
  15996. }
  15997. },
  15998. maw: {
  15999. height: math.unit(1.5 * 1.21, "feet"),
  16000. name: "Maw",
  16001. image: {
  16002. source: "./media/characters/veski/maw.svg"
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Macro",
  16009. height: math.unit(2, "km"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(5 + 7 / 12, "feet"),
  16019. name: "Front",
  16020. image: {
  16021. source: "./media/characters/isabelle/front.svg",
  16022. extra: 2130 / 1976,
  16023. bottom: 0.05
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Supermicro",
  16030. height: math.unit(10, "micrometers")
  16031. },
  16032. {
  16033. name: "Micro",
  16034. height: math.unit(1, "inch")
  16035. },
  16036. {
  16037. name: "Tiny",
  16038. height: math.unit(5, "inches")
  16039. },
  16040. {
  16041. name: "Standard",
  16042. height: math.unit(5 + 7 / 12, "inches")
  16043. },
  16044. {
  16045. name: "Macro",
  16046. height: math.unit(80, "meters"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Megamacro",
  16051. height: math.unit(250, "meters")
  16052. },
  16053. {
  16054. name: "Gigamacro",
  16055. height: math.unit(5, "km")
  16056. },
  16057. {
  16058. name: "Cosmic",
  16059. height: math.unit(2.5e6, "miles")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/hanzo/front.svg",
  16072. extra: 374 / 344,
  16073. bottom: 0.02
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(8, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(7, "feet"),
  16090. weight: math.unit(130, "lb"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/anna/front.svg",
  16094. extra: 169 / 145,
  16095. bottom: 0.06
  16096. }
  16097. },
  16098. full: {
  16099. height: math.unit(4.96, "feet"),
  16100. weight: math.unit(220, "lb"),
  16101. name: "Full",
  16102. image: {
  16103. source: "./media/characters/anna/full.svg",
  16104. extra: 138 / 114,
  16105. bottom: 0.15
  16106. }
  16107. },
  16108. tongue: {
  16109. height: math.unit(2.53, "feet"),
  16110. name: "Tongue",
  16111. image: {
  16112. source: "./media/characters/anna/tongue.svg"
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(7, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(7, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/ian-corvid/front.svg",
  16133. extra: 150 / 142,
  16134. bottom: 0.02
  16135. }
  16136. },
  16137. back: {
  16138. height: math.unit(7, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Back",
  16141. image: {
  16142. source: "./media/characters/ian-corvid/back.svg",
  16143. extra: 150 / 143,
  16144. bottom: 0.01
  16145. }
  16146. },
  16147. stomping: {
  16148. height: math.unit(7, "feet"),
  16149. weight: math.unit(150, "lb"),
  16150. name: "Stomping",
  16151. image: {
  16152. source: "./media/characters/ian-corvid/stomping.svg",
  16153. extra: 76 / 72
  16154. }
  16155. },
  16156. sitting: {
  16157. height: math.unit(7 / 1.8, "feet"),
  16158. weight: math.unit(150, "lb"),
  16159. name: "Sitting",
  16160. image: {
  16161. source: "./media/characters/ian-corvid/sitting.svg",
  16162. extra: 1400 / 1269,
  16163. bottom: 0.15
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Tiny Microw",
  16170. height: math.unit(1, "inch")
  16171. },
  16172. {
  16173. name: "Microw",
  16174. height: math.unit(6, "inches")
  16175. },
  16176. {
  16177. name: "Crow",
  16178. height: math.unit(7 + 1 / 12, "feet"),
  16179. default: true
  16180. },
  16181. {
  16182. name: "Macrow",
  16183. height: math.unit(176, "feet")
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(5 + 7 / 12, "feet"),
  16192. weight: math.unit(147, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/natalie-kellon/front.svg",
  16196. extra: 1214 / 1141,
  16197. bottom: 0.02
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Micro",
  16204. height: math.unit(1 / 16, "inch")
  16205. },
  16206. {
  16207. name: "Tiny",
  16208. height: math.unit(4, "inches")
  16209. },
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(5 + 7 / 12, "feet"),
  16213. default: true
  16214. },
  16215. {
  16216. name: "Amazon",
  16217. height: math.unit(12, "feet")
  16218. },
  16219. {
  16220. name: "Giantess",
  16221. height: math.unit(160, "meters")
  16222. },
  16223. {
  16224. name: "Titaness",
  16225. height: math.unit(800, "meters")
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16231. {
  16232. front: {
  16233. height: math.unit(6, "feet"),
  16234. weight: math.unit(150, "lb"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/alluria/front.svg",
  16238. extra: 806 / 738,
  16239. bottom: 0.01
  16240. }
  16241. },
  16242. side: {
  16243. height: math.unit(6, "feet"),
  16244. weight: math.unit(150, "lb"),
  16245. name: "Side",
  16246. image: {
  16247. source: "./media/characters/alluria/side.svg",
  16248. extra: 800 / 750,
  16249. }
  16250. },
  16251. back: {
  16252. height: math.unit(6, "feet"),
  16253. weight: math.unit(150, "lb"),
  16254. name: "Back",
  16255. image: {
  16256. source: "./media/characters/alluria/back.svg",
  16257. extra: 806 / 738,
  16258. }
  16259. },
  16260. frontMaid: {
  16261. height: math.unit(6, "feet"),
  16262. weight: math.unit(150, "lb"),
  16263. name: "Front (Maid)",
  16264. image: {
  16265. source: "./media/characters/alluria/front-maid.svg",
  16266. extra: 806 / 738,
  16267. bottom: 0.01
  16268. }
  16269. },
  16270. sideMaid: {
  16271. height: math.unit(6, "feet"),
  16272. weight: math.unit(150, "lb"),
  16273. name: "Side (Maid)",
  16274. image: {
  16275. source: "./media/characters/alluria/side-maid.svg",
  16276. extra: 800 / 750,
  16277. bottom: 0.005
  16278. }
  16279. },
  16280. backMaid: {
  16281. height: math.unit(6, "feet"),
  16282. weight: math.unit(150, "lb"),
  16283. name: "Back (Maid)",
  16284. image: {
  16285. source: "./media/characters/alluria/back-maid.svg",
  16286. extra: 806 / 738,
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Micro",
  16293. height: math.unit(6, "inches"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/kyle/front.svg",
  16307. extra: 1069 / 962,
  16308. bottom: 77.228 / 1727.45
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(150, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(6, "feet"),
  16325. weight: math.unit(300, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/duncan/front.svg",
  16329. extra: 1650 / 1482,
  16330. bottom: 0.05
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Macro",
  16337. height: math.unit(100, "feet"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(5 + 4 / 12, "feet"),
  16347. weight: math.unit(220, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/memory/front.svg",
  16351. extra: 3641 / 3545,
  16352. bottom: 0.03
  16353. }
  16354. },
  16355. back: {
  16356. height: math.unit(5 + 4 / 12, "feet"),
  16357. weight: math.unit(220, "lb"),
  16358. name: "Back",
  16359. image: {
  16360. source: "./media/characters/memory/back.svg",
  16361. extra: 3641 / 3545,
  16362. bottom: 0.025
  16363. }
  16364. },
  16365. frontSkirt: {
  16366. height: math.unit(5 + 4 / 12, "feet"),
  16367. weight: math.unit(220, "lb"),
  16368. name: "Front (Skirt)",
  16369. image: {
  16370. source: "./media/characters/memory/front-skirt.svg",
  16371. extra: 3641 / 3545,
  16372. bottom: 0.03
  16373. }
  16374. },
  16375. frontDress: {
  16376. height: math.unit(5 + 4 / 12, "feet"),
  16377. weight: math.unit(220, "lb"),
  16378. name: "Front (Dress)",
  16379. image: {
  16380. source: "./media/characters/memory/front-dress.svg",
  16381. extra: 3641 / 3545,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Micro",
  16389. height: math.unit(6, "inches"),
  16390. default: true
  16391. },
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(5 + 4 / 12, "feet")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(4 + 11 / 12, "feet"),
  16403. weight: math.unit(100, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/luno/front.svg",
  16407. extra: 1535 / 1487,
  16408. bottom: 0.03
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(3, "inches")
  16416. },
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(4 + 11 / 12, "feet"),
  16420. default: true
  16421. },
  16422. {
  16423. name: "Macro",
  16424. height: math.unit(300, "feet")
  16425. },
  16426. {
  16427. name: "Megamacro",
  16428. height: math.unit(700, "miles")
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(6 + 2 / 12, "feet"),
  16437. weight: math.unit(170, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/jamesy/front.svg",
  16441. extra: 440 / 382,
  16442. bottom: 0.005
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Micro",
  16449. height: math.unit(3, "inches")
  16450. },
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(6 + 2 / 12, "feet"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Macro",
  16458. height: math.unit(300, "feet")
  16459. },
  16460. {
  16461. name: "Megamacro",
  16462. height: math.unit(700, "miles")
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(6, "feet"),
  16471. weight: math.unit(160, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/mark/front.svg",
  16475. extra: 3300 / 3100,
  16476. bottom: 136.42 / 3440.47
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Macro",
  16483. height: math.unit(120, "meters")
  16484. },
  16485. {
  16486. name: "Bigger Macro",
  16487. height: math.unit(350, "meters")
  16488. },
  16489. {
  16490. name: "Megamacro",
  16491. height: math.unit(8, "km"),
  16492. default: true
  16493. },
  16494. {
  16495. name: "Continental",
  16496. height: math.unit(4550, "km")
  16497. },
  16498. {
  16499. name: "Planetary",
  16500. height: math.unit(65000, "km")
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(400, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/mac/front.svg",
  16513. extra: 1048 / 987.7,
  16514. bottom: 60 / 1107.6,
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Macro",
  16521. height: math.unit(500, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(5 + 2 / 12, "feet"),
  16531. weight: math.unit(190, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/bari/front.svg",
  16535. extra: 3156 / 2880,
  16536. bottom: 0.03
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(5 + 2 / 12, "feet"),
  16541. weight: math.unit(190, "lb"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/bari/back.svg",
  16545. extra: 3260 / 2834,
  16546. bottom: 0.025
  16547. }
  16548. },
  16549. frontPlush: {
  16550. height: math.unit(5 + 2 / 12, "feet"),
  16551. weight: math.unit(190, "lb"),
  16552. name: "Front (Plush)",
  16553. image: {
  16554. source: "./media/characters/bari/front-plush.svg",
  16555. extra: 1112 / 1061,
  16556. bottom: 0.002
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Micro",
  16563. height: math.unit(3, "inches")
  16564. },
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(5 + 2 / 12, "feet"),
  16568. default: true
  16569. },
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(20, "feet")
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(6 + 1 / 12, "feet"),
  16581. weight: math.unit(275, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/hunter-misha-raven/front.svg"
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Mortal",
  16591. height: math.unit(6 + 1 / 12, "feet")
  16592. },
  16593. {
  16594. name: "Divine",
  16595. height: math.unit(1.12134e34, "parsecs"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(6 + 3 / 12, "feet"),
  16605. weight: math.unit(220, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/max-calore/front.svg",
  16609. extra: 1700 / 1648,
  16610. bottom: 0.01
  16611. }
  16612. },
  16613. back: {
  16614. height: math.unit(6 + 3 / 12, "feet"),
  16615. weight: math.unit(220, "lb"),
  16616. name: "Back",
  16617. image: {
  16618. source: "./media/characters/max-calore/back.svg",
  16619. extra: 1700 / 1648,
  16620. bottom: 0.01
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(6 + 3 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16634. {
  16635. side: {
  16636. height: math.unit(2 + 8 / 12, "feet"),
  16637. weight: math.unit(99, "lb"),
  16638. name: "Side",
  16639. image: {
  16640. source: "./media/characters/aspen/side.svg",
  16641. extra: 152 / 138,
  16642. bottom: 0.032
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(2 + 8 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16656. {
  16657. side: {
  16658. height: math.unit(3 + 2 / 12, "feet"),
  16659. weight: math.unit(224, "lb"),
  16660. name: "Side",
  16661. image: {
  16662. source: "./media/characters/sheila-feral-wolf/side.svg",
  16663. extra: 179 / 166,
  16664. bottom: 0.03
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(3 + 2 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16678. {
  16679. side: {
  16680. height: math.unit(1 + 9 / 12, "feet"),
  16681. weight: math.unit(38, "lb"),
  16682. name: "Side",
  16683. image: {
  16684. source: "./media/characters/michelle/side.svg",
  16685. extra: 147 / 136.7,
  16686. bottom: 0.03
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(1 + 9 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(1 + 1 / 12, "feet"),
  16703. weight: math.unit(18, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/nino/front.svg"
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(1 + 1 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(1, "feet"),
  16723. weight: math.unit(16, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/viola/front.svg"
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(1, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(6 + 5 / 12, "feet"),
  16743. weight: math.unit(580, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/atlas/front.svg",
  16747. extra: 298.5 / 290,
  16748. bottom: 0.015
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(6 + 5 / 12, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16762. {
  16763. side: {
  16764. height: math.unit(1 + 10 / 12, "feet"),
  16765. weight: math.unit(25, "lb"),
  16766. name: "Side",
  16767. image: {
  16768. source: "./media/characters/davy/side.svg",
  16769. extra: 200 / 170,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(1 + 10 / 12, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16784. {
  16785. side: {
  16786. height: math.unit(4 + 8 / 12, "feet"),
  16787. weight: math.unit(166, "lb"),
  16788. name: "Side",
  16789. image: {
  16790. source: "./media/characters/fiona/side.svg",
  16791. extra: 232 / 220,
  16792. bottom: 0.03
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(4 + 8 / 12, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16806. {
  16807. front: {
  16808. height: math.unit(2, "feet"),
  16809. weight: math.unit(62, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/lyla/front.svg",
  16813. bottom: 0.1
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(2, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16827. {
  16828. side: {
  16829. height: math.unit(1.8, "feet"),
  16830. weight: math.unit(44, "lb"),
  16831. name: "Side",
  16832. image: {
  16833. source: "./media/characters/perseus/side.svg",
  16834. bottom: 0.21
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(1.8, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16848. {
  16849. side: {
  16850. height: math.unit(4 + 2 / 12, "feet"),
  16851. weight: math.unit(20, "lb"),
  16852. name: "Side",
  16853. image: {
  16854. source: "./media/characters/remus/side.svg"
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(4 + 2 / 12, "feet"),
  16862. default: true
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16868. {
  16869. front: {
  16870. height: math.unit(4 + 11 / 12, "feet"),
  16871. weight: math.unit(114, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/raf/front.svg",
  16875. bottom: 20.5 / 1863
  16876. }
  16877. },
  16878. side: {
  16879. height: math.unit(4 + 11 / 12, "feet"),
  16880. weight: math.unit(114, "lb"),
  16881. name: "Side",
  16882. image: {
  16883. source: "./media/characters/raf/side.svg",
  16884. bottom: 22 / 1822
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Micro",
  16891. height: math.unit(2, "inches")
  16892. },
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(4 + 11 / 12, "feet"),
  16896. default: true
  16897. },
  16898. {
  16899. name: "Macro",
  16900. height: math.unit(70, "feet")
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(1.5, "meters"),
  16909. weight: math.unit(68, "kg"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/liam-einarr/front.svg",
  16913. extra: 2822 / 2666
  16914. }
  16915. },
  16916. back: {
  16917. height: math.unit(1.5, "meters"),
  16918. weight: math.unit(68, "kg"),
  16919. name: "Back",
  16920. image: {
  16921. source: "./media/characters/liam-einarr/back.svg",
  16922. extra: 2822 / 2666,
  16923. bottom: 0.015
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(1.5, "meters"),
  16931. default: true
  16932. },
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(150, "meters")
  16936. },
  16937. {
  16938. name: "Megamacro",
  16939. height: math.unit(35, "km")
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16945. {
  16946. front: {
  16947. height: math.unit(6, "feet"),
  16948. weight: math.unit(75, "kg"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/linda/front.svg",
  16952. extra: 930 / 874,
  16953. bottom: 0.004
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(6, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 8 / 12, "feet"),
  16970. weight: math.unit(220, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/caylex/front.svg",
  16974. extra: 821 / 772,
  16975. bottom: 0.07
  16976. }
  16977. },
  16978. back: {
  16979. height: math.unit(6 + 8 / 12, "feet"),
  16980. weight: math.unit(220, "lb"),
  16981. name: "Back",
  16982. image: {
  16983. source: "./media/characters/caylex/back.svg",
  16984. extra: 821 / 772,
  16985. bottom: 0.022
  16986. }
  16987. },
  16988. hand: {
  16989. height: math.unit(1.25, "feet"),
  16990. name: "Hand",
  16991. image: {
  16992. source: "./media/characters/caylex/hand.svg"
  16993. }
  16994. },
  16995. foot: {
  16996. height: math.unit(1.6, "feet"),
  16997. name: "Foot",
  16998. image: {
  16999. source: "./media/characters/caylex/foot.svg"
  17000. }
  17001. },
  17002. armored: {
  17003. height: math.unit(6 + 8 / 12, "feet"),
  17004. weight: math.unit(250, "lb"),
  17005. name: "Armored",
  17006. image: {
  17007. source: "./media/characters/caylex/armored.svg",
  17008. extra: 1420 / 1310,
  17009. bottom: 0.045
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(6 + 8 / 12, "feet"),
  17017. default: true
  17018. },
  17019. {
  17020. name: "Normal+",
  17021. height: math.unit(12, "feet")
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(7 + 6 / 12, "feet"),
  17030. weight: math.unit(288, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/alana/front.svg",
  17034. extra: 679 / 653,
  17035. bottom: 22.5 / 701
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(7 + 6 / 12, "feet")
  17043. },
  17044. {
  17045. name: "Large",
  17046. height: math.unit(50, "feet")
  17047. },
  17048. {
  17049. name: "Macro",
  17050. height: math.unit(100, "feet"),
  17051. default: true
  17052. },
  17053. {
  17054. name: "Macro+",
  17055. height: math.unit(200, "feet")
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(6 + 1 / 12, "feet"),
  17064. weight: math.unit(210, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/hasani/front.svg",
  17068. extra: 244 / 232,
  17069. bottom: 0.01
  17070. }
  17071. },
  17072. back: {
  17073. height: math.unit(6 + 1 / 12, "feet"),
  17074. weight: math.unit(210, "lb"),
  17075. name: "Back",
  17076. image: {
  17077. source: "./media/characters/hasani/back.svg",
  17078. extra: 244 / 232,
  17079. bottom: 0.01
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(6 + 1 / 12, "feet")
  17087. },
  17088. {
  17089. name: "Macro",
  17090. height: math.unit(175, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(1.82, "meters"),
  17100. weight: math.unit(140, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/nita/front.svg",
  17104. extra: 2473 / 2363,
  17105. bottom: 0.01
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(1.82, "m")
  17113. },
  17114. {
  17115. name: "Macro",
  17116. height: math.unit(300, "m")
  17117. },
  17118. {
  17119. name: "Mistake Canon",
  17120. height: math.unit(0.5, "miles"),
  17121. default: true
  17122. },
  17123. {
  17124. name: "Big Mistake",
  17125. height: math.unit(13, "miles")
  17126. },
  17127. {
  17128. name: "Playing God",
  17129. height: math.unit(2450, "miles")
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(4, "feet"),
  17138. weight: math.unit(120, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/shiriko/front.svg",
  17142. extra: 195 / 188
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(4, "feet"),
  17150. default: true
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(6, "feet"),
  17159. name: "front",
  17160. image: {
  17161. source: "./media/characters/deja/front.svg",
  17162. extra: 926 / 840,
  17163. bottom: 0.07
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Planck Length",
  17170. height: math.unit(1.6e-35, "meters")
  17171. },
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(30.48, "meters"),
  17175. default: true
  17176. },
  17177. {
  17178. name: "Universal",
  17179. height: math.unit(8.8e26, "meters")
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17185. {
  17186. side: {
  17187. height: math.unit(8, "feet"),
  17188. weight: math.unit(6300, "lb"),
  17189. name: "Side",
  17190. image: {
  17191. source: "./media/characters/anima/side.svg",
  17192. bottom: 0.035
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Normal",
  17199. height: math.unit(8, "feet"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(8, "feet"),
  17209. weight: math.unit(350, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/bianca/front.svg",
  17213. extra: 234 / 225,
  17214. bottom: 0.03
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(8, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(150, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/adinia/front.svg",
  17235. extra: 1845 / 1672,
  17236. bottom: 0.02
  17237. }
  17238. },
  17239. back: {
  17240. height: math.unit(6, "feet"),
  17241. weight: math.unit(150, "lb"),
  17242. name: "Back",
  17243. image: {
  17244. source: "./media/characters/adinia/back.svg",
  17245. extra: 1845 / 1672,
  17246. bottom: 0.002
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(11 + 5 / 12, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(3, "meters"),
  17263. weight: math.unit(200, "kg"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/lykasa/front.svg",
  17267. extra: 1076 / 976,
  17268. bottom: 0.06
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(3, "meters")
  17276. },
  17277. {
  17278. name: "Kaiju",
  17279. height: math.unit(120, "meters"),
  17280. default: true
  17281. },
  17282. {
  17283. name: "Mega Kaiju",
  17284. height: math.unit(240, "km")
  17285. },
  17286. {
  17287. name: "Giga Kaiju",
  17288. height: math.unit(400, "megameters")
  17289. },
  17290. {
  17291. name: "Tera Kaiju",
  17292. height: math.unit(800, "gigameters")
  17293. },
  17294. {
  17295. name: "Kaiju Dragon Goddess",
  17296. height: math.unit(26, "zettaparsecs")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17302. {
  17303. side: {
  17304. height: math.unit(283 / 124 * 6, "feet"),
  17305. weight: math.unit(35000, "lb"),
  17306. name: "Side",
  17307. image: {
  17308. source: "./media/characters/malfaren/side.svg",
  17309. extra: 2500 / 1010,
  17310. bottom: 0.01
  17311. }
  17312. },
  17313. front: {
  17314. height: math.unit(22.36, "feet"),
  17315. weight: math.unit(35000, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/malfaren/front.svg",
  17319. extra: 1631 / 1476,
  17320. bottom: 0.01
  17321. }
  17322. },
  17323. maw: {
  17324. height: math.unit(6.9, "feet"),
  17325. name: "Maw",
  17326. image: {
  17327. source: "./media/characters/malfaren/maw.svg"
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Big",
  17334. height: math.unit(283 / 162 * 6, "feet"),
  17335. },
  17336. {
  17337. name: "Bigger",
  17338. height: math.unit(283 / 124 * 6, "feet")
  17339. },
  17340. {
  17341. name: "Massive",
  17342. height: math.unit(283 / 92 * 6, "feet"),
  17343. default: true
  17344. },
  17345. {
  17346. name: "👀💦",
  17347. height: math.unit(283 / 73 * 6, "feet"),
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17353. {
  17354. front: {
  17355. height: math.unit(1.7, "m"),
  17356. weight: math.unit(70, "kg"),
  17357. name: "Front",
  17358. image: {
  17359. source: "./media/characters/kernel/front.svg",
  17360. extra: 222 / 210,
  17361. bottom: 0.007
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Nano",
  17368. height: math.unit(17, "micrometers")
  17369. },
  17370. {
  17371. name: "Micro",
  17372. height: math.unit(1.7, "mm")
  17373. },
  17374. {
  17375. name: "Small",
  17376. height: math.unit(1.7, "cm")
  17377. },
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(1.7, "m"),
  17381. default: true
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(1.75, "meters"),
  17390. weight: math.unit(65, "kg"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/jayne-folest/front.svg",
  17394. extra: 2115 / 2007,
  17395. bottom: 0.02
  17396. }
  17397. },
  17398. back: {
  17399. height: math.unit(1.75, "meters"),
  17400. weight: math.unit(65, "kg"),
  17401. name: "Back",
  17402. image: {
  17403. source: "./media/characters/jayne-folest/back.svg",
  17404. extra: 2115 / 2007,
  17405. bottom: 0.005
  17406. }
  17407. },
  17408. frontClothed: {
  17409. height: math.unit(1.75, "meters"),
  17410. weight: math.unit(65, "kg"),
  17411. name: "Front (Clothed)",
  17412. image: {
  17413. source: "./media/characters/jayne-folest/front-clothed.svg",
  17414. extra: 2115 / 2007,
  17415. bottom: 0.035
  17416. }
  17417. },
  17418. hand: {
  17419. height: math.unit(1 / 1.260, "feet"),
  17420. name: "Hand",
  17421. image: {
  17422. source: "./media/characters/jayne-folest/hand.svg"
  17423. }
  17424. },
  17425. foot: {
  17426. height: math.unit(1 / 0.918, "feet"),
  17427. name: "Foot",
  17428. image: {
  17429. source: "./media/characters/jayne-folest/foot.svg"
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Micro",
  17436. height: math.unit(4, "cm")
  17437. },
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(1.75, "meters")
  17441. },
  17442. {
  17443. name: "Macro",
  17444. height: math.unit(47.5, "meters"),
  17445. default: true
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(180, "cm"),
  17454. weight: math.unit(70, "kg"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/algier/front.svg",
  17458. extra: 596 / 572,
  17459. bottom: 0.04
  17460. }
  17461. },
  17462. back: {
  17463. height: math.unit(180, "cm"),
  17464. weight: math.unit(70, "kg"),
  17465. name: "Back",
  17466. image: {
  17467. source: "./media/characters/algier/back.svg",
  17468. extra: 596 / 572,
  17469. bottom: 0.025
  17470. }
  17471. },
  17472. frontdressed: {
  17473. height: math.unit(180, "cm"),
  17474. weight: math.unit(150, "kg"),
  17475. name: "Front-dressed",
  17476. image: {
  17477. source: "./media/characters/algier/front-dressed.svg",
  17478. extra: 596 / 572,
  17479. bottom: 0.038
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Micro",
  17486. height: math.unit(5, "cm")
  17487. },
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(180, "cm"),
  17491. default: true
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(64, "m")
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17501. {
  17502. upright: {
  17503. height: math.unit(7, "feet"),
  17504. weight: math.unit(300, "lb"),
  17505. name: "Upright",
  17506. image: {
  17507. source: "./media/characters/pretzel/upright.svg",
  17508. extra: 534 / 522,
  17509. bottom: 0.065
  17510. }
  17511. },
  17512. sprawling: {
  17513. height: math.unit(3.75, "feet"),
  17514. weight: math.unit(300, "lb"),
  17515. name: "Sprawling",
  17516. image: {
  17517. source: "./media/characters/pretzel/sprawling.svg",
  17518. extra: 314 / 281,
  17519. bottom: 0.1
  17520. }
  17521. },
  17522. tongue: {
  17523. height: math.unit(2, "feet"),
  17524. name: "Tongue",
  17525. image: {
  17526. source: "./media/characters/pretzel/tongue.svg"
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(7, "feet"),
  17534. default: true
  17535. },
  17536. {
  17537. name: "Oversized",
  17538. height: math.unit(15, "feet")
  17539. },
  17540. {
  17541. name: "Huge",
  17542. height: math.unit(30, "feet")
  17543. },
  17544. {
  17545. name: "Macro",
  17546. height: math.unit(250, "feet")
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17552. {
  17553. sideFront: {
  17554. height: math.unit(5 + 2 / 12, "feet"),
  17555. weight: math.unit(120, "lb"),
  17556. name: "Front Side",
  17557. image: {
  17558. source: "./media/characters/roxi/side-front.svg",
  17559. extra: 2924 / 2717,
  17560. bottom: 0.08
  17561. }
  17562. },
  17563. sideBack: {
  17564. height: math.unit(5 + 2 / 12, "feet"),
  17565. weight: math.unit(120, "lb"),
  17566. name: "Back Side",
  17567. image: {
  17568. source: "./media/characters/roxi/side-back.svg",
  17569. extra: 2904 / 2693,
  17570. bottom: 0.06
  17571. }
  17572. },
  17573. front: {
  17574. height: math.unit(5 + 2 / 12, "feet"),
  17575. weight: math.unit(120, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/roxi/front.svg",
  17579. extra: 2028 / 1907,
  17580. bottom: 0.01
  17581. }
  17582. },
  17583. frontAlt: {
  17584. height: math.unit(5 + 2 / 12, "feet"),
  17585. weight: math.unit(120, "lb"),
  17586. name: "Front (Alt)",
  17587. image: {
  17588. source: "./media/characters/roxi/front-alt.svg",
  17589. extra: 1828 / 1798,
  17590. bottom: 0.01
  17591. }
  17592. },
  17593. sitting: {
  17594. height: math.unit(2.8, "feet"),
  17595. weight: math.unit(120, "lb"),
  17596. name: "Sitting",
  17597. image: {
  17598. source: "./media/characters/roxi/sitting.svg",
  17599. extra: 2660 / 2462,
  17600. bottom: 0.1
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(5 + 2 / 12, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17614. {
  17615. side: {
  17616. height: math.unit(55, "feet"),
  17617. weight: math.unit(153, "tons"),
  17618. name: "Side",
  17619. image: {
  17620. source: "./media/characters/shadow/side.svg",
  17621. extra: 701 / 628,
  17622. bottom: 0.02
  17623. }
  17624. },
  17625. flying: {
  17626. height: math.unit(145, "feet"),
  17627. weight: math.unit(153, "tons"),
  17628. name: "Flying",
  17629. image: {
  17630. source: "./media/characters/shadow/flying.svg"
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(55, "feet"),
  17638. default: true
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(6, "feet"),
  17647. weight: math.unit(200, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/marcie/front.svg",
  17651. extra: 960 / 876,
  17652. bottom: 58 / 1017.87
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(1, "mile"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(7, "feet"),
  17669. weight: math.unit(200, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/kachina/front.svg",
  17673. extra: 1290.68 / 1119,
  17674. bottom: 36.5 / 1327.18
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(7, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17688. {
  17689. looking: {
  17690. height: math.unit(2, "meters"),
  17691. weight: math.unit(300, "kg"),
  17692. name: "Looking",
  17693. image: {
  17694. source: "./media/characters/kash/looking.svg",
  17695. extra: 474 / 344,
  17696. bottom: 0.03
  17697. }
  17698. },
  17699. side: {
  17700. height: math.unit(2, "meters"),
  17701. weight: math.unit(300, "kg"),
  17702. name: "Side",
  17703. image: {
  17704. source: "./media/characters/kash/side.svg",
  17705. extra: 302 / 251,
  17706. bottom: 0.03
  17707. }
  17708. },
  17709. front: {
  17710. height: math.unit(2, "meters"),
  17711. weight: math.unit(300, "kg"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/kash/front.svg",
  17715. extra: 495 / 360,
  17716. bottom: 0.015
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(2, "meters"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Big",
  17728. height: math.unit(3, "meters")
  17729. },
  17730. {
  17731. name: "Large",
  17732. height: math.unit(5, "meters")
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17738. {
  17739. feeding: {
  17740. height: math.unit(6.7, "feet"),
  17741. weight: math.unit(350, "lb"),
  17742. name: "Feeding",
  17743. image: {
  17744. source: "./media/characters/lalim/feeding.svg",
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(6.7, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(9.5, "feet"),
  17761. weight: math.unit(600, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/de'vout/front.svg",
  17765. extra: 1443 / 1328,
  17766. bottom: 0.025
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(9.5, "feet"),
  17771. weight: math.unit(600, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/de'vout/back.svg",
  17775. extra: 1443 / 1328
  17776. }
  17777. },
  17778. frontDressed: {
  17779. height: math.unit(9.5, "feet"),
  17780. weight: math.unit(600, "lb"),
  17781. name: "Front (Dressed",
  17782. image: {
  17783. source: "./media/characters/de'vout/front-dressed.svg",
  17784. extra: 1443 / 1328,
  17785. bottom: 0.025
  17786. }
  17787. },
  17788. backDressed: {
  17789. height: math.unit(9.5, "feet"),
  17790. weight: math.unit(600, "lb"),
  17791. name: "Back (Dressed",
  17792. image: {
  17793. source: "./media/characters/de'vout/back-dressed.svg",
  17794. extra: 1443 / 1328
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(9.5, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(8, "feet"),
  17811. weight: math.unit(225, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/talana/front.svg",
  17815. extra: 1410 / 1300,
  17816. bottom: 0.015
  17817. }
  17818. },
  17819. frontDressed: {
  17820. height: math.unit(8, "feet"),
  17821. weight: math.unit(225, "lb"),
  17822. name: "Front (Dressed",
  17823. image: {
  17824. source: "./media/characters/talana/front-dressed.svg",
  17825. extra: 1410 / 1300,
  17826. bottom: 0.015
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(8, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17840. {
  17841. side: {
  17842. height: math.unit(7.2, "feet"),
  17843. weight: math.unit(150, "lb"),
  17844. name: "Side",
  17845. image: {
  17846. source: "./media/characters/xeauvok/side.svg",
  17847. extra: 1975 / 1523,
  17848. bottom: 0.07
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(7.2, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17862. {
  17863. side: {
  17864. height: math.unit(10, "feet"),
  17865. weight: math.unit(900, "kg"),
  17866. name: "Side",
  17867. image: {
  17868. source: "./media/characters/zara/side.svg",
  17869. extra: 504 / 498
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(10, "feet"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17883. {
  17884. side: {
  17885. height: math.unit(6, "feet"),
  17886. weight: math.unit(150, "lb"),
  17887. name: "Side",
  17888. image: {
  17889. source: "./media/characters/richard-dragon/side.svg",
  17890. extra: 845 / 340,
  17891. bottom: 0.017
  17892. }
  17893. },
  17894. maw: {
  17895. height: math.unit(2.97, "feet"),
  17896. name: "Maw",
  17897. image: {
  17898. source: "./media/characters/richard-dragon/maw.svg"
  17899. }
  17900. },
  17901. },
  17902. [
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(4, "feet"),
  17910. weight: math.unit(100, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/richard-smeargle/front.svg",
  17914. extra: 2952 / 2820,
  17915. bottom: 0.028
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(4, "feet"),
  17923. default: true
  17924. },
  17925. {
  17926. name: "Dynamax",
  17927. height: math.unit(20, "meters")
  17928. },
  17929. ]
  17930. ))
  17931. characterMakers.push(() => makeCharacter(
  17932. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17933. {
  17934. front: {
  17935. height: math.unit(6, "feet"),
  17936. weight: math.unit(110, "lb"),
  17937. name: "Front",
  17938. image: {
  17939. source: "./media/characters/klay/front.svg",
  17940. extra: 962 / 883,
  17941. bottom: 0.04
  17942. }
  17943. },
  17944. back: {
  17945. height: math.unit(6, "feet"),
  17946. weight: math.unit(110, "lb"),
  17947. name: "Back",
  17948. image: {
  17949. source: "./media/characters/klay/back.svg",
  17950. extra: 962 / 883
  17951. }
  17952. },
  17953. beans: {
  17954. height: math.unit(1.15, "feet"),
  17955. name: "Beans",
  17956. image: {
  17957. source: "./media/characters/klay/beans.svg"
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(6, "inches")
  17965. },
  17966. {
  17967. name: "Mini",
  17968. height: math.unit(3, "feet")
  17969. },
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(6, "feet"),
  17973. default: true
  17974. },
  17975. {
  17976. name: "Big",
  17977. height: math.unit(25, "feet")
  17978. },
  17979. {
  17980. name: "Macro",
  17981. height: math.unit(100, "feet")
  17982. },
  17983. {
  17984. name: "Megamacro",
  17985. height: math.unit(400, "feet")
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(6, "feet"),
  17994. weight: math.unit(160, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/marcus/front.svg",
  17998. extra: 734 / 676,
  17999. bottom: 0.03
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Little",
  18006. height: math.unit(6, "feet")
  18007. },
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(110, "feet"),
  18011. default: true
  18012. },
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(250, "feet")
  18016. },
  18017. {
  18018. name: "Megamacro",
  18019. height: math.unit(1000, "feet")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(7, "feet"),
  18028. weight: math.unit(275, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/claude-delroute/front.svg",
  18032. extra: 230 / 214,
  18033. bottom: 0.007
  18034. }
  18035. },
  18036. side: {
  18037. height: math.unit(7, "feet"),
  18038. weight: math.unit(275, "lb"),
  18039. name: "Side",
  18040. image: {
  18041. source: "./media/characters/claude-delroute/side.svg",
  18042. extra: 222 / 214,
  18043. bottom: 0.01
  18044. }
  18045. },
  18046. back: {
  18047. height: math.unit(7, "feet"),
  18048. weight: math.unit(275, "lb"),
  18049. name: "Back",
  18050. image: {
  18051. source: "./media/characters/claude-delroute/back.svg",
  18052. extra: 230 / 214,
  18053. bottom: 0.015
  18054. }
  18055. },
  18056. maw: {
  18057. height: math.unit(0.6407, "meters"),
  18058. name: "Maw",
  18059. image: {
  18060. source: "./media/characters/claude-delroute/maw.svg"
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Normal",
  18067. height: math.unit(7, "feet"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Lorge",
  18072. height: math.unit(20, "feet")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(8 + 4 / 12, "feet"),
  18081. weight: math.unit(600, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/dragonien/front.svg",
  18085. extra: 100 / 94,
  18086. bottom: 3.3 / 103.3445
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(8 + 4 / 12, "feet"),
  18091. weight: math.unit(600, "lb"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/dragonien/back.svg",
  18095. extra: 776 / 746,
  18096. bottom: 6.4 / 782.0616
  18097. }
  18098. },
  18099. foot: {
  18100. height: math.unit(1.54, "feet"),
  18101. name: "Foot",
  18102. image: {
  18103. source: "./media/characters/dragonien/foot.svg",
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(8 + 4 / 12, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Macro",
  18115. height: math.unit(200, "feet")
  18116. },
  18117. {
  18118. name: "Megamacro",
  18119. height: math.unit(1, "mile")
  18120. },
  18121. {
  18122. name: "Gigamacro",
  18123. height: math.unit(1000, "miles")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18129. {
  18130. front: {
  18131. height: math.unit(5 + 2 / 12, "feet"),
  18132. weight: math.unit(110, "lb"),
  18133. name: "Front",
  18134. image: {
  18135. source: "./media/characters/desta/front.svg",
  18136. extra: 767 / 726,
  18137. bottom: 11.7 / 779
  18138. }
  18139. },
  18140. back: {
  18141. height: math.unit(5 + 2 / 12, "feet"),
  18142. weight: math.unit(110, "lb"),
  18143. name: "Back",
  18144. image: {
  18145. source: "./media/characters/desta/back.svg",
  18146. extra: 777 / 728,
  18147. bottom: 6 / 784
  18148. }
  18149. },
  18150. frontAlt: {
  18151. height: math.unit(5 + 2 / 12, "feet"),
  18152. weight: math.unit(110, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/desta/front-alt.svg",
  18156. extra: 1482 / 1417
  18157. }
  18158. },
  18159. side: {
  18160. height: math.unit(5 + 2 / 12, "feet"),
  18161. weight: math.unit(110, "lb"),
  18162. name: "Side",
  18163. image: {
  18164. source: "./media/characters/desta/side.svg",
  18165. extra: 2579 / 2491,
  18166. bottom: 0.053
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Micro",
  18173. height: math.unit(6, "inches")
  18174. },
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(5 + 2 / 12, "feet"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Macro",
  18182. height: math.unit(62, "feet")
  18183. },
  18184. {
  18185. name: "Megamacro",
  18186. height: math.unit(1800, "feet")
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(10, "feet"),
  18195. weight: math.unit(700, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/storm-alystar/front.svg",
  18199. extra: 2112 / 1898,
  18200. bottom: 0.034
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Micro",
  18207. height: math.unit(3.5, "inches")
  18208. },
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(10, "feet"),
  18212. default: true
  18213. },
  18214. {
  18215. name: "Macro",
  18216. height: math.unit(400, "feet")
  18217. },
  18218. {
  18219. name: "Deific",
  18220. height: math.unit(60, "miles")
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(2.35, "meters"),
  18229. weight: math.unit(119, "kg"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/ilia/front.svg",
  18233. extra: 1285 / 1255,
  18234. bottom: 0.06
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(2.35, "meters")
  18242. },
  18243. {
  18244. name: "Macro",
  18245. height: math.unit(140, "meters"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Megamacro",
  18250. height: math.unit(100, "miles")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(6 + 5 / 12, "feet"),
  18259. weight: math.unit(190, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/kingdead/front.svg",
  18263. extra: 1228 / 1177
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Micro",
  18270. height: math.unit(7, "inches")
  18271. },
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(6 + 5 / 12, "feet")
  18275. },
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(150, "feet"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Megamacro",
  18283. height: math.unit(200, "miles")
  18284. },
  18285. ]
  18286. ))
  18287. characterMakers.push(() => makeCharacter(
  18288. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18289. {
  18290. front: {
  18291. height: math.unit(8, "feet"),
  18292. weight: math.unit(600, "lb"),
  18293. name: "Front",
  18294. image: {
  18295. source: "./media/characters/kyrehx/front.svg",
  18296. extra: 1195 / 1095,
  18297. bottom: 0.034
  18298. }
  18299. },
  18300. },
  18301. [
  18302. {
  18303. name: "Micro",
  18304. height: math.unit(2, "inches")
  18305. },
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(8, "feet"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(255, "feet")
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18319. {
  18320. front: {
  18321. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18322. weight: math.unit(184, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/xang/front.svg",
  18326. extra: 845 / 755
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(0.935 * 146, "feet")
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(0.935 * 3, "miles")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18348. {
  18349. frontDressed: {
  18350. height: math.unit(5 + 7 / 12, "feet"),
  18351. weight: math.unit(140, "lb"),
  18352. name: "Front (Dressed)",
  18353. image: {
  18354. source: "./media/characters/doc-weardno/front-dressed.svg",
  18355. extra: 263 / 234
  18356. }
  18357. },
  18358. backDressed: {
  18359. height: math.unit(5 + 7 / 12, "feet"),
  18360. weight: math.unit(140, "lb"),
  18361. name: "Back (Dressed)",
  18362. image: {
  18363. source: "./media/characters/doc-weardno/back-dressed.svg",
  18364. extra: 266 / 238
  18365. }
  18366. },
  18367. front: {
  18368. height: math.unit(5 + 7 / 12, "feet"),
  18369. weight: math.unit(140, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/doc-weardno/front.svg",
  18373. extra: 254 / 233
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Micro",
  18380. height: math.unit(3, "inches")
  18381. },
  18382. {
  18383. name: "Normal",
  18384. height: math.unit(5 + 7 / 12, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Macro",
  18389. height: math.unit(25, "feet")
  18390. },
  18391. {
  18392. name: "Megamacro",
  18393. height: math.unit(2, "miles")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(6 + 2 / 12, "feet"),
  18402. weight: math.unit(153, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/seth-whilst/front.svg",
  18406. bottom: 0.07
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Micro",
  18413. height: math.unit(5, "inches")
  18414. },
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(6 + 2 / 12, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(3, "inches"),
  18427. weight: math.unit(8, "grams"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/pocket-jabari/front.svg",
  18431. extra: 1024 / 974,
  18432. bottom: 0.039
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Minimicro",
  18439. height: math.unit(8, "mm")
  18440. },
  18441. {
  18442. name: "Micro",
  18443. height: math.unit(3, "inches"),
  18444. default: true
  18445. },
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(3, "feet")
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18454. {
  18455. front: {
  18456. height: math.unit(15, "feet"),
  18457. weight: math.unit(3280, "lb"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/sapphy/front.svg",
  18461. extra: 671 / 577,
  18462. bottom: 0.085
  18463. }
  18464. },
  18465. back: {
  18466. height: math.unit(15, "feet"),
  18467. weight: math.unit(3280, "lb"),
  18468. name: "Back",
  18469. image: {
  18470. source: "./media/characters/sapphy/back.svg",
  18471. extra: 631 / 607,
  18472. bottom: 0.045
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(15, "feet")
  18480. },
  18481. {
  18482. name: "Casual Macro",
  18483. height: math.unit(120, "feet")
  18484. },
  18485. {
  18486. name: "Macro",
  18487. height: math.unit(2150, "feet"),
  18488. default: true
  18489. },
  18490. {
  18491. name: "Megamacro",
  18492. height: math.unit(8, "miles")
  18493. },
  18494. {
  18495. name: "Galaxy Mom",
  18496. height: math.unit(6, "megalightyears")
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(6, "feet"),
  18505. weight: math.unit(170, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/kiro/front.svg",
  18509. extra: 1064 / 1012,
  18510. bottom: 0.052
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Micro",
  18517. height: math.unit(6, "inches")
  18518. },
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(6, "feet"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Macro",
  18526. height: math.unit(72, "feet")
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(5 + 9 / 12, "feet"),
  18535. weight: math.unit(175, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/irishfox/front.svg",
  18539. extra: 1912 / 1680,
  18540. bottom: 0.02
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Nano",
  18547. height: math.unit(1, "mm")
  18548. },
  18549. {
  18550. name: "Micro",
  18551. height: math.unit(2, "inches")
  18552. },
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(5 + 9 / 12, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(45, "feet")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(6 + 1 / 12, "feet"),
  18569. weight: math.unit(75, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/aronai-sieyes/front.svg",
  18573. extra: 1556 / 1480,
  18574. bottom: 0.015
  18575. }
  18576. },
  18577. side: {
  18578. height: math.unit(6 + 1 / 12, "feet"),
  18579. weight: math.unit(75, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/aronai-sieyes/side.svg",
  18583. extra: 1433 / 1390,
  18584. bottom: 0.0393
  18585. }
  18586. },
  18587. back: {
  18588. height: math.unit(6 + 1 / 12, "feet"),
  18589. weight: math.unit(75, "lb"),
  18590. name: "Back",
  18591. image: {
  18592. source: "./media/characters/aronai-sieyes/back.svg",
  18593. extra: 1544 / 1494,
  18594. bottom: 0.02
  18595. }
  18596. },
  18597. frontClothed: {
  18598. height: math.unit(6 + 1 / 12, "feet"),
  18599. weight: math.unit(75, "lb"),
  18600. name: "Front (Clothed)",
  18601. image: {
  18602. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18603. extra: 1582 / 1527
  18604. }
  18605. },
  18606. feral: {
  18607. height: math.unit(18, "feet"),
  18608. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18609. name: "Feral",
  18610. image: {
  18611. source: "./media/characters/aronai-sieyes/feral.svg",
  18612. extra: 1530 / 1240,
  18613. bottom: 0.035
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Micro",
  18620. height: math.unit(2, "inches")
  18621. },
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(6 + 1 / 12, "feet"),
  18625. default: true
  18626. }
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(12, "feet"),
  18634. weight: math.unit(410, "kg"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/xuna/front.svg",
  18638. extra: 2184 / 1980
  18639. }
  18640. },
  18641. side: {
  18642. height: math.unit(12, "feet"),
  18643. weight: math.unit(410, "kg"),
  18644. name: "Side",
  18645. image: {
  18646. source: "./media/characters/xuna/side.svg",
  18647. extra: 2184 / 1980
  18648. }
  18649. },
  18650. back: {
  18651. height: math.unit(12, "feet"),
  18652. weight: math.unit(410, "kg"),
  18653. name: "Back",
  18654. image: {
  18655. source: "./media/characters/xuna/back.svg",
  18656. extra: 2184 / 1980
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Nano glow",
  18663. height: math.unit(10, "nm")
  18664. },
  18665. {
  18666. name: "Micro floof",
  18667. height: math.unit(0.3, "m")
  18668. },
  18669. {
  18670. name: "Huggable softy boi",
  18671. height: math.unit(3.6576, "m"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Admirable floof",
  18676. height: math.unit(80, "meters")
  18677. },
  18678. {
  18679. name: "Gentle macro",
  18680. height: math.unit(300, "meters")
  18681. },
  18682. {
  18683. name: "Very careful floof",
  18684. height: math.unit(3200, "meters")
  18685. },
  18686. {
  18687. name: "The mega floof",
  18688. height: math.unit(36000, "meters")
  18689. },
  18690. {
  18691. name: "Giga-fur-Wicker",
  18692. height: math.unit(4800000, "meters")
  18693. },
  18694. {
  18695. name: "Licky world",
  18696. height: math.unit(20000000, "meters")
  18697. },
  18698. {
  18699. name: "Floofy cyan sun",
  18700. height: math.unit(1500000000, "meters")
  18701. },
  18702. {
  18703. name: "Milky Wicker",
  18704. height: math.unit(1000000000000000000000, "meters")
  18705. },
  18706. {
  18707. name: "The observing Wicker",
  18708. height: math.unit(999999999999999999999999999, "meters")
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18714. {
  18715. front: {
  18716. height: math.unit(5 + 9 / 12, "feet"),
  18717. weight: math.unit(150, "lb"),
  18718. name: "Front",
  18719. image: {
  18720. source: "./media/characters/arokha-sieyes/front.svg",
  18721. extra: 1425 / 1284,
  18722. bottom: 0.05
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(5 + 9 / 12, "feet")
  18730. },
  18731. {
  18732. name: "Macro",
  18733. height: math.unit(30, "meters"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(6, "feet"),
  18743. weight: math.unit(180, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/arokh-sieyes/front.svg",
  18747. extra: 1830 / 1769,
  18748. bottom: 0.01
  18749. }
  18750. },
  18751. },
  18752. [
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(6, "feet")
  18756. },
  18757. {
  18758. name: "Macro",
  18759. height: math.unit(30, "meters"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18766. {
  18767. side: {
  18768. height: math.unit(13 + 1 / 12, "feet"),
  18769. weight: math.unit(8.5, "tonnes"),
  18770. name: "Side",
  18771. image: {
  18772. source: "./media/characters/goldeneye/side.svg",
  18773. extra: 1182 / 778,
  18774. bottom: 0.067
  18775. }
  18776. },
  18777. paw: {
  18778. height: math.unit(3.4, "feet"),
  18779. name: "Paw",
  18780. image: {
  18781. source: "./media/characters/goldeneye/paw.svg"
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(13 + 1 / 12, "feet"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18795. {
  18796. front: {
  18797. height: math.unit(6 + 1 / 12, "feet"),
  18798. weight: math.unit(210, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/leonardo-lycheborne/front.svg",
  18802. extra: 390 / 365,
  18803. bottom: 0.032
  18804. }
  18805. },
  18806. side: {
  18807. height: math.unit(6 + 1 / 12, "feet"),
  18808. weight: math.unit(210, "lb"),
  18809. name: "Side",
  18810. image: {
  18811. source: "./media/characters/leonardo-lycheborne/side.svg",
  18812. extra: 390 / 365,
  18813. bottom: 0.005
  18814. }
  18815. },
  18816. back: {
  18817. height: math.unit(6 + 1 / 12, "feet"),
  18818. weight: math.unit(210, "lb"),
  18819. name: "Back",
  18820. image: {
  18821. source: "./media/characters/leonardo-lycheborne/back.svg",
  18822. extra: 392 / 366,
  18823. bottom: 0.01
  18824. }
  18825. },
  18826. hand: {
  18827. height: math.unit(1.08, "feet"),
  18828. name: "Hand",
  18829. image: {
  18830. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18831. }
  18832. },
  18833. foot: {
  18834. height: math.unit(1.32, "feet"),
  18835. name: "Foot",
  18836. image: {
  18837. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18838. }
  18839. },
  18840. were: {
  18841. height: math.unit(20, "feet"),
  18842. weight: math.unit(7800, "lb"),
  18843. name: "Were",
  18844. image: {
  18845. source: "./media/characters/leonardo-lycheborne/were.svg",
  18846. extra: 308 / 294,
  18847. bottom: 0.048
  18848. }
  18849. },
  18850. feral: {
  18851. height: math.unit(7.5, "feet"),
  18852. weight: math.unit(600, "lb"),
  18853. name: "Feral",
  18854. image: {
  18855. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18856. extra: 210 / 186,
  18857. bottom: 0.108
  18858. }
  18859. },
  18860. taur: {
  18861. height: math.unit(11, "feet"),
  18862. weight: math.unit(3300, "lb"),
  18863. name: "Taur",
  18864. image: {
  18865. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18866. extra: 320 / 303,
  18867. bottom: 0.025
  18868. }
  18869. },
  18870. barghest: {
  18871. height: math.unit(11, "feet"),
  18872. weight: math.unit(1300, "lb"),
  18873. name: "Barghest",
  18874. image: {
  18875. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18876. extra: 323 / 302,
  18877. bottom: 0.027
  18878. }
  18879. },
  18880. dick: {
  18881. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18882. name: "Dick",
  18883. image: {
  18884. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18885. }
  18886. },
  18887. dickWere: {
  18888. height: math.unit((20) / 3.8, "feet"),
  18889. name: "Dick (Were)",
  18890. image: {
  18891. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(6 + 1 / 12, "feet"),
  18899. default: true
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18905. {
  18906. front: {
  18907. height: math.unit(10, "feet"),
  18908. weight: math.unit(350, "lb"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/jet/front.svg",
  18912. extra: 2050 / 1980,
  18913. bottom: 0.013
  18914. }
  18915. },
  18916. back: {
  18917. height: math.unit(10, "feet"),
  18918. weight: math.unit(350, "lb"),
  18919. name: "Back",
  18920. image: {
  18921. source: "./media/characters/jet/back.svg",
  18922. extra: 2050 / 1980,
  18923. bottom: 0.013
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Micro",
  18930. height: math.unit(6, "inches")
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(10, "feet"),
  18935. default: true
  18936. },
  18937. {
  18938. name: "Macro",
  18939. height: math.unit(100, "feet")
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(15, "feet"),
  18948. weight: math.unit(2800, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/tanarath/front.svg",
  18952. extra: 2392 / 2220,
  18953. bottom: 0.03
  18954. }
  18955. },
  18956. back: {
  18957. height: math.unit(15, "feet"),
  18958. weight: math.unit(2800, "lb"),
  18959. name: "Back",
  18960. image: {
  18961. source: "./media/characters/tanarath/back.svg",
  18962. extra: 2392 / 2220,
  18963. bottom: 0.03
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(15, "feet"),
  18971. default: true
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18977. {
  18978. front: {
  18979. height: math.unit(7 + 1 / 12, "feet"),
  18980. weight: math.unit(175, "lb"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/patty-cattybatty/front.svg",
  18984. extra: 908 / 874,
  18985. bottom: 0.025
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Micro",
  18992. height: math.unit(1, "inch")
  18993. },
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(7 + 1 / 12, "feet")
  18997. },
  18998. {
  18999. name: "Mini Macro",
  19000. height: math.unit(155, "feet")
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(1077, "feet")
  19005. },
  19006. {
  19007. name: "Mega Macro",
  19008. height: math.unit(47650, "feet"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Giga Macro",
  19013. height: math.unit(440, "miles")
  19014. },
  19015. {
  19016. name: "Tera Macro",
  19017. height: math.unit(8700, "miles")
  19018. },
  19019. {
  19020. name: "Planetary Macro",
  19021. height: math.unit(32700, "miles")
  19022. },
  19023. {
  19024. name: "Solar Macro",
  19025. height: math.unit(550000, "miles")
  19026. },
  19027. {
  19028. name: "Celestial Macro",
  19029. height: math.unit(2.5, "AU")
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(4 + 5 / 12, "feet"),
  19038. weight: math.unit(90, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/cappu/front.svg",
  19042. extra: 1247 / 1152,
  19043. bottom: 0.012
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(4 + 5 / 12, "feet"),
  19051. default: true
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19057. {
  19058. frontDressed: {
  19059. height: math.unit(70, "cm"),
  19060. weight: math.unit(6, "kg"),
  19061. name: "Front (Dressed)",
  19062. image: {
  19063. source: "./media/characters/sebi/front-dressed.svg",
  19064. extra: 713.5 / 686.5,
  19065. bottom: 0.003
  19066. }
  19067. },
  19068. front: {
  19069. height: math.unit(70, "cm"),
  19070. weight: math.unit(5, "kg"),
  19071. name: "Front",
  19072. image: {
  19073. source: "./media/characters/sebi/front.svg",
  19074. extra: 713.5 / 686.5,
  19075. bottom: 0.003
  19076. }
  19077. }
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(70, "cm"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Macro",
  19087. height: math.unit(8, "meters")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(6, "feet"),
  19096. weight: math.unit(150, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/typhek/front.svg",
  19100. extra: 1948 / 1929,
  19101. bottom: 0.025
  19102. }
  19103. },
  19104. side: {
  19105. height: math.unit(6, "feet"),
  19106. weight: math.unit(150, "lb"),
  19107. name: "Side",
  19108. image: {
  19109. source: "./media/characters/typhek/side.svg",
  19110. extra: 2034 / 2010,
  19111. bottom: 0.003
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(6, "feet"),
  19116. weight: math.unit(150, "lb"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/typhek/back.svg",
  19120. extra: 2005 / 1978,
  19121. bottom: 0.004
  19122. }
  19123. },
  19124. palm: {
  19125. height: math.unit(1.2, "feet"),
  19126. name: "Palm",
  19127. image: {
  19128. source: "./media/characters/typhek/palm.svg"
  19129. }
  19130. },
  19131. fist: {
  19132. height: math.unit(1.1, "feet"),
  19133. name: "Fist",
  19134. image: {
  19135. source: "./media/characters/typhek/fist.svg"
  19136. }
  19137. },
  19138. foot: {
  19139. height: math.unit(1.57, "feet"),
  19140. name: "Foot",
  19141. image: {
  19142. source: "./media/characters/typhek/foot.svg"
  19143. }
  19144. },
  19145. sole: {
  19146. height: math.unit(2.05, "feet"),
  19147. name: "Sole",
  19148. image: {
  19149. source: "./media/characters/typhek/sole.svg"
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(40, "stories"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Megamacro",
  19161. height: math.unit(1, "mile")
  19162. },
  19163. {
  19164. name: "Gigamacro",
  19165. height: math.unit(4000, "solarradii")
  19166. },
  19167. {
  19168. name: "Universal",
  19169. height: math.unit(1.1, "universes")
  19170. }
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19175. {
  19176. side: {
  19177. height: math.unit(5 + 7 / 12, "feet"),
  19178. weight: math.unit(150, "lb"),
  19179. name: "Side",
  19180. image: {
  19181. source: "./media/characters/kassy/side.svg",
  19182. extra: 1280 / 1225,
  19183. bottom: 0.002
  19184. }
  19185. },
  19186. front: {
  19187. height: math.unit(5 + 7 / 12, "feet"),
  19188. weight: math.unit(150, "lb"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/kassy/front.svg",
  19192. extra: 1280 / 1225,
  19193. bottom: 0.025
  19194. }
  19195. },
  19196. back: {
  19197. height: math.unit(5 + 7 / 12, "feet"),
  19198. weight: math.unit(150, "lb"),
  19199. name: "Back",
  19200. image: {
  19201. source: "./media/characters/kassy/back.svg",
  19202. extra: 1280 / 1225,
  19203. bottom: 0.002
  19204. }
  19205. },
  19206. foot: {
  19207. height: math.unit(1.266, "feet"),
  19208. name: "Foot",
  19209. image: {
  19210. source: "./media/characters/kassy/foot.svg"
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(5 + 7 / 12, "feet")
  19218. },
  19219. {
  19220. name: "Macro",
  19221. height: math.unit(137, "feet"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Megamacro",
  19226. height: math.unit(1, "mile")
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6 + 1 / 12, "feet"),
  19235. weight: math.unit(200, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/neil/front.svg",
  19239. extra: 1326 / 1250,
  19240. bottom: 0.023
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6 + 1 / 12, "feet"),
  19248. default: true
  19249. },
  19250. {
  19251. name: "Macro",
  19252. height: math.unit(200, "feet")
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(5 + 9 / 12, "feet"),
  19261. weight: math.unit(190, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/atticus/front.svg",
  19265. extra: 2934 / 2785,
  19266. bottom: 0.025
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(5 + 9 / 12, "feet"),
  19274. default: true
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(180, "feet")
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19284. {
  19285. side: {
  19286. height: math.unit(9, "feet"),
  19287. weight: math.unit(650, "lb"),
  19288. name: "Side",
  19289. image: {
  19290. source: "./media/characters/milo/side.svg",
  19291. extra: 2644 / 2310,
  19292. bottom: 0.032
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(9, "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(300, "feet")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19310. {
  19311. side: {
  19312. height: math.unit(8, "meters"),
  19313. weight: math.unit(90000, "kg"),
  19314. name: "Side",
  19315. image: {
  19316. source: "./media/characters/ijzer/side.svg",
  19317. extra: 2756 / 1600,
  19318. bottom: 0.01
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Small",
  19325. height: math.unit(3, "meters")
  19326. },
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(8, "meters"),
  19330. default: true
  19331. },
  19332. {
  19333. name: "Normal+",
  19334. height: math.unit(10, "meters")
  19335. },
  19336. {
  19337. name: "Bigger",
  19338. height: math.unit(24, "meters")
  19339. },
  19340. {
  19341. name: "Huge",
  19342. height: math.unit(80, "meters")
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(6 + 2 / 12, "feet"),
  19351. weight: math.unit(153, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/luca-cervicum/front.svg",
  19355. extra: 370 / 327,
  19356. bottom: 0.015
  19357. }
  19358. },
  19359. back: {
  19360. height: math.unit(6 + 2 / 12, "feet"),
  19361. weight: math.unit(153, "lb"),
  19362. name: "Back",
  19363. image: {
  19364. source: "./media/characters/luca-cervicum/back.svg",
  19365. extra: 367 / 333,
  19366. bottom: 0.005
  19367. }
  19368. },
  19369. frontGear: {
  19370. height: math.unit(6 + 2 / 12, "feet"),
  19371. weight: math.unit(173, "lb"),
  19372. name: "Front (Gear)",
  19373. image: {
  19374. source: "./media/characters/luca-cervicum/front-gear.svg",
  19375. extra: 377 / 333,
  19376. bottom: 0.006
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(6 + 2 / 12, "feet"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(6 + 1 / 12, "feet"),
  19393. weight: math.unit(304, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/oliver/front.svg",
  19397. extra: 157 / 143,
  19398. bottom: 0.08
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(6 + 1 / 12, "feet"),
  19406. default: true
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19412. {
  19413. front: {
  19414. height: math.unit(5 + 7 / 12, "feet"),
  19415. weight: math.unit(140, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/shane/front.svg",
  19419. extra: 304 / 289,
  19420. bottom: 0.005
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(5 + 7 / 12, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(5 + 9 / 12, "feet"),
  19437. weight: math.unit(178, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/shin/front.svg",
  19441. extra: 159 / 151,
  19442. bottom: 0.015
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(5 + 9 / 12, "feet"),
  19450. default: true
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19456. {
  19457. front: {
  19458. height: math.unit(5 + 10 / 12, "feet"),
  19459. weight: math.unit(168, "lb"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/xerxes/front.svg",
  19463. extra: 282 / 260,
  19464. bottom: 0.045
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(5 + 10 / 12, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(6 + 7 / 12, "feet"),
  19481. weight: math.unit(208, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/chaska/front.svg",
  19485. extra: 332 / 319,
  19486. bottom: 0.015
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(6 + 7 / 12, "feet"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(5 + 8 / 12, "feet"),
  19503. weight: math.unit(208, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/enuk/front.svg",
  19507. extra: 437 / 406,
  19508. bottom: 0.02
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(5 + 8 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(5 + 10 / 12, "feet"),
  19525. weight: math.unit(252, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/bruun/front.svg",
  19529. extra: 197 / 187,
  19530. bottom: 0.012
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(5 + 10 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(6 + 10 / 12, "feet"),
  19547. weight: math.unit(255, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/alexeev/front.svg",
  19551. extra: 213 / 200,
  19552. bottom: 0.05
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(6 + 10 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(2 + 8 / 12, "feet"),
  19569. weight: math.unit(22, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/evelyn/front.svg",
  19573. extra: 208 / 180
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(2 + 8 / 12, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(5 + 9 / 12, "feet"),
  19590. weight: math.unit(139, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/inca/front.svg",
  19594. extra: 294 / 291,
  19595. bottom: 0.03
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(5 + 9 / 12, "feet"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(5 + 1 / 12, "feet"),
  19612. weight: math.unit(84, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/magdalene/front.svg",
  19616. extra: 293 / 273
  19617. }
  19618. },
  19619. },
  19620. [
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(5 + 1 / 12, "feet"),
  19624. default: true
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(6 + 3 / 12, "feet"),
  19633. weight: math.unit(185, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/mera/front.svg",
  19637. extra: 291 / 277,
  19638. bottom: 0.03
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(6 + 3 / 12, "feet"),
  19646. default: true
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(6 + 7 / 12, "feet"),
  19655. weight: math.unit(160, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/ceres/front.svg",
  19659. extra: 1023 / 950,
  19660. bottom: 0.027
  19661. }
  19662. },
  19663. back: {
  19664. height: math.unit(6 + 7 / 12, "feet"),
  19665. weight: math.unit(160, "lb"),
  19666. name: "Back",
  19667. image: {
  19668. source: "./media/characters/ceres/back.svg",
  19669. extra: 1023 / 950
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(6 + 7 / 12, "feet"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19683. {
  19684. front: {
  19685. height: math.unit(5 + 10 / 12, "feet"),
  19686. weight: math.unit(150, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/kris/front.svg",
  19690. extra: 885 / 803,
  19691. bottom: 0.03
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(5 + 10 / 12, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(7, "feet"),
  19708. weight: math.unit(120, "kg"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/taluthus/front.svg",
  19712. extra: 903 / 833,
  19713. bottom: 0.015
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(7, "feet"),
  19721. default: true
  19722. },
  19723. {
  19724. name: "Macro",
  19725. height: math.unit(300, "feet")
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(5 + 9 / 12, "feet"),
  19734. weight: math.unit(145, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/dawn/front.svg",
  19738. extra: 2094 / 2016,
  19739. bottom: 0.025
  19740. }
  19741. },
  19742. back: {
  19743. height: math.unit(5 + 9 / 12, "feet"),
  19744. weight: math.unit(160, "lb"),
  19745. name: "Back",
  19746. image: {
  19747. source: "./media/characters/dawn/back.svg",
  19748. extra: 2112 / 2080,
  19749. bottom: 0.005
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(6 + 7 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19763. {
  19764. anthro: {
  19765. height: math.unit(8 + 3 / 12, "feet"),
  19766. weight: math.unit(450, "lb"),
  19767. name: "Anthro",
  19768. image: {
  19769. source: "./media/characters/arador/anthro.svg",
  19770. extra: 1835 / 1718,
  19771. bottom: 0.025
  19772. }
  19773. },
  19774. feral: {
  19775. height: math.unit(4, "feet"),
  19776. weight: math.unit(200, "lb"),
  19777. name: "Feral",
  19778. image: {
  19779. source: "./media/characters/arador/feral.svg",
  19780. extra: 1683 / 1514,
  19781. bottom: 0.07
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(8 + 3 / 12, "feet")
  19789. },
  19790. {
  19791. name: "Macro",
  19792. height: math.unit(82.5, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(5 + 10 / 12, "feet"),
  19802. weight: math.unit(125, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/dharsi/front.svg",
  19806. extra: 716 / 630,
  19807. bottom: 0.035
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Nano",
  19814. height: math.unit(100, "nm")
  19815. },
  19816. {
  19817. name: "Micro",
  19818. height: math.unit(2, "inches")
  19819. },
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(5 + 10 / 12, "feet"),
  19823. default: true
  19824. },
  19825. {
  19826. name: "Macro",
  19827. height: math.unit(1000, "feet")
  19828. },
  19829. {
  19830. name: "Megamacro",
  19831. height: math.unit(10, "miles")
  19832. },
  19833. {
  19834. name: "Gigamacro",
  19835. height: math.unit(3000, "miles")
  19836. },
  19837. {
  19838. name: "Teramacro",
  19839. height: math.unit(500000, "miles")
  19840. },
  19841. {
  19842. name: "Teramacro+",
  19843. height: math.unit(30, "galaxies")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(6, "feet"),
  19852. weight: math.unit(150, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/deathy/front.svg",
  19856. extra: 1552 / 1463,
  19857. bottom: 0.025
  19858. }
  19859. },
  19860. side: {
  19861. height: math.unit(6, "feet"),
  19862. weight: math.unit(150, "lb"),
  19863. name: "Side",
  19864. image: {
  19865. source: "./media/characters/deathy/side.svg",
  19866. extra: 1604 / 1455,
  19867. bottom: 0.025
  19868. }
  19869. },
  19870. back: {
  19871. height: math.unit(6, "feet"),
  19872. weight: math.unit(150, "lb"),
  19873. name: "Back",
  19874. image: {
  19875. source: "./media/characters/deathy/back.svg",
  19876. extra: 1580 / 1463,
  19877. bottom: 0.005
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Micro",
  19884. height: math.unit(5, "millimeters")
  19885. },
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(6 + 5 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19895. {
  19896. front: {
  19897. height: math.unit(16, "feet"),
  19898. weight: math.unit(4000, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/juniper/front.svg",
  19902. bottom: 0.04
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(16, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19916. {
  19917. front: {
  19918. height: math.unit(6, "feet"),
  19919. weight: math.unit(150, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/hipster/front.svg",
  19923. extra: 1312 / 1209,
  19924. bottom: 0.025
  19925. }
  19926. },
  19927. back: {
  19928. height: math.unit(6, "feet"),
  19929. weight: math.unit(150, "lb"),
  19930. name: "Back",
  19931. image: {
  19932. source: "./media/characters/hipster/back.svg",
  19933. extra: 1281 / 1196,
  19934. bottom: 0.01
  19935. }
  19936. },
  19937. },
  19938. [
  19939. {
  19940. name: "Micro",
  19941. height: math.unit(1, "mm")
  19942. },
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(4, "inches"),
  19946. default: true
  19947. },
  19948. {
  19949. name: "Macro",
  19950. height: math.unit(500, "feet")
  19951. },
  19952. {
  19953. name: "Megamacro",
  19954. height: math.unit(1000, "miles")
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6, "feet"),
  19963. weight: math.unit(150, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/tendirmuldr/front.svg",
  19967. extra: 1878 / 1772,
  19968. bottom: 0.015
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Megamacro",
  19975. height: math.unit(1500, "miles"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19982. {
  19983. front: {
  19984. height: math.unit(14, "feet"),
  19985. weight: math.unit(12000, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/mort/front.svg",
  19989. extra: 365 / 318,
  19990. bottom: 0.01
  19991. }
  19992. },
  19993. side: {
  19994. height: math.unit(14, "feet"),
  19995. weight: math.unit(12000, "lb"),
  19996. name: "Side",
  19997. image: {
  19998. source: "./media/characters/mort/side.svg",
  19999. extra: 365 / 318,
  20000. bottom: 0.052
  20001. },
  20002. default: true
  20003. },
  20004. back: {
  20005. height: math.unit(14, "feet"),
  20006. weight: math.unit(12000, "lb"),
  20007. name: "Back",
  20008. image: {
  20009. source: "./media/characters/mort/back.svg",
  20010. extra: 371 / 332,
  20011. bottom: 0.18
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(14, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20025. {
  20026. front: {
  20027. height: math.unit(8, "feet"),
  20028. weight: math.unit(1, "ton"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/lycoa/front.svg",
  20032. extra: 1875 / 1789,
  20033. bottom: 0.022
  20034. }
  20035. },
  20036. back: {
  20037. height: math.unit(8, "feet"),
  20038. weight: math.unit(1, "ton"),
  20039. name: "Back",
  20040. image: {
  20041. source: "./media/characters/lycoa/back.svg",
  20042. extra: 1835 / 1781,
  20043. bottom: 0.03
  20044. }
  20045. },
  20046. head: {
  20047. height: math.unit(2.1, "feet"),
  20048. name: "Head",
  20049. image: {
  20050. source: "./media/characters/lycoa/head.svg"
  20051. }
  20052. },
  20053. tailmaw: {
  20054. height: math.unit(1.9, "feet"),
  20055. name: "Tailmaw",
  20056. image: {
  20057. source: "./media/characters/lycoa/tailmaw.svg"
  20058. }
  20059. },
  20060. tentacles: {
  20061. height: math.unit(2.1, "feet"),
  20062. name: "Tentacles",
  20063. image: {
  20064. source: "./media/characters/lycoa/tentacles.svg"
  20065. }
  20066. },
  20067. dick: {
  20068. height: math.unit(1.73, "feet"),
  20069. name: "Dick",
  20070. image: {
  20071. source: "./media/characters/lycoa/dick.svg"
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(8, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(30, "feet")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20089. {
  20090. front: {
  20091. height: math.unit(4 + 2 / 12, "feet"),
  20092. weight: math.unit(70, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/naldara/front.svg",
  20096. extra: 841 / 720,
  20097. bottom: 0.04
  20098. }
  20099. },
  20100. naga: {
  20101. height: math.unit(23, "feet"),
  20102. weight: math.unit(15000, "kg"),
  20103. name: "Naga",
  20104. image: {
  20105. source: "./media/characters/naldara/naga.svg",
  20106. extra: 3290 / 2959,
  20107. bottom: 124 / 3432
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(4 + 2 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(13 + 7 / 12, "feet"),
  20124. weight: math.unit(1500, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/briar/front.svg",
  20128. extra: 626 / 596,
  20129. bottom: 0.08
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(13 + 7 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20143. {
  20144. side: {
  20145. height: math.unit(10, "feet"),
  20146. weight: math.unit(500, "lb"),
  20147. name: "Side",
  20148. image: {
  20149. source: "./media/characters/vanguard/side.svg",
  20150. extra: 502 / 425,
  20151. bottom: 0.087
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(10, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(7.5, "feet"),
  20168. weight: math.unit(2, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/artemis/front.svg",
  20172. extra: 1192 / 1075,
  20173. bottom: 0.07
  20174. }
  20175. },
  20176. frontNsfw: {
  20177. height: math.unit(7.5, "feet"),
  20178. weight: math.unit(2, "lb"),
  20179. name: "Front (NSFW)",
  20180. image: {
  20181. source: "./media/characters/artemis/front-nsfw.svg",
  20182. extra: 1192 / 1075,
  20183. bottom: 0.07
  20184. }
  20185. },
  20186. frontNsfwer: {
  20187. height: math.unit(7.5, "feet"),
  20188. weight: math.unit(2, "lb"),
  20189. name: "Front (NSFW-er)",
  20190. image: {
  20191. source: "./media/characters/artemis/front-nsfwer.svg",
  20192. extra: 1192 / 1075,
  20193. bottom: 0.07
  20194. }
  20195. },
  20196. side: {
  20197. height: math.unit(7.5, "feet"),
  20198. weight: math.unit(2, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/artemis/side.svg",
  20202. extra: 1192 / 1075,
  20203. bottom: 0.07
  20204. }
  20205. },
  20206. sideNsfw: {
  20207. height: math.unit(7.5, "feet"),
  20208. weight: math.unit(2, "lb"),
  20209. name: "Side (NSFW)",
  20210. image: {
  20211. source: "./media/characters/artemis/side-nsfw.svg",
  20212. extra: 1192 / 1075,
  20213. bottom: 0.07
  20214. }
  20215. },
  20216. sideNsfwer: {
  20217. height: math.unit(7.5, "feet"),
  20218. weight: math.unit(2, "lb"),
  20219. name: "Side (NSFW-er)",
  20220. image: {
  20221. source: "./media/characters/artemis/side-nsfwer.svg",
  20222. extra: 1192 / 1075,
  20223. bottom: 0.07
  20224. }
  20225. },
  20226. maw: {
  20227. height: math.unit(1.1, "feet"),
  20228. name: "Maw",
  20229. image: {
  20230. source: "./media/characters/artemis/maw.svg"
  20231. }
  20232. },
  20233. stomach: {
  20234. height: math.unit(0.95, "feet"),
  20235. name: "Stomach",
  20236. image: {
  20237. source: "./media/characters/artemis/stomach.svg"
  20238. }
  20239. },
  20240. dickCanine: {
  20241. height: math.unit(1, "feet"),
  20242. name: "Dick (Canine)",
  20243. image: {
  20244. source: "./media/characters/artemis/dick-canine.svg"
  20245. }
  20246. },
  20247. dickEquine: {
  20248. height: math.unit(0.85, "feet"),
  20249. name: "Dick (Equine)",
  20250. image: {
  20251. source: "./media/characters/artemis/dick-equine.svg"
  20252. }
  20253. },
  20254. dickExotic: {
  20255. height: math.unit(0.85, "feet"),
  20256. name: "Dick (Exotic)",
  20257. image: {
  20258. source: "./media/characters/artemis/dick-exotic.svg"
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(7.5, "feet"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Enlarged",
  20270. height: math.unit(12, "feet")
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(5 + 3 / 12, "feet"),
  20279. weight: math.unit(160, "lb"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/kira/front.svg",
  20283. extra: 906 / 786,
  20284. bottom: 0.01
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(5 + 3 / 12, "feet"),
  20289. weight: math.unit(160, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/kira/back.svg",
  20293. extra: 882 / 757,
  20294. bottom: 0.005
  20295. }
  20296. },
  20297. frontDressed: {
  20298. height: math.unit(5 + 3 / 12, "feet"),
  20299. weight: math.unit(160, "lb"),
  20300. name: "Front (Dressed)",
  20301. image: {
  20302. source: "./media/characters/kira/front-dressed.svg",
  20303. extra: 906 / 786,
  20304. bottom: 0.01
  20305. }
  20306. },
  20307. beans: {
  20308. height: math.unit(0.92, "feet"),
  20309. name: "Beans",
  20310. image: {
  20311. source: "./media/characters/kira/beans.svg"
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(5 + 3 / 12, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(5 + 4 / 12, "feet"),
  20328. weight: math.unit(145, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/scramble/front.svg",
  20332. extra: 763 / 727,
  20333. bottom: 0.05
  20334. }
  20335. },
  20336. back: {
  20337. height: math.unit(5 + 4 / 12, "feet"),
  20338. weight: math.unit(145, "lb"),
  20339. name: "Back",
  20340. image: {
  20341. source: "./media/characters/scramble/back.svg",
  20342. extra: 826 / 737,
  20343. bottom: 0.002
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(5 + 4 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20357. {
  20358. side: {
  20359. height: math.unit(6 + 2 / 12, "feet"),
  20360. weight: math.unit(190, "lb"),
  20361. name: "Side",
  20362. image: {
  20363. source: "./media/characters/biscuit/side.svg",
  20364. extra: 858 / 791,
  20365. bottom: 0.044
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(6 + 2 / 12, "feet"),
  20373. default: true
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20379. {
  20380. front: {
  20381. height: math.unit(5 + 2 / 12, "feet"),
  20382. weight: math.unit(120, "lb"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/poffin/front.svg",
  20386. extra: 786 / 680,
  20387. bottom: 0.005
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(5 + 2 / 12, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20401. {
  20402. front: {
  20403. height: math.unit(6 + 3 / 12, "feet"),
  20404. weight: math.unit(519, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/dhari/front.svg",
  20408. extra: 1048 / 946,
  20409. bottom: 0.015
  20410. }
  20411. },
  20412. back: {
  20413. height: math.unit(6 + 3 / 12, "feet"),
  20414. weight: math.unit(519, "lb"),
  20415. name: "Back",
  20416. image: {
  20417. source: "./media/characters/dhari/back.svg",
  20418. extra: 1048 / 931,
  20419. bottom: 0.005
  20420. }
  20421. },
  20422. frontDressed: {
  20423. height: math.unit(6 + 3 / 12, "feet"),
  20424. weight: math.unit(519, "lb"),
  20425. name: "Front (Dressed)",
  20426. image: {
  20427. source: "./media/characters/dhari/front-dressed.svg",
  20428. extra: 1713 / 1546,
  20429. bottom: 0.02
  20430. }
  20431. },
  20432. backDressed: {
  20433. height: math.unit(6 + 3 / 12, "feet"),
  20434. weight: math.unit(519, "lb"),
  20435. name: "Back (Dressed)",
  20436. image: {
  20437. source: "./media/characters/dhari/back-dressed.svg",
  20438. extra: 1699 / 1537,
  20439. bottom: 0.01
  20440. }
  20441. },
  20442. maw: {
  20443. height: math.unit(0.95, "feet"),
  20444. name: "Maw",
  20445. image: {
  20446. source: "./media/characters/dhari/maw.svg"
  20447. }
  20448. },
  20449. wereFront: {
  20450. height: math.unit(12 + 8 / 12, "feet"),
  20451. weight: math.unit(4000, "lb"),
  20452. name: "Front (Were)",
  20453. image: {
  20454. source: "./media/characters/dhari/were-front.svg",
  20455. extra: 1065 / 969,
  20456. bottom: 0.015
  20457. }
  20458. },
  20459. wereBack: {
  20460. height: math.unit(12 + 8 / 12, "feet"),
  20461. weight: math.unit(4000, "lb"),
  20462. name: "Back (Were)",
  20463. image: {
  20464. source: "./media/characters/dhari/were-back.svg",
  20465. extra: 1065 / 969,
  20466. bottom: 0.012
  20467. }
  20468. },
  20469. wereMaw: {
  20470. height: math.unit(0.625, "meters"),
  20471. name: "Maw (Were)",
  20472. image: {
  20473. source: "./media/characters/dhari/were-maw.svg"
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Normal",
  20480. height: math.unit(6 + 3 / 12, "feet"),
  20481. default: true
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20487. {
  20488. anthro: {
  20489. height: math.unit(5 + 7 / 12, "feet"),
  20490. weight: math.unit(175, "lb"),
  20491. name: "Anthro",
  20492. image: {
  20493. source: "./media/characters/rena-dyne/anthro.svg",
  20494. extra: 1849 / 1785,
  20495. bottom: 0.005
  20496. }
  20497. },
  20498. taur: {
  20499. height: math.unit(15 + 6 / 12, "feet"),
  20500. weight: math.unit(8000, "lb"),
  20501. name: "Taur",
  20502. image: {
  20503. source: "./media/characters/rena-dyne/taur.svg",
  20504. extra: 2315 / 2234,
  20505. bottom: 0.033
  20506. }
  20507. },
  20508. },
  20509. [
  20510. {
  20511. name: "Normal",
  20512. height: math.unit(5 + 7 / 12, "feet"),
  20513. default: true
  20514. },
  20515. ]
  20516. ))
  20517. characterMakers.push(() => makeCharacter(
  20518. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20519. {
  20520. front: {
  20521. height: math.unit(8, "feet"),
  20522. weight: math.unit(600, "lb"),
  20523. name: "Front",
  20524. image: {
  20525. source: "./media/characters/weremeep/front.svg",
  20526. extra: 967 / 862,
  20527. bottom: 0.01
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(8, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Lorg",
  20539. height: math.unit(12, "feet")
  20540. },
  20541. {
  20542. name: "Oh Lawd She Comin'",
  20543. height: math.unit(20, "feet")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20549. {
  20550. front: {
  20551. height: math.unit(4, "feet"),
  20552. weight: math.unit(90, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/reza/front.svg",
  20556. extra: 1183 / 1111,
  20557. bottom: 0.017
  20558. }
  20559. },
  20560. back: {
  20561. height: math.unit(4, "feet"),
  20562. weight: math.unit(90, "lb"),
  20563. name: "Back",
  20564. image: {
  20565. source: "./media/characters/reza/back.svg",
  20566. extra: 1183 / 1111,
  20567. bottom: 0.01
  20568. }
  20569. },
  20570. drake: {
  20571. height: math.unit(30, "feet"),
  20572. weight: math.unit(246960, "lb"),
  20573. name: "Drake",
  20574. image: {
  20575. source: "./media/characters/reza/drake.svg",
  20576. extra: 2350 / 2024,
  20577. bottom: 60.7 / 2403
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(4, "feet"),
  20585. default: true
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20591. {
  20592. side: {
  20593. height: math.unit(15, "feet"),
  20594. weight: math.unit(14, "tons"),
  20595. name: "Side",
  20596. image: {
  20597. source: "./media/characters/athea/side.svg",
  20598. extra: 960 / 540,
  20599. bottom: 0.003
  20600. }
  20601. },
  20602. sitting: {
  20603. height: math.unit(6 * 2.85, "feet"),
  20604. weight: math.unit(14, "tons"),
  20605. name: "Sitting",
  20606. image: {
  20607. source: "./media/characters/athea/sitting.svg",
  20608. extra: 621 / 581,
  20609. bottom: 0.075
  20610. }
  20611. },
  20612. maw: {
  20613. height: math.unit(7.59498031496063, "feet"),
  20614. name: "Maw",
  20615. image: {
  20616. source: "./media/characters/athea/maw.svg"
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Lap Cat",
  20623. height: math.unit(2.5, "feet")
  20624. },
  20625. {
  20626. name: "Minimacro",
  20627. height: math.unit(15, "feet"),
  20628. default: true
  20629. },
  20630. {
  20631. name: "Macro",
  20632. height: math.unit(120, "feet")
  20633. },
  20634. {
  20635. name: "Macro+",
  20636. height: math.unit(640, "feet")
  20637. },
  20638. {
  20639. name: "Colossus",
  20640. height: math.unit(2.2, "miles")
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(8 + 8 / 12, "feet"),
  20649. weight: math.unit(130, "kg"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/seroko/front.svg",
  20653. extra: 1385 / 1280,
  20654. bottom: 0.025
  20655. }
  20656. },
  20657. back: {
  20658. height: math.unit(8 + 8 / 12, "feet"),
  20659. weight: math.unit(130, "kg"),
  20660. name: "Back",
  20661. image: {
  20662. source: "./media/characters/seroko/back.svg",
  20663. extra: 1369 / 1238,
  20664. bottom: 0.018
  20665. }
  20666. },
  20667. frontDressed: {
  20668. height: math.unit(8 + 8 / 12, "feet"),
  20669. weight: math.unit(130, "kg"),
  20670. name: "Front (Dressed)",
  20671. image: {
  20672. source: "./media/characters/seroko/front-dressed.svg",
  20673. extra: 1366 / 1275,
  20674. bottom: 0.03
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(8 + 8 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(5.5, "feet"),
  20691. weight: math.unit(160, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/quatzi/front.svg",
  20695. extra: 2346 / 2242,
  20696. bottom: 0.015
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(5.5, "feet"),
  20704. default: true
  20705. },
  20706. {
  20707. name: "Big",
  20708. height: math.unit(7.7, "feet")
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(5 + 11 / 12, "feet"),
  20717. weight: math.unit(180, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/sen/front.svg",
  20721. extra: 1321 / 1254,
  20722. bottom: 0.015
  20723. }
  20724. },
  20725. side: {
  20726. height: math.unit(5 + 11 / 12, "feet"),
  20727. weight: math.unit(180, "lb"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/sen/side.svg",
  20731. extra: 1321 / 1254,
  20732. bottom: 0.007
  20733. }
  20734. },
  20735. back: {
  20736. height: math.unit(5 + 11 / 12, "feet"),
  20737. weight: math.unit(180, "lb"),
  20738. name: "Back",
  20739. image: {
  20740. source: "./media/characters/sen/back.svg",
  20741. extra: 1321 / 1254
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(5 + 11 / 12, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(166.6, "cm"),
  20758. weight: math.unit(66.6, "kg"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/fruity/front.svg",
  20762. extra: 1510 / 1386,
  20763. bottom: 0.04
  20764. }
  20765. },
  20766. back: {
  20767. height: math.unit(166.6, "cm"),
  20768. weight: math.unit(66.6, "lb"),
  20769. name: "Back",
  20770. image: {
  20771. source: "./media/characters/fruity/back.svg",
  20772. extra: 1563 / 1435,
  20773. bottom: 0.005
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(166.6, "cm"),
  20781. default: true
  20782. },
  20783. {
  20784. name: "Demonic",
  20785. height: math.unit(166.6, "feet")
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20791. {
  20792. side: {
  20793. height: math.unit(10, "feet"),
  20794. weight: math.unit(500, "lb"),
  20795. name: "Side",
  20796. image: {
  20797. source: "./media/characters/zost/side.svg",
  20798. extra: 966 / 880,
  20799. bottom: 0.075
  20800. }
  20801. },
  20802. mawFront: {
  20803. height: math.unit(1.08, "meters"),
  20804. name: "Maw (Front)",
  20805. image: {
  20806. source: "./media/characters/zost/maw-front.svg"
  20807. }
  20808. },
  20809. mawSide: {
  20810. height: math.unit(2.66, "feet"),
  20811. name: "Maw (Side)",
  20812. image: {
  20813. source: "./media/characters/zost/maw-side.svg"
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Normal",
  20820. height: math.unit(10, "feet"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(5 + 4 / 12, "feet"),
  20830. weight: math.unit(120, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/luci/front.svg",
  20834. extra: 1985 / 1884,
  20835. bottom: 0.04
  20836. }
  20837. },
  20838. back: {
  20839. height: math.unit(5 + 4 / 12, "feet"),
  20840. weight: math.unit(120, "lb"),
  20841. name: "Back",
  20842. image: {
  20843. source: "./media/characters/luci/back.svg",
  20844. extra: 1892 / 1791,
  20845. bottom: 0.002
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(5 + 4 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(1500, "feet"),
  20862. weight: math.unit(3.8e6, "tons"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/2th/front.svg",
  20866. extra: 3489 / 3350,
  20867. bottom: 0.1
  20868. }
  20869. },
  20870. foot: {
  20871. height: math.unit(461, "feet"),
  20872. name: "Foot",
  20873. image: {
  20874. source: "./media/characters/2th/foot.svg"
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "\"Micro\"",
  20881. height: math.unit(15 + 7 / 12, "feet")
  20882. },
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(1500, "feet"),
  20886. default: true
  20887. },
  20888. {
  20889. name: "Macro",
  20890. height: math.unit(5000, "feet")
  20891. },
  20892. {
  20893. name: "Megamacro",
  20894. height: math.unit(15, "miles")
  20895. },
  20896. {
  20897. name: "Gigamacro",
  20898. height: math.unit(4000, "miles")
  20899. },
  20900. {
  20901. name: "Galactic",
  20902. height: math.unit(50, "AU")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(5 + 6 / 12, "feet"),
  20911. weight: math.unit(220, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/amethyst/front.svg",
  20915. extra: 2078 / 2040,
  20916. bottom: 0.045
  20917. }
  20918. },
  20919. back: {
  20920. height: math.unit(5 + 6 / 12, "feet"),
  20921. weight: math.unit(220, "lb"),
  20922. name: "Back",
  20923. image: {
  20924. source: "./media/characters/amethyst/back.svg",
  20925. extra: 2021 / 1989,
  20926. bottom: 0.02
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(5 + 6 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(4 + 11 / 12, "feet"),
  20943. weight: math.unit(120, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/yumi-akiyama/front.svg",
  20947. extra: 1327 / 1235,
  20948. bottom: 0.02
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(4 + 11 / 12, "feet"),
  20953. weight: math.unit(120, "lb"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/yumi-akiyama/back.svg",
  20957. extra: 1287 / 1245,
  20958. bottom: 0.002
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Galactic",
  20965. height: math.unit(50, "galaxies"),
  20966. default: true
  20967. },
  20968. {
  20969. name: "Universal",
  20970. height: math.unit(100, "universes")
  20971. },
  20972. ]
  20973. ))
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(8, "feet"),
  20979. weight: math.unit(500, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/rifter-yrmori/front.svg",
  20983. extra: 1180 / 1125,
  20984. bottom: 0.02
  20985. }
  20986. },
  20987. back: {
  20988. height: math.unit(8, "feet"),
  20989. weight: math.unit(500, "lb"),
  20990. name: "Back",
  20991. image: {
  20992. source: "./media/characters/rifter-yrmori/back.svg",
  20993. extra: 1190 / 1145,
  20994. bottom: 0.001
  20995. }
  20996. },
  20997. wings: {
  20998. height: math.unit(7.75, "feet"),
  20999. weight: math.unit(500, "lb"),
  21000. name: "Wings",
  21001. image: {
  21002. source: "./media/characters/rifter-yrmori/wings.svg",
  21003. extra: 1357 / 1285
  21004. }
  21005. },
  21006. maw: {
  21007. height: math.unit(0.8, "feet"),
  21008. name: "Maw",
  21009. image: {
  21010. source: "./media/characters/rifter-yrmori/maw.svg"
  21011. }
  21012. },
  21013. mawfront: {
  21014. height: math.unit(1.45, "feet"),
  21015. name: "Maw (Front)",
  21016. image: {
  21017. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21018. }
  21019. },
  21020. },
  21021. [
  21022. {
  21023. name: "Normal",
  21024. height: math.unit(8, "feet"),
  21025. default: true
  21026. },
  21027. {
  21028. name: "Macro",
  21029. height: math.unit(42, "meters")
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21035. {
  21036. were: {
  21037. height: math.unit(25 + 6 / 12, "feet"),
  21038. weight: math.unit(10000, "lb"),
  21039. name: "Were",
  21040. image: {
  21041. source: "./media/characters/tahajin/were.svg",
  21042. extra: 801 / 770,
  21043. bottom: 0.042
  21044. }
  21045. },
  21046. aquatic: {
  21047. height: math.unit(6 + 4 / 12, "feet"),
  21048. weight: math.unit(160, "lb"),
  21049. name: "Aquatic",
  21050. image: {
  21051. source: "./media/characters/tahajin/aquatic.svg",
  21052. extra: 572 / 542,
  21053. bottom: 0.04
  21054. }
  21055. },
  21056. chow: {
  21057. height: math.unit(8 + 11 / 12, "feet"),
  21058. weight: math.unit(450, "lb"),
  21059. name: "Chow",
  21060. image: {
  21061. source: "./media/characters/tahajin/chow.svg",
  21062. extra: 660 / 640,
  21063. bottom: 0.015
  21064. }
  21065. },
  21066. demiNaga: {
  21067. height: math.unit(6 + 8 / 12, "feet"),
  21068. weight: math.unit(300, "lb"),
  21069. name: "Demi Naga",
  21070. image: {
  21071. source: "./media/characters/tahajin/demi-naga.svg",
  21072. extra: 643 / 615,
  21073. bottom: 0.1
  21074. }
  21075. },
  21076. data: {
  21077. height: math.unit(5, "inches"),
  21078. weight: math.unit(0.1, "lb"),
  21079. name: "Data",
  21080. image: {
  21081. source: "./media/characters/tahajin/data.svg"
  21082. }
  21083. },
  21084. fluu: {
  21085. height: math.unit(5 + 7 / 12, "feet"),
  21086. weight: math.unit(140, "lb"),
  21087. name: "Fluu",
  21088. image: {
  21089. source: "./media/characters/tahajin/fluu.svg",
  21090. extra: 628 / 592,
  21091. bottom: 0.02
  21092. }
  21093. },
  21094. starWarrior: {
  21095. height: math.unit(4 + 5 / 12, "feet"),
  21096. weight: math.unit(50, "lb"),
  21097. name: "Star Warrior",
  21098. image: {
  21099. source: "./media/characters/tahajin/star-warrior.svg"
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(25 + 6 / 12, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(8, "feet"),
  21116. weight: math.unit(350, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/gabira/front.svg",
  21120. extra: 608 / 580,
  21121. bottom: 0.03
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(8, "feet"),
  21126. weight: math.unit(350, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/gabira/back.svg",
  21130. extra: 608 / 580,
  21131. bottom: 0.03
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(8, "feet"),
  21139. default: true
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21145. {
  21146. front: {
  21147. height: math.unit(5 + 3 / 12, "feet"),
  21148. weight: math.unit(137, "lb"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/sasha-katraine/front.svg",
  21152. bottom: 0.045
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Micro",
  21159. height: math.unit(5, "inches")
  21160. },
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(5 + 3 / 12, "feet"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21170. {
  21171. side: {
  21172. height: math.unit(4, "inches"),
  21173. weight: math.unit(200, "grams"),
  21174. name: "Side",
  21175. image: {
  21176. source: "./media/characters/der/side.svg",
  21177. extra: 719 / 400,
  21178. bottom: 30.6 / 749.9187
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Micro",
  21185. height: math.unit(4, "inches"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21192. {
  21193. side: {
  21194. height: math.unit(30, "meters"),
  21195. weight: math.unit(700, "tonnes"),
  21196. name: "Side",
  21197. image: {
  21198. source: "./media/characters/fixerdragon/side.svg",
  21199. extra: (1293.0514 - 116.03) / 1106.86,
  21200. bottom: 116.03 / 1293.0514
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Planck",
  21207. height: math.unit(1.6e-35, "meters")
  21208. },
  21209. {
  21210. name: "Micro",
  21211. height: math.unit(0.4, "meters")
  21212. },
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(30, "meters"),
  21216. default: true
  21217. },
  21218. {
  21219. name: "Megamacro",
  21220. height: math.unit(1.2, "megameters")
  21221. },
  21222. {
  21223. name: "Teramacro",
  21224. height: math.unit(130, "terameters")
  21225. },
  21226. {
  21227. name: "Yottamacro",
  21228. height: math.unit(6200, "yottameters")
  21229. },
  21230. ]
  21231. ));
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(8, "feet"),
  21237. weight: math.unit(250, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/kite/front.svg",
  21241. extra: 2796 / 2659,
  21242. bottom: 0.002
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(8, "feet"),
  21250. default: true
  21251. },
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(360, "feet")
  21255. },
  21256. {
  21257. name: "Megamacro",
  21258. height: math.unit(1500, "feet")
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(5 + 10 / 12, "feet"),
  21267. weight: math.unit(150, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/poojawa-vynar/front.svg",
  21271. extra: (1506.1547 - 55) / 1356.6,
  21272. bottom: 55 / 1506.1547
  21273. }
  21274. },
  21275. frontTailless: {
  21276. height: math.unit(5 + 10 / 12, "feet"),
  21277. weight: math.unit(150, "lb"),
  21278. name: "Front (Tailless)",
  21279. image: {
  21280. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21281. extra: (1506.1547 - 55) / 1356.6,
  21282. bottom: 55 / 1506.1547
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(5 + 10 / 12, "feet"),
  21290. default: true
  21291. },
  21292. ]
  21293. ))
  21294. characterMakers.push(() => makeCharacter(
  21295. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21296. {
  21297. front: {
  21298. height: math.unit(293, "meters"),
  21299. weight: math.unit(70400, "tons"),
  21300. name: "Front",
  21301. image: {
  21302. source: "./media/characters/violette/front.svg",
  21303. extra: 1227 / 1180,
  21304. bottom: 0.005
  21305. }
  21306. },
  21307. back: {
  21308. height: math.unit(293, "meters"),
  21309. weight: math.unit(70400, "tons"),
  21310. name: "Back",
  21311. image: {
  21312. source: "./media/characters/violette/back.svg",
  21313. extra: 1227 / 1180,
  21314. bottom: 0.005
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Macro",
  21321. height: math.unit(293, "meters"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(1050, "feet"),
  21331. weight: math.unit(200000, "tons"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/alessandra/front.svg",
  21335. extra: 960 / 912,
  21336. bottom: 0.06
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(1050, "feet")
  21344. },
  21345. {
  21346. name: "Macro+",
  21347. height: math.unit(900, "meters"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(5, "feet"),
  21357. weight: math.unit(187, "lb"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/person/front.svg",
  21361. extra: 3087 / 2945,
  21362. bottom: 91 / 3181
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Micro",
  21369. height: math.unit(3, "inches")
  21370. },
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5, "feet"),
  21374. default: true
  21375. },
  21376. {
  21377. name: "Macro",
  21378. height: math.unit(90, "feet")
  21379. },
  21380. {
  21381. name: "Max Size",
  21382. height: math.unit(280, "feet")
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21388. {
  21389. front: {
  21390. height: math.unit(4.5, "meters"),
  21391. weight: math.unit(3200, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/ty/front.svg",
  21395. extra: 1038 / 960,
  21396. bottom: 31.156 / 1068
  21397. }
  21398. },
  21399. back: {
  21400. height: math.unit(4.5, "meters"),
  21401. weight: math.unit(3200, "lb"),
  21402. name: "Back",
  21403. image: {
  21404. source: "./media/characters/ty/back.svg",
  21405. extra: 1044 / 966,
  21406. bottom: 7.48 / 1049
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Normal",
  21413. height: math.unit(4.5, "meters"),
  21414. default: true
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 4 / 12, "feet"),
  21423. weight: math.unit(115, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/rocky/front.svg",
  21427. extra: 1012 / 975,
  21428. bottom: 54 / 1066
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(5 + 4 / 12, "feet"),
  21436. default: true
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21442. {
  21443. upright: {
  21444. height: math.unit(6, "meters"),
  21445. weight: math.unit(4000, "kg"),
  21446. name: "Upright",
  21447. image: {
  21448. source: "./media/characters/ruin/upright.svg",
  21449. extra: 668 / 661,
  21450. bottom: 42 / 799.8396
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(6, "meters"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21464. {
  21465. front: {
  21466. height: math.unit(5, "feet"),
  21467. weight: math.unit(106, "lb"),
  21468. name: "Front",
  21469. image: {
  21470. source: "./media/characters/robin/front.svg",
  21471. extra: 862 / 799,
  21472. bottom: 42.4 / 914.8856
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(5, "feet"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21486. {
  21487. side: {
  21488. height: math.unit(3, "feet"),
  21489. weight: math.unit(225, "lb"),
  21490. name: "Side",
  21491. image: {
  21492. source: "./media/characters/saian/side.svg",
  21493. extra: 566 / 356,
  21494. bottom: 79.7 / 643
  21495. }
  21496. },
  21497. maw: {
  21498. height: math.unit(2.85, "feet"),
  21499. name: "Maw",
  21500. image: {
  21501. source: "./media/characters/saian/maw.svg"
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(3, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21515. {
  21516. side: {
  21517. height: math.unit(8, "feet"),
  21518. weight: math.unit(300, "lb"),
  21519. name: "Side",
  21520. image: {
  21521. source: "./media/characters/equus-silvermane/side.svg",
  21522. extra: 2176 / 2050,
  21523. bottom: 65.7 / 2245
  21524. }
  21525. },
  21526. front: {
  21527. height: math.unit(8, "feet"),
  21528. weight: math.unit(300, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/equus-silvermane/front.svg",
  21532. extra: 4633 / 4400,
  21533. bottom: 71.3 / 4706.915
  21534. }
  21535. },
  21536. sideStepping: {
  21537. height: math.unit(8, "feet"),
  21538. weight: math.unit(300, "lb"),
  21539. name: "Side (Stepping)",
  21540. image: {
  21541. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21542. extra: 1968 / 1860,
  21543. bottom: 16.4 / 1989
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(8, "feet")
  21551. },
  21552. {
  21553. name: "Minimacro",
  21554. height: math.unit(75, "feet"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(150, "feet")
  21560. },
  21561. {
  21562. name: "Macro+",
  21563. height: math.unit(1000, "feet")
  21564. },
  21565. {
  21566. name: "Megamacro",
  21567. height: math.unit(1, "mile")
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21573. {
  21574. side: {
  21575. height: math.unit(20, "feet"),
  21576. weight: math.unit(30000, "kg"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/windar/side.svg",
  21580. extra: 1491 / 1248,
  21581. bottom: 82.56 / 1568
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(20, "feet"),
  21589. default: true
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21595. {
  21596. side: {
  21597. height: math.unit(15.66, "feet"),
  21598. weight: math.unit(150, "lb"),
  21599. name: "Side",
  21600. image: {
  21601. source: "./media/characters/melody/side.svg",
  21602. extra: 1097 / 944,
  21603. bottom: 11.8 / 1109
  21604. }
  21605. },
  21606. sideOutfit: {
  21607. height: math.unit(15.66, "feet"),
  21608. weight: math.unit(150, "lb"),
  21609. name: "Side (Outfit)",
  21610. image: {
  21611. source: "./media/characters/melody/side-outfit.svg",
  21612. extra: 1097 / 944,
  21613. bottom: 11.8 / 1109
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(15.66, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(8, "feet"),
  21630. weight: math.unit(325, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/windera/front.svg",
  21634. extra: 3180 / 2845,
  21635. bottom: 178 / 3365
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(8, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21649. {
  21650. front: {
  21651. height: math.unit(28.75, "feet"),
  21652. weight: math.unit(2000, "kg"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/sonear/front.svg",
  21656. extra: 1041.1 / 964.9,
  21657. bottom: 53.7 / 1096.6
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(28.75, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21671. {
  21672. side: {
  21673. height: math.unit(25.5, "feet"),
  21674. weight: math.unit(23000, "kg"),
  21675. name: "Side",
  21676. image: {
  21677. source: "./media/characters/kanara/side.svg"
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(25.5, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21691. {
  21692. side: {
  21693. height: math.unit(10, "feet"),
  21694. weight: math.unit(1000, "kg"),
  21695. name: "Side",
  21696. image: {
  21697. source: "./media/characters/ereus/side.svg",
  21698. extra: 1157 / 959,
  21699. bottom: 153 / 1312.5
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(10, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21713. {
  21714. side: {
  21715. height: math.unit(4.5, "feet"),
  21716. weight: math.unit(500, "lb"),
  21717. name: "Side",
  21718. image: {
  21719. source: "./media/characters/e-ter/side.svg",
  21720. extra: 1550 / 1248,
  21721. bottom: 146 / 1694
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(4.5, "feet"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21735. {
  21736. side: {
  21737. height: math.unit(9.7, "feet"),
  21738. weight: math.unit(4000, "kg"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/yamie/side.svg"
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(9.7, "feet"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(50, "feet"),
  21758. weight: math.unit(50000, "kg"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/anders/front.svg",
  21762. extra: 570 / 539,
  21763. bottom: 14.7 / 586.7
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Large",
  21770. height: math.unit(50, "feet")
  21771. },
  21772. {
  21773. name: "Macro",
  21774. height: math.unit(2000, "feet"),
  21775. default: true
  21776. },
  21777. {
  21778. name: "Megamacro",
  21779. height: math.unit(12, "miles")
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(7 + 2 / 12, "feet"),
  21788. weight: math.unit(300, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/reban/front.svg",
  21792. extra: 516 / 487,
  21793. bottom: 42.82 / 558.356
  21794. }
  21795. },
  21796. dick: {
  21797. height: math.unit(7 / 5, "feet"),
  21798. name: "Dick",
  21799. image: {
  21800. source: "./media/characters/reban/dick.svg"
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Natural Height",
  21807. height: math.unit(7 + 2 / 12, "feet")
  21808. },
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(500, "feet"),
  21812. default: true
  21813. },
  21814. {
  21815. name: "Canon Height",
  21816. height: math.unit(50, "AU")
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(6, "feet"),
  21825. weight: math.unit(150, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/terrance-keayes/front.svg",
  21829. extra: 1.005,
  21830. bottom: 151 / 1615
  21831. }
  21832. },
  21833. side: {
  21834. height: math.unit(6, "feet"),
  21835. weight: math.unit(150, "lb"),
  21836. name: "Side",
  21837. image: {
  21838. source: "./media/characters/terrance-keayes/side.svg",
  21839. extra: 1.005,
  21840. bottom: 129.4 / 1544
  21841. }
  21842. },
  21843. back: {
  21844. height: math.unit(6, "feet"),
  21845. weight: math.unit(150, "lb"),
  21846. name: "Back",
  21847. image: {
  21848. source: "./media/characters/terrance-keayes/back.svg",
  21849. extra: 1.005,
  21850. bottom: 58.4 / 1557.3
  21851. }
  21852. },
  21853. dick: {
  21854. height: math.unit(6 * 0.208, "feet"),
  21855. name: "Dick",
  21856. image: {
  21857. source: "./media/characters/terrance-keayes/dick.svg"
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Canon Height",
  21864. height: math.unit(35, "miles"),
  21865. default: true
  21866. },
  21867. ]
  21868. ))
  21869. characterMakers.push(() => makeCharacter(
  21870. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21871. {
  21872. front: {
  21873. height: math.unit(6, "feet"),
  21874. weight: math.unit(150, "lb"),
  21875. name: "Front",
  21876. image: {
  21877. source: "./media/characters/ofelia/front.svg",
  21878. extra: 546 / 541,
  21879. bottom: 39 / 583
  21880. }
  21881. },
  21882. back: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Back",
  21886. image: {
  21887. source: "./media/characters/ofelia/back.svg",
  21888. extra: 564 / 559.5,
  21889. bottom: 8.69 / 573.02
  21890. }
  21891. },
  21892. maw: {
  21893. height: math.unit(1, "feet"),
  21894. name: "Maw",
  21895. image: {
  21896. source: "./media/characters/ofelia/maw.svg"
  21897. }
  21898. },
  21899. foot: {
  21900. height: math.unit(1.949, "feet"),
  21901. name: "Foot",
  21902. image: {
  21903. source: "./media/characters/ofelia/foot.svg"
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Canon Height",
  21910. height: math.unit(2000, "miles"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(6, "feet"),
  21920. weight: math.unit(150, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/samuel/front.svg",
  21924. extra: 265 / 258,
  21925. bottom: 2 / 266.1566
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Macro",
  21932. height: math.unit(100, "feet"),
  21933. default: true
  21934. },
  21935. {
  21936. name: "Full Size",
  21937. height: math.unit(1000, "miles")
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(6, "feet"),
  21946. weight: math.unit(300, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/beishir-kiel/front.svg",
  21950. extra: 569 / 547,
  21951. bottom: 41.9 / 609
  21952. }
  21953. },
  21954. maw: {
  21955. height: math.unit(6 * 0.202, "feet"),
  21956. name: "Maw",
  21957. image: {
  21958. source: "./media/characters/beishir-kiel/maw.svg"
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Macro",
  21965. height: math.unit(300, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5 + 7/12, "feet"),
  21975. weight: math.unit(120, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/logan-grey/front.svg",
  21979. extra: 1836/1738,
  21980. bottom: 108/1944
  21981. }
  21982. },
  21983. back: {
  21984. height: math.unit(5 + 7/12, "feet"),
  21985. weight: math.unit(120, "lb"),
  21986. name: "Back",
  21987. image: {
  21988. source: "./media/characters/logan-grey/back.svg",
  21989. extra: 1880/1794,
  21990. bottom: 24/1904
  21991. }
  21992. },
  21993. frontSfw: {
  21994. height: math.unit(5 + 7/12, "feet"),
  21995. weight: math.unit(120, "lb"),
  21996. name: "Front (SFW)",
  21997. image: {
  21998. source: "./media/characters/logan-grey/front-sfw.svg",
  21999. extra: 1836/1738,
  22000. bottom: 108/1944
  22001. }
  22002. },
  22003. backSfw: {
  22004. height: math.unit(5 + 7/12, "feet"),
  22005. weight: math.unit(120, "lb"),
  22006. name: "Back (SFW)",
  22007. image: {
  22008. source: "./media/characters/logan-grey/back-sfw.svg",
  22009. extra: 1880/1794,
  22010. bottom: 24/1904
  22011. }
  22012. },
  22013. hands: {
  22014. height: math.unit(0.84, "feet"),
  22015. name: "Hands",
  22016. image: {
  22017. source: "./media/characters/logan-grey/hands.svg"
  22018. }
  22019. },
  22020. paws: {
  22021. height: math.unit(0.72, "feet"),
  22022. name: "Paws",
  22023. image: {
  22024. source: "./media/characters/logan-grey/paws.svg"
  22025. }
  22026. },
  22027. cock: {
  22028. height: math.unit(1.45, "feet"),
  22029. name: "Cock",
  22030. image: {
  22031. source: "./media/characters/logan-grey/cock.svg"
  22032. }
  22033. },
  22034. cockAlt: {
  22035. height: math.unit(1.437, "feet"),
  22036. name: "Cock (alt)",
  22037. image: {
  22038. source: "./media/characters/logan-grey/cock-alt.svg"
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(5 + 8 / 12, "feet")
  22046. },
  22047. {
  22048. name: "The 500 Foot Femboy",
  22049. height: math.unit(500, "feet"),
  22050. default: true
  22051. },
  22052. {
  22053. name: "Megmacro",
  22054. height: math.unit(20, "miles")
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(8 + 2 / 12, "feet"),
  22063. weight: math.unit(275, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/draganta/front.svg",
  22067. extra: 1177 / 1135,
  22068. bottom: 33.46 / 1212.1
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(8 + 6 / 12, "feet"),
  22076. default: true
  22077. },
  22078. {
  22079. name: "Macro",
  22080. height: math.unit(150, "feet")
  22081. },
  22082. {
  22083. name: "Megamacro",
  22084. height: math.unit(1000, "miles")
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(1.72, "m"),
  22093. weight: math.unit(80, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/voski/front.svg",
  22097. extra: 2076.22 / 2022.4,
  22098. bottom: 102.7 / 2177.3866
  22099. }
  22100. },
  22101. frontNsfw: {
  22102. height: math.unit(1.72, "m"),
  22103. weight: math.unit(80, "lb"),
  22104. name: "Front (NSFW)",
  22105. image: {
  22106. source: "./media/characters/voski/front-nsfw.svg",
  22107. extra: 2076.22 / 2022.4,
  22108. bottom: 102.7 / 2177.3866
  22109. }
  22110. },
  22111. back: {
  22112. height: math.unit(1.72, "m"),
  22113. weight: math.unit(80, "lb"),
  22114. name: "Back",
  22115. image: {
  22116. source: "./media/characters/voski/back.svg",
  22117. extra: 2104 / 2051,
  22118. bottom: 10.45 / 2113.63
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Normal",
  22125. height: math.unit(1.72, "m")
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(55, "m"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Macro+",
  22134. height: math.unit(300, "m")
  22135. },
  22136. {
  22137. name: "Macro++",
  22138. height: math.unit(700, "m")
  22139. },
  22140. {
  22141. name: "Macro+++",
  22142. height: math.unit(4500, "m")
  22143. },
  22144. {
  22145. name: "Macro++++",
  22146. height: math.unit(45, "km")
  22147. },
  22148. {
  22149. name: "Macro+++++",
  22150. height: math.unit(1220, "km")
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(2.3, "m"),
  22159. weight: math.unit(304, "kg"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/icowom-lee/front.svg",
  22163. extra: 985 / 955,
  22164. bottom: 25.4 / 1012
  22165. }
  22166. },
  22167. fronttentacles: {
  22168. height: math.unit(2.3, "m"),
  22169. weight: math.unit(304, "kg"),
  22170. name: "Front-tentacles",
  22171. image: {
  22172. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22173. extra: 985 / 955,
  22174. bottom: 25.4 / 1012
  22175. }
  22176. },
  22177. back: {
  22178. height: math.unit(2.3, "m"),
  22179. weight: math.unit(304, "kg"),
  22180. name: "Back",
  22181. image: {
  22182. source: "./media/characters/icowom-lee/back.svg",
  22183. extra: 975 / 954,
  22184. bottom: 9.5 / 985
  22185. }
  22186. },
  22187. backtentacles: {
  22188. height: math.unit(2.3, "m"),
  22189. weight: math.unit(304, "kg"),
  22190. name: "Back-tentacles",
  22191. image: {
  22192. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22193. extra: 975 / 954,
  22194. bottom: 9.5 / 985
  22195. }
  22196. },
  22197. frontDressed: {
  22198. height: math.unit(2.3, "m"),
  22199. weight: math.unit(304, "kg"),
  22200. name: "Front (Dressed)",
  22201. image: {
  22202. source: "./media/characters/icowom-lee/front-dressed.svg",
  22203. extra: 3076 / 2933,
  22204. bottom: 51.4 / 3125.1889
  22205. }
  22206. },
  22207. rump: {
  22208. height: math.unit(0.776, "meters"),
  22209. name: "Rump",
  22210. image: {
  22211. source: "./media/characters/icowom-lee/rump.svg"
  22212. }
  22213. },
  22214. genitals: {
  22215. height: math.unit(0.78, "meters"),
  22216. name: "Genitals",
  22217. image: {
  22218. source: "./media/characters/icowom-lee/genitals.svg"
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(2.3, "meters"),
  22226. default: true
  22227. },
  22228. {
  22229. name: "Macro",
  22230. height: math.unit(94, "meters"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22237. {
  22238. front: {
  22239. height: math.unit(22, "meters"),
  22240. weight: math.unit(21000, "kg"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/shock-diamond/front.svg",
  22244. extra: 2204 / 2053,
  22245. bottom: 65 / 2239.47
  22246. }
  22247. },
  22248. frontNude: {
  22249. height: math.unit(22, "meters"),
  22250. weight: math.unit(21000, "kg"),
  22251. name: "Front (Nude)",
  22252. image: {
  22253. source: "./media/characters/shock-diamond/front-nude.svg",
  22254. extra: 2514 / 2285,
  22255. bottom: 13 / 2527.56
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(3, "meters")
  22263. },
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(22, "meters"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(5 + 4 / 12, "feet"),
  22276. weight: math.unit(120, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/rory/front.svg",
  22280. extra: 1318/1241,
  22281. bottom: 42/1360
  22282. }
  22283. },
  22284. back: {
  22285. height: math.unit(5 + 4 / 12, "feet"),
  22286. weight: math.unit(120, "lb"),
  22287. name: "Back",
  22288. image: {
  22289. source: "./media/characters/rory/back.svg",
  22290. extra: 1318/1241,
  22291. bottom: 42/1360
  22292. }
  22293. },
  22294. butt: {
  22295. height: math.unit(1.74, "feet"),
  22296. name: "Butt",
  22297. image: {
  22298. source: "./media/characters/rory/butt.svg"
  22299. }
  22300. },
  22301. dick: {
  22302. height: math.unit(1.02, "feet"),
  22303. name: "Dick",
  22304. image: {
  22305. source: "./media/characters/rory/dick.svg"
  22306. }
  22307. },
  22308. paws: {
  22309. height: math.unit(1, "feet"),
  22310. name: "Paws",
  22311. image: {
  22312. source: "./media/characters/rory/paws.svg"
  22313. }
  22314. },
  22315. frontAlt: {
  22316. height: math.unit(5 + 4 / 12, "feet"),
  22317. weight: math.unit(120, "lb"),
  22318. name: "Front (Alt)",
  22319. image: {
  22320. source: "./media/characters/rory/front-alt.svg",
  22321. extra: 589 / 556,
  22322. bottom: 45.7 / 635.76
  22323. }
  22324. },
  22325. frontAltNude: {
  22326. height: math.unit(5 + 4 / 12, "feet"),
  22327. weight: math.unit(120, "lb"),
  22328. name: "Front (Alt, Nude)",
  22329. image: {
  22330. source: "./media/characters/rory/front-alt-nude.svg",
  22331. extra: 589 / 556,
  22332. bottom: 45.7 / 635.76
  22333. }
  22334. },
  22335. side: {
  22336. height: math.unit(5 + 4 / 12, "feet"),
  22337. weight: math.unit(120, "lb"),
  22338. name: "Side",
  22339. image: {
  22340. source: "./media/characters/rory/side.svg",
  22341. extra: 597 / 564,
  22342. bottom: 55 / 653
  22343. }
  22344. },
  22345. backAlt: {
  22346. height: math.unit(5 + 4 / 12, "feet"),
  22347. weight: math.unit(120, "lb"),
  22348. name: "Back (Alt)",
  22349. image: {
  22350. source: "./media/characters/rory/back-alt.svg",
  22351. extra: 620 / 585,
  22352. bottom: 8.86 / 630.43
  22353. }
  22354. },
  22355. dickAlt: {
  22356. height: math.unit(0.86, "feet"),
  22357. name: "Dick (Alt)",
  22358. image: {
  22359. source: "./media/characters/rory/dick-alt.svg"
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(5 + 4 / 12, "feet"),
  22367. default: true
  22368. },
  22369. {
  22370. name: "Macro",
  22371. height: math.unit(100, "feet")
  22372. },
  22373. {
  22374. name: "Macro+",
  22375. height: math.unit(140, "feet")
  22376. },
  22377. {
  22378. name: "Macro++",
  22379. height: math.unit(300, "feet")
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(5 + 9 / 12, "feet"),
  22388. weight: math.unit(190, "lb"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/sprisk/front.svg",
  22392. extra: 1225 / 1180,
  22393. bottom: 42.7 / 1266.4
  22394. }
  22395. },
  22396. frontNsfw: {
  22397. height: math.unit(5 + 9 / 12, "feet"),
  22398. weight: math.unit(190, "lb"),
  22399. name: "Front (NSFW)",
  22400. image: {
  22401. source: "./media/characters/sprisk/front-nsfw.svg",
  22402. extra: 1225 / 1180,
  22403. bottom: 42.7 / 1266.4
  22404. }
  22405. },
  22406. back: {
  22407. height: math.unit(5 + 9 / 12, "feet"),
  22408. weight: math.unit(190, "lb"),
  22409. name: "Back",
  22410. image: {
  22411. source: "./media/characters/sprisk/back.svg",
  22412. extra: 1247 / 1200,
  22413. bottom: 5.6 / 1253.04
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Tiny",
  22420. height: math.unit(2, "inches")
  22421. },
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(5 + 9 / 12, "feet"),
  22425. default: true
  22426. },
  22427. {
  22428. name: "Mini Macro",
  22429. height: math.unit(18, "feet")
  22430. },
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(100, "feet")
  22434. },
  22435. {
  22436. name: "MACRO",
  22437. height: math.unit(50, "miles")
  22438. },
  22439. {
  22440. name: "M A C R O",
  22441. height: math.unit(300, "miles")
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22447. {
  22448. side: {
  22449. height: math.unit(15.6, "meters"),
  22450. weight: math.unit(700000, "kg"),
  22451. name: "Side",
  22452. image: {
  22453. source: "./media/characters/bunsen/side.svg",
  22454. extra: 1644 / 358
  22455. }
  22456. },
  22457. foot: {
  22458. height: math.unit(1.611 * 1644 / 358, "meter"),
  22459. name: "Foot",
  22460. image: {
  22461. source: "./media/characters/bunsen/foot.svg"
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Small",
  22468. height: math.unit(10, "feet")
  22469. },
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(15.6, "meters"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(4 + 11 / 12, "feet"),
  22482. weight: math.unit(140, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/sesh/front.svg",
  22486. extra: 3420 / 3231,
  22487. bottom: 72 / 3949.5
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(4 + 11 / 12, "feet")
  22495. },
  22496. {
  22497. name: "Grown",
  22498. height: math.unit(15, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(1500, "feet")
  22504. },
  22505. {
  22506. name: "Megamacro",
  22507. height: math.unit(30, "miles")
  22508. },
  22509. {
  22510. name: "Continental",
  22511. height: math.unit(3000, "miles")
  22512. },
  22513. {
  22514. name: "Gravity Mass",
  22515. height: math.unit(300000, "miles")
  22516. },
  22517. {
  22518. name: "Planet Buster",
  22519. height: math.unit(30000000, "miles")
  22520. },
  22521. {
  22522. name: "Big",
  22523. height: math.unit(3000000000, "miles")
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(9, "feet"),
  22532. weight: math.unit(350, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/pepper/front.svg",
  22536. extra: 1448 / 1312,
  22537. bottom: 9.4 / 1457.88
  22538. }
  22539. },
  22540. back: {
  22541. height: math.unit(9, "feet"),
  22542. weight: math.unit(350, "lb"),
  22543. name: "Back",
  22544. image: {
  22545. source: "./media/characters/pepper/back.svg",
  22546. extra: 1423 / 1300,
  22547. bottom: 4.6 / 1429
  22548. }
  22549. },
  22550. maw: {
  22551. height: math.unit(0.932, "feet"),
  22552. name: "Maw",
  22553. image: {
  22554. source: "./media/characters/pepper/maw.svg"
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Normal",
  22561. height: math.unit(9, "feet"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(6, "feet"),
  22571. weight: math.unit(150, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/maelstrom/front.svg",
  22575. extra: 2100 / 1883,
  22576. bottom: 94 / 2196.7
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Less Kaiju",
  22583. height: math.unit(200, "feet")
  22584. },
  22585. {
  22586. name: "Kaiju",
  22587. height: math.unit(400, "feet"),
  22588. default: true
  22589. },
  22590. {
  22591. name: "Kaiju-er",
  22592. height: math.unit(600, "feet")
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(6 + 5 / 12, "feet"),
  22601. weight: math.unit(180, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/lexir/front.svg",
  22605. extra: 180 / 172,
  22606. bottom: 12 / 192
  22607. }
  22608. },
  22609. back: {
  22610. height: math.unit(6 + 5 / 12, "feet"),
  22611. weight: math.unit(180, "lb"),
  22612. name: "Back",
  22613. image: {
  22614. source: "./media/characters/lexir/back.svg",
  22615. extra: 183.84 / 175.5,
  22616. bottom: 3.1 / 187
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Very Smal",
  22623. height: math.unit(1, "nm")
  22624. },
  22625. {
  22626. name: "Normal",
  22627. height: math.unit(6 + 5 / 12, "feet"),
  22628. default: true
  22629. },
  22630. {
  22631. name: "Macro",
  22632. height: math.unit(1, "mile")
  22633. },
  22634. {
  22635. name: "Megamacro",
  22636. height: math.unit(50, "miles")
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22642. {
  22643. front: {
  22644. height: math.unit(1.5, "meters"),
  22645. weight: math.unit(100, "lb"),
  22646. name: "Front",
  22647. image: {
  22648. source: "./media/characters/maksio/front.svg",
  22649. extra: 1549 / 1531,
  22650. bottom: 123.7 / 1674.5429
  22651. }
  22652. },
  22653. back: {
  22654. height: math.unit(1.5, "meters"),
  22655. weight: math.unit(100, "lb"),
  22656. name: "Back",
  22657. image: {
  22658. source: "./media/characters/maksio/back.svg",
  22659. extra: 1541 / 1509,
  22660. bottom: 97 / 1639
  22661. }
  22662. },
  22663. hand: {
  22664. height: math.unit(0.621, "feet"),
  22665. name: "Hand",
  22666. image: {
  22667. source: "./media/characters/maksio/hand.svg"
  22668. }
  22669. },
  22670. foot: {
  22671. height: math.unit(1.611, "feet"),
  22672. name: "Foot",
  22673. image: {
  22674. source: "./media/characters/maksio/foot.svg"
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Shrunken",
  22681. height: math.unit(10, "cm")
  22682. },
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(150, "cm"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(100, "feet"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/erza-bear/front.svg",
  22698. extra: 2449 / 2390,
  22699. bottom: 46 / 2494
  22700. }
  22701. },
  22702. back: {
  22703. height: math.unit(100, "feet"),
  22704. name: "Back",
  22705. image: {
  22706. source: "./media/characters/erza-bear/back.svg",
  22707. extra: 2489 / 2430,
  22708. bottom: 85.4 / 2480
  22709. }
  22710. },
  22711. tail: {
  22712. height: math.unit(42, "feet"),
  22713. name: "Tail",
  22714. image: {
  22715. source: "./media/characters/erza-bear/tail.svg"
  22716. }
  22717. },
  22718. tongue: {
  22719. height: math.unit(8, "feet"),
  22720. name: "Tongue",
  22721. image: {
  22722. source: "./media/characters/erza-bear/tongue.svg"
  22723. }
  22724. },
  22725. dick: {
  22726. height: math.unit(10.5, "feet"),
  22727. name: "Dick",
  22728. image: {
  22729. source: "./media/characters/erza-bear/dick.svg"
  22730. }
  22731. },
  22732. dickVertical: {
  22733. height: math.unit(16.9, "feet"),
  22734. name: "Dick (Vertical)",
  22735. image: {
  22736. source: "./media/characters/erza-bear/dick-vertical.svg"
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Macro",
  22743. height: math.unit(100, "feet"),
  22744. default: true
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22750. {
  22751. front: {
  22752. height: math.unit(172, "cm"),
  22753. weight: math.unit(73, "kg"),
  22754. name: "Front",
  22755. image: {
  22756. source: "./media/characters/violet-flor/front.svg",
  22757. extra: 1530 / 1442,
  22758. bottom: 61.9 / 1588.8
  22759. }
  22760. },
  22761. back: {
  22762. height: math.unit(180, "cm"),
  22763. weight: math.unit(73, "kg"),
  22764. name: "Back",
  22765. image: {
  22766. source: "./media/characters/violet-flor/back.svg",
  22767. extra: 1692 / 1630,
  22768. bottom: 20 / 1712
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(172, "cm"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22782. {
  22783. front: {
  22784. height: math.unit(6, "feet"),
  22785. weight: math.unit(220, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/lynn-rhea/front.svg",
  22789. extra: 310 / 273
  22790. }
  22791. },
  22792. back: {
  22793. height: math.unit(6, "feet"),
  22794. weight: math.unit(220, "lb"),
  22795. name: "Back",
  22796. image: {
  22797. source: "./media/characters/lynn-rhea/back.svg",
  22798. extra: 310 / 273
  22799. }
  22800. },
  22801. dicks: {
  22802. height: math.unit(0.9, "feet"),
  22803. name: "Dicks",
  22804. image: {
  22805. source: "./media/characters/lynn-rhea/dicks.svg"
  22806. }
  22807. },
  22808. slit: {
  22809. height: math.unit(0.4, "feet"),
  22810. name: "Slit",
  22811. image: {
  22812. source: "./media/characters/lynn-rhea/slit.svg"
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Micro",
  22819. height: math.unit(1, "inch")
  22820. },
  22821. {
  22822. name: "Macro",
  22823. height: math.unit(60, "feet"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Megamacro",
  22828. height: math.unit(2, "miles")
  22829. },
  22830. {
  22831. name: "Gigamacro",
  22832. height: math.unit(3, "earths")
  22833. },
  22834. {
  22835. name: "Galactic",
  22836. height: math.unit(0.8, "galaxies")
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22842. {
  22843. front: {
  22844. height: math.unit(1600, "feet"),
  22845. weight: math.unit(85758785169, "kg"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/valathos/front.svg",
  22849. extra: 1451 / 1339
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Macro",
  22856. height: math.unit(1600, "feet"),
  22857. default: true
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22863. {
  22864. front: {
  22865. height: math.unit(7 + 5 / 12, "feet"),
  22866. weight: math.unit(300, "lb"),
  22867. name: "Front",
  22868. image: {
  22869. source: "./media/characters/azula/front.svg",
  22870. extra: 3208 / 2880,
  22871. bottom: 80.2 / 3277
  22872. }
  22873. },
  22874. back: {
  22875. height: math.unit(7 + 5 / 12, "feet"),
  22876. weight: math.unit(300, "lb"),
  22877. name: "Back",
  22878. image: {
  22879. source: "./media/characters/azula/back.svg",
  22880. extra: 3169 / 2822,
  22881. bottom: 150.6 / 3321
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(7 + 5 / 12, "feet"),
  22889. default: true
  22890. },
  22891. {
  22892. name: "Big",
  22893. height: math.unit(20, "feet")
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(5 + 1 / 12, "feet"),
  22902. weight: math.unit(110, "lb"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/rupert/front.svg",
  22906. extra: 1549 / 1495,
  22907. bottom: 54.2 / 1604.4
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(5 + 1 / 12, "feet"),
  22915. default: true
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22921. {
  22922. front: {
  22923. height: math.unit(8 + 4 / 12, "feet"),
  22924. weight: math.unit(350, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/sheera-castellar/front.svg",
  22928. extra: 1957 / 1894,
  22929. bottom: 26.97 / 1975.017
  22930. }
  22931. },
  22932. side: {
  22933. height: math.unit(8 + 4 / 12, "feet"),
  22934. weight: math.unit(350, "lb"),
  22935. name: "Side",
  22936. image: {
  22937. source: "./media/characters/sheera-castellar/side.svg",
  22938. extra: 1957 / 1894
  22939. }
  22940. },
  22941. back: {
  22942. height: math.unit(8 + 4 / 12, "feet"),
  22943. weight: math.unit(350, "lb"),
  22944. name: "Back",
  22945. image: {
  22946. source: "./media/characters/sheera-castellar/back.svg",
  22947. extra: 1957 / 1894
  22948. }
  22949. },
  22950. angled: {
  22951. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22952. weight: math.unit(350, "lb"),
  22953. name: "Angled",
  22954. image: {
  22955. source: "./media/characters/sheera-castellar/angled.svg",
  22956. extra: 1807 / 1707,
  22957. bottom: 68 / 1875
  22958. }
  22959. },
  22960. genitals: {
  22961. height: math.unit(2.2, "feet"),
  22962. name: "Genitals",
  22963. image: {
  22964. source: "./media/characters/sheera-castellar/genitals.svg"
  22965. }
  22966. },
  22967. taur: {
  22968. height: math.unit(10 + 6/12, "feet"),
  22969. name: "Taur",
  22970. image: {
  22971. source: "./media/characters/sheera-castellar/taur.svg",
  22972. extra: 2017/1909,
  22973. bottom: 185/2202
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(8 + 4 / 12, "feet")
  22981. },
  22982. {
  22983. name: "Macro",
  22984. height: math.unit(150, "feet"),
  22985. default: true
  22986. },
  22987. {
  22988. name: "Macro+",
  22989. height: math.unit(800, "feet")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(6, "feet"),
  22998. weight: math.unit(150, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/jaipur/front.svg",
  23002. extra: 3860 / 3731,
  23003. bottom: 287 / 4140
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(6, "feet"),
  23008. weight: math.unit(150, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/jaipur/back.svg",
  23012. extra: 4060 / 3930,
  23013. bottom: 151 / 4200
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(1.85, "meters"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Macro",
  23025. height: math.unit(150, "meters")
  23026. },
  23027. {
  23028. name: "Macro+",
  23029. height: math.unit(0.5, "miles")
  23030. },
  23031. {
  23032. name: "Macro++",
  23033. height: math.unit(2.5, "miles")
  23034. },
  23035. {
  23036. name: "Macro+++",
  23037. height: math.unit(12, "miles")
  23038. },
  23039. {
  23040. name: "Macro++++",
  23041. height: math.unit(120, "miles")
  23042. },
  23043. {
  23044. name: "Macro+++++",
  23045. height: math.unit(1200, "miles")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(6, "feet"),
  23054. weight: math.unit(150, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/sheila-wolf/front.svg",
  23058. extra: 1931 / 1808,
  23059. bottom: 29.5 / 1960
  23060. }
  23061. },
  23062. dick: {
  23063. height: math.unit(1.464, "feet"),
  23064. name: "Dick",
  23065. image: {
  23066. source: "./media/characters/sheila-wolf/dick.svg"
  23067. }
  23068. },
  23069. muzzle: {
  23070. height: math.unit(0.513, "feet"),
  23071. name: "Muzzle",
  23072. image: {
  23073. source: "./media/characters/sheila-wolf/muzzle.svg"
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(70, "feet"),
  23081. default: true
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23087. {
  23088. front: {
  23089. height: math.unit(32, "meters"),
  23090. weight: math.unit(300000, "kg"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/almor/front.svg",
  23094. extra: 1408 / 1322,
  23095. bottom: 94.6 / 1506.5
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Macro",
  23102. height: math.unit(32, "meters"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(7, "feet"),
  23112. weight: math.unit(200, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/silver/front.svg",
  23116. extra: 472.1 / 450.5,
  23117. bottom: 26.5 / 499.424
  23118. }
  23119. },
  23120. },
  23121. [
  23122. {
  23123. name: "Normal",
  23124. height: math.unit(7, "feet"),
  23125. default: true
  23126. },
  23127. {
  23128. name: "Macro",
  23129. height: math.unit(800, "feet")
  23130. },
  23131. {
  23132. name: "Megamacro",
  23133. height: math.unit(250, "miles")
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(6, "feet"),
  23142. weight: math.unit(150, "lb"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/pliskin/front.svg",
  23146. extra: 1469 / 1359,
  23147. bottom: 70 / 1540
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Micro",
  23154. height: math.unit(3, "inches")
  23155. },
  23156. {
  23157. name: "Normal",
  23158. height: math.unit(5 + 11 / 12, "feet"),
  23159. default: true
  23160. },
  23161. {
  23162. name: "Macro",
  23163. height: math.unit(120, "feet")
  23164. },
  23165. ]
  23166. ))
  23167. characterMakers.push(() => makeCharacter(
  23168. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23169. {
  23170. front: {
  23171. height: math.unit(6, "feet"),
  23172. weight: math.unit(150, "lb"),
  23173. name: "Front",
  23174. image: {
  23175. source: "./media/characters/sammy/front.svg",
  23176. extra: 1193 / 1089,
  23177. bottom: 30.5 / 1226
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Macro",
  23184. height: math.unit(1700, "feet"),
  23185. default: true
  23186. },
  23187. {
  23188. name: "Examacro",
  23189. height: math.unit(2.5e9, "lightyears")
  23190. },
  23191. ]
  23192. ))
  23193. characterMakers.push(() => makeCharacter(
  23194. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23195. {
  23196. front: {
  23197. height: math.unit(21, "meters"),
  23198. weight: math.unit(12, "tonnes"),
  23199. name: "Front",
  23200. image: {
  23201. source: "./media/characters/kuru/front.svg",
  23202. extra: 4301 / 3785,
  23203. bottom: 371.3 / 4691
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Macro",
  23210. height: math.unit(21, "meters"),
  23211. default: true
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(23, "meters"),
  23220. weight: math.unit(12.2, "tonnes"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/rakka/front.svg",
  23224. extra: 4670 / 4169,
  23225. bottom: 301 / 4968.7
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Macro",
  23232. height: math.unit(23, "meters"),
  23233. default: true
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(6, "feet"),
  23242. weight: math.unit(150, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/rhys-feline/front.svg",
  23246. extra: 2488 / 2308,
  23247. bottom: 35.67 / 2519.19
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Really Small",
  23254. height: math.unit(1, "nm")
  23255. },
  23256. {
  23257. name: "Micro",
  23258. height: math.unit(4, "inches")
  23259. },
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(4 + 10 / 12, "feet"),
  23263. default: true
  23264. },
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(100, "feet")
  23268. },
  23269. {
  23270. name: "Megamacto",
  23271. height: math.unit(50, "miles")
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23277. {
  23278. side: {
  23279. height: math.unit(30, "feet"),
  23280. weight: math.unit(35000, "kg"),
  23281. name: "Side",
  23282. image: {
  23283. source: "./media/characters/alydar/side.svg",
  23284. extra: 234 / 222,
  23285. bottom: 6.5 / 241
  23286. }
  23287. },
  23288. front: {
  23289. height: math.unit(30, "feet"),
  23290. weight: math.unit(35000, "kg"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/alydar/front.svg",
  23294. extra: 223.37 / 210.2,
  23295. bottom: 22.3 / 246.76
  23296. }
  23297. },
  23298. top: {
  23299. height: math.unit(64.54, "feet"),
  23300. weight: math.unit(35000, "kg"),
  23301. name: "Top",
  23302. image: {
  23303. source: "./media/characters/alydar/top.svg"
  23304. }
  23305. },
  23306. anthro: {
  23307. height: math.unit(30, "feet"),
  23308. weight: math.unit(9000, "kg"),
  23309. name: "Anthro",
  23310. image: {
  23311. source: "./media/characters/alydar/anthro.svg",
  23312. extra: 432 / 421,
  23313. bottom: 7.18 / 440
  23314. }
  23315. },
  23316. maw: {
  23317. height: math.unit(11.693, "feet"),
  23318. name: "Maw",
  23319. image: {
  23320. source: "./media/characters/alydar/maw.svg"
  23321. }
  23322. },
  23323. head: {
  23324. height: math.unit(11.693, "feet"),
  23325. name: "Head",
  23326. image: {
  23327. source: "./media/characters/alydar/head.svg"
  23328. }
  23329. },
  23330. headAlt: {
  23331. height: math.unit(12.861, "feet"),
  23332. name: "Head (Alt)",
  23333. image: {
  23334. source: "./media/characters/alydar/head-alt.svg"
  23335. }
  23336. },
  23337. wing: {
  23338. height: math.unit(20.712, "feet"),
  23339. name: "Wing",
  23340. image: {
  23341. source: "./media/characters/alydar/wing.svg"
  23342. }
  23343. },
  23344. wingFeather: {
  23345. height: math.unit(9.662, "feet"),
  23346. name: "Wing Feather",
  23347. image: {
  23348. source: "./media/characters/alydar/wing-feather.svg"
  23349. }
  23350. },
  23351. countourFeather: {
  23352. height: math.unit(4.154, "feet"),
  23353. name: "Contour Feather",
  23354. image: {
  23355. source: "./media/characters/alydar/contour-feather.svg"
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Diplomatic",
  23362. height: math.unit(13, "feet"),
  23363. default: true
  23364. },
  23365. {
  23366. name: "Small",
  23367. height: math.unit(30, "feet")
  23368. },
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(95, "feet"),
  23372. default: true
  23373. },
  23374. {
  23375. name: "Large",
  23376. height: math.unit(285, "feet")
  23377. },
  23378. {
  23379. name: "Incomprehensible",
  23380. height: math.unit(450, "megameters")
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23386. {
  23387. side: {
  23388. height: math.unit(11, "feet"),
  23389. weight: math.unit(1750, "kg"),
  23390. name: "Side",
  23391. image: {
  23392. source: "./media/characters/selicia/side.svg",
  23393. extra: 440 / 396,
  23394. bottom: 24.8 / 465.979
  23395. }
  23396. },
  23397. maw: {
  23398. height: math.unit(4.665, "feet"),
  23399. name: "Maw",
  23400. image: {
  23401. source: "./media/characters/selicia/maw.svg"
  23402. }
  23403. },
  23404. },
  23405. [
  23406. {
  23407. name: "Normal",
  23408. height: math.unit(11, "feet"),
  23409. default: true
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23415. {
  23416. side: {
  23417. height: math.unit(2 + 6 / 12, "feet"),
  23418. weight: math.unit(30, "lb"),
  23419. name: "Side",
  23420. image: {
  23421. source: "./media/characters/layla/side.svg",
  23422. extra: 244 / 188,
  23423. bottom: 18.2 / 262.1
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(2 + 6 / 12, "feet"),
  23428. weight: math.unit(30, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/layla/back.svg",
  23432. extra: 308 / 241.5,
  23433. bottom: 8.9 / 316.8
  23434. }
  23435. },
  23436. cumming: {
  23437. height: math.unit(2 + 6 / 12, "feet"),
  23438. weight: math.unit(30, "lb"),
  23439. name: "Cumming",
  23440. image: {
  23441. source: "./media/characters/layla/cumming.svg",
  23442. extra: 342 / 279,
  23443. bottom: 595 / 938
  23444. }
  23445. },
  23446. dickFlaccid: {
  23447. height: math.unit(2.595, "feet"),
  23448. name: "Flaccid Genitals",
  23449. image: {
  23450. source: "./media/characters/layla/dick-flaccid.svg"
  23451. }
  23452. },
  23453. dickErect: {
  23454. height: math.unit(2.359, "feet"),
  23455. name: "Erect Genitals",
  23456. image: {
  23457. source: "./media/characters/layla/dick-erect.svg"
  23458. }
  23459. },
  23460. dragon: {
  23461. height: math.unit(40, "feet"),
  23462. name: "Dragon",
  23463. image: {
  23464. source: "./media/characters/layla/dragon.svg",
  23465. extra: 610/535,
  23466. bottom: 367/977
  23467. }
  23468. },
  23469. taur: {
  23470. height: math.unit(30, "feet"),
  23471. name: "Taur",
  23472. image: {
  23473. source: "./media/characters/layla/taur.svg",
  23474. extra: 1268/1199,
  23475. bottom: 112/1380
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Micro",
  23482. height: math.unit(1, "inch")
  23483. },
  23484. {
  23485. name: "Small",
  23486. height: math.unit(1, "foot")
  23487. },
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(2 + 6 / 12, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Macro",
  23495. height: math.unit(200, "feet")
  23496. },
  23497. {
  23498. name: "Megamacro",
  23499. height: math.unit(1000, "miles")
  23500. },
  23501. {
  23502. name: "Planetary",
  23503. height: math.unit(8000, "miles")
  23504. },
  23505. {
  23506. name: "True Layla",
  23507. height: math.unit(200000 * 7, "multiverses")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23513. {
  23514. back: {
  23515. height: math.unit(10.5, "feet"),
  23516. weight: math.unit(800, "lb"),
  23517. name: "Back",
  23518. image: {
  23519. source: "./media/characters/knox/back.svg",
  23520. extra: 1486 / 1089,
  23521. bottom: 107 / 1601.4
  23522. }
  23523. },
  23524. side: {
  23525. height: math.unit(10.5, "feet"),
  23526. weight: math.unit(800, "lb"),
  23527. name: "Side",
  23528. image: {
  23529. source: "./media/characters/knox/side.svg",
  23530. extra: 244 / 218,
  23531. bottom: 14 / 260
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Compact",
  23538. height: math.unit(10.5, "feet"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Dynamax",
  23543. height: math.unit(210, "feet")
  23544. },
  23545. {
  23546. name: "Full Macro",
  23547. height: math.unit(850, "feet")
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23553. {
  23554. front: {
  23555. height: math.unit(6, "feet"),
  23556. weight: math.unit(152, "lb"),
  23557. name: "Front",
  23558. image: {
  23559. source: "./media/characters/shin-pikachu/front.svg",
  23560. extra: 1854/1602,
  23561. bottom: 166/2020
  23562. }
  23563. },
  23564. hand: {
  23565. height: math.unit(1.055, "feet"),
  23566. name: "Hand",
  23567. image: {
  23568. source: "./media/characters/shin-pikachu/hand.svg"
  23569. }
  23570. },
  23571. foot: {
  23572. height: math.unit(1.1, "feet"),
  23573. name: "Foot",
  23574. image: {
  23575. source: "./media/characters/shin-pikachu/foot.svg"
  23576. }
  23577. },
  23578. collar: {
  23579. height: math.unit(0.386, "feet"),
  23580. name: "Collar",
  23581. image: {
  23582. source: "./media/characters/shin-pikachu/collar.svg"
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Smallest",
  23589. height: math.unit(0.5, "inches")
  23590. },
  23591. {
  23592. name: "Micro",
  23593. height: math.unit(6, "inches")
  23594. },
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(6, "feet"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(150, "feet")
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(28, "feet"),
  23611. weight: math.unit(10500, "lb"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/kayda/front.svg",
  23615. extra: 1536 / 1428,
  23616. bottom: 68.7 / 1603
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(28, "feet"),
  23621. weight: math.unit(10500, "lb"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/kayda/back.svg",
  23625. extra: 1557 / 1464,
  23626. bottom: 39.5 / 1597.49
  23627. }
  23628. },
  23629. dick: {
  23630. height: math.unit(3.858, "feet"),
  23631. name: "Dick",
  23632. image: {
  23633. source: "./media/characters/kayda/dick.svg"
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Macro",
  23640. height: math.unit(28, "feet"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(10 + 11 / 12, "feet"),
  23650. weight: math.unit(1400, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/brian/front.svg",
  23654. extra: 737 / 692,
  23655. bottom: 55.4 / 785
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(10 + 11 / 12, "feet"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(5 + 8 / 12, "feet"),
  23672. weight: math.unit(140, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/khemri/front.svg",
  23676. extra: 4780 / 4059,
  23677. bottom: 80.1 / 4859.25
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Micro",
  23684. height: math.unit(6, "inches")
  23685. },
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(5 + 8 / 12, "feet"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23695. {
  23696. front: {
  23697. height: math.unit(13, "feet"),
  23698. weight: math.unit(1700, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/felix-braveheart/front.svg",
  23702. extra: 1222 / 1157,
  23703. bottom: 53.2 / 1280
  23704. }
  23705. },
  23706. back: {
  23707. height: math.unit(13, "feet"),
  23708. weight: math.unit(1700, "lb"),
  23709. name: "Back",
  23710. image: {
  23711. source: "./media/characters/felix-braveheart/back.svg",
  23712. extra: 1277 / 1203,
  23713. bottom: 50.2 / 1327
  23714. }
  23715. },
  23716. feral: {
  23717. height: math.unit(6, "feet"),
  23718. weight: math.unit(400, "lb"),
  23719. name: "Feral",
  23720. image: {
  23721. source: "./media/characters/felix-braveheart/feral.svg",
  23722. extra: 682 / 625,
  23723. bottom: 6.9 / 688
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Normal",
  23730. height: math.unit(13, "feet"),
  23731. default: true
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23737. {
  23738. side: {
  23739. height: math.unit(5 + 11 / 12, "feet"),
  23740. weight: math.unit(1400, "lb"),
  23741. name: "Side",
  23742. image: {
  23743. source: "./media/characters/shadow-blade/side.svg",
  23744. extra: 1726 / 1267,
  23745. bottom: 58.4 / 1785
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(5 + 11 / 12, "feet"),
  23753. default: true
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23759. {
  23760. front: {
  23761. height: math.unit(1 + 6 / 12, "feet"),
  23762. weight: math.unit(25, "lb"),
  23763. name: "Front",
  23764. image: {
  23765. source: "./media/characters/karla-halldor/front.svg",
  23766. extra: 1459 / 1383,
  23767. bottom: 12 / 1472
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(1 + 6 / 12, "feet"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(6 + 2 / 12, "feet"),
  23784. weight: math.unit(160, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/ariam/front.svg",
  23788. extra: 714 / 617,
  23789. bottom: 23.4 / 737,
  23790. }
  23791. },
  23792. squatting: {
  23793. height: math.unit(4.1, "feet"),
  23794. weight: math.unit(160, "lb"),
  23795. name: "Squatting",
  23796. image: {
  23797. source: "./media/characters/ariam/squatting.svg",
  23798. extra: 2617 / 2112,
  23799. bottom: 61.2 / 2681,
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(6 + 2 / 12, "feet"),
  23807. default: true
  23808. },
  23809. {
  23810. name: "Normal+",
  23811. height: math.unit(4, "meters")
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(50, "meters")
  23816. },
  23817. {
  23818. name: "Macro+",
  23819. height: math.unit(100, "meters")
  23820. },
  23821. {
  23822. name: "Megamacro",
  23823. height: math.unit(20, "km")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(1.67, "meters"),
  23832. weight: math.unit(140, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23836. extra: 438 / 410,
  23837. bottom: 0.75 / 439
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Shrunken",
  23844. height: math.unit(7.6, "cm")
  23845. },
  23846. {
  23847. name: "Human Scale",
  23848. height: math.unit(1.67, "meters")
  23849. },
  23850. {
  23851. name: "Wolxi Scale",
  23852. height: math.unit(36.7, "meters"),
  23853. default: true
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23859. {
  23860. front: {
  23861. height: math.unit(1.73, "meters"),
  23862. weight: math.unit(240, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/izue-two-mothers/front.svg",
  23866. extra: 469 / 437,
  23867. bottom: 1.24 / 470.6
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Shrunken",
  23874. height: math.unit(7.86, "cm")
  23875. },
  23876. {
  23877. name: "Human Scale",
  23878. height: math.unit(1.73, "meters")
  23879. },
  23880. {
  23881. name: "Wolxi Scale",
  23882. height: math.unit(38, "meters"),
  23883. default: true
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(1.55, "meters"),
  23892. weight: math.unit(120, "lb"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/teeku-love-shack/front.svg",
  23896. extra: 387 / 362,
  23897. bottom: 1.51 / 388
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Shrunken",
  23904. height: math.unit(7, "cm")
  23905. },
  23906. {
  23907. name: "Human Scale",
  23908. height: math.unit(1.55, "meters")
  23909. },
  23910. {
  23911. name: "Wolxi Scale",
  23912. height: math.unit(34.1, "meters"),
  23913. default: true
  23914. },
  23915. ]
  23916. ))
  23917. characterMakers.push(() => makeCharacter(
  23918. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23919. {
  23920. front: {
  23921. height: math.unit(1.83, "meters"),
  23922. weight: math.unit(135, "lb"),
  23923. name: "Front",
  23924. image: {
  23925. source: "./media/characters/dejma-the-red/front.svg",
  23926. extra: 480 / 458,
  23927. bottom: 1.8 / 482
  23928. }
  23929. },
  23930. },
  23931. [
  23932. {
  23933. name: "Shrunken",
  23934. height: math.unit(8.3, "cm")
  23935. },
  23936. {
  23937. name: "Human Scale",
  23938. height: math.unit(1.83, "meters")
  23939. },
  23940. {
  23941. name: "Wolxi Scale",
  23942. height: math.unit(40, "meters"),
  23943. default: true
  23944. },
  23945. ]
  23946. ))
  23947. characterMakers.push(() => makeCharacter(
  23948. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23949. {
  23950. front: {
  23951. height: math.unit(1.78, "meters"),
  23952. weight: math.unit(65, "kg"),
  23953. name: "Front",
  23954. image: {
  23955. source: "./media/characters/aki/front.svg",
  23956. extra: 452 / 415
  23957. }
  23958. },
  23959. frontNsfw: {
  23960. height: math.unit(1.78, "meters"),
  23961. weight: math.unit(65, "kg"),
  23962. name: "Front (NSFW)",
  23963. image: {
  23964. source: "./media/characters/aki/front-nsfw.svg",
  23965. extra: 452 / 415
  23966. }
  23967. },
  23968. back: {
  23969. height: math.unit(1.78, "meters"),
  23970. weight: math.unit(65, "kg"),
  23971. name: "Back",
  23972. image: {
  23973. source: "./media/characters/aki/back.svg",
  23974. extra: 452 / 415
  23975. }
  23976. },
  23977. rump: {
  23978. height: math.unit(2.05, "feet"),
  23979. name: "Rump",
  23980. image: {
  23981. source: "./media/characters/aki/rump.svg"
  23982. }
  23983. },
  23984. dick: {
  23985. height: math.unit(0.95, "feet"),
  23986. name: "Dick",
  23987. image: {
  23988. source: "./media/characters/aki/dick.svg"
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Micro",
  23995. height: math.unit(15, "cm")
  23996. },
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(178, "cm"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(214, "m")
  24005. },
  24006. {
  24007. name: "Macro+",
  24008. height: math.unit(534, "m")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(5 + 5 / 12, "feet"),
  24017. weight: math.unit(120, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/ari/front.svg",
  24021. extra: 714.5 / 682,
  24022. bottom: 8 / 722.5
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "Normal",
  24029. height: math.unit(5 + 5 / 12, "feet")
  24030. },
  24031. {
  24032. name: "Macro",
  24033. height: math.unit(100, "feet"),
  24034. default: true
  24035. },
  24036. {
  24037. name: "Megamacro",
  24038. height: math.unit(100, "miles")
  24039. },
  24040. {
  24041. name: "Gigamacro",
  24042. height: math.unit(80000, "miles")
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24048. {
  24049. side: {
  24050. height: math.unit(9, "feet"),
  24051. weight: math.unit(400, "kg"),
  24052. name: "Side",
  24053. image: {
  24054. source: "./media/characters/bolt/side.svg",
  24055. extra: 1126 / 896,
  24056. bottom: 60 / 1187.3,
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Micro",
  24063. height: math.unit(5, "inches")
  24064. },
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(9, "feet"),
  24068. default: true
  24069. },
  24070. {
  24071. name: "Macro",
  24072. height: math.unit(700, "feet")
  24073. },
  24074. {
  24075. name: "Max Size",
  24076. height: math.unit(1.52e22, "yottameters")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(4.53, "meters"),
  24085. weight: math.unit(3, "tons"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/draekon-sylviar/front.svg",
  24089. extra: 1228 / 1068,
  24090. bottom: 41 / 1270
  24091. }
  24092. },
  24093. tail: {
  24094. height: math.unit(1.772, "meter"),
  24095. name: "Tail",
  24096. image: {
  24097. source: "./media/characters/draekon-sylviar/tail.svg"
  24098. }
  24099. },
  24100. head: {
  24101. height: math.unit(1.331, "meter"),
  24102. name: "Head",
  24103. image: {
  24104. source: "./media/characters/draekon-sylviar/head.svg"
  24105. }
  24106. },
  24107. hand: {
  24108. height: math.unit(0.564, "meter"),
  24109. name: "Hand",
  24110. image: {
  24111. source: "./media/characters/draekon-sylviar/hand.svg"
  24112. }
  24113. },
  24114. foot: {
  24115. height: math.unit(0.621, "meter"),
  24116. name: "Foot",
  24117. image: {
  24118. source: "./media/characters/draekon-sylviar/foot.svg",
  24119. bottom: 32 / 324
  24120. }
  24121. },
  24122. dick: {
  24123. height: math.unit(61, "cm"),
  24124. name: "Dick",
  24125. image: {
  24126. source: "./media/characters/draekon-sylviar/dick.svg"
  24127. }
  24128. },
  24129. dickseparated: {
  24130. height: math.unit(61, "cm"),
  24131. name: "Dick-separated",
  24132. image: {
  24133. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Small",
  24140. height: math.unit(4.53 / 2, "meters"),
  24141. default: true
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(4.53, "meters"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Large",
  24150. height: math.unit(4.53 * 2, "meters"),
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(6 + 2 / 12, "feet"),
  24159. weight: math.unit(180, "lb"),
  24160. name: "Front",
  24161. image: {
  24162. source: "./media/characters/brawler/front.svg",
  24163. extra: 3301 / 3027,
  24164. bottom: 138 / 3439
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Normal",
  24171. height: math.unit(6 + 2 / 12, "feet"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(11, "feet"),
  24181. weight: math.unit(1000, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/alex/front.svg",
  24185. bottom: 44.5 / 620
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Micro",
  24192. height: math.unit(5, "inches")
  24193. },
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(11, "feet"),
  24197. default: true
  24198. },
  24199. {
  24200. name: "Macro",
  24201. height: math.unit(9.5e9, "feet")
  24202. },
  24203. {
  24204. name: "Max Size",
  24205. height: math.unit(1.4e283, "yottameters")
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24211. {
  24212. female: {
  24213. height: math.unit(29.9, "m"),
  24214. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24215. name: "Female",
  24216. image: {
  24217. source: "./media/characters/zenari/female.svg",
  24218. extra: 3281.6 / 3217,
  24219. bottom: 72.2 / 3353
  24220. }
  24221. },
  24222. male: {
  24223. height: math.unit(27.7, "m"),
  24224. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24225. name: "Male",
  24226. image: {
  24227. source: "./media/characters/zenari/male.svg",
  24228. extra: 3008 / 2991,
  24229. bottom: 54.6 / 3069
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(29.7, "meters"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24243. {
  24244. female: {
  24245. height: math.unit(23.8, "m"),
  24246. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24247. name: "Female",
  24248. image: {
  24249. source: "./media/characters/mactarian/female.svg",
  24250. extra: 2662 / 2569,
  24251. bottom: 73 / 2736
  24252. }
  24253. },
  24254. male: {
  24255. height: math.unit(23.8, "m"),
  24256. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24257. name: "Male",
  24258. image: {
  24259. source: "./media/characters/mactarian/male.svg",
  24260. extra: 2673 / 2600,
  24261. bottom: 76 / 2750
  24262. }
  24263. },
  24264. },
  24265. [
  24266. {
  24267. name: "Macro",
  24268. height: math.unit(23.8, "meters"),
  24269. default: true
  24270. },
  24271. ]
  24272. ))
  24273. characterMakers.push(() => makeCharacter(
  24274. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24275. {
  24276. female: {
  24277. height: math.unit(19.3, "m"),
  24278. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24279. name: "Female",
  24280. image: {
  24281. source: "./media/characters/umok/female.svg",
  24282. extra: 2186 / 2078,
  24283. bottom: 87 / 2277
  24284. }
  24285. },
  24286. male: {
  24287. height: math.unit(19.5, "m"),
  24288. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24289. name: "Male",
  24290. image: {
  24291. source: "./media/characters/umok/male.svg",
  24292. extra: 2233 / 2140,
  24293. bottom: 24.4 / 2258
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Macro",
  24300. height: math.unit(19.3, "meters"),
  24301. default: true
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24307. {
  24308. female: {
  24309. height: math.unit(26.15, "m"),
  24310. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24311. name: "Female",
  24312. image: {
  24313. source: "./media/characters/joraxian/female.svg",
  24314. extra: 2912 / 2824,
  24315. bottom: 36 / 2956
  24316. }
  24317. },
  24318. male: {
  24319. height: math.unit(25.4, "m"),
  24320. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24321. name: "Male",
  24322. image: {
  24323. source: "./media/characters/joraxian/male.svg",
  24324. extra: 2877 / 2721,
  24325. bottom: 82 / 2967
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Macro",
  24332. height: math.unit(26.15, "meters"),
  24333. default: true
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24339. {
  24340. female: {
  24341. height: math.unit(21.6, "m"),
  24342. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24343. name: "Female",
  24344. image: {
  24345. source: "./media/characters/sthara/female.svg",
  24346. extra: 2516 / 2347,
  24347. bottom: 21.5 / 2537
  24348. }
  24349. },
  24350. male: {
  24351. height: math.unit(24, "m"),
  24352. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24353. name: "Male",
  24354. image: {
  24355. source: "./media/characters/sthara/male.svg",
  24356. extra: 2732 / 2607,
  24357. bottom: 23 / 2732
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Macro",
  24364. height: math.unit(21.6, "meters"),
  24365. default: true
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(6 + 4 / 12, "feet"),
  24374. weight: math.unit(175, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/luka-bryzant/front.svg",
  24378. extra: 311 / 289,
  24379. bottom: 4 / 315
  24380. }
  24381. },
  24382. back: {
  24383. height: math.unit(6 + 4 / 12, "feet"),
  24384. weight: math.unit(175, "lb"),
  24385. name: "Back",
  24386. image: {
  24387. source: "./media/characters/luka-bryzant/back.svg",
  24388. extra: 311 / 289,
  24389. bottom: 3.8 / 313.7
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Micro",
  24396. height: math.unit(10, "inches")
  24397. },
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(6 + 4 / 12, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Large",
  24405. height: math.unit(12, "feet")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(5 + 7 / 12, "feet"),
  24414. weight: math.unit(185, "lb"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/aman-aquila/front.svg",
  24418. extra: 1013 / 976,
  24419. bottom: 45.6 / 1057
  24420. }
  24421. },
  24422. side: {
  24423. height: math.unit(5 + 7 / 12, "feet"),
  24424. weight: math.unit(185, "lb"),
  24425. name: "Side",
  24426. image: {
  24427. source: "./media/characters/aman-aquila/side.svg",
  24428. extra: 1054 / 1011,
  24429. bottom: 15 / 1070
  24430. }
  24431. },
  24432. back: {
  24433. height: math.unit(5 + 7 / 12, "feet"),
  24434. weight: math.unit(185, "lb"),
  24435. name: "Back",
  24436. image: {
  24437. source: "./media/characters/aman-aquila/back.svg",
  24438. extra: 1026 / 970,
  24439. bottom: 12 / 1039
  24440. }
  24441. },
  24442. head: {
  24443. height: math.unit(1.211, "feet"),
  24444. name: "Head",
  24445. image: {
  24446. source: "./media/characters/aman-aquila/head.svg",
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Minimicro",
  24453. height: math.unit(0.057, "inches")
  24454. },
  24455. {
  24456. name: "Micro",
  24457. height: math.unit(7, "inches")
  24458. },
  24459. {
  24460. name: "Mini",
  24461. height: math.unit(3 + 7 / 12, "feet")
  24462. },
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(5 + 7 / 12, "feet"),
  24466. default: true
  24467. },
  24468. {
  24469. name: "Macro",
  24470. height: math.unit(157 + 7 / 12, "feet")
  24471. },
  24472. {
  24473. name: "Megamacro",
  24474. height: math.unit(1557 + 7 / 12, "feet")
  24475. },
  24476. {
  24477. name: "Gigamacro",
  24478. height: math.unit(15557 + 7 / 12, "feet")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(3 + 2 / 12, "inches"),
  24487. weight: math.unit(0.3, "ounces"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/hiphae/front.svg",
  24491. extra: 1931 / 1683,
  24492. bottom: 24 / 1955
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(3 + 1 / 2, "inches"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(5 + 10 / 12, "feet"),
  24509. weight: math.unit(165, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/nicky/front.svg",
  24513. extra: 3144 / 2886,
  24514. bottom: 45.6 / 3192
  24515. }
  24516. },
  24517. back: {
  24518. height: math.unit(5 + 10 / 12, "feet"),
  24519. weight: math.unit(165, "lb"),
  24520. name: "Back",
  24521. image: {
  24522. source: "./media/characters/nicky/back.svg",
  24523. extra: 3055 / 2804,
  24524. bottom: 28.4 / 3087
  24525. }
  24526. },
  24527. frontclothed: {
  24528. height: math.unit(5 + 10 / 12, "feet"),
  24529. weight: math.unit(165, "lb"),
  24530. name: "Front-clothed",
  24531. image: {
  24532. source: "./media/characters/nicky/front-clothed.svg",
  24533. extra: 3184.9 / 2926.9,
  24534. bottom: 86.5 / 3239.9
  24535. }
  24536. },
  24537. foot: {
  24538. height: math.unit(1.16, "feet"),
  24539. name: "Foot",
  24540. image: {
  24541. source: "./media/characters/nicky/foot.svg"
  24542. }
  24543. },
  24544. feet: {
  24545. height: math.unit(1.34, "feet"),
  24546. name: "Feet",
  24547. image: {
  24548. source: "./media/characters/nicky/feet.svg"
  24549. }
  24550. },
  24551. maw: {
  24552. height: math.unit(0.9, "feet"),
  24553. name: "Maw",
  24554. image: {
  24555. source: "./media/characters/nicky/maw.svg"
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(5 + 10 / 12, "feet"),
  24563. default: true
  24564. },
  24565. {
  24566. name: "Macro",
  24567. height: math.unit(60, "feet")
  24568. },
  24569. {
  24570. name: "Megamacro",
  24571. height: math.unit(1, "mile")
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24577. {
  24578. side: {
  24579. height: math.unit(10, "feet"),
  24580. weight: math.unit(600, "lb"),
  24581. name: "Side",
  24582. image: {
  24583. source: "./media/characters/blair/side.svg",
  24584. bottom: 16.6 / 475,
  24585. extra: 458 / 431
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Micro",
  24592. height: math.unit(8, "inches")
  24593. },
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(10, "feet"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Macro",
  24601. height: math.unit(180, "feet")
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(5 + 4 / 12, "feet"),
  24610. weight: math.unit(125, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/fisher/front.svg",
  24614. extra: 444 / 390,
  24615. bottom: 2 / 444.8
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Micro",
  24622. height: math.unit(4, "inches")
  24623. },
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(5 + 4 / 12, "feet"),
  24627. default: true
  24628. },
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(100, "feet")
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(6.71, "feet"),
  24640. weight: math.unit(200, "lb"),
  24641. capacity: math.unit(1000000, "people"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/gliss/front.svg",
  24645. extra: 2347 / 2231,
  24646. bottom: 113 / 2462
  24647. }
  24648. },
  24649. hammerspaceSize: {
  24650. height: math.unit(6.71 * 717, "feet"),
  24651. weight: math.unit(200, "lb"),
  24652. capacity: math.unit(1000000, "people"),
  24653. name: "Hammerspace Size",
  24654. image: {
  24655. source: "./media/characters/gliss/front.svg",
  24656. extra: 2347 / 2231,
  24657. bottom: 113 / 2462
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(6.71, "feet"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24671. {
  24672. side: {
  24673. height: math.unit(1.44, "m"),
  24674. weight: math.unit(80, "kg"),
  24675. name: "Side",
  24676. image: {
  24677. source: "./media/characters/dune-anderson/side.svg",
  24678. bottom: 49 / 1426
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Wolf-sized",
  24685. height: math.unit(1.44, "meters")
  24686. },
  24687. {
  24688. name: "Normal",
  24689. height: math.unit(5.05, "meters"),
  24690. default: true
  24691. },
  24692. {
  24693. name: "Big",
  24694. height: math.unit(14.4, "meters")
  24695. },
  24696. {
  24697. name: "Huge",
  24698. height: math.unit(144, "meters")
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24704. {
  24705. front: {
  24706. height: math.unit(7, "feet"),
  24707. weight: math.unit(425, "lb"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/hind/front.svg",
  24711. extra: 2091 / 1860,
  24712. bottom: 129 / 2220
  24713. }
  24714. },
  24715. back: {
  24716. height: math.unit(7, "feet"),
  24717. weight: math.unit(425, "lb"),
  24718. name: "Back",
  24719. image: {
  24720. source: "./media/characters/hind/back.svg",
  24721. extra: 2091 / 1860,
  24722. bottom: 24.6 / 2309
  24723. }
  24724. },
  24725. tail: {
  24726. height: math.unit(2.8, "feet"),
  24727. name: "Tail",
  24728. image: {
  24729. source: "./media/characters/hind/tail.svg"
  24730. }
  24731. },
  24732. head: {
  24733. height: math.unit(2.55, "feet"),
  24734. name: "Head",
  24735. image: {
  24736. source: "./media/characters/hind/head.svg"
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "XS",
  24743. height: math.unit(0.7, "feet")
  24744. },
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(7, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "XL",
  24752. height: math.unit(70, "feet")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(6, "feet"),
  24761. weight: math.unit(150, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/dylan-skaven/front.svg",
  24765. extra: 2318 / 2063,
  24766. bottom: 93.4 / 2410
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Nano",
  24773. height: math.unit(1, "mm")
  24774. },
  24775. {
  24776. name: "Micro",
  24777. height: math.unit(1, "cm")
  24778. },
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(2.1, "meters"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(7 + 5 / 12, "feet"),
  24791. weight: math.unit(357, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/solex-draconov/front.svg",
  24795. extra: 1993 / 1865,
  24796. bottom: 117 / 2111
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Natural Height",
  24803. height: math.unit(7 + 5 / 12, "feet"),
  24804. default: true
  24805. },
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(350, "feet")
  24809. },
  24810. {
  24811. name: "Macro+",
  24812. height: math.unit(1000, "feet")
  24813. },
  24814. {
  24815. name: "Megamacro",
  24816. height: math.unit(20, "km")
  24817. },
  24818. {
  24819. name: "Megamacro+",
  24820. height: math.unit(1000, "km")
  24821. },
  24822. {
  24823. name: "Gigamacro",
  24824. height: math.unit(2.5, "Gm")
  24825. },
  24826. {
  24827. name: "Teramacro",
  24828. height: math.unit(15, "Tm")
  24829. },
  24830. {
  24831. name: "Galactic",
  24832. height: math.unit(30, "Zm")
  24833. },
  24834. {
  24835. name: "Universal",
  24836. height: math.unit(21000, "Ym")
  24837. },
  24838. {
  24839. name: "Omniversal",
  24840. height: math.unit(9.861e50, "Ym")
  24841. },
  24842. {
  24843. name: "Existential",
  24844. height: math.unit(1e300, "meters")
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24850. {
  24851. side: {
  24852. height: math.unit(25, "feet"),
  24853. weight: math.unit(90000, "lb"),
  24854. name: "Side",
  24855. image: {
  24856. source: "./media/characters/mandarax/side.svg",
  24857. extra: 614 / 332,
  24858. bottom: 55 / 630
  24859. }
  24860. },
  24861. head: {
  24862. height: math.unit(11.4, "feet"),
  24863. name: "Head",
  24864. image: {
  24865. source: "./media/characters/mandarax/head.svg"
  24866. }
  24867. },
  24868. belly: {
  24869. height: math.unit(33, "feet"),
  24870. name: "Belly",
  24871. capacity: math.unit(500, "people"),
  24872. image: {
  24873. source: "./media/characters/mandarax/belly.svg"
  24874. }
  24875. },
  24876. dick: {
  24877. height: math.unit(8.46, "feet"),
  24878. name: "Dick",
  24879. image: {
  24880. source: "./media/characters/mandarax/dick.svg"
  24881. }
  24882. },
  24883. top: {
  24884. height: math.unit(28, "meters"),
  24885. name: "Top",
  24886. image: {
  24887. source: "./media/characters/mandarax/top.svg"
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Normal",
  24894. height: math.unit(25, "feet"),
  24895. default: true
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(5, "feet"),
  24904. weight: math.unit(90, "lb"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/pixil/front.svg",
  24908. extra: 2000 / 1618,
  24909. bottom: 12.3 / 2011
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(5, "feet"),
  24917. default: true
  24918. },
  24919. {
  24920. name: "Megamacro",
  24921. height: math.unit(10, "miles"),
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24927. {
  24928. front: {
  24929. height: math.unit(7 + 2 / 12, "feet"),
  24930. weight: math.unit(200, "lb"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/angel/front.svg",
  24934. extra: 1830 / 1737,
  24935. bottom: 22.6 / 1854,
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(7 + 2 / 12, "feet"),
  24943. default: true
  24944. },
  24945. {
  24946. name: "Macro",
  24947. height: math.unit(1000, "feet")
  24948. },
  24949. {
  24950. name: "Megamacro",
  24951. height: math.unit(2, "miles")
  24952. },
  24953. {
  24954. name: "Gigamacro",
  24955. height: math.unit(20, "earths")
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(5, "feet"),
  24964. weight: math.unit(180, "lb"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/mekana/front.svg",
  24968. extra: 1671 / 1605,
  24969. bottom: 3.5 / 1691
  24970. }
  24971. },
  24972. side: {
  24973. height: math.unit(5, "feet"),
  24974. weight: math.unit(180, "lb"),
  24975. name: "Side",
  24976. image: {
  24977. source: "./media/characters/mekana/side.svg",
  24978. extra: 1671 / 1605,
  24979. bottom: 3.5 / 1691
  24980. }
  24981. },
  24982. back: {
  24983. height: math.unit(5, "feet"),
  24984. weight: math.unit(180, "lb"),
  24985. name: "Back",
  24986. image: {
  24987. source: "./media/characters/mekana/back.svg",
  24988. extra: 1671 / 1605,
  24989. bottom: 3.5 / 1691
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(5, "feet"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(4 + 6 / 12, "feet"),
  25006. weight: math.unit(80, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/pixie/front.svg",
  25010. extra: 1924 / 1825,
  25011. bottom: 22.4 / 1946
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(4 + 6 / 12, "feet"),
  25019. default: true
  25020. },
  25021. {
  25022. name: "Macro",
  25023. height: math.unit(40, "feet")
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25029. {
  25030. front: {
  25031. height: math.unit(2.1, "meters"),
  25032. weight: math.unit(200, "lb"),
  25033. name: "Front",
  25034. image: {
  25035. source: "./media/characters/the-lascivious/front.svg",
  25036. extra: 1 / 0.893,
  25037. bottom: 3.5 / 573.7
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Human Scale",
  25044. height: math.unit(2.1, "meters")
  25045. },
  25046. {
  25047. name: "Wolxi Scale",
  25048. height: math.unit(46.2, "m"),
  25049. default: true
  25050. },
  25051. {
  25052. name: "Boinker of Buildings",
  25053. height: math.unit(10, "km")
  25054. },
  25055. {
  25056. name: "Shagger of Skyscrapers",
  25057. height: math.unit(40, "km")
  25058. },
  25059. {
  25060. name: "Banger of Boroughs",
  25061. height: math.unit(4000, "km")
  25062. },
  25063. {
  25064. name: "Screwer of States",
  25065. height: math.unit(100000, "km")
  25066. },
  25067. {
  25068. name: "Pounder of Planets",
  25069. height: math.unit(2000000, "km")
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(6, "feet"),
  25078. weight: math.unit(150, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/aj/front.svg",
  25082. extra: 2039 / 1562,
  25083. bottom: 40 / 2079
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(11 + 6 / 12, "feet"),
  25091. default: true
  25092. },
  25093. {
  25094. name: "Megamacro",
  25095. height: math.unit(60, "megameters")
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25101. {
  25102. side: {
  25103. height: math.unit(31 + 8 / 12, "feet"),
  25104. weight: math.unit(75000, "kg"),
  25105. name: "Side",
  25106. image: {
  25107. source: "./media/characters/koros/side.svg",
  25108. extra: 1442 / 1297,
  25109. bottom: 122.7 / 1562
  25110. }
  25111. },
  25112. dicksKingsCrown: {
  25113. height: math.unit(6, "feet"),
  25114. name: "Dicks (King's Crown)",
  25115. image: {
  25116. source: "./media/characters/koros/dicks-kings-crown.svg"
  25117. }
  25118. },
  25119. dicksTailSet: {
  25120. height: math.unit(3, "feet"),
  25121. name: "Dicks (Tail Set)",
  25122. image: {
  25123. source: "./media/characters/koros/dicks-tail-set.svg"
  25124. }
  25125. },
  25126. dickCumming: {
  25127. height: math.unit(7.98, "feet"),
  25128. name: "Dick (Cumming)",
  25129. image: {
  25130. source: "./media/characters/koros/dick-cumming.svg"
  25131. }
  25132. },
  25133. dicksBack: {
  25134. height: math.unit(5.9, "feet"),
  25135. name: "Dicks (Back)",
  25136. image: {
  25137. source: "./media/characters/koros/dicks-back.svg"
  25138. }
  25139. },
  25140. dicksFront: {
  25141. height: math.unit(3.72, "feet"),
  25142. name: "Dicks (Front)",
  25143. image: {
  25144. source: "./media/characters/koros/dicks-front.svg"
  25145. }
  25146. },
  25147. dicksPeeking: {
  25148. height: math.unit(3.0, "feet"),
  25149. name: "Dicks (Peeking)",
  25150. image: {
  25151. source: "./media/characters/koros/dicks-peeking.svg"
  25152. }
  25153. },
  25154. eye: {
  25155. height: math.unit(1.7, "feet"),
  25156. name: "Eye",
  25157. image: {
  25158. source: "./media/characters/koros/eye.svg"
  25159. }
  25160. },
  25161. headFront: {
  25162. height: math.unit(11.69, "feet"),
  25163. name: "Head (Front)",
  25164. image: {
  25165. source: "./media/characters/koros/head-front.svg"
  25166. }
  25167. },
  25168. headSide: {
  25169. height: math.unit(14, "feet"),
  25170. name: "Head (Side)",
  25171. image: {
  25172. source: "./media/characters/koros/head-side.svg"
  25173. }
  25174. },
  25175. leg: {
  25176. height: math.unit(17, "feet"),
  25177. name: "Leg",
  25178. image: {
  25179. source: "./media/characters/koros/leg.svg"
  25180. }
  25181. },
  25182. mawSide: {
  25183. height: math.unit(12.8, "feet"),
  25184. name: "Maw (Side)",
  25185. image: {
  25186. source: "./media/characters/koros/maw-side.svg"
  25187. }
  25188. },
  25189. mawSpitting: {
  25190. height: math.unit(17, "feet"),
  25191. name: "Maw (Spitting)",
  25192. image: {
  25193. source: "./media/characters/koros/maw-spitting.svg"
  25194. }
  25195. },
  25196. slit: {
  25197. height: math.unit(2.8, "feet"),
  25198. name: "Slit",
  25199. image: {
  25200. source: "./media/characters/koros/slit.svg"
  25201. }
  25202. },
  25203. stomach: {
  25204. height: math.unit(6.8, "feet"),
  25205. capacity: math.unit(20, "people"),
  25206. name: "Stomach",
  25207. image: {
  25208. source: "./media/characters/koros/stomach.svg"
  25209. }
  25210. },
  25211. wingspanBottom: {
  25212. height: math.unit(114, "feet"),
  25213. name: "Wingspan (Bottom)",
  25214. image: {
  25215. source: "./media/characters/koros/wingspan-bottom.svg"
  25216. }
  25217. },
  25218. wingspanTop: {
  25219. height: math.unit(104, "feet"),
  25220. name: "Wingspan (Top)",
  25221. image: {
  25222. source: "./media/characters/koros/wingspan-top.svg"
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(31 + 8 / 12, "feet"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(18 + 5 / 12, "feet"),
  25239. weight: math.unit(3750, "kg"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/vexx/front.svg",
  25243. extra: 426 / 396,
  25244. bottom: 31.5 / 458
  25245. }
  25246. },
  25247. maw: {
  25248. height: math.unit(6, "feet"),
  25249. name: "Maw",
  25250. image: {
  25251. source: "./media/characters/vexx/maw.svg"
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(18 + 5 / 12, "feet"),
  25259. default: true
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25265. {
  25266. front: {
  25267. height: math.unit(17 + 6 / 12, "feet"),
  25268. weight: math.unit(150, "lb"),
  25269. name: "Front",
  25270. image: {
  25271. source: "./media/characters/baadra/front.svg",
  25272. extra: 3137 / 2890,
  25273. bottom: 168.4 / 3305
  25274. }
  25275. },
  25276. back: {
  25277. height: math.unit(17 + 6 / 12, "feet"),
  25278. weight: math.unit(150, "lb"),
  25279. name: "Back",
  25280. image: {
  25281. source: "./media/characters/baadra/back.svg",
  25282. extra: 3142 / 2890,
  25283. bottom: 220 / 3371
  25284. }
  25285. },
  25286. head: {
  25287. height: math.unit(5.45, "feet"),
  25288. name: "Head",
  25289. image: {
  25290. source: "./media/characters/baadra/head.svg"
  25291. }
  25292. },
  25293. headAngry: {
  25294. height: math.unit(4.95, "feet"),
  25295. name: "Head (Angry)",
  25296. image: {
  25297. source: "./media/characters/baadra/head-angry.svg"
  25298. }
  25299. },
  25300. headOpen: {
  25301. height: math.unit(6, "feet"),
  25302. name: "Head (Open)",
  25303. image: {
  25304. source: "./media/characters/baadra/head-open.svg"
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(17 + 6 / 12, "feet"),
  25312. default: true
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(7 + 3 / 12, "feet"),
  25321. weight: math.unit(180, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/juri/front.svg",
  25325. extra: 1401 / 1237,
  25326. bottom: 18.5 / 1418
  25327. }
  25328. },
  25329. side: {
  25330. height: math.unit(7 + 3 / 12, "feet"),
  25331. weight: math.unit(180, "lb"),
  25332. name: "Side",
  25333. image: {
  25334. source: "./media/characters/juri/side.svg",
  25335. extra: 1424 / 1242,
  25336. bottom: 18.5 / 1447
  25337. }
  25338. },
  25339. sitting: {
  25340. height: math.unit(6, "feet"),
  25341. weight: math.unit(180, "lb"),
  25342. name: "Sitting",
  25343. image: {
  25344. source: "./media/characters/juri/sitting.svg",
  25345. extra: 1270 / 1143,
  25346. bottom: 100 / 1343
  25347. }
  25348. },
  25349. back: {
  25350. height: math.unit(7 + 3 / 12, "feet"),
  25351. weight: math.unit(180, "lb"),
  25352. name: "Back",
  25353. image: {
  25354. source: "./media/characters/juri/back.svg",
  25355. extra: 1377 / 1240,
  25356. bottom: 23.7 / 1405
  25357. }
  25358. },
  25359. maw: {
  25360. height: math.unit(2.8, "feet"),
  25361. name: "Maw",
  25362. image: {
  25363. source: "./media/characters/juri/maw.svg"
  25364. }
  25365. },
  25366. stomach: {
  25367. height: math.unit(0.89, "feet"),
  25368. capacity: math.unit(4, "liters"),
  25369. name: "Stomach",
  25370. image: {
  25371. source: "./media/characters/juri/stomach.svg"
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(7 + 3 / 12, "feet"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25385. {
  25386. fox: {
  25387. height: math.unit(5 + 6 / 12, "feet"),
  25388. weight: math.unit(140, "lb"),
  25389. name: "Fox",
  25390. image: {
  25391. source: "./media/characters/maxene-sita/fox.svg",
  25392. extra: 146 / 138,
  25393. bottom: 2.1 / 148.19
  25394. }
  25395. },
  25396. foxLaying: {
  25397. height: math.unit(1.70, "feet"),
  25398. weight: math.unit(140, "lb"),
  25399. name: "Fox (Laying)",
  25400. image: {
  25401. source: "./media/characters/maxene-sita/fox-laying.svg",
  25402. extra: 910 / 572,
  25403. bottom: 71 / 981
  25404. }
  25405. },
  25406. kitsune: {
  25407. height: math.unit(10, "feet"),
  25408. weight: math.unit(800, "lb"),
  25409. name: "Kitsune",
  25410. image: {
  25411. source: "./media/characters/maxene-sita/kitsune.svg",
  25412. extra: 185 / 176,
  25413. bottom: 4.7 / 189.9
  25414. }
  25415. },
  25416. hellhound: {
  25417. height: math.unit(10, "feet"),
  25418. weight: math.unit(700, "lb"),
  25419. name: "Hellhound",
  25420. image: {
  25421. source: "./media/characters/maxene-sita/hellhound.svg",
  25422. extra: 1600 / 1545,
  25423. bottom: 81 / 1681
  25424. }
  25425. },
  25426. },
  25427. [
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(5 + 6 / 12, "feet"),
  25431. default: true
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25437. {
  25438. front: {
  25439. height: math.unit(3 + 4 / 12, "feet"),
  25440. weight: math.unit(70, "lb"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/maia/front.svg",
  25444. extra: 227 / 219.5,
  25445. bottom: 40 / 267
  25446. }
  25447. },
  25448. back: {
  25449. height: math.unit(3 + 4 / 12, "feet"),
  25450. weight: math.unit(70, "lb"),
  25451. name: "Back",
  25452. image: {
  25453. source: "./media/characters/maia/back.svg",
  25454. extra: 237 / 225
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(3 + 4 / 12, "feet"),
  25462. default: true
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(5 + 10 / 12, "feet"),
  25471. weight: math.unit(197, "lb"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/jabaro/front.svg",
  25475. extra: 225 / 216,
  25476. bottom: 5.06 / 230
  25477. }
  25478. },
  25479. back: {
  25480. height: math.unit(5 + 10 / 12, "feet"),
  25481. weight: math.unit(197, "lb"),
  25482. name: "Back",
  25483. image: {
  25484. source: "./media/characters/jabaro/back.svg",
  25485. extra: 225 / 219,
  25486. bottom: 1.9 / 227
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(5 + 10 / 12, "feet"),
  25494. default: true
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(5 + 8 / 12, "feet"),
  25503. weight: math.unit(139, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/risa/front.svg",
  25507. extra: 270 / 260,
  25508. bottom: 11.2 / 282
  25509. }
  25510. },
  25511. back: {
  25512. height: math.unit(5 + 8 / 12, "feet"),
  25513. weight: math.unit(139, "lb"),
  25514. name: "Back",
  25515. image: {
  25516. source: "./media/characters/risa/back.svg",
  25517. extra: 264 / 255,
  25518. bottom: 4 / 268
  25519. }
  25520. },
  25521. },
  25522. [
  25523. {
  25524. name: "Normal",
  25525. height: math.unit(5 + 8 / 12, "feet"),
  25526. default: true
  25527. },
  25528. ]
  25529. ))
  25530. characterMakers.push(() => makeCharacter(
  25531. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25532. {
  25533. front: {
  25534. height: math.unit(2 + 11 / 12, "feet"),
  25535. weight: math.unit(30, "lb"),
  25536. name: "Front",
  25537. image: {
  25538. source: "./media/characters/weatley/front.svg",
  25539. bottom: 10.7 / 414,
  25540. extra: 403.5 / 362
  25541. }
  25542. },
  25543. back: {
  25544. height: math.unit(2 + 11 / 12, "feet"),
  25545. weight: math.unit(30, "lb"),
  25546. name: "Back",
  25547. image: {
  25548. source: "./media/characters/weatley/back.svg",
  25549. bottom: 10.7 / 414,
  25550. extra: 403.5 / 362
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Normal",
  25557. height: math.unit(2 + 11 / 12, "feet"),
  25558. default: true
  25559. },
  25560. ]
  25561. ))
  25562. characterMakers.push(() => makeCharacter(
  25563. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25564. {
  25565. front: {
  25566. height: math.unit(5 + 2 / 12, "feet"),
  25567. weight: math.unit(50, "kg"),
  25568. name: "Front",
  25569. image: {
  25570. source: "./media/characters/mercury-crescent/front.svg",
  25571. extra: 1088 / 1033,
  25572. bottom: 18.9 / 1109
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Normal",
  25579. height: math.unit(5 + 2 / 12, "feet"),
  25580. default: true
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25586. {
  25587. front: {
  25588. height: math.unit(2, "feet"),
  25589. weight: math.unit(15, "kg"),
  25590. name: "Front",
  25591. image: {
  25592. source: "./media/characters/diamond-jones/front.svg",
  25593. extra: 727/723,
  25594. bottom: 46/773
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(2, "feet"),
  25602. default: true
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(3, "feet"),
  25611. weight: math.unit(30, "kg"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/sweet-bit/front.svg",
  25615. extra: 675 / 567,
  25616. bottom: 27.7 / 703
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(3, "feet"),
  25624. default: true
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25630. {
  25631. side: {
  25632. height: math.unit(9.178, "feet"),
  25633. weight: math.unit(500, "lb"),
  25634. name: "Side",
  25635. image: {
  25636. source: "./media/characters/umbrazen/side.svg",
  25637. extra: 1730 / 1473,
  25638. bottom: 34.6 / 1765
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(9.178, "feet"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25652. {
  25653. front: {
  25654. height: math.unit(10, "feet"),
  25655. weight: math.unit(750, "lb"),
  25656. name: "Front",
  25657. image: {
  25658. source: "./media/characters/arlist/front.svg",
  25659. extra: 961 / 778,
  25660. bottom: 6.2 / 986
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(10, "feet"),
  25668. default: true
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(5 + 1 / 12, "feet"),
  25677. weight: math.unit(110, "lb"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/aradel/front.svg",
  25681. extra: 324 / 303,
  25682. bottom: 3.6 / 329.4
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(5 + 1 / 12, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(3 + 8 / 12, "feet"),
  25699. weight: math.unit(50, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/serryn/front.svg",
  25703. extra: 1792 / 1656,
  25704. bottom: 43.5 / 1840
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(3 + 8 / 12, "feet"),
  25712. default: true
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(7 + 10 / 12, "feet"),
  25721. weight: math.unit(255, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/xavier-thyme/front.svg",
  25725. extra: 3733 / 3642,
  25726. bottom: 131 / 3869
  25727. }
  25728. },
  25729. frontRaven: {
  25730. height: math.unit(7 + 10 / 12, "feet"),
  25731. weight: math.unit(255, "lb"),
  25732. name: "Front (Raven)",
  25733. image: {
  25734. source: "./media/characters/xavier-thyme/front-raven.svg",
  25735. extra: 4385 / 3642,
  25736. bottom: 131 / 4517
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(7 + 10 / 12, "feet"),
  25744. default: true
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(1.6, "m"),
  25753. weight: math.unit(50, "kg"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/kiki/front.svg",
  25757. extra: 4682 / 3610,
  25758. bottom: 115 / 4777
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(1.6, "meters"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(50, "m"),
  25775. weight: math.unit(500, "tonnes"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/ryoko/front.svg",
  25779. extra: 4632 / 3926,
  25780. bottom: 193 / 4823
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Normal",
  25787. height: math.unit(50, "meters"),
  25788. default: true
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(30, "m"),
  25797. weight: math.unit(22, "tonnes"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/elio/front.svg",
  25801. extra: 4582 / 3720,
  25802. bottom: 236 / 4828
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(30, "meters"),
  25810. default: true
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(6 + 3 / 12, "feet"),
  25819. weight: math.unit(120, "lb"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/azura/front.svg",
  25823. extra: 1149 / 1135,
  25824. bottom: 45 / 1194
  25825. }
  25826. },
  25827. frontClothed: {
  25828. height: math.unit(6 + 3 / 12, "feet"),
  25829. weight: math.unit(120, "lb"),
  25830. name: "Front (Clothed)",
  25831. image: {
  25832. source: "./media/characters/azura/front-clothed.svg",
  25833. extra: 1149 / 1135,
  25834. bottom: 45 / 1194
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Normal",
  25841. height: math.unit(6 + 3 / 12, "feet"),
  25842. default: true
  25843. },
  25844. {
  25845. name: "Macro",
  25846. height: math.unit(20 + 6 / 12, "feet")
  25847. },
  25848. {
  25849. name: "Megamacro",
  25850. height: math.unit(12, "miles")
  25851. },
  25852. {
  25853. name: "Gigamacro",
  25854. height: math.unit(10000, "miles")
  25855. },
  25856. {
  25857. name: "Teramacro",
  25858. height: math.unit(900000, "miles")
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(12, "feet"),
  25867. weight: math.unit(1, "ton"),
  25868. capacity: math.unit(660000, "gallons"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/zeus/front.svg",
  25872. extra: 5005 / 4717,
  25873. bottom: 363 / 5388
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(12, "feet")
  25881. },
  25882. {
  25883. name: "Preferred Size",
  25884. height: math.unit(0.5, "miles"),
  25885. default: true
  25886. },
  25887. {
  25888. name: "Giga Horse",
  25889. height: math.unit(300, "miles")
  25890. },
  25891. {
  25892. name: "Riding Planets",
  25893. height: math.unit(30, "megameters")
  25894. },
  25895. {
  25896. name: "Cosmic Giant",
  25897. height: math.unit(3, "zettameters")
  25898. },
  25899. {
  25900. name: "Breeding God",
  25901. height: math.unit(9.92e22, "yottameters")
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25907. {
  25908. side: {
  25909. height: math.unit(9, "feet"),
  25910. weight: math.unit(1500, "kg"),
  25911. name: "Side",
  25912. image: {
  25913. source: "./media/characters/fang/side.svg",
  25914. extra: 924 / 866,
  25915. bottom: 47.5 / 972.3
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(9, "feet"),
  25923. default: true
  25924. },
  25925. {
  25926. name: "Macro",
  25927. height: math.unit(75 + 6 / 12, "feet")
  25928. },
  25929. {
  25930. name: "Teramacro",
  25931. height: math.unit(50000, "miles")
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(10, "feet"),
  25940. weight: math.unit(2, "tons"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/rekhit/front.svg",
  25944. extra: 2796 / 2590,
  25945. bottom: 225 / 3022
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(10, "feet"),
  25953. default: true
  25954. },
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(500, "feet")
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(7 + 6.451 / 12, "feet"),
  25966. weight: math.unit(310, "lb"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/dahlia-verrick/front.svg",
  25970. extra: 1488 / 1365,
  25971. bottom: 6.2 / 1495
  25972. }
  25973. },
  25974. back: {
  25975. height: math.unit(7 + 6.451 / 12, "feet"),
  25976. weight: math.unit(310, "lb"),
  25977. name: "Back",
  25978. image: {
  25979. source: "./media/characters/dahlia-verrick/back.svg",
  25980. extra: 1472 / 1351,
  25981. bottom: 5.28 / 1477
  25982. }
  25983. },
  25984. frontBusiness: {
  25985. height: math.unit(7 + 6.451 / 12, "feet"),
  25986. weight: math.unit(200, "lb"),
  25987. name: "Front (Business)",
  25988. image: {
  25989. source: "./media/characters/dahlia-verrick/front-business.svg",
  25990. extra: 1478 / 1381,
  25991. bottom: 5.5 / 1484
  25992. }
  25993. },
  25994. frontCasual: {
  25995. height: math.unit(7 + 6.451 / 12, "feet"),
  25996. weight: math.unit(200, "lb"),
  25997. name: "Front (Casual)",
  25998. image: {
  25999. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26000. extra: 1478 / 1381,
  26001. bottom: 5.5 / 1484
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Travel-Sized",
  26008. height: math.unit(7.45, "inches")
  26009. },
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(7 + 6.451 / 12, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Hitting the Town",
  26017. height: math.unit(37 + 8 / 12, "feet")
  26018. },
  26019. {
  26020. name: "Stomp in the Suburbs",
  26021. height: math.unit(964 + 9.728 / 12, "feet")
  26022. },
  26023. {
  26024. name: "Sit on the City",
  26025. height: math.unit(61747 + 10.592 / 12, "feet")
  26026. },
  26027. {
  26028. name: "Glomp the Globe",
  26029. height: math.unit(252919327 + 4.832 / 12, "feet")
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26035. {
  26036. front: {
  26037. height: math.unit(6 + 4 / 12, "feet"),
  26038. weight: math.unit(320, "lb"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/balina-mahigan/front.svg",
  26042. extra: 447 / 428,
  26043. bottom: 18 / 466
  26044. }
  26045. },
  26046. back: {
  26047. height: math.unit(6 + 4 / 12, "feet"),
  26048. weight: math.unit(320, "lb"),
  26049. name: "Back",
  26050. image: {
  26051. source: "./media/characters/balina-mahigan/back.svg",
  26052. extra: 445 / 428,
  26053. bottom: 4.07 / 448
  26054. }
  26055. },
  26056. arm: {
  26057. height: math.unit(1.88, "feet"),
  26058. name: "Arm",
  26059. image: {
  26060. source: "./media/characters/balina-mahigan/arm.svg"
  26061. }
  26062. },
  26063. backPort: {
  26064. height: math.unit(0.685, "feet"),
  26065. name: "Back Port",
  26066. image: {
  26067. source: "./media/characters/balina-mahigan/back-port.svg"
  26068. }
  26069. },
  26070. hoofpaw: {
  26071. height: math.unit(1.41, "feet"),
  26072. name: "Hoofpaw",
  26073. image: {
  26074. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26075. }
  26076. },
  26077. leftHandBack: {
  26078. height: math.unit(0.938, "feet"),
  26079. name: "Left Hand (Back)",
  26080. image: {
  26081. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26082. }
  26083. },
  26084. leftHandFront: {
  26085. height: math.unit(0.938, "feet"),
  26086. name: "Left Hand (Front)",
  26087. image: {
  26088. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26089. }
  26090. },
  26091. rightHandBack: {
  26092. height: math.unit(0.95, "feet"),
  26093. name: "Right Hand (Back)",
  26094. image: {
  26095. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26096. }
  26097. },
  26098. rightHandFront: {
  26099. height: math.unit(0.95, "feet"),
  26100. name: "Right Hand (Front)",
  26101. image: {
  26102. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Normal",
  26109. height: math.unit(6 + 4 / 12, "feet"),
  26110. default: true
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(6, "feet"),
  26119. weight: math.unit(320, "lb"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/balina-mejeri/front.svg",
  26123. extra: 517 / 488,
  26124. bottom: 44.2 / 561
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(6 + 4 / 12, "feet")
  26132. },
  26133. {
  26134. name: "Business",
  26135. height: math.unit(155, "feet"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26142. {
  26143. kneeling: {
  26144. height: math.unit(6 + 4 / 12, "feet"),
  26145. weight: math.unit(300 * 20, "lb"),
  26146. name: "Kneeling",
  26147. image: {
  26148. source: "./media/characters/balbarian/kneeling.svg",
  26149. extra: 922 / 862,
  26150. bottom: 42.4 / 965
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Normal",
  26157. height: math.unit(6 + 4 / 12, "feet")
  26158. },
  26159. {
  26160. name: "Treasured",
  26161. height: math.unit(18 + 9 / 12, "feet"),
  26162. default: true
  26163. },
  26164. {
  26165. name: "Macro",
  26166. height: math.unit(900, "feet")
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(6 + 4 / 12, "feet"),
  26175. weight: math.unit(325, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/balina-amarini/front.svg",
  26179. extra: 415 / 403,
  26180. bottom: 19 / 433.4
  26181. }
  26182. },
  26183. back: {
  26184. height: math.unit(6 + 4 / 12, "feet"),
  26185. weight: math.unit(325, "lb"),
  26186. name: "Back",
  26187. image: {
  26188. source: "./media/characters/balina-amarini/back.svg",
  26189. extra: 415 / 403,
  26190. bottom: 13.5 / 432
  26191. }
  26192. },
  26193. overdrive: {
  26194. height: math.unit(6 + 4 / 12, "feet"),
  26195. weight: math.unit(400, "lb"),
  26196. name: "Overdrive",
  26197. image: {
  26198. source: "./media/characters/balina-amarini/overdrive.svg",
  26199. extra: 269 / 259,
  26200. bottom: 12 / 282
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Boom",
  26207. height: math.unit(9 + 10 / 12, "feet"),
  26208. default: true
  26209. },
  26210. {
  26211. name: "Macro",
  26212. height: math.unit(280, "feet")
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26218. {
  26219. goddess: {
  26220. height: math.unit(600, "feet"),
  26221. weight: math.unit(2000000, "tons"),
  26222. name: "Goddess",
  26223. image: {
  26224. source: "./media/characters/lady-kubwa/goddess.svg",
  26225. extra: 1240.5 / 1223,
  26226. bottom: 22 / 1263
  26227. }
  26228. },
  26229. goddesser: {
  26230. height: math.unit(900, "feet"),
  26231. weight: math.unit(20000000, "lb"),
  26232. name: "Goddess-er",
  26233. image: {
  26234. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26235. extra: 899 / 888,
  26236. bottom: 12.6 / 912
  26237. }
  26238. },
  26239. },
  26240. [
  26241. {
  26242. name: "Macro",
  26243. height: math.unit(600, "feet"),
  26244. default: true
  26245. },
  26246. {
  26247. name: "Megamacro",
  26248. height: math.unit(250, "miles")
  26249. },
  26250. ]
  26251. ))
  26252. characterMakers.push(() => makeCharacter(
  26253. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26254. {
  26255. front: {
  26256. height: math.unit(7 + 7 / 12, "feet"),
  26257. weight: math.unit(250, "lb"),
  26258. name: "Front",
  26259. image: {
  26260. source: "./media/characters/tala-grovehorn/front.svg",
  26261. extra: 2636 / 2525,
  26262. bottom: 147 / 2781
  26263. }
  26264. },
  26265. back: {
  26266. height: math.unit(7 + 7 / 12, "feet"),
  26267. weight: math.unit(250, "lb"),
  26268. name: "Back",
  26269. image: {
  26270. source: "./media/characters/tala-grovehorn/back.svg",
  26271. extra: 2635 / 2539,
  26272. bottom: 100 / 2732.8
  26273. }
  26274. },
  26275. mouth: {
  26276. height: math.unit(1.15, "feet"),
  26277. name: "Mouth",
  26278. image: {
  26279. source: "./media/characters/tala-grovehorn/mouth.svg"
  26280. }
  26281. },
  26282. dick: {
  26283. height: math.unit(2.36, "feet"),
  26284. name: "Dick",
  26285. image: {
  26286. source: "./media/characters/tala-grovehorn/dick.svg"
  26287. }
  26288. },
  26289. slit: {
  26290. height: math.unit(0.61, "feet"),
  26291. name: "Slit",
  26292. image: {
  26293. source: "./media/characters/tala-grovehorn/slit.svg"
  26294. }
  26295. },
  26296. },
  26297. [
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26302. {
  26303. front: {
  26304. height: math.unit(7 + 7 / 12, "feet"),
  26305. weight: math.unit(225, "lb"),
  26306. name: "Front",
  26307. image: {
  26308. source: "./media/characters/epona/front.svg",
  26309. extra: 2445 / 2290,
  26310. bottom: 251 / 2696
  26311. }
  26312. },
  26313. back: {
  26314. height: math.unit(7 + 7 / 12, "feet"),
  26315. weight: math.unit(225, "lb"),
  26316. name: "Back",
  26317. image: {
  26318. source: "./media/characters/epona/back.svg",
  26319. extra: 2546 / 2408,
  26320. bottom: 44 / 2589
  26321. }
  26322. },
  26323. genitals: {
  26324. height: math.unit(1.5, "feet"),
  26325. name: "Genitals",
  26326. image: {
  26327. source: "./media/characters/epona/genitals.svg"
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(7 + 7 / 12, "feet"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(7, "feet"),
  26344. weight: math.unit(518, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/avia-bloodbourn/front.svg",
  26348. extra: 1466 / 1350,
  26349. bottom: 65 / 1527
  26350. }
  26351. },
  26352. },
  26353. [
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(9.35, "feet"),
  26361. weight: math.unit(600, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/amera/front.svg",
  26365. extra: 891 / 818,
  26366. bottom: 30 / 922.7
  26367. }
  26368. },
  26369. back: {
  26370. height: math.unit(9.35, "feet"),
  26371. weight: math.unit(600, "lb"),
  26372. name: "Back",
  26373. image: {
  26374. source: "./media/characters/amera/back.svg",
  26375. extra: 876 / 824,
  26376. bottom: 6.8 / 884
  26377. }
  26378. },
  26379. dick: {
  26380. height: math.unit(2.14, "feet"),
  26381. name: "Dick",
  26382. image: {
  26383. source: "./media/characters/amera/dick.svg"
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(9.35, "feet"),
  26391. default: true
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26397. {
  26398. kneeling: {
  26399. height: math.unit(3 + 4 / 12, "feet"),
  26400. weight: math.unit(90, "lb"),
  26401. name: "Kneeling",
  26402. image: {
  26403. source: "./media/characters/rosewen/kneeling.svg",
  26404. extra: 1835 / 1571,
  26405. bottom: 27.7 / 1862
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(3 + 4 / 12, "feet"),
  26413. default: true
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(5 + 10 / 12, "feet"),
  26422. weight: math.unit(200, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/sabah/front.svg",
  26426. extra: 849 / 763,
  26427. bottom: 33.9 / 881
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(5 + 10 / 12, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26441. {
  26442. front: {
  26443. height: math.unit(3 + 5 / 12, "feet"),
  26444. weight: math.unit(40, "kg"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/purple-flame/front.svg",
  26448. extra: 1577 / 1412,
  26449. bottom: 97 / 1694
  26450. }
  26451. },
  26452. frontDressed: {
  26453. height: math.unit(3 + 5 / 12, "feet"),
  26454. weight: math.unit(40, "kg"),
  26455. name: "Front (Dressed)",
  26456. image: {
  26457. source: "./media/characters/purple-flame/front-dressed.svg",
  26458. extra: 1577 / 1412,
  26459. bottom: 97 / 1694
  26460. }
  26461. },
  26462. headphones: {
  26463. height: math.unit(0.85, "feet"),
  26464. name: "Headphones",
  26465. image: {
  26466. source: "./media/characters/purple-flame/headphones.svg"
  26467. }
  26468. },
  26469. },
  26470. [
  26471. {
  26472. name: "Really Small",
  26473. height: math.unit(5, "cm")
  26474. },
  26475. {
  26476. name: "Micro",
  26477. height: math.unit(1 + 5 / 12, "feet")
  26478. },
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(3 + 5 / 12, "feet"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Minimacro",
  26486. height: math.unit(125, "feet")
  26487. },
  26488. {
  26489. name: "Macro",
  26490. height: math.unit(0.5, "miles")
  26491. },
  26492. {
  26493. name: "Megamacro",
  26494. height: math.unit(50, "miles")
  26495. },
  26496. {
  26497. name: "Gigantic",
  26498. height: math.unit(750, "miles")
  26499. },
  26500. {
  26501. name: "Planetary",
  26502. height: math.unit(15000, "miles")
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(14, "feet"),
  26511. weight: math.unit(959, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/arsenal/front.svg",
  26515. extra: 2357 / 2157,
  26516. bottom: 93 / 2458
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(14, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(6, "feet"),
  26533. weight: math.unit(150, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/adira/front.svg",
  26537. extra: 1078 / 1029,
  26538. bottom: 87 / 1166
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Micro",
  26545. height: math.unit(4, "inches"),
  26546. default: true
  26547. },
  26548. {
  26549. name: "Macro",
  26550. height: math.unit(50, "feet")
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(16, "feet"),
  26559. weight: math.unit(1000, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/grim/front.svg",
  26563. extra: 622 / 614,
  26564. bottom: 18.1 / 642
  26565. }
  26566. },
  26567. back: {
  26568. height: math.unit(16, "feet"),
  26569. weight: math.unit(1000, "lb"),
  26570. name: "Back",
  26571. image: {
  26572. source: "./media/characters/grim/back.svg",
  26573. extra: 610.6 / 602,
  26574. bottom: 40.8 / 652
  26575. }
  26576. },
  26577. hunched: {
  26578. height: math.unit(9.75, "feet"),
  26579. weight: math.unit(1000, "lb"),
  26580. name: "Hunched",
  26581. image: {
  26582. source: "./media/characters/grim/hunched.svg",
  26583. extra: 304 / 297,
  26584. bottom: 35.4 / 394
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(16, "feet"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(2.3, "meters"),
  26601. weight: math.unit(300, "lb"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/sinja/front-sfw.svg",
  26605. extra: 1393 / 1294,
  26606. bottom: 70 / 1463
  26607. }
  26608. },
  26609. frontNsfw: {
  26610. height: math.unit(2.3, "meters"),
  26611. weight: math.unit(300, "lb"),
  26612. name: "Front (NSFW)",
  26613. image: {
  26614. source: "./media/characters/sinja/front-nsfw.svg",
  26615. extra: 1393 / 1294,
  26616. bottom: 70 / 1463
  26617. }
  26618. },
  26619. back: {
  26620. height: math.unit(2.3, "meters"),
  26621. weight: math.unit(300, "lb"),
  26622. name: "Back",
  26623. image: {
  26624. source: "./media/characters/sinja/back.svg",
  26625. extra: 1393 / 1294,
  26626. bottom: 70 / 1463
  26627. }
  26628. },
  26629. head: {
  26630. height: math.unit(1.771, "feet"),
  26631. name: "Head",
  26632. image: {
  26633. source: "./media/characters/sinja/head.svg"
  26634. }
  26635. },
  26636. slit: {
  26637. height: math.unit(0.8, "feet"),
  26638. name: "Slit",
  26639. image: {
  26640. source: "./media/characters/sinja/slit.svg"
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(2.3, "meters")
  26648. },
  26649. {
  26650. name: "Macro",
  26651. height: math.unit(91, "meters"),
  26652. default: true
  26653. },
  26654. {
  26655. name: "Megamacro",
  26656. height: math.unit(91440, "meters")
  26657. },
  26658. {
  26659. name: "Gigamacro",
  26660. height: math.unit(60960000, "meters")
  26661. },
  26662. {
  26663. name: "Teramacro",
  26664. height: math.unit(9144000000, "meters")
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(1.7, "meters"),
  26673. weight: math.unit(130, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/kyu/front.svg",
  26677. extra: 415 / 395,
  26678. bottom: 5 / 420
  26679. }
  26680. },
  26681. head: {
  26682. height: math.unit(1.75, "feet"),
  26683. name: "Head",
  26684. image: {
  26685. source: "./media/characters/kyu/head.svg"
  26686. }
  26687. },
  26688. foot: {
  26689. height: math.unit(0.81, "feet"),
  26690. name: "Foot",
  26691. image: {
  26692. source: "./media/characters/kyu/foot.svg"
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(1.7, "meters")
  26700. },
  26701. {
  26702. name: "Macro",
  26703. height: math.unit(131, "feet"),
  26704. default: true
  26705. },
  26706. {
  26707. name: "Megamacro",
  26708. height: math.unit(91440, "meters")
  26709. },
  26710. {
  26711. name: "Gigamacro",
  26712. height: math.unit(60960000, "meters")
  26713. },
  26714. {
  26715. name: "Teramacro",
  26716. height: math.unit(9144000000, "meters")
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26722. {
  26723. front: {
  26724. height: math.unit(7 + 1 / 12, "feet"),
  26725. weight: math.unit(250, "lb"),
  26726. name: "Front",
  26727. image: {
  26728. source: "./media/characters/joey/front.svg",
  26729. extra: 1791 / 1537,
  26730. bottom: 28 / 1816
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Micro",
  26737. height: math.unit(3, "inches")
  26738. },
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(7 + 1 / 12, "feet"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(165, "cm"),
  26751. weight: math.unit(140, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/sam-evans/front.svg",
  26755. extra: 3417 / 3230,
  26756. bottom: 41.3 / 3417
  26757. }
  26758. },
  26759. frontSixTails: {
  26760. height: math.unit(165, "cm"),
  26761. weight: math.unit(140, "lb"),
  26762. name: "Front-six-tails",
  26763. image: {
  26764. source: "./media/characters/sam-evans/front-six-tails.svg",
  26765. extra: 3417 / 3230,
  26766. bottom: 41.3 / 3417
  26767. }
  26768. },
  26769. back: {
  26770. height: math.unit(165, "cm"),
  26771. weight: math.unit(140, "lb"),
  26772. name: "Back",
  26773. image: {
  26774. source: "./media/characters/sam-evans/back.svg",
  26775. extra: 3227 / 3032,
  26776. bottom: 6.8 / 3234
  26777. }
  26778. },
  26779. face: {
  26780. height: math.unit(0.68, "feet"),
  26781. name: "Face",
  26782. image: {
  26783. source: "./media/characters/sam-evans/face.svg"
  26784. }
  26785. },
  26786. },
  26787. [
  26788. {
  26789. name: "Normal",
  26790. height: math.unit(165, "cm"),
  26791. default: true
  26792. },
  26793. {
  26794. name: "Macro",
  26795. height: math.unit(100, "meters")
  26796. },
  26797. {
  26798. name: "Macro+",
  26799. height: math.unit(800, "meters")
  26800. },
  26801. {
  26802. name: "Macro++",
  26803. height: math.unit(3, "km")
  26804. },
  26805. {
  26806. name: "Macro+++",
  26807. height: math.unit(30, "km")
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(10, "feet"),
  26816. weight: math.unit(750, "lb"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/juliet-a/front.svg",
  26820. extra: 1766 / 1720,
  26821. bottom: 43 / 1809
  26822. }
  26823. },
  26824. back: {
  26825. height: math.unit(10, "feet"),
  26826. weight: math.unit(750, "lb"),
  26827. name: "Back",
  26828. image: {
  26829. source: "./media/characters/juliet-a/back.svg",
  26830. extra: 1781 / 1734,
  26831. bottom: 35 / 1810,
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(10, "feet"),
  26839. default: true
  26840. },
  26841. {
  26842. name: "Dragon Form",
  26843. height: math.unit(250, "feet")
  26844. },
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(1000, "feet")
  26848. },
  26849. {
  26850. name: "Megamacro",
  26851. height: math.unit(10000, "feet")
  26852. }
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26857. {
  26858. regular: {
  26859. height: math.unit(7 + 3 / 12, "feet"),
  26860. weight: math.unit(260, "lb"),
  26861. name: "Regular",
  26862. image: {
  26863. source: "./media/characters/wild/regular.svg",
  26864. extra: 97.45 / 92,
  26865. bottom: 6.8 / 104.3
  26866. }
  26867. },
  26868. biggums: {
  26869. height: math.unit(8 + 6 / 12, "feet"),
  26870. weight: math.unit(425, "lb"),
  26871. name: "Biggums",
  26872. image: {
  26873. source: "./media/characters/wild/biggums.svg",
  26874. extra: 97.45 / 92,
  26875. bottom: 7.5 / 132.34
  26876. }
  26877. },
  26878. mawRegular: {
  26879. height: math.unit(1.24, "feet"),
  26880. name: "Maw (Regular)",
  26881. image: {
  26882. source: "./media/characters/wild/maw.svg"
  26883. }
  26884. },
  26885. mawBiggums: {
  26886. height: math.unit(1.47, "feet"),
  26887. name: "Maw (Biggums)",
  26888. image: {
  26889. source: "./media/characters/wild/maw.svg"
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(7 + 3 / 12, "feet"),
  26897. default: true
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26903. {
  26904. front: {
  26905. height: math.unit(2.5, "meters"),
  26906. weight: math.unit(200, "kg"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/vidar/front.svg",
  26910. extra: 2994 / 2795,
  26911. bottom: 56 / 3061
  26912. }
  26913. },
  26914. back: {
  26915. height: math.unit(2.5, "meters"),
  26916. weight: math.unit(200, "kg"),
  26917. name: "Back",
  26918. image: {
  26919. source: "./media/characters/vidar/back.svg",
  26920. extra: 3131 / 2928,
  26921. bottom: 13.5 / 3141.5
  26922. }
  26923. },
  26924. feral: {
  26925. height: math.unit(2.5, "meters"),
  26926. weight: math.unit(2000, "kg"),
  26927. name: "Feral",
  26928. image: {
  26929. source: "./media/characters/vidar/feral.svg",
  26930. extra: 2790 / 1765,
  26931. bottom: 6 / 2796
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Normal",
  26938. height: math.unit(2.5, "meters"),
  26939. default: true
  26940. },
  26941. {
  26942. name: "Macro",
  26943. height: math.unit(100, "meters")
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26949. {
  26950. front: {
  26951. height: math.unit(5 + 9 / 12, "feet"),
  26952. weight: math.unit(120, "lb"),
  26953. name: "Front",
  26954. image: {
  26955. source: "./media/characters/ash/front.svg",
  26956. extra: 2189 / 1961,
  26957. bottom: 5.2 / 2194
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(5 + 9 / 12, "feet"),
  26965. default: true
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(9, "feet"),
  26974. weight: math.unit(10000, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/gygabite/front.svg",
  26978. bottom: 31.7 / 537.8,
  26979. extra: 505 / 370
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(9, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(12, "feet"),
  26996. weight: math.unit(35000, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/p0tat0/front.svg",
  27000. extra: 1065 / 921,
  27001. bottom: 55.7 / 1121.25
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(12, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27015. {
  27016. side: {
  27017. height: math.unit(6.5, "feet"),
  27018. weight: math.unit(800, "lb"),
  27019. name: "Side",
  27020. image: {
  27021. source: "./media/characters/dusk/side.svg",
  27022. extra: 615 / 373,
  27023. bottom: 53 / 664
  27024. }
  27025. },
  27026. sitting: {
  27027. height: math.unit(7, "feet"),
  27028. weight: math.unit(800, "lb"),
  27029. name: "Sitting",
  27030. image: {
  27031. source: "./media/characters/dusk/sitting.svg",
  27032. extra: 753 / 425,
  27033. bottom: 33 / 774
  27034. }
  27035. },
  27036. head: {
  27037. height: math.unit(6.1, "feet"),
  27038. name: "Head",
  27039. image: {
  27040. source: "./media/characters/dusk/head.svg"
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(7, "feet"),
  27048. default: true
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27054. {
  27055. front: {
  27056. height: math.unit(15, "feet"),
  27057. weight: math.unit(7000, "lb"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/jay-direwolf/front.svg",
  27061. extra: 1810 / 1732,
  27062. bottom: 66 / 1892
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(15, "feet"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(4 + 9 / 12, "feet"),
  27079. weight: math.unit(130, "lb"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/anchovie/front.svg",
  27083. extra: 382 / 350,
  27084. bottom: 25 / 409
  27085. }
  27086. },
  27087. back: {
  27088. height: math.unit(4 + 9 / 12, "feet"),
  27089. weight: math.unit(130, "lb"),
  27090. name: "Back",
  27091. image: {
  27092. source: "./media/characters/anchovie/back.svg",
  27093. extra: 385 / 352,
  27094. bottom: 16.6 / 402
  27095. }
  27096. },
  27097. frontDressed: {
  27098. height: math.unit(4 + 9 / 12, "feet"),
  27099. weight: math.unit(130, "lb"),
  27100. name: "Front (Dressed)",
  27101. image: {
  27102. source: "./media/characters/anchovie/front-dressed.svg",
  27103. extra: 382 / 350,
  27104. bottom: 25 / 409
  27105. }
  27106. },
  27107. backDressed: {
  27108. height: math.unit(4 + 9 / 12, "feet"),
  27109. weight: math.unit(130, "lb"),
  27110. name: "Back (Dressed)",
  27111. image: {
  27112. source: "./media/characters/anchovie/back-dressed.svg",
  27113. extra: 385 / 352,
  27114. bottom: 16.6 / 402
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Micro",
  27121. height: math.unit(6.4, "inches")
  27122. },
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(4 + 9 / 12, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(2, "meters"),
  27135. weight: math.unit(180, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/acidrenamon/front.svg",
  27139. extra: 987 / 890,
  27140. bottom: 22.8 / 1009
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(2, "meters"),
  27145. weight: math.unit(180, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/acidrenamon/back.svg",
  27149. extra: 983 / 891,
  27150. bottom: 8.4 / 992
  27151. }
  27152. },
  27153. head: {
  27154. height: math.unit(1.92, "feet"),
  27155. name: "Head",
  27156. image: {
  27157. source: "./media/characters/acidrenamon/head.svg"
  27158. }
  27159. },
  27160. rump: {
  27161. height: math.unit(1.72, "feet"),
  27162. name: "Rump",
  27163. image: {
  27164. source: "./media/characters/acidrenamon/rump.svg"
  27165. }
  27166. },
  27167. tail: {
  27168. height: math.unit(4.2, "feet"),
  27169. name: "Tail",
  27170. image: {
  27171. source: "./media/characters/acidrenamon/tail.svg"
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(2, "meters"),
  27179. default: true
  27180. },
  27181. {
  27182. name: "Minimacro",
  27183. height: math.unit(7, "meters")
  27184. },
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(200, "meters")
  27188. },
  27189. {
  27190. name: "Gigamacro",
  27191. height: math.unit(0.2, "earths")
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(6, "feet"),
  27200. weight: math.unit(150, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/kenzie-lee/front.svg",
  27204. extra: 1525 / 1465,
  27205. bottom: 45 / 1570
  27206. }
  27207. },
  27208. side: {
  27209. height: math.unit(6, "feet"),
  27210. weight: math.unit(150, "lb"),
  27211. name: "Side",
  27212. image: {
  27213. source: "./media/characters/kenzie-lee/side.svg",
  27214. extra: 5505 / 5383,
  27215. bottom: 60 / 5573
  27216. }
  27217. },
  27218. paw: {
  27219. height: math.unit(0.57, "feet"),
  27220. name: "Paw",
  27221. image: {
  27222. source: "./media/characters/kenzie-lee/paw.svg"
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(152, "feet"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "Megamacro",
  27234. height: math.unit(7, "miles")
  27235. },
  27236. {
  27237. name: "Gigamacro",
  27238. height: math.unit(8000, "miles")
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27244. {
  27245. side: {
  27246. height: math.unit(6, "feet"),
  27247. weight: math.unit(150, "lb"),
  27248. name: "Side",
  27249. image: {
  27250. source: "./media/characters/withers/side.svg",
  27251. extra: 1830 / 1728,
  27252. bottom: 96 / 1927
  27253. }
  27254. },
  27255. front: {
  27256. height: math.unit(6, "feet"),
  27257. weight: math.unit(150, "lb"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/withers/front.svg",
  27261. extra: 1514 / 1438,
  27262. bottom: 118 / 1632
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(168, "feet"),
  27270. default: true
  27271. },
  27272. {
  27273. name: "Megamacro",
  27274. height: math.unit(15, "miles")
  27275. }
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(6 + 7 / 12, "feet"),
  27283. weight: math.unit(250, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/nemoskii/front.svg",
  27287. extra: 2270 / 1734,
  27288. bottom: 86 / 2354
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(6 + 7 / 12, "feet"),
  27293. weight: math.unit(250, "lb"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/nemoskii/back.svg",
  27297. extra: 1845 / 1788,
  27298. bottom: 10.5 / 1852
  27299. }
  27300. },
  27301. head: {
  27302. height: math.unit(1.31, "feet"),
  27303. name: "Head",
  27304. image: {
  27305. source: "./media/characters/nemoskii/head.svg"
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Micro",
  27312. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27313. },
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(6 + 7 / 12, "feet"),
  27317. default: true
  27318. },
  27319. {
  27320. name: "Macro",
  27321. height: math.unit((6 + 7 / 12) * 150, "feet")
  27322. },
  27323. {
  27324. name: "Macro+",
  27325. height: math.unit((6 + 7 / 12) * 500, "feet")
  27326. },
  27327. {
  27328. name: "Megamacro",
  27329. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27330. },
  27331. ]
  27332. ))
  27333. characterMakers.push(() => makeCharacter(
  27334. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27335. {
  27336. front: {
  27337. height: math.unit(1, "mile"),
  27338. weight: math.unit(265261.9, "lb"),
  27339. name: "Front",
  27340. image: {
  27341. source: "./media/characters/shui/front.svg",
  27342. extra: 1633 / 1564,
  27343. bottom: 91.5 / 1726
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Macro",
  27350. height: math.unit(1, "mile"),
  27351. default: true
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27357. {
  27358. front: {
  27359. height: math.unit(12 + 6 / 12, "feet"),
  27360. weight: math.unit(1342, "lb"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/arokh-takakura/front.svg",
  27364. extra: 1089 / 1043,
  27365. bottom: 77.4 / 1176.7
  27366. }
  27367. },
  27368. back: {
  27369. height: math.unit(12 + 6 / 12, "feet"),
  27370. weight: math.unit(1342, "lb"),
  27371. name: "Back",
  27372. image: {
  27373. source: "./media/characters/arokh-takakura/back.svg",
  27374. extra: 1046 / 1019,
  27375. bottom: 102 / 1150
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Big",
  27382. height: math.unit(12 + 6 / 12, "feet"),
  27383. default: true
  27384. },
  27385. ]
  27386. ))
  27387. characterMakers.push(() => makeCharacter(
  27388. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27389. {
  27390. front: {
  27391. height: math.unit(5 + 6 / 12, "feet"),
  27392. weight: math.unit(150, "lb"),
  27393. name: "Front",
  27394. image: {
  27395. source: "./media/characters/theo/front.svg",
  27396. extra: 1184 / 1131,
  27397. bottom: 7.4 / 1191
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Micro",
  27404. height: math.unit(5, "inches")
  27405. },
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(5 + 6 / 12, "feet"),
  27409. default: true
  27410. },
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27415. {
  27416. front: {
  27417. height: math.unit(5 + 9 / 12, "feet"),
  27418. weight: math.unit(130, "lb"),
  27419. name: "Front",
  27420. image: {
  27421. source: "./media/characters/cecelia-swift/front.svg",
  27422. extra: 502 / 484,
  27423. bottom: 23 / 523
  27424. }
  27425. },
  27426. back: {
  27427. height: math.unit(5 + 9 / 12, "feet"),
  27428. weight: math.unit(130, "lb"),
  27429. name: "Back",
  27430. image: {
  27431. source: "./media/characters/cecelia-swift/back.svg",
  27432. extra: 499 / 485,
  27433. bottom: 12 / 511
  27434. }
  27435. },
  27436. head: {
  27437. height: math.unit(0.90, "feet"),
  27438. name: "Head",
  27439. image: {
  27440. source: "./media/characters/cecelia-swift/head.svg"
  27441. }
  27442. },
  27443. rump: {
  27444. height: math.unit(1.75, "feet"),
  27445. name: "Rump",
  27446. image: {
  27447. source: "./media/characters/cecelia-swift/rump.svg"
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(5 + 9 / 12, "feet"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Big",
  27459. height: math.unit(50, "feet")
  27460. },
  27461. {
  27462. name: "Macro",
  27463. height: math.unit(100, "feet")
  27464. },
  27465. {
  27466. name: "Macro+",
  27467. height: math.unit(500, "feet")
  27468. },
  27469. {
  27470. name: "Macro++",
  27471. height: math.unit(1000, "feet")
  27472. },
  27473. ]
  27474. ))
  27475. characterMakers.push(() => makeCharacter(
  27476. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27477. {
  27478. front: {
  27479. height: math.unit(6, "feet"),
  27480. weight: math.unit(150, "lb"),
  27481. name: "Front",
  27482. image: {
  27483. source: "./media/characters/kaunan/front.svg",
  27484. extra: 2890 / 2523,
  27485. bottom: 49 / 2939
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Macro",
  27492. height: math.unit(150, "feet"),
  27493. default: true
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(175, "cm"),
  27502. weight: math.unit(60, "kg"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/fei/front.svg",
  27506. extra: 1873/1723,
  27507. bottom: 53/1926
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Mortal",
  27514. height: math.unit(175, "cm")
  27515. },
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(3500, "m"),
  27519. default: true
  27520. },
  27521. {
  27522. name: "Stroll",
  27523. height: math.unit(17.5, "km")
  27524. },
  27525. {
  27526. name: "Showoff",
  27527. height: math.unit(175, "km")
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27533. {
  27534. front: {
  27535. height: math.unit(7, "feet"),
  27536. weight: math.unit(1000, "kg"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/edrax/front.svg",
  27540. extra: 2838 / 2550,
  27541. bottom: 130 / 2968
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Small",
  27548. height: math.unit(7, "feet")
  27549. },
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(1500, "meters")
  27553. },
  27554. {
  27555. name: "Mega",
  27556. height: math.unit(12000000, "km"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Megamacro",
  27561. height: math.unit(10600000, "lightyears")
  27562. },
  27563. {
  27564. name: "Hypermacro",
  27565. height: math.unit(256, "yottameters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(10, "feet"),
  27574. weight: math.unit(750, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/clove/front.svg",
  27578. extra: 2031 / 1860,
  27579. bottom: 47.8 / 2080
  27580. }
  27581. },
  27582. back: {
  27583. height: math.unit(10, "feet"),
  27584. weight: math.unit(750, "lb"),
  27585. name: "Back",
  27586. image: {
  27587. source: "./media/characters/clove/back.svg",
  27588. extra: 2025 / 1859,
  27589. bottom: 46 / 2071
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(10, "feet"),
  27597. default: true
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27603. {
  27604. front: {
  27605. height: math.unit(4, "feet"),
  27606. weight: math.unit(50, "lb"),
  27607. name: "Front",
  27608. image: {
  27609. source: "./media/characters/alex-rabbit/front.svg",
  27610. extra: 507 / 458,
  27611. bottom: 18.5 / 527
  27612. }
  27613. },
  27614. back: {
  27615. height: math.unit(4, "feet"),
  27616. weight: math.unit(50, "lb"),
  27617. name: "Back",
  27618. image: {
  27619. source: "./media/characters/alex-rabbit/back.svg",
  27620. extra: 502 / 460,
  27621. bottom: 18.9 / 521
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(4, "feet"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(1 + 3 / 12, "feet"),
  27638. weight: math.unit(80, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/zander-rose/front.svg",
  27642. extra: 916 / 797,
  27643. bottom: 17 / 933
  27644. }
  27645. },
  27646. back: {
  27647. height: math.unit(1 + 3 / 12, "feet"),
  27648. weight: math.unit(80, "lb"),
  27649. name: "Back",
  27650. image: {
  27651. source: "./media/characters/zander-rose/back.svg",
  27652. extra: 903 / 779,
  27653. bottom: 31 / 934
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Normal",
  27660. height: math.unit(1 + 3 / 12, "feet"),
  27661. default: true
  27662. },
  27663. ]
  27664. ))
  27665. characterMakers.push(() => makeCharacter(
  27666. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27667. {
  27668. anthro: {
  27669. height: math.unit(6, "feet"),
  27670. weight: math.unit(150, "lb"),
  27671. name: "Anthro",
  27672. image: {
  27673. source: "./media/characters/razz/anthro.svg",
  27674. extra: 1437 / 1343,
  27675. bottom: 48 / 1485
  27676. }
  27677. },
  27678. feral: {
  27679. height: math.unit(6, "feet"),
  27680. weight: math.unit(150, "lb"),
  27681. name: "Feral",
  27682. image: {
  27683. source: "./media/characters/razz/feral.svg",
  27684. extra: 2569 / 1385,
  27685. bottom: 95 / 2664
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(6, "feet"),
  27693. default: true
  27694. },
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27699. {
  27700. front: {
  27701. height: math.unit(9 + 4 / 12, "feet"),
  27702. weight: math.unit(500, "lb"),
  27703. name: "Front",
  27704. image: {
  27705. source: "./media/characters/morrigan/front.svg",
  27706. extra: 2707 / 2579,
  27707. bottom: 156 / 2863
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Normal",
  27714. height: math.unit(9 + 4 / 12, "feet"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(5, "stories"),
  27724. weight: math.unit(4000, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/jenene/front.svg",
  27728. extra: 1780 / 1710,
  27729. bottom: 57 / 1837
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(5, "stories"),
  27737. default: true
  27738. },
  27739. ]
  27740. ))
  27741. characterMakers.push(() => makeCharacter(
  27742. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27743. {
  27744. taurSfw: {
  27745. height: math.unit(10, "meters"),
  27746. weight: math.unit(17500, "kg"),
  27747. name: "Taur",
  27748. image: {
  27749. source: "./media/characters/faey/taur-sfw.svg",
  27750. extra: 1200 / 968,
  27751. bottom: 41 / 1241
  27752. }
  27753. },
  27754. chestmaw: {
  27755. height: math.unit(2.01, "meters"),
  27756. name: "Chestmaw",
  27757. image: {
  27758. source: "./media/characters/faey/chestmaw.svg"
  27759. }
  27760. },
  27761. foot: {
  27762. height: math.unit(2.43, "meters"),
  27763. name: "Foot",
  27764. image: {
  27765. source: "./media/characters/faey/foot.svg"
  27766. }
  27767. },
  27768. jaws: {
  27769. height: math.unit(1.66, "meters"),
  27770. name: "Jaws",
  27771. image: {
  27772. source: "./media/characters/faey/jaws.svg"
  27773. }
  27774. },
  27775. tongues: {
  27776. height: math.unit(2.01, "meters"),
  27777. name: "Tongues",
  27778. image: {
  27779. source: "./media/characters/faey/tongues.svg"
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Small",
  27786. height: math.unit(10, "meters"),
  27787. default: true
  27788. },
  27789. {
  27790. name: "Big",
  27791. height: math.unit(500000, "km")
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(7, "feet"),
  27800. weight: math.unit(275, "lb"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/roku/front.svg",
  27804. extra: 903 / 878,
  27805. bottom: 37 / 940
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Normal",
  27812. height: math.unit(7, "feet"),
  27813. default: true
  27814. },
  27815. {
  27816. name: "Macro",
  27817. height: math.unit(500, "feet")
  27818. },
  27819. {
  27820. name: "Megamacro",
  27821. height: math.unit(200, "miles")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(6 + 2 / 12, "feet"),
  27830. weight: math.unit(150, "lb"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/lira/front.svg",
  27834. extra: 1727 / 1605,
  27835. bottom: 26 / 1753
  27836. }
  27837. },
  27838. back: {
  27839. height: math.unit(6 + 2 / 12, "feet"),
  27840. weight: math.unit(150, "lb"),
  27841. name: "Back",
  27842. image: {
  27843. source: "./media/characters/lira/back.svg",
  27844. extra: 1713/1621,
  27845. bottom: 20/1733
  27846. }
  27847. },
  27848. hand: {
  27849. height: math.unit(0.75, "feet"),
  27850. name: "Hand",
  27851. image: {
  27852. source: "./media/characters/lira/hand.svg"
  27853. }
  27854. },
  27855. maw: {
  27856. height: math.unit(0.65, "feet"),
  27857. name: "Maw",
  27858. image: {
  27859. source: "./media/characters/lira/maw.svg"
  27860. }
  27861. },
  27862. pawDigi: {
  27863. height: math.unit(1.6, "feet"),
  27864. name: "Paw Digi",
  27865. image: {
  27866. source: "./media/characters/lira/paw-digi.svg"
  27867. }
  27868. },
  27869. pawPlanti: {
  27870. height: math.unit(1.4, "feet"),
  27871. name: "Paw Planti",
  27872. image: {
  27873. source: "./media/characters/lira/paw-planti.svg"
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(6 + 2 / 12, "feet"),
  27881. default: true
  27882. },
  27883. {
  27884. name: "Macro",
  27885. height: math.unit(100, "feet")
  27886. },
  27887. {
  27888. name: "Macro²",
  27889. height: math.unit(1600, "feet")
  27890. },
  27891. {
  27892. name: "Planetary",
  27893. height: math.unit(20, "earths")
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27899. {
  27900. front: {
  27901. height: math.unit(6, "feet"),
  27902. weight: math.unit(150, "lb"),
  27903. name: "Front",
  27904. image: {
  27905. source: "./media/characters/hadjet/front.svg",
  27906. extra: 1480 / 1346,
  27907. bottom: 26 / 1506
  27908. }
  27909. },
  27910. frontNsfw: {
  27911. height: math.unit(6, "feet"),
  27912. weight: math.unit(150, "lb"),
  27913. name: "Front (NSFW)",
  27914. image: {
  27915. source: "./media/characters/hadjet/front-nsfw.svg",
  27916. extra: 1440 / 1358,
  27917. bottom: 52 / 1492
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Macro",
  27924. height: math.unit(10, "stories"),
  27925. default: true
  27926. },
  27927. {
  27928. name: "Megamacro",
  27929. height: math.unit(1.5, "miles")
  27930. },
  27931. {
  27932. name: "Megamacro+",
  27933. height: math.unit(5, "miles")
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27939. {
  27940. side: {
  27941. height: math.unit(106, "feet"),
  27942. weight: math.unit(500, "tonnes"),
  27943. name: "Side",
  27944. image: {
  27945. source: "./media/characters/kodran/side.svg",
  27946. extra: 553 / 480,
  27947. bottom: 33 / 586
  27948. }
  27949. },
  27950. front: {
  27951. height: math.unit(132, "feet"),
  27952. weight: math.unit(500, "tonnes"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/kodran/front.svg",
  27956. extra: 667 / 643,
  27957. bottom: 42 / 709
  27958. }
  27959. },
  27960. flying: {
  27961. height: math.unit(350, "feet"),
  27962. weight: math.unit(500, "tonnes"),
  27963. name: "Flying",
  27964. image: {
  27965. source: "./media/characters/kodran/flying.svg"
  27966. }
  27967. },
  27968. foot: {
  27969. height: math.unit(33, "feet"),
  27970. name: "Foot",
  27971. image: {
  27972. source: "./media/characters/kodran/foot.svg"
  27973. }
  27974. },
  27975. footFront: {
  27976. height: math.unit(19, "feet"),
  27977. name: "Foot (Front)",
  27978. image: {
  27979. source: "./media/characters/kodran/foot-front.svg",
  27980. extra: 261 / 261,
  27981. bottom: 91 / 352
  27982. }
  27983. },
  27984. headFront: {
  27985. height: math.unit(53, "feet"),
  27986. name: "Head (Front)",
  27987. image: {
  27988. source: "./media/characters/kodran/head-front.svg"
  27989. }
  27990. },
  27991. headSide: {
  27992. height: math.unit(65, "feet"),
  27993. name: "Head (Side)",
  27994. image: {
  27995. source: "./media/characters/kodran/head-side.svg"
  27996. }
  27997. },
  27998. throat: {
  27999. height: math.unit(79, "feet"),
  28000. name: "Throat",
  28001. image: {
  28002. source: "./media/characters/kodran/throat.svg"
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Large",
  28009. height: math.unit(106, "feet"),
  28010. default: true
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28016. {
  28017. side: {
  28018. height: math.unit(11, "feet"),
  28019. weight: math.unit(150, "lb"),
  28020. name: "Side",
  28021. image: {
  28022. source: "./media/characters/pyxaron/side.svg",
  28023. extra: 305 / 195,
  28024. bottom: 17 / 322
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(11, "feet"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(6, "feet"),
  28041. weight: math.unit(150, "lb"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/meep/front.svg",
  28045. extra: 88 / 80,
  28046. bottom: 6 / 94
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Fun Sized",
  28053. height: math.unit(2, "inches"),
  28054. default: true
  28055. },
  28056. {
  28057. name: "Friend Sized",
  28058. height: math.unit(8, "inches")
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(15, "feet"),
  28067. weight: math.unit(2500, "lb"),
  28068. name: "Front",
  28069. image: {
  28070. source: "./media/characters/holly-rabbit/front.svg",
  28071. extra: 1433 / 1233,
  28072. bottom: 125 / 1558
  28073. }
  28074. },
  28075. dick: {
  28076. height: math.unit(4.6, "feet"),
  28077. name: "Dick",
  28078. image: {
  28079. source: "./media/characters/holly-rabbit/dick.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(15, "feet"),
  28087. default: true
  28088. },
  28089. {
  28090. name: "Macro",
  28091. height: math.unit(250, "feet")
  28092. },
  28093. {
  28094. name: "Macro+",
  28095. height: math.unit(2500, "feet")
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(3.02, "meters"),
  28104. weight: math.unit(500, "kg"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/drena/front.svg",
  28108. extra: 282 / 243,
  28109. bottom: 8 / 290
  28110. }
  28111. },
  28112. side: {
  28113. height: math.unit(3.02, "meters"),
  28114. weight: math.unit(500, "kg"),
  28115. name: "Side",
  28116. image: {
  28117. source: "./media/characters/drena/side.svg",
  28118. extra: 280 / 245,
  28119. bottom: 10 / 290
  28120. }
  28121. },
  28122. back: {
  28123. height: math.unit(3.02, "meters"),
  28124. weight: math.unit(500, "kg"),
  28125. name: "Back",
  28126. image: {
  28127. source: "./media/characters/drena/back.svg",
  28128. extra: 278 / 243,
  28129. bottom: 2 / 280
  28130. }
  28131. },
  28132. foot: {
  28133. height: math.unit(0.75, "meters"),
  28134. name: "Foot",
  28135. image: {
  28136. source: "./media/characters/drena/foot.svg"
  28137. }
  28138. },
  28139. maw: {
  28140. height: math.unit(0.82, "meters"),
  28141. name: "Maw",
  28142. image: {
  28143. source: "./media/characters/drena/maw.svg"
  28144. }
  28145. },
  28146. rump: {
  28147. height: math.unit(0.93, "meters"),
  28148. name: "Rump",
  28149. image: {
  28150. source: "./media/characters/drena/rump.svg"
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(3.02, "meters"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(6 + 4 / 12, "feet"),
  28167. weight: math.unit(250, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/remmyzilla/front.svg",
  28171. extra: 4033 / 3588,
  28172. bottom: 123 / 4156
  28173. }
  28174. },
  28175. back: {
  28176. height: math.unit(6 + 4 / 12, "feet"),
  28177. weight: math.unit(250, "lb"),
  28178. name: "Back",
  28179. image: {
  28180. source: "./media/characters/remmyzilla/back.svg",
  28181. extra: 2687 / 2555,
  28182. bottom: 48 / 2735
  28183. }
  28184. },
  28185. paw: {
  28186. height: math.unit(1.73, "feet"),
  28187. name: "Paw",
  28188. image: {
  28189. source: "./media/characters/remmyzilla/paw.svg"
  28190. }
  28191. },
  28192. maw: {
  28193. height: math.unit(1.73, "feet"),
  28194. name: "Maw",
  28195. image: {
  28196. source: "./media/characters/remmyzilla/maw.svg"
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(6 + 4 / 12, "feet")
  28204. },
  28205. {
  28206. name: "Minimacro",
  28207. height: math.unit(12 + 8 / 12, "feet")
  28208. },
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(640, "feet"),
  28212. default: true
  28213. },
  28214. {
  28215. name: "Megamacro",
  28216. height: math.unit(6400, "feet")
  28217. },
  28218. {
  28219. name: "Gigamacro",
  28220. height: math.unit(64000, "miles")
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(2.5, "meters"),
  28229. weight: math.unit(300, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/lawrence/front.svg",
  28233. extra: 357 / 335,
  28234. bottom: 30 / 387
  28235. }
  28236. },
  28237. back: {
  28238. height: math.unit(2.5, "meters"),
  28239. weight: math.unit(300, "lb"),
  28240. name: "Back",
  28241. image: {
  28242. source: "./media/characters/lawrence/back.svg",
  28243. extra: 357 / 338,
  28244. bottom: 16 / 373
  28245. }
  28246. },
  28247. head: {
  28248. height: math.unit(0.9, "meter"),
  28249. name: "Head",
  28250. image: {
  28251. source: "./media/characters/lawrence/head.svg"
  28252. }
  28253. },
  28254. maw: {
  28255. height: math.unit(0.7, "meter"),
  28256. name: "Maw",
  28257. image: {
  28258. source: "./media/characters/lawrence/maw.svg"
  28259. }
  28260. },
  28261. footBottom: {
  28262. height: math.unit(0.5, "meter"),
  28263. name: "Foot (Bottom)",
  28264. image: {
  28265. source: "./media/characters/lawrence/foot-bottom.svg"
  28266. }
  28267. },
  28268. footTop: {
  28269. height: math.unit(0.5, "meter"),
  28270. name: "Foot (Top)",
  28271. image: {
  28272. source: "./media/characters/lawrence/foot-top.svg"
  28273. }
  28274. },
  28275. },
  28276. [
  28277. {
  28278. name: "Normal",
  28279. height: math.unit(2.5, "meters"),
  28280. default: true
  28281. },
  28282. {
  28283. name: "Macro",
  28284. height: math.unit(95, "meters")
  28285. },
  28286. {
  28287. name: "Megamacro",
  28288. height: math.unit(150, "km")
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28294. {
  28295. front: {
  28296. height: math.unit(4.2, "meters"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/sydney/front.svg",
  28300. extra: 1323 / 1277,
  28301. bottom: 111 / 1434
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(4.2, "meters"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28315. {
  28316. back: {
  28317. height: math.unit(201, "feet"),
  28318. name: "Back",
  28319. image: {
  28320. source: "./media/characters/jessica/back.svg",
  28321. extra: 273 / 259,
  28322. bottom: 7 / 280
  28323. }
  28324. },
  28325. },
  28326. [
  28327. {
  28328. name: "Normal",
  28329. height: math.unit(201, "feet"),
  28330. default: true
  28331. },
  28332. {
  28333. name: "Megamacro",
  28334. height: math.unit(8, "miles")
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28340. {
  28341. side: {
  28342. height: math.unit(320, "cm"),
  28343. name: "Side",
  28344. image: {
  28345. source: "./media/characters/victoria/side.svg",
  28346. extra: 778 / 346,
  28347. bottom: 56 / 834
  28348. }
  28349. },
  28350. maw: {
  28351. height: math.unit(5.9, "feet"),
  28352. name: "Maw",
  28353. image: {
  28354. source: "./media/characters/victoria/maw.svg"
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(320, "cm"),
  28362. default: true
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28368. {
  28369. front: {
  28370. height: math.unit(5 + 6 / 12, "feet"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/cat/front.svg",
  28374. extra: 1374 / 1257,
  28375. bottom: 59 / 1433
  28376. }
  28377. },
  28378. back: {
  28379. height: math.unit(5 + 6 / 12, "feet"),
  28380. name: "Back",
  28381. image: {
  28382. source: "./media/characters/cat/back.svg",
  28383. extra: 1337 / 1226,
  28384. bottom: 34 / 1371
  28385. }
  28386. },
  28387. taur: {
  28388. height: math.unit(7, "feet"),
  28389. name: "Taur",
  28390. image: {
  28391. source: "./media/characters/cat/taur.svg",
  28392. extra: 1345 / 1231,
  28393. bottom: 66 / 1411
  28394. }
  28395. },
  28396. lucario: {
  28397. height: math.unit(4, "feet"),
  28398. name: "Lucario",
  28399. image: {
  28400. source: "./media/characters/cat/lucario.svg",
  28401. extra: 1470 / 1318,
  28402. bottom: 65 / 1535
  28403. }
  28404. },
  28405. megaLucario: {
  28406. height: math.unit(4, "feet"),
  28407. name: "Mega Lucario",
  28408. image: {
  28409. source: "./media/characters/cat/mega-lucario.svg",
  28410. extra: 1515 / 1319,
  28411. bottom: 63 / 1578
  28412. }
  28413. },
  28414. nickit: {
  28415. height: math.unit(2, "feet"),
  28416. name: "Nickit",
  28417. image: {
  28418. source: "./media/characters/cat/nickit.svg",
  28419. extra: 1980 / 1585,
  28420. bottom: 102 / 2082
  28421. }
  28422. },
  28423. lopunnyFront: {
  28424. height: math.unit(5, "feet"),
  28425. name: "Lopunny (Front)",
  28426. image: {
  28427. source: "./media/characters/cat/lopunny-front.svg",
  28428. extra: 1782 / 1469,
  28429. bottom: 38 / 1820
  28430. }
  28431. },
  28432. lopunnyBack: {
  28433. height: math.unit(5, "feet"),
  28434. name: "Lopunny (Back)",
  28435. image: {
  28436. source: "./media/characters/cat/lopunny-back.svg",
  28437. extra: 1660 / 1490,
  28438. bottom: 25 / 1685
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Really small",
  28445. height: math.unit(1, "nm")
  28446. },
  28447. {
  28448. name: "Micro",
  28449. height: math.unit(5, "inches")
  28450. },
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(5 + 6 / 12, "feet"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Macro",
  28458. height: math.unit(50, "feet")
  28459. },
  28460. {
  28461. name: "Macro+",
  28462. height: math.unit(150, "feet")
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(100, "miles")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(63.4, "meters"),
  28475. weight: math.unit(3.28349e+6, "kilograms"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/kirina-violet/front.svg",
  28479. extra: 2812 / 2725,
  28480. bottom: 0 / 2812
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(63.4, "meters"),
  28485. weight: math.unit(3.28349e+6, "kilograms"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/kirina-violet/back.svg",
  28489. extra: 2812 / 2725,
  28490. bottom: 0 / 2812
  28491. }
  28492. },
  28493. mouth: {
  28494. height: math.unit(4.35, "meters"),
  28495. name: "Mouth",
  28496. image: {
  28497. source: "./media/characters/kirina-violet/mouth.svg"
  28498. }
  28499. },
  28500. paw: {
  28501. height: math.unit(5.6, "meters"),
  28502. name: "Paw",
  28503. image: {
  28504. source: "./media/characters/kirina-violet/paw.svg"
  28505. }
  28506. },
  28507. tail: {
  28508. height: math.unit(18, "meters"),
  28509. name: "Tail",
  28510. image: {
  28511. source: "./media/characters/kirina-violet/tail.svg"
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Macro",
  28518. height: math.unit(63.4, "meters"),
  28519. default: true
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(75, "feet"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/cat-gigachu/front.svg",
  28531. extra: 1239/1027,
  28532. bottom: 32/1271
  28533. }
  28534. },
  28535. back: {
  28536. height: math.unit(75, "feet"),
  28537. name: "Back",
  28538. image: {
  28539. source: "./media/characters/cat-gigachu/back.svg",
  28540. extra: 1229/1030,
  28541. bottom: 9/1238
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Dynamax",
  28548. height: math.unit(75, "feet"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(6, "feet"),
  28558. weight: math.unit(150, "lb"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/sfaiyan/front.svg",
  28562. extra: 999 / 978,
  28563. bottom: 5 / 1004
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(1.82, "meters")
  28571. },
  28572. {
  28573. name: "Giant",
  28574. height: math.unit(2.27, "km"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(179, "cm"),
  28584. weight: math.unit(100, "kg"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/raunehkeli/front.svg",
  28588. extra: 1934 / 1926,
  28589. bottom: 0 / 1934
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(179, "cm")
  28597. },
  28598. {
  28599. name: "Maximum",
  28600. height: math.unit(575, "meters"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(6, "feet"),
  28610. weight: math.unit(150, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28614. extra: 2625 / 2518,
  28615. bottom: 60 / 2685
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(6 + 2 / 12, "feet")
  28623. },
  28624. {
  28625. name: "Macro",
  28626. height: math.unit(1180, "feet"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(5 + 6 / 12, "feet"),
  28636. weight: math.unit(108, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/lilith-zott/front.svg",
  28640. extra: 2510 / 2238,
  28641. bottom: 100 / 2610
  28642. }
  28643. },
  28644. frontDressed: {
  28645. height: math.unit(5 + 6 / 12, "feet"),
  28646. weight: math.unit(108, "lb"),
  28647. name: "Front (Dressed)",
  28648. image: {
  28649. source: "./media/characters/lilith-zott/front-dressed.svg",
  28650. extra: 2510 / 2238,
  28651. bottom: 100 / 2610
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(5 + 6 / 12, "feet")
  28659. },
  28660. {
  28661. name: "Macro",
  28662. height: math.unit(1030, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(6, "feet"),
  28672. weight: math.unit(150, "lb"),
  28673. name: "Front",
  28674. image: {
  28675. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28676. extra: 2567 / 2435,
  28677. bottom: 39 / 2606
  28678. }
  28679. },
  28680. frontSuper: {
  28681. height: math.unit(6, "feet"),
  28682. name: "Front (Super)",
  28683. image: {
  28684. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28685. extra: 2567 / 2435,
  28686. bottom: 39 / 2606
  28687. }
  28688. },
  28689. },
  28690. [
  28691. {
  28692. name: "Normal",
  28693. height: math.unit(5 + 10 / 12, "feet")
  28694. },
  28695. {
  28696. name: "Macro",
  28697. height: math.unit(1100, "feet"),
  28698. default: true
  28699. },
  28700. ]
  28701. ))
  28702. characterMakers.push(() => makeCharacter(
  28703. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28704. {
  28705. front: {
  28706. height: math.unit(100, "miles"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/sona/front.svg",
  28710. extra: 2433 / 2201,
  28711. bottom: 53 / 2486
  28712. }
  28713. },
  28714. foot: {
  28715. height: math.unit(16.1, "miles"),
  28716. name: "Foot",
  28717. image: {
  28718. source: "./media/characters/sona/foot.svg"
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Macro",
  28725. height: math.unit(100, "miles"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(6, "feet"),
  28735. weight: math.unit(150, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/bailey/front.svg",
  28739. extra: 1778 / 1724,
  28740. bottom: 30 / 1808
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Micro",
  28747. height: math.unit(4, "inches")
  28748. },
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(5 + 5 / 12, "feet"),
  28752. default: true
  28753. },
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(250, "feet")
  28757. },
  28758. {
  28759. name: "Megamacro",
  28760. height: math.unit(100, "miles")
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(5 + 2 / 12, "feet"),
  28769. weight: math.unit(120, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/snaps/front.svg",
  28773. extra: 2370 / 2177,
  28774. bottom: 48 / 2418
  28775. }
  28776. },
  28777. back: {
  28778. height: math.unit(5 + 2 / 12, "feet"),
  28779. weight: math.unit(120, "lb"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/snaps/back.svg",
  28783. extra: 2408 / 2258,
  28784. bottom: 15 / 2423
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Micro",
  28791. height: math.unit(9, "inches")
  28792. },
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(5 + 2 / 12, "feet"),
  28796. default: true
  28797. },
  28798. {
  28799. name: "Mini Macro",
  28800. height: math.unit(10, "feet")
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(1.8, "meters"),
  28809. weight: math.unit(85, "kg"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/azteck/front.svg",
  28813. extra: 2815 / 2625,
  28814. bottom: 89 / 2904
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(1.8, "meters"),
  28819. weight: math.unit(85, "kg"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/azteck/back.svg",
  28823. extra: 2856 / 2648,
  28824. bottom: 85 / 2941
  28825. }
  28826. },
  28827. frontDressed: {
  28828. height: math.unit(1.8, "meters"),
  28829. weight: math.unit(85, "kg"),
  28830. name: "Front (Dressed)",
  28831. image: {
  28832. source: "./media/characters/azteck/front-dressed.svg",
  28833. extra: 2147 / 2003,
  28834. bottom: 68 / 2215
  28835. }
  28836. },
  28837. head: {
  28838. height: math.unit(0.47, "meters"),
  28839. weight: math.unit(85, "kg"),
  28840. name: "Head",
  28841. image: {
  28842. source: "./media/characters/azteck/head.svg"
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Bite sized",
  28849. height: math.unit(16, "cm")
  28850. },
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(1.8, "meters"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28860. {
  28861. front: {
  28862. height: math.unit(6, "feet"),
  28863. weight: math.unit(150, "lb"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/pidge/front.svg",
  28867. extra: 620 / 588,
  28868. bottom: 9 / 629
  28869. }
  28870. },
  28871. back: {
  28872. height: math.unit(6, "feet"),
  28873. weight: math.unit(150, "lb"),
  28874. name: "Back",
  28875. image: {
  28876. source: "./media/characters/pidge/back.svg",
  28877. extra: 620 / 588,
  28878. bottom: 9 / 629
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Macro",
  28885. height: math.unit(1, "mile"),
  28886. default: true
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(6, "feet"),
  28895. weight: math.unit(150, "lb"),
  28896. name: "Front",
  28897. image: {
  28898. source: "./media/characters/en/front.svg",
  28899. extra: 1697 / 1563,
  28900. bottom: 103 / 1800
  28901. }
  28902. },
  28903. back: {
  28904. height: math.unit(6, "feet"),
  28905. weight: math.unit(150, "lb"),
  28906. name: "Back",
  28907. image: {
  28908. source: "./media/characters/en/back.svg",
  28909. extra: 1700 / 1570,
  28910. bottom: 51 / 1751
  28911. }
  28912. },
  28913. frontDressed: {
  28914. height: math.unit(6, "feet"),
  28915. weight: math.unit(150, "lb"),
  28916. name: "Front (Dressed)",
  28917. image: {
  28918. source: "./media/characters/en/front-dressed.svg",
  28919. extra: 1697 / 1563,
  28920. bottom: 103 / 1800
  28921. }
  28922. },
  28923. backDressed: {
  28924. height: math.unit(6, "feet"),
  28925. weight: math.unit(150, "lb"),
  28926. name: "Back (Dressed)",
  28927. image: {
  28928. source: "./media/characters/en/back-dressed.svg",
  28929. extra: 1700 / 1570,
  28930. bottom: 51 / 1751
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Macro",
  28937. height: math.unit(210, "feet"),
  28938. default: true
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(6, "feet"),
  28947. weight: math.unit(150, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/haze-orris/front.svg",
  28951. extra: 3975 / 3525,
  28952. bottom: 137 / 4112
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Micro",
  28959. height: math.unit(150, "mm"),
  28960. default: true
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(6, "feet"),
  28969. weight: math.unit(150, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/casselene-yaro/front.svg",
  28973. extra: 4721 / 4541,
  28974. bottom: 82 / 4803
  28975. }
  28976. },
  28977. back: {
  28978. height: math.unit(6, "feet"),
  28979. weight: math.unit(150, "lb"),
  28980. name: "Back",
  28981. image: {
  28982. source: "./media/characters/casselene-yaro/back.svg",
  28983. extra: 4569 / 4377,
  28984. bottom: 69 / 4638
  28985. }
  28986. },
  28987. frontDressed: {
  28988. height: math.unit(6, "feet"),
  28989. weight: math.unit(150, "lb"),
  28990. name: "Front-dressed",
  28991. image: {
  28992. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28993. extra: 4721 / 4541,
  28994. bottom: 82 / 4803
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Macro",
  29001. height: math.unit(190, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(6, "feet"),
  29011. weight: math.unit(150, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/myra-rue-delore/front.svg",
  29015. extra: 1340 / 1308,
  29016. bottom: 67 / 1407
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(6, "feet"),
  29021. weight: math.unit(150, "lb"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/myra-rue-delore/back.svg",
  29025. extra: 1341 / 1310,
  29026. bottom: 40 / 1381
  29027. }
  29028. },
  29029. frontDressed: {
  29030. height: math.unit(6, "feet"),
  29031. weight: math.unit(150, "lb"),
  29032. name: "Front (Dressed)",
  29033. image: {
  29034. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29035. extra: 1340 / 1308,
  29036. bottom: 67 / 1407
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Macro",
  29043. height: math.unit(150, "feet"),
  29044. default: true
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29050. {
  29051. front: {
  29052. height: math.unit(10, "feet"),
  29053. weight: math.unit(15015, "lb"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/fem!plat/front.svg",
  29057. extra: 2799 / 2604,
  29058. bottom: 149 / 2948
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(10, "feet"),
  29066. default: true
  29067. },
  29068. {
  29069. name: "Macro",
  29070. height: math.unit(100, "feet")
  29071. },
  29072. {
  29073. name: "Megamacro",
  29074. height: math.unit(1000, "feet")
  29075. },
  29076. ]
  29077. ))
  29078. characterMakers.push(() => makeCharacter(
  29079. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29080. {
  29081. front: {
  29082. height: math.unit(15 + 5 / 12, "feet"),
  29083. weight: math.unit(4600, "lb"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/neapolitan-ananassa/front.svg",
  29087. extra: 2903 / 2736,
  29088. bottom: 0 / 2903
  29089. }
  29090. },
  29091. side: {
  29092. height: math.unit(15 + 5 / 12, "feet"),
  29093. weight: math.unit(4600, "lb"),
  29094. name: "Side",
  29095. image: {
  29096. source: "./media/characters/neapolitan-ananassa/side.svg",
  29097. extra: 2925 / 2719,
  29098. bottom: 0 / 2925
  29099. }
  29100. },
  29101. back: {
  29102. height: math.unit(15 + 5 / 12, "feet"),
  29103. weight: math.unit(4600, "lb"),
  29104. name: "Back",
  29105. image: {
  29106. source: "./media/characters/neapolitan-ananassa/back.svg",
  29107. extra: 2903 / 2736,
  29108. bottom: 0 / 2903
  29109. }
  29110. },
  29111. },
  29112. [
  29113. {
  29114. name: "Normal",
  29115. height: math.unit(15 + 5 / 12, "feet"),
  29116. default: true
  29117. },
  29118. {
  29119. name: "Post-Millenium",
  29120. height: math.unit(35 + 5 / 12, "feet")
  29121. },
  29122. {
  29123. name: "Post-Era",
  29124. height: math.unit(450 + 5 / 12, "feet")
  29125. },
  29126. ]
  29127. ))
  29128. characterMakers.push(() => makeCharacter(
  29129. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29130. {
  29131. front: {
  29132. height: math.unit(300, "meters"),
  29133. weight: math.unit(125000, "tonnes"),
  29134. name: "Front",
  29135. image: {
  29136. source: "./media/characters/pazuzu/front.svg",
  29137. extra: 877 / 794,
  29138. bottom: 47 / 924
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Macro",
  29145. height: math.unit(300, "meters"),
  29146. default: true
  29147. },
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29152. {
  29153. side: {
  29154. height: math.unit(10 + 7 / 12, "feet"),
  29155. weight: math.unit(2.5, "tons"),
  29156. name: "Side",
  29157. image: {
  29158. source: "./media/characters/aasha/side.svg",
  29159. extra: 1345 / 1245,
  29160. bottom: 111 / 1456
  29161. }
  29162. },
  29163. back: {
  29164. height: math.unit(10 + 7 / 12, "feet"),
  29165. weight: math.unit(2.5, "tons"),
  29166. name: "Back",
  29167. image: {
  29168. source: "./media/characters/aasha/back.svg",
  29169. extra: 1133 / 1057,
  29170. bottom: 257 / 1390
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(10 + 7 / 12, "feet"),
  29178. default: true
  29179. },
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29184. {
  29185. front: {
  29186. height: math.unit(6 + 3 / 12, "feet"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/nevan/front.svg",
  29190. extra: 704 / 704,
  29191. bottom: 28 / 732
  29192. }
  29193. },
  29194. back: {
  29195. height: math.unit(6 + 3 / 12, "feet"),
  29196. name: "Back",
  29197. image: {
  29198. source: "./media/characters/nevan/back.svg",
  29199. extra: 714 / 714,
  29200. bottom: 21 / 735
  29201. }
  29202. },
  29203. frontFlaccid: {
  29204. height: math.unit(6 + 3 / 12, "feet"),
  29205. name: "Front (Flaccid)",
  29206. image: {
  29207. source: "./media/characters/nevan/front-flaccid.svg",
  29208. extra: 704 / 704,
  29209. bottom: 28 / 732
  29210. }
  29211. },
  29212. frontErect: {
  29213. height: math.unit(6 + 3 / 12, "feet"),
  29214. name: "Front (Erect)",
  29215. image: {
  29216. source: "./media/characters/nevan/front-erect.svg",
  29217. extra: 704 / 704,
  29218. bottom: 28 / 732
  29219. }
  29220. },
  29221. backFlaccid: {
  29222. height: math.unit(6 + 3 / 12, "feet"),
  29223. name: "Back (Flaccid)",
  29224. image: {
  29225. source: "./media/characters/nevan/back-flaccid.svg",
  29226. extra: 714 / 714,
  29227. bottom: 21 / 735
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(6 + 3 / 12, "feet"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(4, "feet"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/arhan/front.svg",
  29247. extra: 3368 / 3133,
  29248. bottom: 0 / 3368
  29249. }
  29250. },
  29251. side: {
  29252. height: math.unit(4, "feet"),
  29253. name: "Side",
  29254. image: {
  29255. source: "./media/characters/arhan/side.svg",
  29256. extra: 3347 / 3105,
  29257. bottom: 0 / 3347
  29258. }
  29259. },
  29260. tongue: {
  29261. height: math.unit(1.42, "feet"),
  29262. name: "Tongue",
  29263. image: {
  29264. source: "./media/characters/arhan/tongue.svg"
  29265. }
  29266. },
  29267. head: {
  29268. height: math.unit(0.85, "feet"),
  29269. name: "Head",
  29270. image: {
  29271. source: "./media/characters/arhan/head.svg"
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(4, "feet"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(5 + 7.5 / 12, "feet"),
  29288. weight: math.unit(120, "lb"),
  29289. name: "Front",
  29290. image: {
  29291. source: "./media/characters/digi-duncan/front.svg",
  29292. extra: 330 / 326,
  29293. bottom: 16 / 346
  29294. }
  29295. },
  29296. side: {
  29297. height: math.unit(5 + 7.5 / 12, "feet"),
  29298. weight: math.unit(120, "lb"),
  29299. name: "Side",
  29300. image: {
  29301. source: "./media/characters/digi-duncan/side.svg",
  29302. extra: 341 / 337,
  29303. bottom: 1 / 342
  29304. }
  29305. },
  29306. back: {
  29307. height: math.unit(5 + 7.5 / 12, "feet"),
  29308. weight: math.unit(120, "lb"),
  29309. name: "Back",
  29310. image: {
  29311. source: "./media/characters/digi-duncan/back.svg",
  29312. extra: 330 / 326,
  29313. bottom: 12 / 342
  29314. }
  29315. },
  29316. },
  29317. [
  29318. {
  29319. name: "Speck",
  29320. height: math.unit(0.25, "mm")
  29321. },
  29322. {
  29323. name: "Micro",
  29324. height: math.unit(5, "mm")
  29325. },
  29326. {
  29327. name: "Tiny",
  29328. height: math.unit(0.5, "inches"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Human",
  29333. height: math.unit(5 + 7.5 / 12, "feet")
  29334. },
  29335. {
  29336. name: "Minigiant",
  29337. height: math.unit(8 + 5.25, "feet")
  29338. },
  29339. {
  29340. name: "Giant",
  29341. height: math.unit(2000, "feet")
  29342. },
  29343. {
  29344. name: "Mega",
  29345. height: math.unit(371.1, "miles")
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(2, "meters"),
  29354. weight: math.unit(350, "kg"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29358. extra: 898 / 838,
  29359. bottom: 9 / 907
  29360. }
  29361. },
  29362. },
  29363. [
  29364. {
  29365. name: "Micro",
  29366. height: math.unit(8, "meters")
  29367. },
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(50, "meters"),
  29371. default: true
  29372. },
  29373. {
  29374. name: "Macro",
  29375. height: math.unit(500, "meters")
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29381. {
  29382. front: {
  29383. height: math.unit(6 + 6 / 12, "feet"),
  29384. name: "Front",
  29385. image: {
  29386. source: "./media/characters/khardesh/front.svg",
  29387. extra: 888 / 797,
  29388. bottom: 25 / 913
  29389. }
  29390. },
  29391. },
  29392. [
  29393. {
  29394. name: "Normal",
  29395. height: math.unit(6 + 6 / 12, "feet"),
  29396. default: true
  29397. },
  29398. {
  29399. name: "Normal+",
  29400. height: math.unit(4, "meters")
  29401. },
  29402. {
  29403. name: "Macro",
  29404. height: math.unit(50, "meters")
  29405. },
  29406. {
  29407. name: "Macro+",
  29408. height: math.unit(100, "meters")
  29409. },
  29410. {
  29411. name: "Megamacro",
  29412. height: math.unit(20, "km")
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(6, "feet"),
  29421. weight: math.unit(150, "lb"),
  29422. name: "Front",
  29423. image: {
  29424. source: "./media/characters/kosho/front.svg",
  29425. extra: 1847 / 1847,
  29426. bottom: 86 / 1933
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Second-stage micro",
  29433. height: math.unit(0.5, "inches")
  29434. },
  29435. {
  29436. name: "First-stage micro",
  29437. height: math.unit(6, "inches")
  29438. },
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(6, "feet"),
  29442. default: true
  29443. },
  29444. {
  29445. name: "First-stage macro",
  29446. height: math.unit(72, "feet")
  29447. },
  29448. {
  29449. name: "Second-stage macro",
  29450. height: math.unit(864, "feet")
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29456. {
  29457. normal: {
  29458. height: math.unit(4 + 6 / 12, "feet"),
  29459. name: "Normal",
  29460. image: {
  29461. source: "./media/characters/hydra/normal.svg",
  29462. extra: 2833 / 2634,
  29463. bottom: 68 / 2901
  29464. }
  29465. },
  29466. smol: {
  29467. height: math.unit(0.705, "inches"),
  29468. name: "Smol",
  29469. image: {
  29470. source: "./media/characters/hydra/smol.svg",
  29471. extra: 2715 / 2540,
  29472. bottom: 0 / 2715
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Normal",
  29479. height: math.unit(4 + 6 / 12, "feet"),
  29480. default: true
  29481. }
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29486. {
  29487. front: {
  29488. height: math.unit(0.6, "cm"),
  29489. name: "Front",
  29490. image: {
  29491. source: "./media/characters/daz/front.svg",
  29492. extra: 1682 / 1164,
  29493. bottom: 42 / 1724
  29494. }
  29495. },
  29496. },
  29497. [
  29498. {
  29499. name: "Normal",
  29500. height: math.unit(0.6, "cm"),
  29501. default: true
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(6, "feet"),
  29510. weight: math.unit(235, "lb"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/theo-pangolin/front.svg",
  29514. extra: 1996 / 1969,
  29515. bottom: 115 / 2111
  29516. }
  29517. },
  29518. back: {
  29519. height: math.unit(6, "feet"),
  29520. weight: math.unit(235, "lb"),
  29521. name: "Back",
  29522. image: {
  29523. source: "./media/characters/theo-pangolin/back.svg",
  29524. extra: 1979 / 1979,
  29525. bottom: 40 / 2019
  29526. }
  29527. },
  29528. feral: {
  29529. height: math.unit(2, "feet"),
  29530. weight: math.unit(30, "lb"),
  29531. name: "Feral",
  29532. image: {
  29533. source: "./media/characters/theo-pangolin/feral.svg",
  29534. extra: 803 / 791,
  29535. bottom: 181 / 984
  29536. }
  29537. },
  29538. footFive: {
  29539. height: math.unit(1.43, "feet"),
  29540. name: "Foot (Five Toes)",
  29541. image: {
  29542. source: "./media/characters/theo-pangolin/foot-five.svg"
  29543. }
  29544. },
  29545. footFour: {
  29546. height: math.unit(1.43, "feet"),
  29547. name: "Foot (Four Toes)",
  29548. image: {
  29549. source: "./media/characters/theo-pangolin/foot-four.svg"
  29550. }
  29551. },
  29552. handFour: {
  29553. height: math.unit(0.81, "feet"),
  29554. name: "Hand (Four Fingers)",
  29555. image: {
  29556. source: "./media/characters/theo-pangolin/hand-four.svg"
  29557. }
  29558. },
  29559. handThree: {
  29560. height: math.unit(0.81, "feet"),
  29561. name: "Hand (Three Fingers)",
  29562. image: {
  29563. source: "./media/characters/theo-pangolin/hand-three.svg"
  29564. }
  29565. },
  29566. headFront: {
  29567. height: math.unit(1.37, "feet"),
  29568. name: "Head (Front)",
  29569. image: {
  29570. source: "./media/characters/theo-pangolin/head-front.svg"
  29571. }
  29572. },
  29573. headSide: {
  29574. height: math.unit(1.43, "feet"),
  29575. name: "Head (Side)",
  29576. image: {
  29577. source: "./media/characters/theo-pangolin/head-side.svg"
  29578. }
  29579. },
  29580. tongue: {
  29581. height: math.unit(2.29, "feet"),
  29582. name: "Tongue",
  29583. image: {
  29584. source: "./media/characters/theo-pangolin/tongue.svg"
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(6, "feet")
  29592. },
  29593. {
  29594. name: "Macro",
  29595. height: math.unit(400, "feet"),
  29596. default: true
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(6, "inches"),
  29605. weight: math.unit(0.036, "kg"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/renée/front.svg",
  29609. extra: 900 / 886,
  29610. bottom: 8 / 908
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Nano",
  29617. height: math.unit(1, "nm")
  29618. },
  29619. {
  29620. name: "Micro",
  29621. height: math.unit(1, "mm")
  29622. },
  29623. {
  29624. name: "Normal",
  29625. height: math.unit(6, "inches")
  29626. },
  29627. {
  29628. name: "Macro",
  29629. height: math.unit(2000, "feet"),
  29630. default: true
  29631. },
  29632. {
  29633. name: "Megamacro",
  29634. height: math.unit(2, "km")
  29635. },
  29636. {
  29637. name: "Gigamacro",
  29638. height: math.unit(2000, "km")
  29639. },
  29640. {
  29641. name: "Teramacro",
  29642. height: math.unit(250000, "km")
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(4, "meters"),
  29651. weight: math.unit(150, "kg"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/caledvwlch/front.svg",
  29655. extra: 1760 / 1551,
  29656. bottom: 28 / 1788
  29657. }
  29658. },
  29659. side: {
  29660. height: math.unit(4, "meters"),
  29661. weight: math.unit(150, "kg"),
  29662. name: "Side",
  29663. image: {
  29664. source: "./media/characters/caledvwlch/side.svg",
  29665. extra: 1605 / 1536,
  29666. bottom: 31 / 1636
  29667. }
  29668. },
  29669. back: {
  29670. height: math.unit(4, "meters"),
  29671. weight: math.unit(150, "kg"),
  29672. name: "Back",
  29673. image: {
  29674. source: "./media/characters/caledvwlch/back.svg",
  29675. extra: 1635 / 1565,
  29676. bottom: 27 / 1662
  29677. }
  29678. },
  29679. },
  29680. [
  29681. {
  29682. name: "\"Incognito\"",
  29683. height: math.unit(4, "meters")
  29684. },
  29685. {
  29686. name: "Small rampage",
  29687. height: math.unit(600, "meters")
  29688. },
  29689. {
  29690. name: "Mega",
  29691. height: math.unit(30, "km")
  29692. },
  29693. {
  29694. name: "Home-size",
  29695. height: math.unit(50, "km"),
  29696. default: true
  29697. },
  29698. {
  29699. name: "Giga",
  29700. height: math.unit(300, "km")
  29701. },
  29702. {
  29703. name: "Lounging",
  29704. height: math.unit(11000, "km")
  29705. },
  29706. {
  29707. name: "Planet snacking",
  29708. height: math.unit(2000000, "km")
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(6, "feet"),
  29717. weight: math.unit(215, "lb"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/sapphire-svell/front.svg",
  29721. extra: 495 / 455,
  29722. bottom: 20 / 515
  29723. }
  29724. },
  29725. back: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(216, "lb"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/sapphire-svell/back.svg",
  29731. extra: 497 / 477,
  29732. bottom: 7 / 504
  29733. }
  29734. },
  29735. maw: {
  29736. height: math.unit(1.57, "feet"),
  29737. name: "Maw",
  29738. image: {
  29739. source: "./media/characters/sapphire-svell/maw.svg"
  29740. }
  29741. },
  29742. foot: {
  29743. height: math.unit(1.07, "feet"),
  29744. name: "Foot",
  29745. image: {
  29746. source: "./media/characters/sapphire-svell/foot.svg"
  29747. }
  29748. },
  29749. toering: {
  29750. height: math.unit(1.7, "inch"),
  29751. name: "Toering",
  29752. image: {
  29753. source: "./media/characters/sapphire-svell/toering.svg"
  29754. }
  29755. },
  29756. },
  29757. [
  29758. {
  29759. name: "Normal",
  29760. height: math.unit(300, "feet"),
  29761. default: true
  29762. },
  29763. {
  29764. name: "Augmented",
  29765. height: math.unit(1250, "feet")
  29766. },
  29767. {
  29768. name: "Unleashed",
  29769. height: math.unit(3000, "feet")
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29775. {
  29776. side: {
  29777. height: math.unit(2 + 3 / 12, "feet"),
  29778. weight: math.unit(110, "lb"),
  29779. name: "Side",
  29780. image: {
  29781. source: "./media/characters/glitch-flux/side.svg",
  29782. extra: 997 / 805,
  29783. bottom: 20 / 1017
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(2 + 3 / 12, "feet"),
  29791. default: true
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29797. {
  29798. front: {
  29799. height: math.unit(4, "meters"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/mid/front.svg",
  29803. extra: 507 / 476,
  29804. bottom: 17 / 524
  29805. }
  29806. },
  29807. back: {
  29808. height: math.unit(4, "meters"),
  29809. name: "Back",
  29810. image: {
  29811. source: "./media/characters/mid/back.svg",
  29812. extra: 519 / 487,
  29813. bottom: 7 / 526
  29814. }
  29815. },
  29816. stuck: {
  29817. height: math.unit(2.2, "meters"),
  29818. name: "Stuck",
  29819. image: {
  29820. source: "./media/characters/mid/stuck.svg",
  29821. extra: 1951 / 1869,
  29822. bottom: 88 / 2039
  29823. }
  29824. }
  29825. },
  29826. [
  29827. {
  29828. name: "Normal",
  29829. height: math.unit(4, "meters"),
  29830. default: true
  29831. },
  29832. {
  29833. name: "Big",
  29834. height: math.unit(10, "meters")
  29835. },
  29836. {
  29837. name: "Macro",
  29838. height: math.unit(800, "meters")
  29839. },
  29840. {
  29841. name: "Megamacro",
  29842. height: math.unit(100, "km")
  29843. },
  29844. {
  29845. name: "Overgrown",
  29846. height: math.unit(1, "parsec")
  29847. },
  29848. ]
  29849. ))
  29850. characterMakers.push(() => makeCharacter(
  29851. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29852. {
  29853. front: {
  29854. height: math.unit(2.5, "meters"),
  29855. weight: math.unit(225, "kg"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/iris/front.svg",
  29859. extra: 3348 / 3251,
  29860. bottom: 205 / 3553
  29861. }
  29862. },
  29863. maw: {
  29864. height: math.unit(0.56, "meter"),
  29865. name: "Maw",
  29866. image: {
  29867. source: "./media/characters/iris/maw.svg"
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Mewter cat",
  29874. height: math.unit(1.2, "meters")
  29875. },
  29876. {
  29877. name: "Minimacro",
  29878. height: math.unit(2.5, "meters"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Macro",
  29883. height: math.unit(180, "meters")
  29884. },
  29885. {
  29886. name: "Megamacro",
  29887. height: math.unit(2746, "meters")
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29893. {
  29894. front: {
  29895. height: math.unit(6, "feet"),
  29896. weight: math.unit(135, "lb"),
  29897. name: "Front",
  29898. image: {
  29899. source: "./media/characters/axel/front.svg",
  29900. extra: 908 / 908,
  29901. bottom: 58 / 966
  29902. }
  29903. },
  29904. side: {
  29905. height: math.unit(6, "feet"),
  29906. weight: math.unit(135, "lb"),
  29907. name: "Side",
  29908. image: {
  29909. source: "./media/characters/axel/side.svg",
  29910. extra: 958 / 958,
  29911. bottom: 11 / 969
  29912. }
  29913. },
  29914. back: {
  29915. height: math.unit(6, "feet"),
  29916. weight: math.unit(135, "lb"),
  29917. name: "Back",
  29918. image: {
  29919. source: "./media/characters/axel/back.svg",
  29920. extra: 887 / 887,
  29921. bottom: 34 / 921
  29922. }
  29923. },
  29924. head: {
  29925. height: math.unit(1.07, "feet"),
  29926. name: "Head",
  29927. image: {
  29928. source: "./media/characters/axel/head.svg"
  29929. }
  29930. },
  29931. beak: {
  29932. height: math.unit(1.4, "feet"),
  29933. name: "Beak",
  29934. image: {
  29935. source: "./media/characters/axel/beak.svg"
  29936. }
  29937. },
  29938. beakSide: {
  29939. height: math.unit(1.4, "feet"),
  29940. name: "Beak Side",
  29941. image: {
  29942. source: "./media/characters/axel/beak-side.svg"
  29943. }
  29944. },
  29945. sheath: {
  29946. height: math.unit(0.5, "feet"),
  29947. name: "Sheath",
  29948. image: {
  29949. source: "./media/characters/axel/sheath.svg"
  29950. }
  29951. },
  29952. dick: {
  29953. height: math.unit(0.98, "feet"),
  29954. name: "Dick",
  29955. image: {
  29956. source: "./media/characters/axel/dick.svg"
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Macro",
  29963. height: math.unit(68, "meters"),
  29964. default: true
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(3.5, "meters"),
  29973. weight: math.unit(1200, "kg"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/joanna/front.svg",
  29977. extra: 1596 / 1488,
  29978. bottom: 29 / 1625
  29979. }
  29980. },
  29981. back: {
  29982. height: math.unit(3.5, "meters"),
  29983. weight: math.unit(1200, "kg"),
  29984. name: "Back",
  29985. image: {
  29986. source: "./media/characters/joanna/back.svg",
  29987. extra: 1594 / 1495,
  29988. bottom: 26 / 1620
  29989. }
  29990. },
  29991. frontShorts: {
  29992. height: math.unit(3.5, "meters"),
  29993. weight: math.unit(1200, "kg"),
  29994. name: "Front (Shorts)",
  29995. image: {
  29996. source: "./media/characters/joanna/front-shorts.svg",
  29997. extra: 1596 / 1488,
  29998. bottom: 29 / 1625
  29999. }
  30000. },
  30001. frontBiker: {
  30002. height: math.unit(3.5, "meters"),
  30003. weight: math.unit(1200, "kg"),
  30004. name: "Front (Biker)",
  30005. image: {
  30006. source: "./media/characters/joanna/front-biker.svg",
  30007. extra: 1596 / 1488,
  30008. bottom: 29 / 1625
  30009. }
  30010. },
  30011. backBiker: {
  30012. height: math.unit(3.5, "meters"),
  30013. weight: math.unit(1200, "kg"),
  30014. name: "Back (Biker)",
  30015. image: {
  30016. source: "./media/characters/joanna/back-biker.svg",
  30017. extra: 1594 / 1495,
  30018. bottom: 88 / 1682
  30019. }
  30020. },
  30021. bikeLeft: {
  30022. height: math.unit(2.4, "meters"),
  30023. weight: math.unit(1600, "kg"),
  30024. name: "Bike (Left)",
  30025. image: {
  30026. source: "./media/characters/joanna/bike-left.svg",
  30027. extra: 720 / 720,
  30028. bottom: 8 / 728
  30029. }
  30030. },
  30031. bikeRight: {
  30032. height: math.unit(2.4, "meters"),
  30033. weight: math.unit(1600, "kg"),
  30034. name: "Bike (Right)",
  30035. image: {
  30036. source: "./media/characters/joanna/bike-right.svg",
  30037. extra: 720 / 720,
  30038. bottom: 8 / 728
  30039. }
  30040. },
  30041. },
  30042. [
  30043. {
  30044. name: "Incognito",
  30045. height: math.unit(3.5, "meters")
  30046. },
  30047. {
  30048. name: "Casual Big",
  30049. height: math.unit(200, "meters")
  30050. },
  30051. {
  30052. name: "Macro",
  30053. height: math.unit(600, "meters")
  30054. },
  30055. {
  30056. name: "Original",
  30057. height: math.unit(20, "km"),
  30058. default: true
  30059. },
  30060. {
  30061. name: "Giga",
  30062. height: math.unit(400, "km")
  30063. },
  30064. {
  30065. name: "Lounging",
  30066. height: math.unit(1500, "km")
  30067. },
  30068. {
  30069. name: "Planetary",
  30070. height: math.unit(200000, "km")
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30076. {
  30077. front: {
  30078. height: math.unit(6, "feet"),
  30079. weight: math.unit(150, "lb"),
  30080. name: "Front",
  30081. image: {
  30082. source: "./media/characters/hugo-sigil/front.svg",
  30083. extra: 522 / 500,
  30084. bottom: 2 / 524
  30085. }
  30086. },
  30087. back: {
  30088. height: math.unit(6, "feet"),
  30089. weight: math.unit(150, "lb"),
  30090. name: "Back",
  30091. image: {
  30092. source: "./media/characters/hugo-sigil/back.svg",
  30093. extra: 519 / 495,
  30094. bottom: 5 / 524
  30095. }
  30096. },
  30097. maw: {
  30098. height: math.unit(1.4, "feet"),
  30099. weight: math.unit(150, "lb"),
  30100. name: "Maw",
  30101. image: {
  30102. source: "./media/characters/hugo-sigil/maw.svg"
  30103. }
  30104. },
  30105. feet: {
  30106. height: math.unit(1.56, "feet"),
  30107. weight: math.unit(150, "lb"),
  30108. name: "Feet",
  30109. image: {
  30110. source: "./media/characters/hugo-sigil/feet.svg",
  30111. extra: 177 / 177,
  30112. bottom: 12 / 189
  30113. }
  30114. },
  30115. },
  30116. [
  30117. {
  30118. name: "Normal",
  30119. height: math.unit(6, "feet")
  30120. },
  30121. {
  30122. name: "Macro",
  30123. height: math.unit(200, "feet"),
  30124. default: true
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(6, "feet"),
  30133. weight: math.unit(150, "lb"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/peri/front.svg",
  30137. extra: 2354 / 2233,
  30138. bottom: 49 / 2403
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Really Small",
  30145. height: math.unit(1, "nm")
  30146. },
  30147. {
  30148. name: "Micro",
  30149. height: math.unit(4, "inches")
  30150. },
  30151. {
  30152. name: "Normal",
  30153. height: math.unit(7, "inches"),
  30154. default: true
  30155. },
  30156. {
  30157. name: "Macro",
  30158. height: math.unit(400, "feet")
  30159. },
  30160. {
  30161. name: "Megamacro",
  30162. height: math.unit(100, "miles")
  30163. },
  30164. ]
  30165. ))
  30166. characterMakers.push(() => makeCharacter(
  30167. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30168. {
  30169. frontSlim: {
  30170. height: math.unit(7, "feet"),
  30171. name: "Front (Slim)",
  30172. image: {
  30173. source: "./media/characters/issilora/front-slim.svg",
  30174. extra: 529 / 449,
  30175. bottom: 53 / 582
  30176. }
  30177. },
  30178. sideSlim: {
  30179. height: math.unit(7, "feet"),
  30180. name: "Side (Slim)",
  30181. image: {
  30182. source: "./media/characters/issilora/side-slim.svg",
  30183. extra: 570 / 480,
  30184. bottom: 30 / 600
  30185. }
  30186. },
  30187. backSlim: {
  30188. height: math.unit(7, "feet"),
  30189. name: "Back (Slim)",
  30190. image: {
  30191. source: "./media/characters/issilora/back-slim.svg",
  30192. extra: 537 / 455,
  30193. bottom: 46 / 583
  30194. }
  30195. },
  30196. frontBuff: {
  30197. height: math.unit(7, "feet"),
  30198. name: "Front (Buff)",
  30199. image: {
  30200. source: "./media/characters/issilora/front-buff.svg",
  30201. extra: 2310 / 2035,
  30202. bottom: 335 / 2645
  30203. }
  30204. },
  30205. head: {
  30206. height: math.unit(1.94, "feet"),
  30207. name: "Head",
  30208. image: {
  30209. source: "./media/characters/issilora/head.svg"
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Minimum",
  30216. height: math.unit(7, "feet")
  30217. },
  30218. {
  30219. name: "Comfortable",
  30220. height: math.unit(17, "feet")
  30221. },
  30222. {
  30223. name: "Fun Size",
  30224. height: math.unit(47, "feet")
  30225. },
  30226. {
  30227. name: "Natural Macro",
  30228. height: math.unit(137, "feet"),
  30229. default: true
  30230. },
  30231. {
  30232. name: "Maximum Kaiju",
  30233. height: math.unit(397, "feet")
  30234. },
  30235. ]
  30236. ))
  30237. characterMakers.push(() => makeCharacter(
  30238. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30239. {
  30240. front: {
  30241. height: math.unit(50 + 9/12, "feet"),
  30242. weight: math.unit(32.8, "tons"),
  30243. name: "Front",
  30244. image: {
  30245. source: "./media/characters/irb'iiritaahn/front.svg",
  30246. extra: 1878/1826,
  30247. bottom: 326/2204
  30248. }
  30249. },
  30250. back: {
  30251. height: math.unit(50 + 9/12, "feet"),
  30252. weight: math.unit(32.8, "tons"),
  30253. name: "Back",
  30254. image: {
  30255. source: "./media/characters/irb'iiritaahn/back.svg",
  30256. extra: 2052/2018,
  30257. bottom: 152/2204
  30258. }
  30259. },
  30260. head: {
  30261. height: math.unit(12.86, "feet"),
  30262. name: "Head",
  30263. image: {
  30264. source: "./media/characters/irb'iiritaahn/head.svg"
  30265. }
  30266. },
  30267. maw: {
  30268. height: math.unit(9.66, "feet"),
  30269. name: "Maw",
  30270. image: {
  30271. source: "./media/characters/irb'iiritaahn/maw.svg"
  30272. }
  30273. },
  30274. frontDick: {
  30275. height: math.unit(8.78461, "feet"),
  30276. name: "Front Dick",
  30277. image: {
  30278. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30279. }
  30280. },
  30281. rearDick: {
  30282. height: math.unit(8.78461, "feet"),
  30283. name: "Rear Dick",
  30284. image: {
  30285. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30286. }
  30287. },
  30288. rearDickUnfolded: {
  30289. height: math.unit(8.78, "feet"),
  30290. name: "Rear Dick (Unfolded)",
  30291. image: {
  30292. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30293. }
  30294. },
  30295. wings: {
  30296. height: math.unit(43, "feet"),
  30297. name: "Wings",
  30298. image: {
  30299. source: "./media/characters/irb'iiritaahn/wings.svg"
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Macro",
  30306. height: math.unit(50 + 9/12, "feet"),
  30307. default: true
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30313. {
  30314. front: {
  30315. height: math.unit(205, "cm"),
  30316. weight: math.unit(102, "kg"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/irbisgreif/front.svg",
  30320. extra: 785/706,
  30321. bottom: 13/798
  30322. }
  30323. },
  30324. back: {
  30325. height: math.unit(205, "cm"),
  30326. weight: math.unit(102, "kg"),
  30327. name: "Back",
  30328. image: {
  30329. source: "./media/characters/irbisgreif/back.svg",
  30330. extra: 713/701,
  30331. bottom: 26/739
  30332. }
  30333. },
  30334. frontDressed: {
  30335. height: math.unit(216, "cm"),
  30336. weight: math.unit(102, "kg"),
  30337. name: "Front-dressed",
  30338. image: {
  30339. source: "./media/characters/irbisgreif/front-dressed.svg",
  30340. extra: 902/776,
  30341. bottom: 14/916
  30342. }
  30343. },
  30344. sideDressed: {
  30345. height: math.unit(195, "cm"),
  30346. weight: math.unit(102, "kg"),
  30347. name: "Side-dressed",
  30348. image: {
  30349. source: "./media/characters/irbisgreif/side-dressed.svg",
  30350. extra: 788/688,
  30351. bottom: 21/809
  30352. }
  30353. },
  30354. backDressed: {
  30355. height: math.unit(216, "cm"),
  30356. weight: math.unit(102, "kg"),
  30357. name: "Back-dressed",
  30358. image: {
  30359. source: "./media/characters/irbisgreif/back-dressed.svg",
  30360. extra: 901/783,
  30361. bottom: 10/911
  30362. }
  30363. },
  30364. dick: {
  30365. height: math.unit(0.49, "feet"),
  30366. name: "Dick",
  30367. image: {
  30368. source: "./media/characters/irbisgreif/dick.svg"
  30369. }
  30370. },
  30371. wingTop: {
  30372. height: math.unit(1.93 , "feet"),
  30373. name: "Wing-top",
  30374. image: {
  30375. source: "./media/characters/irbisgreif/wing-top.svg"
  30376. }
  30377. },
  30378. wingBottom: {
  30379. height: math.unit(1.93 , "feet"),
  30380. name: "Wing-bottom",
  30381. image: {
  30382. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Normal",
  30389. height: math.unit(216, "cm"),
  30390. default: true
  30391. },
  30392. ]
  30393. ))
  30394. characterMakers.push(() => makeCharacter(
  30395. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30396. {
  30397. front: {
  30398. height: math.unit(6, "feet"),
  30399. weight: math.unit(150, "lb"),
  30400. name: "Front",
  30401. image: {
  30402. source: "./media/characters/pride/front.svg",
  30403. extra: 1299/1230,
  30404. bottom: 18/1317
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(7, "feet")
  30412. },
  30413. {
  30414. name: "Mini-macro",
  30415. height: math.unit(11, "feet")
  30416. },
  30417. {
  30418. name: "Macro",
  30419. height: math.unit(15, "meters"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Macro+",
  30424. height: math.unit(40, "meters")
  30425. },
  30426. ]
  30427. ))
  30428. characterMakers.push(() => makeCharacter(
  30429. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30430. {
  30431. front: {
  30432. height: math.unit(4 + 2 / 12, "feet"),
  30433. weight: math.unit(95, "lb"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/vaelophis-nyx/front.svg",
  30437. extra: 2532/2330,
  30438. bottom: 0/2532
  30439. }
  30440. },
  30441. back: {
  30442. height: math.unit(4 + 2 / 12, "feet"),
  30443. weight: math.unit(95, "lb"),
  30444. name: "Back",
  30445. image: {
  30446. source: "./media/characters/vaelophis-nyx/back.svg",
  30447. extra: 2484/2361,
  30448. bottom: 0/2484
  30449. }
  30450. },
  30451. feralSide: {
  30452. height: math.unit(2 + 1/12, "feet"),
  30453. weight: math.unit(20, "lb"),
  30454. name: "Feral (Side)",
  30455. image: {
  30456. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30457. extra: 1721/1581,
  30458. bottom: 70/1791
  30459. }
  30460. },
  30461. feralLazing: {
  30462. height: math.unit(1.08, "feet"),
  30463. weight: math.unit(20, "lb"),
  30464. name: "Feral (Lazing)",
  30465. image: {
  30466. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30467. extra: 822/822,
  30468. bottom: 248/1070
  30469. }
  30470. },
  30471. ear: {
  30472. height: math.unit(0.416, "feet"),
  30473. name: "Ear",
  30474. image: {
  30475. source: "./media/characters/vaelophis-nyx/ear.svg"
  30476. }
  30477. },
  30478. eye: {
  30479. height: math.unit(0.0748, "feet"),
  30480. name: "Eye",
  30481. image: {
  30482. source: "./media/characters/vaelophis-nyx/eye.svg"
  30483. }
  30484. },
  30485. mouth: {
  30486. height: math.unit(0.378, "feet"),
  30487. name: "Mouth",
  30488. image: {
  30489. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30490. }
  30491. },
  30492. spade: {
  30493. height: math.unit(0.55, "feet"),
  30494. name: "Spade",
  30495. image: {
  30496. source: "./media/characters/vaelophis-nyx/spade.svg"
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(4 + 2/12, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30510. {
  30511. front: {
  30512. height: math.unit(7, "feet"),
  30513. weight: math.unit(231, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/flux/front.svg",
  30517. extra: 919/871,
  30518. bottom: 0/919
  30519. }
  30520. },
  30521. back: {
  30522. height: math.unit(7, "feet"),
  30523. weight: math.unit(231, "lb"),
  30524. name: "Back",
  30525. image: {
  30526. source: "./media/characters/flux/back.svg",
  30527. extra: 1040/992,
  30528. bottom: 0/1040
  30529. }
  30530. },
  30531. frontDressed: {
  30532. height: math.unit(7, "feet"),
  30533. weight: math.unit(231, "lb"),
  30534. name: "Front (Dressed)",
  30535. image: {
  30536. source: "./media/characters/flux/front-dressed.svg",
  30537. extra: 919/871,
  30538. bottom: 0/919
  30539. }
  30540. },
  30541. feralSide: {
  30542. height: math.unit(5, "feet"),
  30543. weight: math.unit(150, "lb"),
  30544. name: "Feral (Side)",
  30545. image: {
  30546. source: "./media/characters/flux/feral-side.svg",
  30547. extra: 598/528,
  30548. bottom: 28/626
  30549. }
  30550. },
  30551. head: {
  30552. height: math.unit(1.585, "feet"),
  30553. name: "Head",
  30554. image: {
  30555. source: "./media/characters/flux/head.svg"
  30556. }
  30557. },
  30558. headSide: {
  30559. height: math.unit(1.74, "feet"),
  30560. name: "Head (Side)",
  30561. image: {
  30562. source: "./media/characters/flux/head-side.svg"
  30563. }
  30564. },
  30565. headSideFire: {
  30566. height: math.unit(1.76, "feet"),
  30567. name: "Head (Side, Fire)",
  30568. image: {
  30569. source: "./media/characters/flux/head-side-fire.svg"
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(7, "feet"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(9, "feet"),
  30586. weight: math.unit(1012, "lb"),
  30587. name: "Front",
  30588. image: {
  30589. source: "./media/characters/ulfra-lupae/front.svg",
  30590. extra: 1083/1011,
  30591. bottom: 67/1150
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Micro",
  30598. height: math.unit(6, "inches")
  30599. },
  30600. {
  30601. name: "Socializing",
  30602. height: math.unit(6 + 5/12, "feet")
  30603. },
  30604. {
  30605. name: "Normal",
  30606. height: math.unit(9, "feet"),
  30607. default: true
  30608. },
  30609. {
  30610. name: "Macro",
  30611. height: math.unit(150, "feet")
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30617. {
  30618. front: {
  30619. height: math.unit(5 + 2/12, "feet"),
  30620. weight: math.unit(120, "lb"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/timber/front.svg",
  30624. extra: 2814/2705,
  30625. bottom: 181/2995
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(5 + 2/12, "feet"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(5 + 7/12, "feet"),
  30642. weight: math.unit(220, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/nicki/front.svg",
  30646. extra: 453/419,
  30647. bottom: 7/460
  30648. }
  30649. },
  30650. frontAlt: {
  30651. height: math.unit(5 + 7/12, "feet"),
  30652. weight: math.unit(220, "lb"),
  30653. name: "Front-alt",
  30654. image: {
  30655. source: "./media/characters/nicki/front-alt.svg",
  30656. extra: 435/411,
  30657. bottom: 12/447
  30658. }
  30659. },
  30660. back: {
  30661. height: math.unit(5 + 7/12, "feet"),
  30662. weight: math.unit(220, "lb"),
  30663. name: "Back",
  30664. image: {
  30665. source: "./media/characters/nicki/back.svg",
  30666. extra: 440/413,
  30667. bottom: 19/459
  30668. }
  30669. },
  30670. taur: {
  30671. height: math.unit(7 + 6/12, "feet"),
  30672. weight: math.unit(700, "lb"),
  30673. name: "Taur",
  30674. image: {
  30675. source: "./media/characters/nicki/taur.svg",
  30676. extra: 975/773,
  30677. bottom: 0/975
  30678. }
  30679. },
  30680. frontNsfw: {
  30681. height: math.unit(5 + 7/12, "feet"),
  30682. weight: math.unit(220, "lb"),
  30683. name: "Front (NSFW)",
  30684. image: {
  30685. source: "./media/characters/nicki/front-nsfw.svg",
  30686. extra: 453/419,
  30687. bottom: 7/460
  30688. }
  30689. },
  30690. frontNsfwAlt: {
  30691. height: math.unit(5 + 7/12, "feet"),
  30692. weight: math.unit(220, "lb"),
  30693. name: "Front (Alt, NSFW)",
  30694. image: {
  30695. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30696. extra: 435/411,
  30697. bottom: 12/447
  30698. }
  30699. },
  30700. backNsfw: {
  30701. height: math.unit(5 + 7/12, "feet"),
  30702. weight: math.unit(220, "lb"),
  30703. name: "Back (NSFW)",
  30704. image: {
  30705. source: "./media/characters/nicki/back-nsfw.svg",
  30706. extra: 440/413,
  30707. bottom: 19/459
  30708. }
  30709. },
  30710. head: {
  30711. height: math.unit(2.1, "feet"),
  30712. name: "Head",
  30713. image: {
  30714. source: "./media/characters/nicki/head.svg"
  30715. }
  30716. },
  30717. paw: {
  30718. height: math.unit(1.88, "feet"),
  30719. name: "Paw",
  30720. image: {
  30721. source: "./media/characters/nicki/paw.svg"
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Normal",
  30728. height: math.unit(5 + 7/12, "feet"),
  30729. default: true
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(7 + 10/12, "feet"),
  30738. weight: math.unit(3.5, "tons"),
  30739. name: "Front",
  30740. image: {
  30741. source: "./media/characters/lee/front.svg",
  30742. extra: 1773/1615,
  30743. bottom: 86/1859
  30744. }
  30745. },
  30746. hand: {
  30747. height: math.unit(1.78, "feet"),
  30748. name: "Hand",
  30749. image: {
  30750. source: "./media/characters/lee/hand.svg"
  30751. }
  30752. },
  30753. maw: {
  30754. height: math.unit(1.18, "feet"),
  30755. name: "Maw",
  30756. image: {
  30757. source: "./media/characters/lee/maw.svg"
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(7 + 10/12, "feet"),
  30765. default: true
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30771. {
  30772. front: {
  30773. height: math.unit(9, "feet"),
  30774. name: "Front",
  30775. image: {
  30776. source: "./media/characters/guti/front.svg",
  30777. extra: 4551/4355,
  30778. bottom: 123/4674
  30779. }
  30780. },
  30781. tongue: {
  30782. height: math.unit(1, "feet"),
  30783. name: "Tongue",
  30784. image: {
  30785. source: "./media/characters/guti/tongue.svg"
  30786. }
  30787. },
  30788. paw: {
  30789. height: math.unit(1.18, "feet"),
  30790. name: "Paw",
  30791. image: {
  30792. source: "./media/characters/guti/paw.svg"
  30793. }
  30794. },
  30795. },
  30796. [
  30797. {
  30798. name: "Normal",
  30799. height: math.unit(9, "feet"),
  30800. default: true
  30801. },
  30802. ]
  30803. ))
  30804. characterMakers.push(() => makeCharacter(
  30805. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30806. {
  30807. side: {
  30808. height: math.unit(5, "meters"),
  30809. name: "Side",
  30810. image: {
  30811. source: "./media/characters/vesper/side.svg",
  30812. extra: 1605/1518,
  30813. bottom: 0/1605
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Small",
  30820. height: math.unit(5, "meters")
  30821. },
  30822. {
  30823. name: "Sage",
  30824. height: math.unit(100, "meters"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "Fun Size",
  30829. height: math.unit(600, "meters")
  30830. },
  30831. {
  30832. name: "Goddess",
  30833. height: math.unit(20000, "km")
  30834. },
  30835. {
  30836. name: "Maximum",
  30837. height: math.unit(5, "galaxies")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6 + 3/12, "feet"),
  30846. weight: math.unit(190, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/gawain/front.svg",
  30850. extra: 2222/2139,
  30851. bottom: 90/2312
  30852. }
  30853. },
  30854. back: {
  30855. height: math.unit(6 + 3/12, "feet"),
  30856. weight: math.unit(190, "lb"),
  30857. name: "Back",
  30858. image: {
  30859. source: "./media/characters/gawain/back.svg",
  30860. extra: 2199/2111,
  30861. bottom: 73/2272
  30862. }
  30863. },
  30864. },
  30865. [
  30866. {
  30867. name: "Normal",
  30868. height: math.unit(6 + 3/12, "feet"),
  30869. default: true
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30875. {
  30876. side: {
  30877. height: math.unit(3.5, "meters"),
  30878. weight: math.unit(16000, "lb"),
  30879. name: "Side",
  30880. image: {
  30881. source: "./media/characters/dascalti/side.svg",
  30882. extra: 392/273,
  30883. bottom: 47/439
  30884. }
  30885. },
  30886. breath: {
  30887. height: math.unit(7.4, "feet"),
  30888. name: "Breath",
  30889. image: {
  30890. source: "./media/characters/dascalti/breath.svg"
  30891. }
  30892. },
  30893. fed: {
  30894. height: math.unit(3.6, "meters"),
  30895. weight: math.unit(16000, "lb"),
  30896. name: "Fed",
  30897. image: {
  30898. source: "./media/characters/dascalti/fed.svg",
  30899. extra: 1419/820,
  30900. bottom: 95/1514
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(3.5, "meters"),
  30908. default: true
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(3 + 5/12, "feet"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/mauve/front.svg",
  30920. extra: 1126/1033,
  30921. bottom: 65/1191
  30922. }
  30923. },
  30924. side: {
  30925. height: math.unit(3 + 5/12, "feet"),
  30926. name: "Side",
  30927. image: {
  30928. source: "./media/characters/mauve/side.svg",
  30929. extra: 1089/1001,
  30930. bottom: 29/1118
  30931. }
  30932. },
  30933. back: {
  30934. height: math.unit(3 + 5/12, "feet"),
  30935. name: "Back",
  30936. image: {
  30937. source: "./media/characters/mauve/back.svg",
  30938. extra: 1173/1053,
  30939. bottom: 109/1282
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(3 + 5/12, "feet"),
  30947. default: true
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(6 + 3/12, "feet"),
  30956. weight: math.unit(430, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/carlos/front.svg",
  30960. extra: 1964/1913,
  30961. bottom: 70/2034
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(6 + 3/12, "feet"),
  30969. default: true
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30975. {
  30976. back: {
  30977. height: math.unit(5 + 10/12, "feet"),
  30978. weight: math.unit(200, "lb"),
  30979. name: "Back",
  30980. image: {
  30981. source: "./media/characters/jax/back.svg",
  30982. extra: 764/739,
  30983. bottom: 25/789
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(5 + 10/12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(8, "feet"),
  31000. weight: math.unit(250, "lb"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/eikthynir/front.svg",
  31004. extra: 1332/1166,
  31005. bottom: 82/1414
  31006. }
  31007. },
  31008. back: {
  31009. height: math.unit(8, "feet"),
  31010. weight: math.unit(250, "lb"),
  31011. name: "Back",
  31012. image: {
  31013. source: "./media/characters/eikthynir/back.svg",
  31014. extra: 1342/1190,
  31015. bottom: 19/1361
  31016. }
  31017. },
  31018. dick: {
  31019. height: math.unit(2.35, "feet"),
  31020. name: "Dick",
  31021. image: {
  31022. source: "./media/characters/eikthynir/dick.svg"
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(8, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(99, "meters"),
  31039. weight: math.unit(13000, "tons"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/zlmos/front.svg",
  31043. extra: 2202/1992,
  31044. bottom: 315/2517
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Macro",
  31051. height: math.unit(99, "meters"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(6 + 5/12, "feet"),
  31061. name: "Front",
  31062. image: {
  31063. source: "./media/characters/purri/front.svg",
  31064. extra: 1698/1610,
  31065. bottom: 32/1730
  31066. }
  31067. },
  31068. frontAlt: {
  31069. height: math.unit(6 + 5/12, "feet"),
  31070. name: "Front (Alt)",
  31071. image: {
  31072. source: "./media/characters/purri/front-alt.svg",
  31073. extra: 450/420,
  31074. bottom: 26/476
  31075. }
  31076. },
  31077. boots: {
  31078. height: math.unit(5.5, "feet"),
  31079. name: "Boots",
  31080. image: {
  31081. source: "./media/characters/purri/boots.svg",
  31082. extra: 905/853,
  31083. bottom: 18/923
  31084. }
  31085. },
  31086. lying: {
  31087. height: math.unit(2, "feet"),
  31088. name: "Lying",
  31089. image: {
  31090. source: "./media/characters/purri/lying.svg",
  31091. extra: 940/843,
  31092. bottom: 146/1086
  31093. }
  31094. },
  31095. devious: {
  31096. height: math.unit(1.77, "feet"),
  31097. name: "Devious",
  31098. image: {
  31099. source: "./media/characters/purri/devious.svg",
  31100. extra: 1440/1155,
  31101. bottom: 147/1587
  31102. }
  31103. },
  31104. bean: {
  31105. height: math.unit(1.94, "feet"),
  31106. name: "Bean",
  31107. image: {
  31108. source: "./media/characters/purri/bean.svg"
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Micro",
  31115. height: math.unit(1, "mm")
  31116. },
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(6 + 5/12, "feet"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Macro :3c",
  31124. height: math.unit(2, "miles")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(6 + 2/12, "feet"),
  31133. weight: math.unit(250, "lb"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/moonlight/front.svg",
  31137. extra: 1044/908,
  31138. bottom: 56/1100
  31139. }
  31140. },
  31141. feral: {
  31142. height: math.unit(3 + 1/12, "feet"),
  31143. weight: math.unit(50, "kg"),
  31144. name: "Feral",
  31145. image: {
  31146. source: "./media/characters/moonlight/feral.svg",
  31147. extra: 3705/2791,
  31148. bottom: 145/3850
  31149. }
  31150. },
  31151. paw: {
  31152. height: math.unit(1, "feet"),
  31153. name: "Paw",
  31154. image: {
  31155. source: "./media/characters/moonlight/paw.svg"
  31156. }
  31157. },
  31158. paws: {
  31159. height: math.unit(0.98, "feet"),
  31160. name: "Paws",
  31161. image: {
  31162. source: "./media/characters/moonlight/paws.svg",
  31163. extra: 939/939,
  31164. bottom: 50/989
  31165. }
  31166. },
  31167. mouth: {
  31168. height: math.unit(0.48, "feet"),
  31169. name: "Mouth",
  31170. image: {
  31171. source: "./media/characters/moonlight/mouth.svg"
  31172. }
  31173. },
  31174. dick: {
  31175. height: math.unit(1.46, "feet"),
  31176. name: "Dick",
  31177. image: {
  31178. source: "./media/characters/moonlight/dick.svg"
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(6 + 2/12, "feet"),
  31186. default: true
  31187. },
  31188. {
  31189. name: "Macro",
  31190. height: math.unit(300, "feet")
  31191. },
  31192. {
  31193. name: "Macro+",
  31194. height: math.unit(1, "mile")
  31195. },
  31196. {
  31197. name: "Mt. Moon",
  31198. height: math.unit(5, "miles")
  31199. },
  31200. {
  31201. name: "Megamacro",
  31202. height: math.unit(15, "miles")
  31203. },
  31204. ]
  31205. ))
  31206. characterMakers.push(() => makeCharacter(
  31207. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31208. {
  31209. back: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(150, "lb"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/sylen/back.svg",
  31215. extra: 1335/1273,
  31216. bottom: 107/1442
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(5 + 5/12, "feet")
  31224. },
  31225. {
  31226. name: "Megamacro",
  31227. height: math.unit(3, "miles"),
  31228. default: true
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31234. {
  31235. front: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(190, "lb"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/huttser/front.svg",
  31241. extra: 1152/1058,
  31242. bottom: 23/1175
  31243. }
  31244. },
  31245. side: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(190, "lb"),
  31248. name: "Side",
  31249. image: {
  31250. source: "./media/characters/huttser/side.svg",
  31251. extra: 1174/1065,
  31252. bottom: 18/1192
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(190, "lb"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/huttser/back.svg",
  31261. extra: 1158/1056,
  31262. bottom: 12/1170
  31263. }
  31264. },
  31265. },
  31266. [
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31271. {
  31272. side: {
  31273. height: math.unit(12 + 9/12, "feet"),
  31274. weight: math.unit(15000, "lb"),
  31275. name: "Side",
  31276. image: {
  31277. source: "./media/characters/faan/side.svg",
  31278. extra: 2747/2697,
  31279. bottom: 0/2747
  31280. }
  31281. },
  31282. front: {
  31283. height: math.unit(12 + 9/12, "feet"),
  31284. weight: math.unit(15000, "lb"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/faan/front.svg",
  31288. extra: 607/571,
  31289. bottom: 24/631
  31290. }
  31291. },
  31292. head: {
  31293. height: math.unit(2.85, "feet"),
  31294. name: "Head",
  31295. image: {
  31296. source: "./media/characters/faan/head.svg"
  31297. }
  31298. },
  31299. headAlt: {
  31300. height: math.unit(3.13, "feet"),
  31301. name: "Head-alt",
  31302. image: {
  31303. source: "./media/characters/faan/head-alt.svg"
  31304. }
  31305. },
  31306. },
  31307. [
  31308. {
  31309. name: "Normal",
  31310. height: math.unit(12 + 9/12, "feet"),
  31311. default: true
  31312. },
  31313. ]
  31314. ))
  31315. characterMakers.push(() => makeCharacter(
  31316. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31317. {
  31318. front: {
  31319. height: math.unit(6, "feet"),
  31320. weight: math.unit(300, "lb"),
  31321. name: "Front",
  31322. image: {
  31323. source: "./media/characters/tanio/front.svg",
  31324. extra: 711/673,
  31325. bottom: 25/736
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(6, "feet"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(3, "inches"),
  31342. name: "Front",
  31343. image: {
  31344. source: "./media/characters/noboru/front.svg",
  31345. extra: 1039/932,
  31346. bottom: 18/1057
  31347. }
  31348. },
  31349. },
  31350. [
  31351. {
  31352. name: "Micro",
  31353. height: math.unit(3, "inches"),
  31354. default: true
  31355. },
  31356. ]
  31357. ))
  31358. characterMakers.push(() => makeCharacter(
  31359. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31360. {
  31361. front: {
  31362. height: math.unit(1.85, "meters"),
  31363. weight: math.unit(80, "kg"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/daniel-barrett/front.svg",
  31367. extra: 355/337,
  31368. bottom: 9/364
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Pico",
  31375. height: math.unit(0.0433, "mm")
  31376. },
  31377. {
  31378. name: "Nano",
  31379. height: math.unit(1.5, "mm")
  31380. },
  31381. {
  31382. name: "Micro",
  31383. height: math.unit(5.3, "cm"),
  31384. default: true
  31385. },
  31386. {
  31387. name: "Normal",
  31388. height: math.unit(1.85, "meters")
  31389. },
  31390. {
  31391. name: "Macro",
  31392. height: math.unit(64.7, "meters")
  31393. },
  31394. {
  31395. name: "Megamacro",
  31396. height: math.unit(2.26, "km")
  31397. },
  31398. {
  31399. name: "Gigamacro",
  31400. height: math.unit(79, "km")
  31401. },
  31402. {
  31403. name: "Teramacro",
  31404. height: math.unit(2765, "km")
  31405. },
  31406. {
  31407. name: "Petamacro",
  31408. height: math.unit(96678, "km")
  31409. },
  31410. ]
  31411. ))
  31412. characterMakers.push(() => makeCharacter(
  31413. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31414. {
  31415. front: {
  31416. height: math.unit(30, "meters"),
  31417. weight: math.unit(400, "tons"),
  31418. name: "Front",
  31419. image: {
  31420. source: "./media/characters/zeel/front.svg",
  31421. extra: 2599/2599,
  31422. bottom: 226/2825
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Macro",
  31429. height: math.unit(30, "meters"),
  31430. default: true
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(6 + 7/12, "feet"),
  31439. weight: math.unit(210, "lb"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/tarn/front.svg",
  31443. extra: 3517/3220,
  31444. bottom: 91/3608
  31445. }
  31446. },
  31447. back: {
  31448. height: math.unit(6 + 7/12, "feet"),
  31449. weight: math.unit(210, "lb"),
  31450. name: "Back",
  31451. image: {
  31452. source: "./media/characters/tarn/back.svg",
  31453. extra: 3566/3241,
  31454. bottom: 34/3600
  31455. }
  31456. },
  31457. dick: {
  31458. height: math.unit(1.65, "feet"),
  31459. name: "Dick",
  31460. image: {
  31461. source: "./media/characters/tarn/dick.svg"
  31462. }
  31463. },
  31464. paw: {
  31465. height: math.unit(1.80, "feet"),
  31466. name: "Paw",
  31467. image: {
  31468. source: "./media/characters/tarn/paw.svg"
  31469. }
  31470. },
  31471. tongue: {
  31472. height: math.unit(0.97, "feet"),
  31473. name: "Tongue",
  31474. image: {
  31475. source: "./media/characters/tarn/tongue.svg"
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Micro",
  31482. height: math.unit(4, "inches")
  31483. },
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(6 + 7/12, "feet"),
  31487. default: true
  31488. },
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(300, "feet")
  31492. },
  31493. ]
  31494. ))
  31495. characterMakers.push(() => makeCharacter(
  31496. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31497. {
  31498. front: {
  31499. height: math.unit(5 + 7/12, "feet"),
  31500. weight: math.unit(80, "kg"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31504. extra: 3023/2865,
  31505. bottom: 33/3056
  31506. }
  31507. },
  31508. back: {
  31509. height: math.unit(5 + 7/12, "feet"),
  31510. weight: math.unit(80, "kg"),
  31511. name: "Back",
  31512. image: {
  31513. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31514. extra: 3020/2886,
  31515. bottom: 30/3050
  31516. }
  31517. },
  31518. dick: {
  31519. height: math.unit(0.98, "feet"),
  31520. name: "Dick",
  31521. image: {
  31522. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31523. }
  31524. },
  31525. anatomy: {
  31526. height: math.unit(2.86, "feet"),
  31527. name: "Anatomy",
  31528. image: {
  31529. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Really Small",
  31536. height: math.unit(2, "inches")
  31537. },
  31538. {
  31539. name: "Micro",
  31540. height: math.unit(5.583, "inches")
  31541. },
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(5 + 7/12, "feet"),
  31545. default: true
  31546. },
  31547. {
  31548. name: "Macro",
  31549. height: math.unit(67, "feet")
  31550. },
  31551. {
  31552. name: "Megamacro",
  31553. height: math.unit(134, "feet")
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31559. {
  31560. front: {
  31561. height: math.unit(9, "feet"),
  31562. weight: math.unit(120, "lb"),
  31563. name: "Front",
  31564. image: {
  31565. source: "./media/characters/sally/front.svg",
  31566. extra: 1506/1349,
  31567. bottom: 66/1572
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(9, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(8, "feet"),
  31584. weight: math.unit(900, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/owen/front.svg",
  31588. extra: 1761/1657,
  31589. bottom: 74/1835
  31590. }
  31591. },
  31592. side: {
  31593. height: math.unit(8, "feet"),
  31594. weight: math.unit(900, "lb"),
  31595. name: "Side",
  31596. image: {
  31597. source: "./media/characters/owen/side.svg",
  31598. extra: 1797/1734,
  31599. bottom: 30/1827
  31600. }
  31601. },
  31602. back: {
  31603. height: math.unit(8, "feet"),
  31604. weight: math.unit(900, "lb"),
  31605. name: "Back",
  31606. image: {
  31607. source: "./media/characters/owen/back.svg",
  31608. extra: 1796/1706,
  31609. bottom: 59/1855
  31610. }
  31611. },
  31612. maw: {
  31613. height: math.unit(1.76, "feet"),
  31614. name: "Maw",
  31615. image: {
  31616. source: "./media/characters/owen/maw.svg"
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(8, "feet"),
  31624. default: true
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31630. {
  31631. front: {
  31632. height: math.unit(4, "feet"),
  31633. weight: math.unit(400, "lb"),
  31634. name: "Front",
  31635. image: {
  31636. source: "./media/characters/ryth/front.svg",
  31637. extra: 876/691,
  31638. bottom: 25/901
  31639. }
  31640. },
  31641. goia: {
  31642. height: math.unit(12, "feet"),
  31643. weight: math.unit(10800, "lb"),
  31644. name: "Goia",
  31645. image: {
  31646. source: "./media/characters/ryth/goia.svg",
  31647. extra: 3450/3198,
  31648. bottom: 61/3511
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(4, "feet"),
  31656. default: true
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(7, "feet"),
  31665. weight: math.unit(180, "lb"),
  31666. name: "Front",
  31667. image: {
  31668. source: "./media/characters/necrolance/front.svg",
  31669. extra: 1062/947,
  31670. bottom: 41/1103
  31671. }
  31672. },
  31673. back: {
  31674. height: math.unit(7, "feet"),
  31675. weight: math.unit(180, "lb"),
  31676. name: "Back",
  31677. image: {
  31678. source: "./media/characters/necrolance/back.svg",
  31679. extra: 1045/984,
  31680. bottom: 14/1059
  31681. }
  31682. },
  31683. wing: {
  31684. height: math.unit(2.67, "feet"),
  31685. name: "Wing",
  31686. image: {
  31687. source: "./media/characters/necrolance/wing.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(7, "feet"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31701. {
  31702. front: {
  31703. height: math.unit(76, "meters"),
  31704. weight: math.unit(30000, "tons"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/tyler/front.svg",
  31708. extra: 1640/1640,
  31709. bottom: 114/1754
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Macro",
  31716. height: math.unit(76, "meters"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(4 + 11/12, "feet"),
  31726. weight: math.unit(132, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/icey/front.svg",
  31730. extra: 2750/2550,
  31731. bottom: 33/2783
  31732. }
  31733. },
  31734. back: {
  31735. height: math.unit(4 + 11/12, "feet"),
  31736. weight: math.unit(132, "lb"),
  31737. name: "Back",
  31738. image: {
  31739. source: "./media/characters/icey/back.svg",
  31740. extra: 2624/2481,
  31741. bottom: 35/2659
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(4 + 11/12, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31755. {
  31756. front: {
  31757. height: math.unit(100, "feet"),
  31758. weight: math.unit(0, "lb"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/smile/front.svg",
  31762. extra: 2983/2912,
  31763. bottom: 162/3145
  31764. }
  31765. },
  31766. back: {
  31767. height: math.unit(100, "feet"),
  31768. weight: math.unit(0, "lb"),
  31769. name: "Back",
  31770. image: {
  31771. source: "./media/characters/smile/back.svg",
  31772. extra: 3143/3031,
  31773. bottom: 91/3234
  31774. }
  31775. },
  31776. head: {
  31777. height: math.unit(26.3, "feet"),
  31778. weight: math.unit(0, "lb"),
  31779. name: "Head",
  31780. image: {
  31781. source: "./media/characters/smile/head.svg"
  31782. }
  31783. },
  31784. collar: {
  31785. height: math.unit(5.3, "feet"),
  31786. weight: math.unit(0, "lb"),
  31787. name: "Collar",
  31788. image: {
  31789. source: "./media/characters/smile/collar.svg"
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Macro",
  31796. height: math.unit(100, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31803. {
  31804. dragon: {
  31805. height: math.unit(26, "feet"),
  31806. weight: math.unit(36, "tons"),
  31807. name: "Dragon",
  31808. image: {
  31809. source: "./media/characters/arimphae/dragon.svg",
  31810. extra: 1574/983,
  31811. bottom: 357/1931
  31812. }
  31813. },
  31814. drake: {
  31815. height: math.unit(9, "feet"),
  31816. weight: math.unit(1.5, "tons"),
  31817. name: "Drake",
  31818. image: {
  31819. source: "./media/characters/arimphae/drake.svg",
  31820. extra: 1120/925,
  31821. bottom: 435/1555
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Small",
  31828. height: math.unit(26*5/9, "feet")
  31829. },
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(26, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(8 + 9/12, "feet"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/xander/front.svg",
  31845. extra: 848/673,
  31846. bottom: 62/910
  31847. }
  31848. },
  31849. },
  31850. [
  31851. {
  31852. name: "Normal",
  31853. height: math.unit(8 + 9/12, "feet"),
  31854. default: true
  31855. },
  31856. {
  31857. name: "Gaze Grabber",
  31858. height: math.unit(13 + 8/12, "feet")
  31859. },
  31860. {
  31861. name: "Jaw Dropper",
  31862. height: math.unit(27, "feet")
  31863. },
  31864. {
  31865. name: "Show Stopper",
  31866. height: math.unit(136, "feet")
  31867. },
  31868. {
  31869. name: "Superstar",
  31870. height: math.unit(1.9e6, "miles")
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31876. {
  31877. side: {
  31878. height: math.unit(2100, "feet"),
  31879. name: "Side",
  31880. image: {
  31881. source: "./media/characters/osiris/side.svg",
  31882. extra: 1105/939,
  31883. bottom: 167/1272
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Macro",
  31890. height: math.unit(2100, "feet"),
  31891. default: true
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(6 + 8/12, "feet"),
  31900. weight: math.unit(225, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/rhys-londe/front.svg",
  31904. extra: 2258/2141,
  31905. bottom: 188/2446
  31906. }
  31907. },
  31908. back: {
  31909. height: math.unit(6 + 8/12, "feet"),
  31910. weight: math.unit(225, "lb"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/rhys-londe/back.svg",
  31914. extra: 2237/2137,
  31915. bottom: 63/2300
  31916. }
  31917. },
  31918. frontNsfw: {
  31919. height: math.unit(6 + 8/12, "feet"),
  31920. weight: math.unit(225, "lb"),
  31921. name: "Front (NSFW)",
  31922. image: {
  31923. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31924. extra: 2258/2141,
  31925. bottom: 188/2446
  31926. }
  31927. },
  31928. backNsfw: {
  31929. height: math.unit(6 + 8/12, "feet"),
  31930. weight: math.unit(225, "lb"),
  31931. name: "Back (NSFW)",
  31932. image: {
  31933. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31934. extra: 2237/2137,
  31935. bottom: 63/2300
  31936. }
  31937. },
  31938. dick: {
  31939. height: math.unit(30, "inches"),
  31940. name: "Dick",
  31941. image: {
  31942. source: "./media/characters/rhys-londe/dick.svg"
  31943. }
  31944. },
  31945. maw: {
  31946. height: math.unit(1.6, "feet"),
  31947. name: "Maw",
  31948. image: {
  31949. source: "./media/characters/rhys-londe/maw.svg"
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(6 + 8/12, "feet"),
  31957. default: true
  31958. },
  31959. ]
  31960. ))
  31961. characterMakers.push(() => makeCharacter(
  31962. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31963. {
  31964. front: {
  31965. height: math.unit(3 + 10/12, "feet"),
  31966. weight: math.unit(90, "lb"),
  31967. name: "Front",
  31968. image: {
  31969. source: "./media/characters/taivas-ensim/front.svg",
  31970. extra: 1327/1216,
  31971. bottom: 96/1423
  31972. }
  31973. },
  31974. back: {
  31975. height: math.unit(3 + 10/12, "feet"),
  31976. weight: math.unit(90, "lb"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/taivas-ensim/back.svg",
  31980. extra: 1355/1247,
  31981. bottom: 11/1366
  31982. }
  31983. },
  31984. frontNsfw: {
  31985. height: math.unit(3 + 10/12, "feet"),
  31986. weight: math.unit(90, "lb"),
  31987. name: "Front (NSFW)",
  31988. image: {
  31989. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31990. extra: 1327/1216,
  31991. bottom: 96/1423
  31992. }
  31993. },
  31994. backNsfw: {
  31995. height: math.unit(3 + 10/12, "feet"),
  31996. weight: math.unit(90, "lb"),
  31997. name: "Back (NSFW)",
  31998. image: {
  31999. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32000. extra: 1355/1247,
  32001. bottom: 11/1366
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(3 + 10/12, "feet"),
  32009. default: true
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32015. {
  32016. front: {
  32017. height: math.unit(9 + 6/12, "feet"),
  32018. weight: math.unit(940, "lb"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/byliss/front.svg",
  32022. extra: 1327/1290,
  32023. bottom: 82/1409
  32024. }
  32025. },
  32026. back: {
  32027. height: math.unit(9 + 6/12, "feet"),
  32028. weight: math.unit(940, "lb"),
  32029. name: "Back",
  32030. image: {
  32031. source: "./media/characters/byliss/back.svg",
  32032. extra: 1376/1349,
  32033. bottom: 9/1385
  32034. }
  32035. },
  32036. frontNsfw: {
  32037. height: math.unit(9 + 6/12, "feet"),
  32038. weight: math.unit(940, "lb"),
  32039. name: "Front (NSFW)",
  32040. image: {
  32041. source: "./media/characters/byliss/front-nsfw.svg",
  32042. extra: 1327/1290,
  32043. bottom: 82/1409
  32044. }
  32045. },
  32046. backNsfw: {
  32047. height: math.unit(9 + 6/12, "feet"),
  32048. weight: math.unit(940, "lb"),
  32049. name: "Back (NSFW)",
  32050. image: {
  32051. source: "./media/characters/byliss/back-nsfw.svg",
  32052. extra: 1376/1349,
  32053. bottom: 9/1385
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(9 + 6/12, "feet"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(5 + 2/12, "feet"),
  32070. weight: math.unit(200, "lb"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/noraly/front.svg",
  32074. extra: 4985/4773,
  32075. bottom: 150/5135
  32076. }
  32077. },
  32078. full: {
  32079. height: math.unit(5 + 2/12, "feet"),
  32080. weight: math.unit(164, "lb"),
  32081. name: "Full",
  32082. image: {
  32083. source: "./media/characters/noraly/full.svg",
  32084. extra: 1114/1059,
  32085. bottom: 35/1149
  32086. }
  32087. },
  32088. fuller: {
  32089. height: math.unit(5 + 2/12, "feet"),
  32090. weight: math.unit(230, "lb"),
  32091. name: "Fuller",
  32092. image: {
  32093. source: "./media/characters/noraly/fuller.svg",
  32094. extra: 1114/1059,
  32095. bottom: 35/1149
  32096. }
  32097. },
  32098. fullest: {
  32099. height: math.unit(5 + 2/12, "feet"),
  32100. weight: math.unit(300, "lb"),
  32101. name: "Fullest",
  32102. image: {
  32103. source: "./media/characters/noraly/fullest.svg",
  32104. extra: 1114/1059,
  32105. bottom: 35/1149
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Normal",
  32112. height: math.unit(5 + 2/12, "feet"),
  32113. default: true
  32114. },
  32115. ]
  32116. ))
  32117. characterMakers.push(() => makeCharacter(
  32118. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32119. {
  32120. front: {
  32121. height: math.unit(5 + 2/12, "feet"),
  32122. weight: math.unit(210, "lb"),
  32123. name: "Front",
  32124. image: {
  32125. source: "./media/characters/pera/front.svg",
  32126. extra: 1560/1531,
  32127. bottom: 165/1725
  32128. }
  32129. },
  32130. back: {
  32131. height: math.unit(5 + 2/12, "feet"),
  32132. weight: math.unit(210, "lb"),
  32133. name: "Back",
  32134. image: {
  32135. source: "./media/characters/pera/back.svg",
  32136. extra: 1523/1493,
  32137. bottom: 152/1675
  32138. }
  32139. },
  32140. dick: {
  32141. height: math.unit(2.4, "feet"),
  32142. name: "Dick",
  32143. image: {
  32144. source: "./media/characters/pera/dick.svg"
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Normal",
  32151. height: math.unit(5 + 2/12, "feet"),
  32152. default: true
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32158. {
  32159. front: {
  32160. height: math.unit(12, "feet"),
  32161. weight: math.unit(3200, "lb"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/julian/front.svg",
  32165. extra: 2962/2701,
  32166. bottom: 184/3146
  32167. }
  32168. },
  32169. maw: {
  32170. height: math.unit(5.35, "feet"),
  32171. name: "Maw",
  32172. image: {
  32173. source: "./media/characters/julian/maw.svg"
  32174. }
  32175. },
  32176. paw: {
  32177. height: math.unit(3.07, "feet"),
  32178. name: "Paw",
  32179. image: {
  32180. source: "./media/characters/julian/paw.svg"
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Default",
  32187. height: math.unit(12, "feet"),
  32188. default: true
  32189. },
  32190. {
  32191. name: "Big",
  32192. height: math.unit(50, "feet")
  32193. },
  32194. {
  32195. name: "Really Big",
  32196. height: math.unit(1, "mile")
  32197. },
  32198. {
  32199. name: "Extremely Big",
  32200. height: math.unit(100, "miles")
  32201. },
  32202. {
  32203. name: "Planet Hugger",
  32204. height: math.unit(200, "megameters")
  32205. },
  32206. {
  32207. name: "Unreasonably Big",
  32208. height: math.unit(1e300, "meters")
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32214. {
  32215. solgooleo: {
  32216. height: math.unit(4, "meters"),
  32217. weight: math.unit(6000*1.5, "kg"),
  32218. volume: math.unit(6000, "liters"),
  32219. name: "Solgooleo",
  32220. image: {
  32221. source: "./media/characters/pi/solgooleo.svg",
  32222. extra: 388/331,
  32223. bottom: 29/417
  32224. }
  32225. },
  32226. },
  32227. [
  32228. {
  32229. name: "Normal",
  32230. height: math.unit(4, "meters"),
  32231. default: true
  32232. },
  32233. ]
  32234. ))
  32235. characterMakers.push(() => makeCharacter(
  32236. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32237. {
  32238. front: {
  32239. height: math.unit(8 + 2/12, "feet"),
  32240. weight: math.unit(4, "tons"),
  32241. name: "Front",
  32242. image: {
  32243. source: "./media/characters/shaun/front.svg",
  32244. extra: 1550/1505,
  32245. bottom: 353/1903
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Lorg",
  32252. height: math.unit(8 + 2/12, "feet"),
  32253. default: true
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32259. {
  32260. front: {
  32261. height: math.unit(7, "feet"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/sini/front.svg",
  32265. extra: 726/678,
  32266. bottom: 35/761
  32267. }
  32268. },
  32269. back: {
  32270. height: math.unit(7, "feet"),
  32271. name: "Back",
  32272. image: {
  32273. source: "./media/characters/sini/back.svg",
  32274. extra: 743/701,
  32275. bottom: 12/755
  32276. }
  32277. },
  32278. mawAnthro: {
  32279. height: math.unit(2.14, "feet"),
  32280. name: "Maw (Anthro)",
  32281. image: {
  32282. source: "./media/characters/sini/maw-anthro.svg"
  32283. }
  32284. },
  32285. dick: {
  32286. height: math.unit(1.45, "feet"),
  32287. name: "Dick (Anthro)",
  32288. image: {
  32289. source: "./media/characters/sini/dick-anthro.svg"
  32290. }
  32291. },
  32292. feral: {
  32293. height: math.unit(16, "feet"),
  32294. name: "Feral",
  32295. image: {
  32296. source: "./media/characters/sini/feral.svg",
  32297. extra: 814/605,
  32298. bottom: 11/825
  32299. }
  32300. },
  32301. mawFeral: {
  32302. height: math.unit(5.66, "feet"),
  32303. name: "Maw-feral",
  32304. image: {
  32305. source: "./media/characters/sini/maw-feral.svg"
  32306. }
  32307. },
  32308. footFeral: {
  32309. height: math.unit(5.17, "feet"),
  32310. name: "Foot-feral",
  32311. image: {
  32312. source: "./media/characters/sini/foot-feral.svg"
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Normal",
  32319. height: math.unit(7, "feet"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32326. {
  32327. side: {
  32328. height: math.unit(13, "meters"),
  32329. weight: math.unit(9072, "kg"),
  32330. name: "Side",
  32331. image: {
  32332. source: "./media/characters/raylldo/side.svg",
  32333. extra: 403/344,
  32334. bottom: 42/445
  32335. }
  32336. },
  32337. leaping: {
  32338. height: math.unit(12.3, "meters"),
  32339. weight: math.unit(9072, "kg"),
  32340. name: "Leaping",
  32341. image: {
  32342. source: "./media/characters/raylldo/leaping.svg",
  32343. extra: 470/249,
  32344. bottom: 13/483
  32345. }
  32346. },
  32347. flying: {
  32348. height: math.unit(18, "meters"),
  32349. weight: math.unit(9072, "kg"),
  32350. name: "Flying",
  32351. image: {
  32352. source: "./media/characters/raylldo/flying.svg"
  32353. }
  32354. },
  32355. head: {
  32356. height: math.unit(5.85, "meters"),
  32357. name: "Head",
  32358. image: {
  32359. source: "./media/characters/raylldo/head.svg"
  32360. }
  32361. },
  32362. maw: {
  32363. height: math.unit(5.32, "meters"),
  32364. name: "Maw",
  32365. image: {
  32366. source: "./media/characters/raylldo/maw.svg"
  32367. }
  32368. },
  32369. eye: {
  32370. height: math.unit(0.54, "meters"),
  32371. name: "Eye",
  32372. image: {
  32373. source: "./media/characters/raylldo/eye.svg"
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(13, "meters"),
  32381. default: true
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32387. {
  32388. anthroFront: {
  32389. height: math.unit(9, "feet"),
  32390. weight: math.unit(600, "lb"),
  32391. name: "Anthro (Front)",
  32392. image: {
  32393. source: "./media/characters/glint/anthro-front.svg",
  32394. extra: 1097/1018,
  32395. bottom: 28/1125
  32396. }
  32397. },
  32398. anthroBack: {
  32399. height: math.unit(9, "feet"),
  32400. weight: math.unit(600, "lb"),
  32401. name: "Anthro (Back)",
  32402. image: {
  32403. source: "./media/characters/glint/anthro-back.svg",
  32404. extra: 1154/997,
  32405. bottom: 36/1190
  32406. }
  32407. },
  32408. feral: {
  32409. height: math.unit(11, "feet"),
  32410. weight: math.unit(50000, "lb"),
  32411. name: "Feral",
  32412. image: {
  32413. source: "./media/characters/glint/feral.svg",
  32414. extra: 3035/1585,
  32415. bottom: 1169/4204
  32416. }
  32417. },
  32418. dickAnthro: {
  32419. height: math.unit(0.7, "meters"),
  32420. name: "Dick (Anthro)",
  32421. image: {
  32422. source: "./media/characters/glint/dick-anthro.svg"
  32423. }
  32424. },
  32425. dickFeral: {
  32426. height: math.unit(2.65, "meters"),
  32427. name: "Dick (Feral)",
  32428. image: {
  32429. source: "./media/characters/glint/dick-feral.svg"
  32430. }
  32431. },
  32432. slitHidden: {
  32433. height: math.unit(5.85, "meters"),
  32434. name: "Slit (Hidden)",
  32435. image: {
  32436. source: "./media/characters/glint/slit-hidden.svg"
  32437. }
  32438. },
  32439. slitErect: {
  32440. height: math.unit(5.85, "meters"),
  32441. name: "Slit (Erect)",
  32442. image: {
  32443. source: "./media/characters/glint/slit-erect.svg"
  32444. }
  32445. },
  32446. mawAnthro: {
  32447. height: math.unit(0.63, "meters"),
  32448. name: "Maw (Anthro)",
  32449. image: {
  32450. source: "./media/characters/glint/maw.svg"
  32451. }
  32452. },
  32453. mawFeral: {
  32454. height: math.unit(2.89, "meters"),
  32455. name: "Maw (Feral)",
  32456. image: {
  32457. source: "./media/characters/glint/maw.svg"
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(9, "feet"),
  32465. default: true
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32471. {
  32472. side: {
  32473. height: math.unit(15, "feet"),
  32474. weight: math.unit(5000, "kg"),
  32475. name: "Side",
  32476. image: {
  32477. source: "./media/characters/kairne/side.svg",
  32478. extra: 979/811,
  32479. bottom: 13/992
  32480. }
  32481. },
  32482. front: {
  32483. height: math.unit(15, "feet"),
  32484. weight: math.unit(5000, "kg"),
  32485. name: "Front",
  32486. image: {
  32487. source: "./media/characters/kairne/front.svg",
  32488. extra: 908/814,
  32489. bottom: 26/934
  32490. }
  32491. },
  32492. sideNsfw: {
  32493. height: math.unit(15, "feet"),
  32494. weight: math.unit(5000, "kg"),
  32495. name: "Side (NSFW)",
  32496. image: {
  32497. source: "./media/characters/kairne/side-nsfw.svg",
  32498. extra: 979/811,
  32499. bottom: 13/992
  32500. }
  32501. },
  32502. frontNsfw: {
  32503. height: math.unit(15, "feet"),
  32504. weight: math.unit(5000, "kg"),
  32505. name: "Front (NSFW)",
  32506. image: {
  32507. source: "./media/characters/kairne/front-nsfw.svg",
  32508. extra: 908/814,
  32509. bottom: 26/934
  32510. }
  32511. },
  32512. dickCaged: {
  32513. height: math.unit(0.65, "meters"),
  32514. name: "Dick-caged",
  32515. image: {
  32516. source: "./media/characters/kairne/dick-caged.svg"
  32517. }
  32518. },
  32519. dick: {
  32520. height: math.unit(0.79, "meters"),
  32521. name: "Dick",
  32522. image: {
  32523. source: "./media/characters/kairne/dick.svg"
  32524. }
  32525. },
  32526. genitals: {
  32527. height: math.unit(1.29, "meters"),
  32528. name: "Genitals",
  32529. image: {
  32530. source: "./media/characters/kairne/genitals.svg"
  32531. }
  32532. },
  32533. maw: {
  32534. height: math.unit(1.73, "meters"),
  32535. name: "Maw",
  32536. image: {
  32537. source: "./media/characters/kairne/maw.svg"
  32538. }
  32539. },
  32540. },
  32541. [
  32542. {
  32543. name: "Normal",
  32544. height: math.unit(15, "feet"),
  32545. default: true
  32546. },
  32547. ]
  32548. ))
  32549. characterMakers.push(() => makeCharacter(
  32550. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32551. {
  32552. front: {
  32553. height: math.unit(5 + 8/12, "feet"),
  32554. weight: math.unit(139, "lb"),
  32555. name: "Front",
  32556. image: {
  32557. source: "./media/characters/biscuit-jackal/front.svg",
  32558. extra: 2106/1961,
  32559. bottom: 58/2164
  32560. }
  32561. },
  32562. back: {
  32563. height: math.unit(5 + 8/12, "feet"),
  32564. weight: math.unit(139, "lb"),
  32565. name: "Back",
  32566. image: {
  32567. source: "./media/characters/biscuit-jackal/back.svg",
  32568. extra: 2132/1976,
  32569. bottom: 57/2189
  32570. }
  32571. },
  32572. werejackal: {
  32573. height: math.unit(6 + 3/12, "feet"),
  32574. weight: math.unit(188, "lb"),
  32575. name: "Werejackal",
  32576. image: {
  32577. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32578. extra: 2373/2178,
  32579. bottom: 53/2426
  32580. }
  32581. },
  32582. },
  32583. [
  32584. {
  32585. name: "Normal",
  32586. height: math.unit(5 + 8/12, "feet"),
  32587. default: true
  32588. },
  32589. ]
  32590. ))
  32591. characterMakers.push(() => makeCharacter(
  32592. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32593. {
  32594. front: {
  32595. height: math.unit(140, "cm"),
  32596. weight: math.unit(45, "kg"),
  32597. name: "Front",
  32598. image: {
  32599. source: "./media/characters/tayra-white/front.svg",
  32600. extra: 2229/2192,
  32601. bottom: 75/2304
  32602. }
  32603. },
  32604. },
  32605. [
  32606. {
  32607. name: "Normal",
  32608. height: math.unit(140, "cm"),
  32609. default: true
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32615. {
  32616. front: {
  32617. height: math.unit(4 + 5/12, "feet"),
  32618. name: "Front",
  32619. image: {
  32620. source: "./media/characters/scoop/front.svg",
  32621. extra: 1257/1136,
  32622. bottom: 69/1326
  32623. }
  32624. },
  32625. back: {
  32626. height: math.unit(4 + 5/12, "feet"),
  32627. name: "Back",
  32628. image: {
  32629. source: "./media/characters/scoop/back.svg",
  32630. extra: 1321/1152,
  32631. bottom: 32/1353
  32632. }
  32633. },
  32634. maw: {
  32635. height: math.unit(0.68, "feet"),
  32636. name: "Maw",
  32637. image: {
  32638. source: "./media/characters/scoop/maw.svg"
  32639. }
  32640. },
  32641. },
  32642. [
  32643. {
  32644. name: "Really Small",
  32645. height: math.unit(1, "mm")
  32646. },
  32647. {
  32648. name: "Micro",
  32649. height: math.unit(1, "inch")
  32650. },
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(4 + 5/12, "feet"),
  32654. default: true
  32655. },
  32656. {
  32657. name: "Macro",
  32658. height: math.unit(200, "feet")
  32659. },
  32660. {
  32661. name: "Megamacro",
  32662. height: math.unit(3240, "feet")
  32663. },
  32664. {
  32665. name: "Teramacro",
  32666. height: math.unit(2500, "miles")
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(15 + 7/12, "feet"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/saphinara/front.svg",
  32678. extra: 604/546,
  32679. bottom: 19/623
  32680. }
  32681. },
  32682. side: {
  32683. height: math.unit(15 + 7/12, "feet"),
  32684. name: "Side",
  32685. image: {
  32686. source: "./media/characters/saphinara/side.svg",
  32687. extra: 605/547,
  32688. bottom: 6/611
  32689. }
  32690. },
  32691. back: {
  32692. height: math.unit(15 + 7/12, "feet"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/saphinara/back.svg",
  32696. extra: 591/531,
  32697. bottom: 13/604
  32698. }
  32699. },
  32700. frontTail: {
  32701. height: math.unit(15 + 7/12, "feet"),
  32702. name: "Front (Full Tail)",
  32703. image: {
  32704. source: "./media/characters/saphinara/front-tail.svg",
  32705. extra: 748/547,
  32706. bottom: 66/814
  32707. }
  32708. },
  32709. },
  32710. [
  32711. {
  32712. name: "Normal",
  32713. height: math.unit(15 + 7/12, "feet"),
  32714. default: true
  32715. },
  32716. {
  32717. name: "Angry",
  32718. height: math.unit(30 + 6/12, "feet")
  32719. },
  32720. {
  32721. name: "Enraged",
  32722. height: math.unit(102 + 1/12, "feet")
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(6 + 8/12, "feet"),
  32731. weight: math.unit(300, "lb"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/jrain/front.svg",
  32735. extra: 3039/2865,
  32736. bottom: 399/3438
  32737. }
  32738. },
  32739. back: {
  32740. height: math.unit(6 + 8/12, "feet"),
  32741. weight: math.unit(300, "lb"),
  32742. name: "Back",
  32743. image: {
  32744. source: "./media/characters/jrain/back.svg",
  32745. extra: 3089/2938,
  32746. bottom: 172/3261
  32747. }
  32748. },
  32749. head: {
  32750. height: math.unit(2.14, "feet"),
  32751. name: "Head",
  32752. image: {
  32753. source: "./media/characters/jrain/head.svg"
  32754. }
  32755. },
  32756. maw: {
  32757. height: math.unit(1.77, "feet"),
  32758. name: "Maw",
  32759. image: {
  32760. source: "./media/characters/jrain/maw.svg"
  32761. }
  32762. },
  32763. leftHand: {
  32764. height: math.unit(1.1, "feet"),
  32765. name: "Left Hand",
  32766. image: {
  32767. source: "./media/characters/jrain/left-hand.svg"
  32768. }
  32769. },
  32770. rightHand: {
  32771. height: math.unit(1.1, "feet"),
  32772. name: "Right Hand",
  32773. image: {
  32774. source: "./media/characters/jrain/right-hand.svg"
  32775. }
  32776. },
  32777. eye: {
  32778. height: math.unit(0.35, "feet"),
  32779. name: "Eye",
  32780. image: {
  32781. source: "./media/characters/jrain/eye.svg"
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(6 + 8/12, "feet"),
  32789. default: true
  32790. },
  32791. {
  32792. name: "Casually Large",
  32793. height: math.unit(25, "feet")
  32794. },
  32795. {
  32796. name: "Giant",
  32797. height: math.unit(100, "feet")
  32798. },
  32799. {
  32800. name: "Kaiju",
  32801. height: math.unit(300, "feet")
  32802. },
  32803. ]
  32804. ))
  32805. characterMakers.push(() => makeCharacter(
  32806. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32807. {
  32808. dragon: {
  32809. height: math.unit(5, "meters"),
  32810. name: "Dragon",
  32811. image: {
  32812. source: "./media/characters/sabrina/dragon.svg",
  32813. extra: 3670 / 2365,
  32814. bottom: 333 / 4003
  32815. }
  32816. },
  32817. gryphon: {
  32818. height: math.unit(3, "meters"),
  32819. name: "Gryphon",
  32820. image: {
  32821. source: "./media/characters/sabrina/gryphon.svg",
  32822. extra: 1576 / 945,
  32823. bottom: 71 / 1647
  32824. }
  32825. },
  32826. snake: {
  32827. height: math.unit(12, "meters"),
  32828. name: "Snake",
  32829. image: {
  32830. source: "./media/characters/sabrina/snake.svg",
  32831. extra: 1758 / 1320,
  32832. bottom: 186 / 1944
  32833. }
  32834. },
  32835. collar: {
  32836. height: math.unit(1.86, "meters"),
  32837. name: "Collar",
  32838. image: {
  32839. source: "./media/characters/sabrina/collar.svg"
  32840. }
  32841. },
  32842. eye: {
  32843. height: math.unit(0.53, "meters"),
  32844. name: "Eye",
  32845. image: {
  32846. source: "./media/characters/sabrina/eye.svg"
  32847. }
  32848. },
  32849. foot: {
  32850. height: math.unit(1.86, "meters"),
  32851. name: "Foot",
  32852. image: {
  32853. source: "./media/characters/sabrina/foot.svg"
  32854. }
  32855. },
  32856. hand: {
  32857. height: math.unit(1.32, "meters"),
  32858. name: "Hand",
  32859. image: {
  32860. source: "./media/characters/sabrina/hand.svg"
  32861. }
  32862. },
  32863. head: {
  32864. height: math.unit(2.44, "meters"),
  32865. name: "Head",
  32866. image: {
  32867. source: "./media/characters/sabrina/head.svg"
  32868. }
  32869. },
  32870. headAngry: {
  32871. height: math.unit(2.44, "meters"),
  32872. name: "Head (Angry))",
  32873. image: {
  32874. source: "./media/characters/sabrina/head-angry.svg"
  32875. }
  32876. },
  32877. maw: {
  32878. height: math.unit(1.65, "meters"),
  32879. name: "Maw",
  32880. image: {
  32881. source: "./media/characters/sabrina/maw.svg"
  32882. }
  32883. },
  32884. spikes: {
  32885. height: math.unit(1.69, "meters"),
  32886. name: "Spikes",
  32887. image: {
  32888. source: "./media/characters/sabrina/spikes.svg"
  32889. }
  32890. },
  32891. stomach: {
  32892. height: math.unit(1.15, "meters"),
  32893. name: "Stomach",
  32894. image: {
  32895. source: "./media/characters/sabrina/stomach.svg"
  32896. }
  32897. },
  32898. tongue: {
  32899. height: math.unit(1.27, "meters"),
  32900. name: "Tongue",
  32901. image: {
  32902. source: "./media/characters/sabrina/tongue.svg"
  32903. }
  32904. },
  32905. wingDorsal: {
  32906. height: math.unit(4.85, "meters"),
  32907. name: "Wing (Dorsal)",
  32908. image: {
  32909. source: "./media/characters/sabrina/wing-dorsal.svg"
  32910. }
  32911. },
  32912. wingVentral: {
  32913. height: math.unit(4.85, "meters"),
  32914. name: "Wing (Ventral)",
  32915. image: {
  32916. source: "./media/characters/sabrina/wing-ventral.svg"
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(5, "meters"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32930. {
  32931. frontMaid: {
  32932. height: math.unit(5 + 5/12, "feet"),
  32933. weight: math.unit(130, "lb"),
  32934. name: "Front (Maid)",
  32935. image: {
  32936. source: "./media/characters/midnight-tales/front-maid.svg",
  32937. extra: 489/454,
  32938. bottom: 61/550
  32939. }
  32940. },
  32941. frontFormal: {
  32942. height: math.unit(5 + 5/12, "feet"),
  32943. weight: math.unit(130, "lb"),
  32944. name: "Front (Formal)",
  32945. image: {
  32946. source: "./media/characters/midnight-tales/front-formal.svg",
  32947. extra: 489/454,
  32948. bottom: 61/550
  32949. }
  32950. },
  32951. back: {
  32952. height: math.unit(5 + 5/12, "feet"),
  32953. weight: math.unit(130, "lb"),
  32954. name: "Back",
  32955. image: {
  32956. source: "./media/characters/midnight-tales/back.svg",
  32957. extra: 498/456,
  32958. bottom: 33/531
  32959. }
  32960. },
  32961. frontBeast: {
  32962. height: math.unit(40, "feet"),
  32963. weight: math.unit(64000, "lb"),
  32964. name: "Front (Beast)",
  32965. image: {
  32966. source: "./media/characters/midnight-tales/front-beast.svg",
  32967. extra: 927/860,
  32968. bottom: 53/980
  32969. }
  32970. },
  32971. backBeast: {
  32972. height: math.unit(40, "feet"),
  32973. weight: math.unit(64000, "lb"),
  32974. name: "Back (Beast)",
  32975. image: {
  32976. source: "./media/characters/midnight-tales/back-beast.svg",
  32977. extra: 929/855,
  32978. bottom: 16/945
  32979. }
  32980. },
  32981. footBeast: {
  32982. height: math.unit(6.7, "feet"),
  32983. name: "Foot (Beast)",
  32984. image: {
  32985. source: "./media/characters/midnight-tales/foot-beast.svg"
  32986. }
  32987. },
  32988. headBeast: {
  32989. height: math.unit(8, "feet"),
  32990. name: "Head (Beast)",
  32991. image: {
  32992. source: "./media/characters/midnight-tales/head-beast.svg"
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(5 + 5 / 12, "feet"),
  33000. default: true
  33001. },
  33002. {
  33003. name: "Macro",
  33004. height: math.unit(25, "feet")
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(5 + 10/12, "feet"),
  33013. name: "Front",
  33014. image: {
  33015. source: "./media/characters/argon/front.svg",
  33016. extra: 2009/1935,
  33017. bottom: 118/2127
  33018. }
  33019. },
  33020. back: {
  33021. height: math.unit(5 + 10/12, "feet"),
  33022. name: "Back",
  33023. image: {
  33024. source: "./media/characters/argon/back.svg",
  33025. extra: 2047/1992,
  33026. bottom: 20/2067
  33027. }
  33028. },
  33029. frontDressed: {
  33030. height: math.unit(5 + 10/12, "feet"),
  33031. name: "Front (Dressed)",
  33032. image: {
  33033. source: "./media/characters/argon/front-dressed.svg",
  33034. extra: 2009/1935,
  33035. bottom: 118/2127
  33036. }
  33037. },
  33038. },
  33039. [
  33040. {
  33041. name: "Normal",
  33042. height: math.unit(5 + 10/12, "feet"),
  33043. default: true
  33044. },
  33045. ]
  33046. ))
  33047. characterMakers.push(() => makeCharacter(
  33048. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33049. {
  33050. front: {
  33051. height: math.unit(8 + 6/12, "feet"),
  33052. weight: math.unit(1150, "lb"),
  33053. name: "Front",
  33054. image: {
  33055. source: "./media/characters/kichi/front.svg",
  33056. extra: 1267/1164,
  33057. bottom: 61/1328
  33058. }
  33059. },
  33060. back: {
  33061. height: math.unit(8 + 6/12, "feet"),
  33062. weight: math.unit(1150, "lb"),
  33063. name: "Back",
  33064. image: {
  33065. source: "./media/characters/kichi/back.svg",
  33066. extra: 1273/1166,
  33067. bottom: 33/1306
  33068. }
  33069. },
  33070. },
  33071. [
  33072. {
  33073. name: "Normal",
  33074. height: math.unit(8 + 6/12, "feet"),
  33075. default: true
  33076. },
  33077. ]
  33078. ))
  33079. characterMakers.push(() => makeCharacter(
  33080. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33081. {
  33082. front: {
  33083. height: math.unit(6, "feet"),
  33084. weight: math.unit(210, "lb"),
  33085. name: "Front",
  33086. image: {
  33087. source: "./media/characters/manetel-greyscale/front.svg",
  33088. extra: 350/312,
  33089. bottom: 8/358
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Micro",
  33096. height: math.unit(2, "inches")
  33097. },
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(6, "feet"),
  33101. default: true
  33102. },
  33103. {
  33104. name: "Minimacro",
  33105. height: math.unit(17, "feet")
  33106. },
  33107. {
  33108. name: "Macro",
  33109. height: math.unit(117, "feet")
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33115. {
  33116. side: {
  33117. height: math.unit(5 + 1/12, "feet"),
  33118. weight: math.unit(418, "lb"),
  33119. name: "Side",
  33120. image: {
  33121. source: "./media/characters/softpurr/side.svg",
  33122. extra: 1993/1945,
  33123. bottom: 134/2127
  33124. }
  33125. },
  33126. front: {
  33127. height: math.unit(5 + 1/12, "feet"),
  33128. weight: math.unit(418, "lb"),
  33129. name: "Front",
  33130. image: {
  33131. source: "./media/characters/softpurr/front.svg",
  33132. extra: 1950/1856,
  33133. bottom: 174/2124
  33134. }
  33135. },
  33136. paw: {
  33137. height: math.unit(1, "feet"),
  33138. name: "Paw",
  33139. image: {
  33140. source: "./media/characters/softpurr/paw.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(5 + 1/12, "feet"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(260, "meters"),
  33157. name: "Front",
  33158. image: {
  33159. source: "./media/characters/anahita/front.svg",
  33160. extra: 665/635,
  33161. bottom: 89/754
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Macro",
  33168. height: math.unit(260, "meters"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(4 + 10/12, "feet"),
  33178. weight: math.unit(160, "lb"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/chip-mouse/front.svg",
  33182. extra: 3528/3408,
  33183. bottom: 0/3528
  33184. }
  33185. },
  33186. frontNsfw: {
  33187. height: math.unit(4 + 10/12, "feet"),
  33188. weight: math.unit(160, "lb"),
  33189. name: "Front (NSFW)",
  33190. image: {
  33191. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33192. extra: 3528/3408,
  33193. bottom: 0/3528
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Normal",
  33200. height: math.unit(4 + 10/12, "feet"),
  33201. default: true
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33207. {
  33208. side: {
  33209. height: math.unit(10, "feet"),
  33210. weight: math.unit(14000, "lb"),
  33211. name: "Side",
  33212. image: {
  33213. source: "./media/characters/kremm/side.svg",
  33214. extra: 1390/1053,
  33215. bottom: 90/1480
  33216. }
  33217. },
  33218. gut: {
  33219. height: math.unit(5.8, "feet"),
  33220. name: "Gut",
  33221. image: {
  33222. source: "./media/characters/kremm/gut.svg"
  33223. }
  33224. },
  33225. ass: {
  33226. height: math.unit(6.1, "feet"),
  33227. name: "Ass",
  33228. image: {
  33229. source: "./media/characters/kremm/ass.svg"
  33230. }
  33231. },
  33232. jaws: {
  33233. height: math.unit(2.2, "feet"),
  33234. name: "Jaws",
  33235. image: {
  33236. source: "./media/characters/kremm/jaws.svg"
  33237. }
  33238. },
  33239. dick: {
  33240. height: math.unit(4.26, "feet"),
  33241. name: "Dick",
  33242. image: {
  33243. source: "./media/characters/kremm/dick.svg"
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Normal",
  33250. height: math.unit(10, "feet"),
  33251. default: true
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(30, "stories"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/kai/front.svg",
  33263. extra: 1892/1718,
  33264. bottom: 162/2054
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Macro",
  33271. height: math.unit(30, "stories"),
  33272. default: true
  33273. },
  33274. ]
  33275. ))
  33276. characterMakers.push(() => makeCharacter(
  33277. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33278. {
  33279. front: {
  33280. height: math.unit(6 + 4/12, "feet"),
  33281. weight: math.unit(145, "lb"),
  33282. name: "Front",
  33283. image: {
  33284. source: "./media/characters/sykes/front.svg",
  33285. extra: 1321 / 1187,
  33286. bottom: 66 / 1387
  33287. }
  33288. },
  33289. back: {
  33290. height: math.unit(6 + 4/12, "feet"),
  33291. weight: math.unit(145, "lb"),
  33292. name: "Back",
  33293. image: {
  33294. source: "./media/characters/sykes/back.svg",
  33295. extra: 1326/1181,
  33296. bottom: 31/1357
  33297. }
  33298. },
  33299. handBack: {
  33300. height: math.unit(0.9, "feet"),
  33301. name: "Hand (Back)",
  33302. image: {
  33303. source: "./media/characters/sykes/hand-back.svg"
  33304. }
  33305. },
  33306. handFront: {
  33307. height: math.unit(0.839, "feet"),
  33308. name: "Hand (Front)",
  33309. image: {
  33310. source: "./media/characters/sykes/hand-front.svg"
  33311. }
  33312. },
  33313. leftFoot: {
  33314. height: math.unit(1.2, "feet"),
  33315. name: "Foot (Left)",
  33316. image: {
  33317. source: "./media/characters/sykes/foot-left.svg"
  33318. }
  33319. },
  33320. rightFoot: {
  33321. height: math.unit(1.2, "feet"),
  33322. name: "Foot (Right)",
  33323. image: {
  33324. source: "./media/characters/sykes/foot-right.svg"
  33325. }
  33326. },
  33327. maw: {
  33328. height: math.unit(1.93, "feet"),
  33329. name: "Maw",
  33330. image: {
  33331. source: "./media/characters/sykes/maw.svg"
  33332. }
  33333. },
  33334. teeth: {
  33335. height: math.unit(0.51, "feet"),
  33336. name: "Teeth",
  33337. image: {
  33338. source: "./media/characters/sykes/teeth.svg"
  33339. }
  33340. },
  33341. tongue: {
  33342. height: math.unit(2.13, "feet"),
  33343. name: "Tongue",
  33344. image: {
  33345. source: "./media/characters/sykes/tongue.svg"
  33346. }
  33347. },
  33348. uvula: {
  33349. height: math.unit(0.16, "feet"),
  33350. name: "Uvula",
  33351. image: {
  33352. source: "./media/characters/sykes/uvula.svg"
  33353. }
  33354. },
  33355. collar: {
  33356. height: math.unit(0.287, "feet"),
  33357. name: "Collar",
  33358. image: {
  33359. source: "./media/characters/sykes/collar.svg"
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Shrunken",
  33366. height: math.unit(5, "inches")
  33367. },
  33368. {
  33369. name: "Normal",
  33370. height: math.unit(6 + 4 / 12, "feet"),
  33371. default: true
  33372. },
  33373. {
  33374. name: "Big",
  33375. height: math.unit(15, "feet")
  33376. },
  33377. ]
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33381. {
  33382. front: {
  33383. height: math.unit(5 + 8/12, "feet"),
  33384. weight: math.unit(190, "lb"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/oven-otter/front.svg",
  33388. extra: 1809/1740,
  33389. bottom: 181/1990
  33390. }
  33391. },
  33392. back: {
  33393. height: math.unit(5 + 8/12, "feet"),
  33394. weight: math.unit(190, "lb"),
  33395. name: "Back",
  33396. image: {
  33397. source: "./media/characters/oven-otter/back.svg",
  33398. extra: 1709/1635,
  33399. bottom: 118/1827
  33400. }
  33401. },
  33402. hand: {
  33403. height: math.unit(1.07, "feet"),
  33404. name: "Hand",
  33405. image: {
  33406. source: "./media/characters/oven-otter/hand.svg"
  33407. }
  33408. },
  33409. beans: {
  33410. height: math.unit(1.74, "feet"),
  33411. name: "Beans",
  33412. image: {
  33413. source: "./media/characters/oven-otter/beans.svg"
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Micro",
  33420. height: math.unit(0.5, "inches")
  33421. },
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(5 + 8/12, "feet"),
  33425. default: true
  33426. },
  33427. {
  33428. name: "Macro",
  33429. height: math.unit(250, "feet")
  33430. },
  33431. {
  33432. name: "Really High",
  33433. height: math.unit(420, "feet")
  33434. },
  33435. ]
  33436. ))
  33437. characterMakers.push(() => makeCharacter(
  33438. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33439. {
  33440. front: {
  33441. height: math.unit(5, "meters"),
  33442. weight: math.unit(292000000000000, "kg"),
  33443. name: "Front",
  33444. image: {
  33445. source: "./media/characters/devourer/front.svg",
  33446. extra: 1800/1733,
  33447. bottom: 211/2011
  33448. }
  33449. },
  33450. maw: {
  33451. height: math.unit(1.1, "meter"),
  33452. name: "Maw",
  33453. image: {
  33454. source: "./media/characters/devourer/maw.svg"
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Small",
  33461. height: math.unit(3, "meters")
  33462. },
  33463. {
  33464. name: "Large",
  33465. height: math.unit(5, "meters"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33472. {
  33473. front: {
  33474. height: math.unit(6, "feet"),
  33475. weight: math.unit(400, "lb"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/ellarby/front.svg",
  33479. extra: 1909/1763,
  33480. bottom: 80/1989
  33481. }
  33482. },
  33483. back: {
  33484. height: math.unit(6, "feet"),
  33485. weight: math.unit(400, "lb"),
  33486. name: "Back",
  33487. image: {
  33488. source: "./media/characters/ellarby/back.svg",
  33489. extra: 1914/1784,
  33490. bottom: 172/2086
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Mischief",
  33497. height: math.unit(18, "inches")
  33498. },
  33499. {
  33500. name: "Trouble",
  33501. height: math.unit(12, "feet")
  33502. },
  33503. {
  33504. name: "Havoc",
  33505. height: math.unit(200, "feet"),
  33506. default: true
  33507. },
  33508. {
  33509. name: "Pandemonium",
  33510. height: math.unit(1, "mile")
  33511. },
  33512. {
  33513. name: "Catastrophe",
  33514. height: math.unit(100, "miles")
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33520. {
  33521. front: {
  33522. height: math.unit(4.7, "meters"),
  33523. weight: math.unit(6500, "kg"),
  33524. name: "Front",
  33525. image: {
  33526. source: "./media/characters/vex/front.svg",
  33527. extra: 1288/1140,
  33528. bottom: 100/1388
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(4.7, "meters"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33542. {
  33543. normal: {
  33544. height: math.unit(6, "feet"),
  33545. weight: math.unit(350, "lb"),
  33546. name: "Normal",
  33547. image: {
  33548. source: "./media/characters/teshy/normal.svg",
  33549. extra: 1795/1735,
  33550. bottom: 16/1811
  33551. }
  33552. },
  33553. monsterFront: {
  33554. height: math.unit(12, "feet"),
  33555. weight: math.unit(4700, "lb"),
  33556. name: "Monster (Front)",
  33557. image: {
  33558. source: "./media/characters/teshy/monster-front.svg",
  33559. extra: 2042/2034,
  33560. bottom: 128/2170
  33561. }
  33562. },
  33563. monsterSide: {
  33564. height: math.unit(12, "feet"),
  33565. weight: math.unit(4700, "lb"),
  33566. name: "Monster (Side)",
  33567. image: {
  33568. source: "./media/characters/teshy/monster-side.svg",
  33569. extra: 2067/2056,
  33570. bottom: 70/2137
  33571. }
  33572. },
  33573. monsterBack: {
  33574. height: math.unit(12, "feet"),
  33575. weight: math.unit(4700, "lb"),
  33576. name: "Monster (Back)",
  33577. image: {
  33578. source: "./media/characters/teshy/monster-back.svg",
  33579. extra: 1921/1914,
  33580. bottom: 171/2092
  33581. }
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(6, "feet"),
  33588. default: true
  33589. },
  33590. ]
  33591. ))
  33592. characterMakers.push(() => makeCharacter(
  33593. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33594. {
  33595. front: {
  33596. height: math.unit(6, "feet"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/ramey/front.svg",
  33600. extra: 790/787,
  33601. bottom: 27/817
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(6, "feet"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33615. {
  33616. front: {
  33617. height: math.unit(5 + 5/12, "feet"),
  33618. weight: math.unit(120, "lb"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/phirae/front.svg",
  33622. extra: 2491/2436,
  33623. bottom: 38/2529
  33624. }
  33625. },
  33626. },
  33627. [
  33628. {
  33629. name: "Normal",
  33630. height: math.unit(5 + 5/12, "feet"),
  33631. default: true
  33632. },
  33633. ]
  33634. ))
  33635. characterMakers.push(() => makeCharacter(
  33636. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33637. {
  33638. front: {
  33639. height: math.unit(6, "feet"),
  33640. weight: math.unit(150, "lb"),
  33641. name: "Front",
  33642. image: {
  33643. source: "./media/characters/stagglas/front.svg",
  33644. extra: 962/882,
  33645. bottom: 53/1015
  33646. }
  33647. },
  33648. },
  33649. [
  33650. {
  33651. name: "Normal",
  33652. height: math.unit(5 + 3/12, "feet"),
  33653. default: true
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33659. {
  33660. front: {
  33661. height: math.unit(5 + 4/12, "feet"),
  33662. weight: math.unit(145, "lb"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/starra/front.svg",
  33666. extra: 1790/1691,
  33667. bottom: 91/1881
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(5 + 4/12, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33681. {
  33682. front: {
  33683. height: math.unit(2.2, "meters"),
  33684. name: "Front",
  33685. image: {
  33686. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33687. extra: 1194/1005,
  33688. bottom: 25/1219
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Normal",
  33695. height: math.unit(2.2, "meters"),
  33696. default: true
  33697. },
  33698. ]
  33699. ))
  33700. characterMakers.push(() => makeCharacter(
  33701. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33702. {
  33703. side: {
  33704. height: math.unit(8 + 2/12, "feet"),
  33705. weight: math.unit(1240, "lb"),
  33706. name: "Side",
  33707. image: {
  33708. source: "./media/characters/mika-valentine/side.svg",
  33709. extra: 2670/2501,
  33710. bottom: 250/2920
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(8 + 2/12, "feet"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(7 + 2/12, "feet"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/xoltol/front.svg",
  33730. extra: 2212/2124,
  33731. bottom: 84/2296
  33732. }
  33733. },
  33734. side: {
  33735. height: math.unit(7 + 2/12, "feet"),
  33736. name: "Side",
  33737. image: {
  33738. source: "./media/characters/xoltol/side.svg",
  33739. extra: 2273/2197,
  33740. bottom: 26/2299
  33741. }
  33742. },
  33743. hand: {
  33744. height: math.unit(2.5, "feet"),
  33745. name: "Hand",
  33746. image: {
  33747. source: "./media/characters/xoltol/hand.svg"
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Small-ish",
  33754. height: math.unit(5 + 11/12, "feet")
  33755. },
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(7 + 2/12, "feet")
  33759. },
  33760. {
  33761. name: "\"Macro\"",
  33762. height: math.unit(14 + 9/12, "feet"),
  33763. default: true
  33764. },
  33765. {
  33766. name: "Alternate Height",
  33767. height: math.unit(20, "feet")
  33768. },
  33769. {
  33770. name: "Actually Macro",
  33771. height: math.unit(100, "feet")
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33777. {
  33778. front: {
  33779. height: math.unit(5 + 2/12, "feet"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/kotetsu-redwood/front.svg",
  33783. extra: 1053/942,
  33784. bottom: 60/1113
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Normal",
  33791. height: math.unit(5 + 2/12, "feet"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(2.4, "meters"),
  33801. weight: math.unit(125, "kg"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/lilith/front.svg",
  33805. extra: 1590/1513,
  33806. bottom: 203/1793
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Humanoid",
  33813. height: math.unit(2.4, "meters")
  33814. },
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(6, "meters"),
  33818. default: true
  33819. },
  33820. {
  33821. name: "Largest",
  33822. height: math.unit(55, "meters")
  33823. },
  33824. ]
  33825. ))
  33826. characterMakers.push(() => makeCharacter(
  33827. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33828. {
  33829. front: {
  33830. height: math.unit(8 + 4/12, "feet"),
  33831. weight: math.unit(535, "lb"),
  33832. name: "Front",
  33833. image: {
  33834. source: "./media/characters/beh'kah-bolger/front.svg",
  33835. extra: 1660/1603,
  33836. bottom: 37/1697
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(8 + 4/12, "feet"),
  33844. default: true
  33845. },
  33846. {
  33847. name: "Kaiju",
  33848. height: math.unit(250, "feet")
  33849. },
  33850. {
  33851. name: "Still Growing",
  33852. height: math.unit(10, "miles")
  33853. },
  33854. {
  33855. name: "Continental",
  33856. height: math.unit(5000, "miles")
  33857. },
  33858. {
  33859. name: "Final Form",
  33860. height: math.unit(2500000, "miles")
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(7 + 2/12, "feet"),
  33869. weight: math.unit(230, "kg"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/tatyana-milewska/front.svg",
  33873. extra: 1199/1150,
  33874. bottom: 86/1285
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(7 + 2/12, "feet"),
  33882. default: true
  33883. },
  33884. {
  33885. name: "Big",
  33886. height: math.unit(12, "feet")
  33887. },
  33888. {
  33889. name: "Minimacro",
  33890. height: math.unit(20, "feet")
  33891. },
  33892. {
  33893. name: "Macro",
  33894. height: math.unit(120, "feet")
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(7 + 8/12, "feet"),
  33903. weight: math.unit(152, "kg"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/helen-arri/front.svg",
  33907. extra: 440/423,
  33908. bottom: 14/454
  33909. }
  33910. },
  33911. back: {
  33912. height: math.unit(7 + 8/12, "feet"),
  33913. weight: math.unit(152, "kg"),
  33914. name: "Back",
  33915. image: {
  33916. source: "./media/characters/helen-arri/back.svg",
  33917. extra: 443/426,
  33918. bottom: 8/451
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(7 + 8/12, "feet"),
  33926. default: true
  33927. },
  33928. {
  33929. name: "Big",
  33930. height: math.unit(14, "feet")
  33931. },
  33932. {
  33933. name: "Minimacro",
  33934. height: math.unit(24, "feet")
  33935. },
  33936. {
  33937. name: "Macro",
  33938. height: math.unit(140, "feet")
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(6, "meters"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/ehanu-rehu/front.svg",
  33950. extra: 1800/1800,
  33951. bottom: 59/1859
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(6, "meters"),
  33959. default: true
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33965. {
  33966. front: {
  33967. height: math.unit(7 + 3/12, "feet"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/renholder/front.svg",
  33971. extra: 3096/2960,
  33972. bottom: 250/3346
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Normal Bat",
  33979. height: math.unit(7 + 3/12, "feet"),
  33980. default: true
  33981. },
  33982. {
  33983. name: "Slightly Tall Bat",
  33984. height: math.unit(100, "feet")
  33985. },
  33986. {
  33987. name: "Big Bat",
  33988. height: math.unit(1000, "feet")
  33989. },
  33990. {
  33991. name: "City-Sized Bat",
  33992. height: math.unit(200000, "feet")
  33993. },
  33994. {
  33995. name: "Bigger Bat",
  33996. height: math.unit(10000, "miles")
  33997. },
  33998. {
  33999. name: "Solar Sized Bat",
  34000. height: math.unit(100, "AU")
  34001. },
  34002. {
  34003. name: "Galactic Bat",
  34004. height: math.unit(200000, "lightyears")
  34005. },
  34006. {
  34007. name: "Universally Known Bat",
  34008. height: math.unit(1, "universe")
  34009. },
  34010. ]
  34011. ))
  34012. characterMakers.push(() => makeCharacter(
  34013. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34014. {
  34015. front: {
  34016. height: math.unit(6 + 11/12, "feet"),
  34017. weight: math.unit(250, "lb"),
  34018. name: "Front",
  34019. image: {
  34020. source: "./media/characters/cookiecat/front.svg",
  34021. extra: 893/827,
  34022. bottom: 14/907
  34023. }
  34024. },
  34025. },
  34026. [
  34027. {
  34028. name: "Micro",
  34029. height: math.unit(3, "inches")
  34030. },
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(6 + 11/12, "feet"),
  34034. default: true
  34035. },
  34036. {
  34037. name: "Macro",
  34038. height: math.unit(100, "feet")
  34039. },
  34040. {
  34041. name: "Macro+",
  34042. height: math.unit(404, "feet")
  34043. },
  34044. {
  34045. name: "Megamacro",
  34046. height: math.unit(165, "miles")
  34047. },
  34048. {
  34049. name: "Planetary",
  34050. height: math.unit(4600, "miles")
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(10 + 3/12, "feet"),
  34059. weight: math.unit(1500, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/tux-kusanagi/front.svg",
  34063. extra: 944/840,
  34064. bottom: 39/983
  34065. }
  34066. },
  34067. back: {
  34068. height: math.unit(10 + 3/12, "feet"),
  34069. weight: math.unit(1500, "lb"),
  34070. name: "Back",
  34071. image: {
  34072. source: "./media/characters/tux-kusanagi/back.svg",
  34073. extra: 941/842,
  34074. bottom: 28/969
  34075. }
  34076. },
  34077. rump: {
  34078. height: math.unit(5.25, "feet"),
  34079. name: "Rump",
  34080. image: {
  34081. source: "./media/characters/tux-kusanagi/rump.svg"
  34082. }
  34083. },
  34084. beak: {
  34085. height: math.unit(1.54, "feet"),
  34086. name: "Beak",
  34087. image: {
  34088. source: "./media/characters/tux-kusanagi/beak.svg"
  34089. }
  34090. },
  34091. },
  34092. [
  34093. {
  34094. name: "Normal",
  34095. height: math.unit(10 + 3/12, "feet"),
  34096. default: true
  34097. },
  34098. ]
  34099. ))
  34100. characterMakers.push(() => makeCharacter(
  34101. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34102. {
  34103. front: {
  34104. height: math.unit(58, "feet"),
  34105. weight: math.unit(200, "tons"),
  34106. name: "Front",
  34107. image: {
  34108. source: "./media/characters/uzarmazari/front.svg",
  34109. extra: 1575/1455,
  34110. bottom: 152/1727
  34111. }
  34112. },
  34113. back: {
  34114. height: math.unit(58, "feet"),
  34115. weight: math.unit(200, "tons"),
  34116. name: "Back",
  34117. image: {
  34118. source: "./media/characters/uzarmazari/back.svg",
  34119. extra: 1585/1510,
  34120. bottom: 157/1742
  34121. }
  34122. },
  34123. head: {
  34124. height: math.unit(26, "feet"),
  34125. name: "Head",
  34126. image: {
  34127. source: "./media/characters/uzarmazari/head.svg"
  34128. }
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Normal",
  34134. height: math.unit(58, "feet"),
  34135. default: true
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34141. {
  34142. side: {
  34143. height: math.unit(15, "feet"),
  34144. name: "Side",
  34145. image: {
  34146. source: "./media/characters/akitu/side.svg",
  34147. extra: 1421/1321,
  34148. bottom: 157/1578
  34149. }
  34150. },
  34151. front: {
  34152. height: math.unit(15, "feet"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/akitu/front.svg",
  34156. extra: 1435/1326,
  34157. bottom: 232/1667
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(15, "feet"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(10 + 8/12, "feet"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/azalie-croixland/front.svg",
  34177. extra: 1972/1856,
  34178. bottom: 31/2003
  34179. }
  34180. },
  34181. },
  34182. [
  34183. {
  34184. name: "Original Height",
  34185. height: math.unit(5 + 4/12, "feet")
  34186. },
  34187. {
  34188. name: "Normal Height",
  34189. height: math.unit(10 + 8/12, "feet"),
  34190. default: true
  34191. },
  34192. ]
  34193. ))
  34194. characterMakers.push(() => makeCharacter(
  34195. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34196. {
  34197. side: {
  34198. height: math.unit(7 + 1/12, "feet"),
  34199. weight: math.unit(245, "lb"),
  34200. name: "Side",
  34201. image: {
  34202. source: "./media/characters/kavus-kazian/side.svg",
  34203. extra: 349/342,
  34204. bottom: 15/364
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(7 + 1/12, "feet"),
  34212. default: true
  34213. },
  34214. ]
  34215. ))
  34216. characterMakers.push(() => makeCharacter(
  34217. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34218. {
  34219. normal: {
  34220. height: math.unit(5 + 11/12, "feet"),
  34221. name: "Normal",
  34222. image: {
  34223. source: "./media/characters/moonlight-rose/normal.svg",
  34224. extra: 1979/1835,
  34225. bottom: 14/1993
  34226. }
  34227. },
  34228. demon: {
  34229. height: math.unit(5, "km"),
  34230. name: "Demon",
  34231. image: {
  34232. source: "./media/characters/moonlight-rose/demon.svg",
  34233. extra: 986/916,
  34234. bottom: 28/1014
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "\"Natural\" height",
  34241. height: math.unit(5 + 11/12, "feet")
  34242. },
  34243. {
  34244. name: "Comfortable Size",
  34245. height: math.unit(40, "meters")
  34246. },
  34247. {
  34248. name: "Common Size",
  34249. height: math.unit(50, "km"),
  34250. default: true
  34251. },
  34252. {
  34253. name: "Demonic",
  34254. height: math.unit(1.24415e+21, "meters")
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34260. {
  34261. front: {
  34262. height: math.unit(16, "feet"),
  34263. weight: math.unit(610, "kg"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/huckle/front.svg",
  34267. extra: 1731/1625,
  34268. bottom: 33/1764
  34269. }
  34270. },
  34271. back: {
  34272. height: math.unit(16, "feet"),
  34273. weight: math.unit(610, "kg"),
  34274. name: "Back",
  34275. image: {
  34276. source: "./media/characters/huckle/back.svg",
  34277. extra: 1738/1651,
  34278. bottom: 37/1775
  34279. }
  34280. },
  34281. laughing: {
  34282. height: math.unit(3.75, "feet"),
  34283. name: "Laughing",
  34284. image: {
  34285. source: "./media/characters/huckle/laughing.svg"
  34286. }
  34287. },
  34288. angry: {
  34289. height: math.unit(4.15, "feet"),
  34290. name: "Angry",
  34291. image: {
  34292. source: "./media/characters/huckle/angry.svg"
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(16, "feet"),
  34300. default: true
  34301. },
  34302. {
  34303. name: "Mini Macro",
  34304. height: math.unit(463, "feet")
  34305. },
  34306. {
  34307. name: "Macro",
  34308. height: math.unit(1680, "meters")
  34309. },
  34310. {
  34311. name: "Mega Macro",
  34312. height: math.unit(175, "km")
  34313. },
  34314. {
  34315. name: "Terra Macro",
  34316. height: math.unit(32, "gigameters")
  34317. },
  34318. {
  34319. name: "Multiverse+",
  34320. height: math.unit(2.56e23, "yottameters")
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34326. {
  34327. front: {
  34328. height: math.unit(6 + 9/12, "feet"),
  34329. weight: math.unit(280, "lb"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/candy/front.svg",
  34333. extra: 234/217,
  34334. bottom: 11/245
  34335. }
  34336. },
  34337. },
  34338. [
  34339. {
  34340. name: "Really Small",
  34341. height: math.unit(0.1, "nm")
  34342. },
  34343. {
  34344. name: "Micro",
  34345. height: math.unit(2, "inches")
  34346. },
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(6 + 9/12, "feet"),
  34350. default: true
  34351. },
  34352. {
  34353. name: "Small Macro",
  34354. height: math.unit(69, "feet")
  34355. },
  34356. {
  34357. name: "Macro",
  34358. height: math.unit(160, "feet")
  34359. },
  34360. {
  34361. name: "Megamacro",
  34362. height: math.unit(22000, "miles")
  34363. },
  34364. {
  34365. name: "Gigamacro",
  34366. height: math.unit(50000, "miles")
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34372. {
  34373. front: {
  34374. height: math.unit(4, "feet"),
  34375. weight: math.unit(90, "lb"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/joey-mcdonald/front.svg",
  34379. extra: 1059/852,
  34380. bottom: 33/1092
  34381. }
  34382. },
  34383. back: {
  34384. height: math.unit(4, "feet"),
  34385. weight: math.unit(90, "lb"),
  34386. name: "Back",
  34387. image: {
  34388. source: "./media/characters/joey-mcdonald/back.svg",
  34389. extra: 1077/879,
  34390. bottom: 5/1082
  34391. }
  34392. },
  34393. },
  34394. [
  34395. {
  34396. name: "Normal",
  34397. height: math.unit(4, "feet"),
  34398. default: true
  34399. },
  34400. ]
  34401. ))
  34402. characterMakers.push(() => makeCharacter(
  34403. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34404. {
  34405. front: {
  34406. height: math.unit(12 + 6/12, "feet"),
  34407. name: "Front",
  34408. image: {
  34409. source: "./media/characters/kass-lockheed/front.svg",
  34410. extra: 354/343,
  34411. bottom: 9/363
  34412. }
  34413. },
  34414. back: {
  34415. height: math.unit(12 + 6/12, "feet"),
  34416. name: "Back",
  34417. image: {
  34418. source: "./media/characters/kass-lockheed/back.svg",
  34419. extra: 364/352,
  34420. bottom: 3/367
  34421. }
  34422. },
  34423. dick: {
  34424. height: math.unit(3.12, "feet"),
  34425. name: "Dick",
  34426. image: {
  34427. source: "./media/characters/kass-lockheed/dick.svg"
  34428. }
  34429. },
  34430. head: {
  34431. height: math.unit(2.6, "feet"),
  34432. name: "Head",
  34433. image: {
  34434. source: "./media/characters/kass-lockheed/head.svg"
  34435. }
  34436. },
  34437. bleh: {
  34438. height: math.unit(2.85, "feet"),
  34439. name: "Bleh",
  34440. image: {
  34441. source: "./media/characters/kass-lockheed/bleh.svg"
  34442. }
  34443. },
  34444. smug: {
  34445. height: math.unit(2.85, "feet"),
  34446. name: "Smug",
  34447. image: {
  34448. source: "./media/characters/kass-lockheed/smug.svg"
  34449. }
  34450. },
  34451. },
  34452. [
  34453. {
  34454. name: "Normal",
  34455. height: math.unit(12 + 6/12, "feet"),
  34456. default: true
  34457. },
  34458. ]
  34459. ))
  34460. characterMakers.push(() => makeCharacter(
  34461. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34462. {
  34463. front: {
  34464. height: math.unit(6 + 2/12, "feet"),
  34465. name: "Front",
  34466. image: {
  34467. source: "./media/characters/taylor/front.svg",
  34468. extra: 639/495,
  34469. bottom: 12/651
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(6 + 2/12, "feet"),
  34477. default: true
  34478. },
  34479. {
  34480. name: "Big",
  34481. height: math.unit(15, "feet")
  34482. },
  34483. {
  34484. name: "Lorg",
  34485. height: math.unit(80, "feet")
  34486. },
  34487. {
  34488. name: "Too Lorg",
  34489. height: math.unit(120, "feet")
  34490. },
  34491. ]
  34492. ))
  34493. characterMakers.push(() => makeCharacter(
  34494. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34495. {
  34496. front: {
  34497. height: math.unit(15, "feet"),
  34498. name: "Front",
  34499. image: {
  34500. source: "./media/characters/kaizer/front.svg",
  34501. extra: 1612/1436,
  34502. bottom: 43/1655
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Normal",
  34509. height: math.unit(15, "feet"),
  34510. default: true
  34511. },
  34512. ]
  34513. ))
  34514. characterMakers.push(() => makeCharacter(
  34515. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34516. {
  34517. front: {
  34518. height: math.unit(2, "feet"),
  34519. weight: math.unit(30, "lb"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/sandy/front.svg",
  34523. extra: 1439/1307,
  34524. bottom: 194/1633
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(2, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(3, "feet"),
  34541. name: "Front",
  34542. image: {
  34543. source: "./media/characters/mellvi/front.svg",
  34544. extra: 1831/1630,
  34545. bottom: 58/1889
  34546. }
  34547. },
  34548. },
  34549. [
  34550. {
  34551. name: "Normal",
  34552. height: math.unit(3, "feet"),
  34553. default: true
  34554. },
  34555. ]
  34556. ))
  34557. characterMakers.push(() => makeCharacter(
  34558. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34559. {
  34560. front: {
  34561. height: math.unit(5 + 11/12, "feet"),
  34562. weight: math.unit(200, "lb"),
  34563. name: "Front",
  34564. image: {
  34565. source: "./media/characters/shirou/front.svg",
  34566. extra: 2491/2383,
  34567. bottom: 189/2680
  34568. }
  34569. },
  34570. back: {
  34571. height: math.unit(5 + 11/12, "feet"),
  34572. weight: math.unit(200, "lb"),
  34573. name: "Back",
  34574. image: {
  34575. source: "./media/characters/shirou/back.svg",
  34576. extra: 2554/2450,
  34577. bottom: 76/2630
  34578. }
  34579. },
  34580. },
  34581. [
  34582. {
  34583. name: "Normal",
  34584. height: math.unit(5 + 11/12, "feet"),
  34585. default: true
  34586. },
  34587. ]
  34588. ))
  34589. characterMakers.push(() => makeCharacter(
  34590. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34591. {
  34592. front: {
  34593. height: math.unit(6 + 3/12, "feet"),
  34594. weight: math.unit(177, "lb"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/noryu/front.svg",
  34598. extra: 973/885,
  34599. bottom: 10/983
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(6 + 3/12, "feet"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(5 + 6/12, "feet"),
  34616. weight: math.unit(170, "lb"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/mevolas-rubenido/front.svg",
  34620. extra: 2109/1901,
  34621. bottom: 96/2205
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(5 + 6/12, "feet"),
  34629. default: true
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(100, "feet"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/dee/front.svg",
  34641. extra: 2153/2036,
  34642. bottom: 59/2212
  34643. }
  34644. },
  34645. back: {
  34646. height: math.unit(100, "feet"),
  34647. name: "Back",
  34648. image: {
  34649. source: "./media/characters/dee/back.svg",
  34650. extra: 2183/2058,
  34651. bottom: 75/2258
  34652. }
  34653. },
  34654. foot: {
  34655. height: math.unit(19.43, "feet"),
  34656. name: "Foot",
  34657. image: {
  34658. source: "./media/characters/dee/foot.svg"
  34659. }
  34660. },
  34661. hoof: {
  34662. height: math.unit(20.6, "feet"),
  34663. name: "Hoof",
  34664. image: {
  34665. source: "./media/characters/dee/hoof.svg"
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Macro",
  34672. height: math.unit(100, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34679. {
  34680. front: {
  34681. height: math.unit(5 + 6/12, "feet"),
  34682. name: "Front",
  34683. image: {
  34684. source: "./media/characters/teh/front.svg",
  34685. extra: 1002/847,
  34686. bottom: 62/1064
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(5 + 6/12, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34700. {
  34701. side: {
  34702. height: math.unit(6 + 1/12, "feet"),
  34703. weight: math.unit(204, "lb"),
  34704. name: "Side",
  34705. image: {
  34706. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34707. extra: 974/775,
  34708. bottom: 169/1143
  34709. }
  34710. },
  34711. sitting: {
  34712. height: math.unit(6 + 2/12, "feet"),
  34713. weight: math.unit(204, "lb"),
  34714. name: "Sitting",
  34715. image: {
  34716. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34717. extra: 1175/964,
  34718. bottom: 378/1553
  34719. }
  34720. },
  34721. },
  34722. [
  34723. {
  34724. name: "Normal",
  34725. height: math.unit(6 + 1/12, "feet"),
  34726. default: true
  34727. },
  34728. ]
  34729. ))
  34730. characterMakers.push(() => makeCharacter(
  34731. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34732. {
  34733. front: {
  34734. height: math.unit(6, "inches"),
  34735. name: "Front",
  34736. image: {
  34737. source: "./media/characters/tululi/front.svg",
  34738. extra: 1997/1876,
  34739. bottom: 20/2017
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(6, "inches"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34753. {
  34754. front: {
  34755. height: math.unit(4 + 1/12, "feet"),
  34756. name: "Front",
  34757. image: {
  34758. source: "./media/characters/star/front.svg",
  34759. extra: 1493/1189,
  34760. bottom: 48/1541
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Normal",
  34767. height: math.unit(4 + 1/12, "feet"),
  34768. default: true
  34769. },
  34770. ]
  34771. ))
  34772. characterMakers.push(() => makeCharacter(
  34773. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34774. {
  34775. front: {
  34776. height: math.unit(6 + 3/12, "feet"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/comet/front.svg",
  34780. extra: 1681/1462,
  34781. bottom: 26/1707
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(6 + 3/12, "feet"),
  34789. default: true
  34790. },
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34795. {
  34796. front: {
  34797. height: math.unit(950, "feet"),
  34798. name: "Front",
  34799. image: {
  34800. source: "./media/characters/vortex/front.svg",
  34801. extra: 1497/1434,
  34802. bottom: 56/1553
  34803. }
  34804. },
  34805. maw: {
  34806. height: math.unit(285, "feet"),
  34807. name: "Maw",
  34808. image: {
  34809. source: "./media/characters/vortex/maw.svg"
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Macro",
  34816. height: math.unit(950, "feet"),
  34817. default: true
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(600, "feet"),
  34826. weight: math.unit(0.02, "grams"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/doodle/front.svg",
  34830. extra: 1578/1413,
  34831. bottom: 37/1615
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Macro",
  34838. height: math.unit(600, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(6 + 6/12, "feet"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/jai/front.svg",
  34851. extra: 1645/1534,
  34852. bottom: 115/1760
  34853. }
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(6 + 6/12, "feet"),
  34860. default: true
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34866. {
  34867. front: {
  34868. height: math.unit(6 + 8/12, "feet"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/pixel/front.svg",
  34872. extra: 1900/1735,
  34873. bottom: 63/1963
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(6 + 8/12, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(4 + 11/12, "feet"),
  34890. weight: math.unit(111, "lb"),
  34891. name: "Front",
  34892. image: {
  34893. source: "./media/characters/rhett/front.svg",
  34894. extra: 1682/1586,
  34895. bottom: 92/1774
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Mini",
  34902. height: math.unit(1 + 1/12, "feet")
  34903. },
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(4 + 11/12, "feet"),
  34907. default: true
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34913. {
  34914. front: {
  34915. height: math.unit(3 + 3/12, "feet"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/penny/front.svg",
  34919. extra: 1406/1311,
  34920. bottom: 26/1432
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(3 + 3/12, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(4 + 11/12, "feet"),
  34937. name: "Front",
  34938. image: {
  34939. source: "./media/characters/monty/front.svg",
  34940. extra: 1479/1209,
  34941. bottom: 0/1479
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(4 + 11/12, "feet"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34955. {
  34956. front: {
  34957. height: math.unit(8 + 4/12, "feet"),
  34958. name: "Front",
  34959. image: {
  34960. source: "./media/characters/sterling/front.svg",
  34961. extra: 1420/1236,
  34962. bottom: 27/1447
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Normal",
  34969. height: math.unit(8 + 4/12, "feet"),
  34970. default: true
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(15, "feet"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/marble/front.svg",
  34982. extra: 973/937,
  34983. bottom: 32/1005
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(15, "feet"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34997. {
  34998. front: {
  34999. height: math.unit(3, "inches"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/powder/front.svg",
  35003. extra: 1504/1334,
  35004. bottom: 518/2022
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Normal",
  35011. height: math.unit(3, "inches"),
  35012. default: true
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(4 + 5/12, "feet"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/joey-raccoon/front.svg",
  35024. extra: 1273/1197,
  35025. bottom: 0/1273
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(4 + 5/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(8 + 4/12, "feet"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/vick/front.svg",
  35045. extra: 2187/2118,
  35046. bottom: 47/2234
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(8 + 4/12, "feet"),
  35054. default: true
  35055. },
  35056. ]
  35057. ))
  35058. characterMakers.push(() => makeCharacter(
  35059. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35060. {
  35061. front: {
  35062. height: math.unit(5 + 5/12, "feet"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/mitsy/front.svg",
  35066. extra: 1842/1695,
  35067. bottom: 0/1842
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(5 + 5/12, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35081. {
  35082. front: {
  35083. height: math.unit(6 + 3/12, "feet"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/silvy/front.svg",
  35087. extra: 1995/1836,
  35088. bottom: 225/2220
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(6 + 3/12, "feet"),
  35096. default: true
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35102. {
  35103. front: {
  35104. height: math.unit(3 + 8/12, "feet"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/rodney/front.svg",
  35108. extra: 1956/1747,
  35109. bottom: 31/1987
  35110. }
  35111. },
  35112. frontDressed: {
  35113. height: math.unit(2.9, "feet"),
  35114. name: "Front (Dressed)",
  35115. image: {
  35116. source: "./media/characters/rodney/front-dressed.svg",
  35117. extra: 1382/1241,
  35118. bottom: 385/1767
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Normal",
  35125. height: math.unit(3 + 8/12, "feet"),
  35126. default: true
  35127. },
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35132. {
  35133. front: {
  35134. height: math.unit(5 + 9/12, "feet"),
  35135. weight: math.unit(194, "lbs"),
  35136. name: "Front",
  35137. image: {
  35138. source: "./media/characters/zakail-sudekai/front.svg",
  35139. extra: 2696/2533,
  35140. bottom: 248/2944
  35141. }
  35142. },
  35143. maw: {
  35144. height: math.unit(1.35, "feet"),
  35145. name: "Maw",
  35146. image: {
  35147. source: "./media/characters/zakail-sudekai/maw.svg"
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(5 + 9/12, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(8 + 4/12, "feet"),
  35164. weight: math.unit(1200, "lb"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/eleanor/front.svg",
  35168. extra: 1226/1192,
  35169. bottom: 52/1278
  35170. }
  35171. },
  35172. back: {
  35173. height: math.unit(8 + 4/12, "feet"),
  35174. weight: math.unit(1200, "lb"),
  35175. name: "Back",
  35176. image: {
  35177. source: "./media/characters/eleanor/back.svg",
  35178. extra: 1242/1184,
  35179. bottom: 60/1302
  35180. }
  35181. },
  35182. head: {
  35183. height: math.unit(2.62, "feet"),
  35184. name: "Head",
  35185. image: {
  35186. source: "./media/characters/eleanor/head.svg"
  35187. }
  35188. },
  35189. },
  35190. [
  35191. {
  35192. name: "Normal",
  35193. height: math.unit(8 + 4/12, "feet"),
  35194. default: true
  35195. },
  35196. ]
  35197. ))
  35198. characterMakers.push(() => makeCharacter(
  35199. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35200. {
  35201. front: {
  35202. height: math.unit(8 + 4/12, "feet"),
  35203. weight: math.unit(750, "lb"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/tanya/front.svg",
  35207. extra: 1749/1615,
  35208. bottom: 33/1782
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(8 + 4/12, "feet"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(5, "feet"),
  35225. weight: math.unit(225, "lb"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/cindy/front.svg",
  35229. extra: 1320/1250,
  35230. bottom: 42/1362
  35231. }
  35232. },
  35233. frontDressed: {
  35234. height: math.unit(5, "feet"),
  35235. weight: math.unit(225, "lb"),
  35236. name: "Front (Dressed)",
  35237. image: {
  35238. source: "./media/characters/cindy/front-dressed.svg",
  35239. extra: 1320/1250,
  35240. bottom: 42/1362
  35241. }
  35242. },
  35243. back: {
  35244. height: math.unit(5, "feet"),
  35245. weight: math.unit(225, "lb"),
  35246. name: "Back",
  35247. image: {
  35248. source: "./media/characters/cindy/back.svg",
  35249. extra: 1384/1346,
  35250. bottom: 14/1398
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(5, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(6 + 9/12, "feet"),
  35267. weight: math.unit(440, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/wilbur-owen/front.svg",
  35271. extra: 1575/1448,
  35272. bottom: 72/1647
  35273. }
  35274. },
  35275. back: {
  35276. height: math.unit(6 + 9/12, "feet"),
  35277. weight: math.unit(440, "lb"),
  35278. name: "Back",
  35279. image: {
  35280. source: "./media/characters/wilbur-owen/back.svg",
  35281. extra: 1578/1445,
  35282. bottom: 36/1614
  35283. }
  35284. },
  35285. },
  35286. [
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(6 + 9/12, "feet"),
  35290. default: true
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35296. {
  35297. front: {
  35298. height: math.unit(6 + 5/12, "feet"),
  35299. weight: math.unit(650, "lb"),
  35300. name: "Front",
  35301. image: {
  35302. source: "./media/characters/keegan/front.svg",
  35303. extra: 2387/2198,
  35304. bottom: 33/2420
  35305. }
  35306. },
  35307. side: {
  35308. height: math.unit(6 + 5/12, "feet"),
  35309. weight: math.unit(650, "lb"),
  35310. name: "Side",
  35311. image: {
  35312. source: "./media/characters/keegan/side.svg",
  35313. extra: 2390/2202,
  35314. bottom: 47/2437
  35315. }
  35316. },
  35317. back: {
  35318. height: math.unit(6 + 5/12, "feet"),
  35319. weight: math.unit(650, "lb"),
  35320. name: "Back",
  35321. image: {
  35322. source: "./media/characters/keegan/back.svg",
  35323. extra: 2418/2268,
  35324. bottom: 15/2433
  35325. }
  35326. },
  35327. frontSfw: {
  35328. height: math.unit(6 + 5/12, "feet"),
  35329. weight: math.unit(650, "lb"),
  35330. name: "Front (SFW)",
  35331. image: {
  35332. source: "./media/characters/keegan/front-sfw.svg",
  35333. extra: 2387/2198,
  35334. bottom: 33/2420
  35335. }
  35336. },
  35337. beans: {
  35338. height: math.unit(1.85, "feet"),
  35339. name: "Beans",
  35340. image: {
  35341. source: "./media/characters/keegan/beans.svg"
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(6 + 5/12, "feet"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35355. {
  35356. front: {
  35357. height: math.unit(9, "feet"),
  35358. name: "Front",
  35359. image: {
  35360. source: "./media/characters/colton/front.svg",
  35361. extra: 1589/1326,
  35362. bottom: 139/1728
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Normal",
  35369. height: math.unit(9, "feet"),
  35370. default: true
  35371. },
  35372. ]
  35373. ))
  35374. characterMakers.push(() => makeCharacter(
  35375. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35376. {
  35377. front: {
  35378. height: math.unit(2 + 9/12, "feet"),
  35379. name: "Front",
  35380. image: {
  35381. source: "./media/characters/bora/front.svg",
  35382. extra: 1265/1250,
  35383. bottom: 24/1289
  35384. }
  35385. },
  35386. },
  35387. [
  35388. {
  35389. name: "Normal",
  35390. height: math.unit(2 + 9/12, "feet"),
  35391. default: true
  35392. },
  35393. ]
  35394. ))
  35395. characterMakers.push(() => makeCharacter(
  35396. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35397. {
  35398. front: {
  35399. height: math.unit(8, "feet"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/myu-myu/front.svg",
  35403. extra: 1949/1857,
  35404. bottom: 90/2039
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(8, "feet"),
  35412. default: true
  35413. },
  35414. {
  35415. name: "Big",
  35416. height: math.unit(15, "feet")
  35417. },
  35418. {
  35419. name: "BIG",
  35420. height: math.unit(25, "feet")
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35426. {
  35427. side: {
  35428. height: math.unit(7 + 5/12, "feet"),
  35429. weight: math.unit(2800, "lb"),
  35430. name: "Side",
  35431. image: {
  35432. source: "./media/characters/haloren/side.svg",
  35433. extra: 1793/409,
  35434. bottom: 59/1852
  35435. }
  35436. },
  35437. frontPaw: {
  35438. height: math.unit(2.36, "feet"),
  35439. name: "Front paw",
  35440. image: {
  35441. source: "./media/characters/haloren/front-paw.svg"
  35442. }
  35443. },
  35444. hindPaw: {
  35445. height: math.unit(3.18, "feet"),
  35446. name: "Hind paw",
  35447. image: {
  35448. source: "./media/characters/haloren/hind-paw.svg"
  35449. }
  35450. },
  35451. maw: {
  35452. height: math.unit(5.05, "feet"),
  35453. name: "Maw",
  35454. image: {
  35455. source: "./media/characters/haloren/maw.svg"
  35456. }
  35457. },
  35458. dick: {
  35459. height: math.unit(2.90, "feet"),
  35460. name: "Dick",
  35461. image: {
  35462. source: "./media/characters/haloren/dick.svg"
  35463. }
  35464. },
  35465. },
  35466. [
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(7 + 5/12, "feet"),
  35470. default: true
  35471. },
  35472. {
  35473. name: "Enhanced",
  35474. height: math.unit(14 + 3/12, "feet")
  35475. },
  35476. ]
  35477. ))
  35478. characterMakers.push(() => makeCharacter(
  35479. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35480. {
  35481. front: {
  35482. height: math.unit(171, "cm"),
  35483. name: "Front",
  35484. image: {
  35485. source: "./media/characters/kimmy/front.svg",
  35486. extra: 1491/1435,
  35487. bottom: 53/1544
  35488. }
  35489. },
  35490. },
  35491. [
  35492. {
  35493. name: "Small",
  35494. height: math.unit(9, "cm")
  35495. },
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(171, "cm"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(8, "feet"),
  35508. weight: math.unit(300, "lb"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/galeboomer/front.svg",
  35512. extra: 4651/4415,
  35513. bottom: 162/4813
  35514. }
  35515. },
  35516. back: {
  35517. height: math.unit(8, "feet"),
  35518. weight: math.unit(300, "lb"),
  35519. name: "Back",
  35520. image: {
  35521. source: "./media/characters/galeboomer/back.svg",
  35522. extra: 4544/4314,
  35523. bottom: 16/4560
  35524. }
  35525. },
  35526. frontAlt: {
  35527. height: math.unit(8, "feet"),
  35528. weight: math.unit(300, "lb"),
  35529. name: "Front (Alt)",
  35530. image: {
  35531. source: "./media/characters/galeboomer/front-alt.svg",
  35532. extra: 4458/4228,
  35533. bottom: 68/4526
  35534. }
  35535. },
  35536. maw: {
  35537. height: math.unit(1.2, "feet"),
  35538. name: "Maw",
  35539. image: {
  35540. source: "./media/characters/galeboomer/maw.svg"
  35541. }
  35542. },
  35543. },
  35544. [
  35545. {
  35546. name: "Normal",
  35547. height: math.unit(8, "feet"),
  35548. default: true
  35549. },
  35550. ]
  35551. ))
  35552. characterMakers.push(() => makeCharacter(
  35553. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35554. {
  35555. front: {
  35556. height: math.unit(5 + 9/12, "feet"),
  35557. weight: math.unit(120, "lb"),
  35558. name: "Front",
  35559. image: {
  35560. source: "./media/characters/chyr/front.svg",
  35561. extra: 1323/1254,
  35562. bottom: 63/1386
  35563. }
  35564. },
  35565. back: {
  35566. height: math.unit(5 + 9/12, "feet"),
  35567. weight: math.unit(120, "lb"),
  35568. name: "Back",
  35569. image: {
  35570. source: "./media/characters/chyr/back.svg",
  35571. extra: 1323/1252,
  35572. bottom: 48/1371
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(5 + 9/12, "feet"),
  35580. default: true
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(7, "feet"),
  35589. weight: math.unit(310, "lb"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/solarus/front.svg",
  35593. extra: 2415/2021,
  35594. bottom: 103/2518
  35595. }
  35596. },
  35597. back: {
  35598. height: math.unit(7, "feet"),
  35599. weight: math.unit(310, "lb"),
  35600. name: "Back",
  35601. image: {
  35602. source: "./media/characters/solarus/back.svg",
  35603. extra: 2463/2089,
  35604. bottom: 79/2542
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(7, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(16, "feet"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35624. extra: 1844/1780,
  35625. bottom: 58/1902
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(16, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(11 + 6/12, "feet"),
  35642. weight: math.unit(1366, "lb"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/lexor/front.svg",
  35646. extra: 1560/1481,
  35647. bottom: 211/1771
  35648. }
  35649. },
  35650. back: {
  35651. height: math.unit(11 + 6/12, "feet"),
  35652. weight: math.unit(1366, "lb"),
  35653. name: "Back",
  35654. image: {
  35655. source: "./media/characters/lexor/back.svg",
  35656. extra: 1614/1533,
  35657. bottom: 76/1690
  35658. }
  35659. },
  35660. maw: {
  35661. height: math.unit(3, "feet"),
  35662. name: "Maw",
  35663. image: {
  35664. source: "./media/characters/lexor/maw.svg"
  35665. }
  35666. },
  35667. dick: {
  35668. height: math.unit(2.59, "feet"),
  35669. name: "Dick",
  35670. image: {
  35671. source: "./media/characters/lexor/dick.svg"
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(11 + 6/12, "feet"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(5 + 8/12, "feet"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/magnum/front.svg",
  35691. extra: 942/855,
  35692. bottom: 26/968
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 8/12, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(18 + 4/12, "feet"),
  35709. weight: math.unit(1500, "kg"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/solas-sharpsman/front.svg",
  35713. extra: 1698/1589,
  35714. bottom: 0/1698
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(18 + 4/12, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(5 + 5/12, "feet"),
  35731. weight: math.unit(180, "lb"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/october/front.svg",
  35735. extra: 1800/1650,
  35736. bottom: 0/1800
  35737. }
  35738. },
  35739. frontNsfw: {
  35740. height: math.unit(5 + 5/12, "feet"),
  35741. weight: math.unit(180, "lb"),
  35742. name: "Front (NSFW)",
  35743. image: {
  35744. source: "./media/characters/october/front-nsfw.svg",
  35745. extra: 1392/1307,
  35746. bottom: 42/1434
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(5 + 5/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(8 + 6/12, "feet"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/essynkardi/front.svg",
  35766. extra: 1914/1846,
  35767. bottom: 22/1936
  35768. }
  35769. },
  35770. },
  35771. [
  35772. {
  35773. name: "Normal",
  35774. height: math.unit(8 + 6/12, "feet"),
  35775. default: true
  35776. },
  35777. ]
  35778. ))
  35779. characterMakers.push(() => makeCharacter(
  35780. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35781. {
  35782. front: {
  35783. height: math.unit(6 + 6/12, "feet"),
  35784. weight: math.unit(7, "lb"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/icky/front.svg",
  35788. extra: 813/782,
  35789. bottom: 66/879
  35790. }
  35791. },
  35792. back: {
  35793. height: math.unit(6 + 6/12, "feet"),
  35794. weight: math.unit(7, "lb"),
  35795. name: "Back",
  35796. image: {
  35797. source: "./media/characters/icky/back.svg",
  35798. extra: 754/735,
  35799. bottom: 56/810
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(6 + 6/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(15, "feet"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/rojas/front.svg",
  35819. extra: 1462/1408,
  35820. bottom: 95/1557
  35821. }
  35822. },
  35823. back: {
  35824. height: math.unit(15, "feet"),
  35825. name: "Back",
  35826. image: {
  35827. source: "./media/characters/rojas/back.svg",
  35828. extra: 1023/954,
  35829. bottom: 28/1051
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Normal",
  35836. height: math.unit(15, "feet"),
  35837. default: true
  35838. },
  35839. ]
  35840. ))
  35841. characterMakers.push(() => makeCharacter(
  35842. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35843. {
  35844. frontHuman: {
  35845. height: math.unit(5 + 7/12, "feet"),
  35846. name: "Front (Human)",
  35847. image: {
  35848. source: "./media/characters/alek-dryagan/front-human.svg",
  35849. extra: 1687/1667,
  35850. bottom: 69/1756
  35851. }
  35852. },
  35853. backHuman: {
  35854. height: math.unit(5 + 7/12, "feet"),
  35855. name: "Back (Human)",
  35856. image: {
  35857. source: "./media/characters/alek-dryagan/back-human.svg",
  35858. extra: 1670/1649,
  35859. bottom: 65/1735
  35860. }
  35861. },
  35862. frontDemi: {
  35863. height: math.unit(65, "feet"),
  35864. name: "Front (Demi)",
  35865. image: {
  35866. source: "./media/characters/alek-dryagan/front-demi.svg",
  35867. extra: 1669/1642,
  35868. bottom: 49/1718
  35869. }
  35870. },
  35871. backDemi: {
  35872. height: math.unit(65, "feet"),
  35873. name: "Back (Demi)",
  35874. image: {
  35875. source: "./media/characters/alek-dryagan/back-demi.svg",
  35876. extra: 1658/1637,
  35877. bottom: 40/1698
  35878. }
  35879. },
  35880. mawHuman: {
  35881. height: math.unit(0.3, "feet"),
  35882. name: "Maw (Human)",
  35883. image: {
  35884. source: "./media/characters/alek-dryagan/maw-human.svg"
  35885. }
  35886. },
  35887. mawDemi: {
  35888. height: math.unit(3.8, "feet"),
  35889. name: "Maw (Demi)",
  35890. image: {
  35891. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(5 + 7/12, "feet"),
  35899. default: true
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35905. {
  35906. frontHuman: {
  35907. height: math.unit(5 + 2/12, "feet"),
  35908. name: "Front (Human)",
  35909. image: {
  35910. source: "./media/characters/gen/front-human.svg",
  35911. extra: 1627/1538,
  35912. bottom: 71/1698
  35913. }
  35914. },
  35915. backHuman: {
  35916. height: math.unit(5 + 2/12, "feet"),
  35917. name: "Back (Human)",
  35918. image: {
  35919. source: "./media/characters/gen/back-human.svg",
  35920. extra: 1638/1548,
  35921. bottom: 69/1707
  35922. }
  35923. },
  35924. frontDemi: {
  35925. height: math.unit(5 + 2/12, "feet"),
  35926. name: "Front (Demi)",
  35927. image: {
  35928. source: "./media/characters/gen/front-demi.svg",
  35929. extra: 1627/1538,
  35930. bottom: 71/1698
  35931. }
  35932. },
  35933. backDemi: {
  35934. height: math.unit(5 + 2/12, "feet"),
  35935. name: "Back (Demi)",
  35936. image: {
  35937. source: "./media/characters/gen/back-demi.svg",
  35938. extra: 1638/1548,
  35939. bottom: 69/1707
  35940. }
  35941. },
  35942. },
  35943. [
  35944. {
  35945. name: "Normal",
  35946. height: math.unit(5 + 2/12, "feet"),
  35947. default: true
  35948. },
  35949. ]
  35950. ))
  35951. characterMakers.push(() => makeCharacter(
  35952. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35953. {
  35954. frontImp: {
  35955. height: math.unit(1 + 11/12, "feet"),
  35956. name: "Front (Imp)",
  35957. image: {
  35958. source: "./media/characters/max-kobold/front-imp.svg",
  35959. extra: 1238/1134,
  35960. bottom: 81/1319
  35961. }
  35962. },
  35963. backImp: {
  35964. height: math.unit(1 + 11/12, "feet"),
  35965. name: "Back (Imp)",
  35966. image: {
  35967. source: "./media/characters/max-kobold/back-imp.svg",
  35968. extra: 1334/1175,
  35969. bottom: 34/1368
  35970. }
  35971. },
  35972. frontDemi: {
  35973. height: math.unit(5 + 9/12, "feet"),
  35974. name: "Front (Demi)",
  35975. image: {
  35976. source: "./media/characters/max-kobold/front-demi.svg",
  35977. extra: 1715/1685,
  35978. bottom: 54/1769
  35979. }
  35980. },
  35981. backDemi: {
  35982. height: math.unit(5 + 9/12, "feet"),
  35983. name: "Back (Demi)",
  35984. image: {
  35985. source: "./media/characters/max-kobold/back-demi.svg",
  35986. extra: 1752/1729,
  35987. bottom: 41/1793
  35988. }
  35989. },
  35990. handImp: {
  35991. height: math.unit(0.45, "feet"),
  35992. name: "Hand (Imp)",
  35993. image: {
  35994. source: "./media/characters/max-kobold/hand.svg"
  35995. }
  35996. },
  35997. pawImp: {
  35998. height: math.unit(0.46, "feet"),
  35999. name: "Paw (Imp)",
  36000. image: {
  36001. source: "./media/characters/max-kobold/paw.svg"
  36002. }
  36003. },
  36004. handDemi: {
  36005. height: math.unit(0.80, "feet"),
  36006. name: "Hand (Demi)",
  36007. image: {
  36008. source: "./media/characters/max-kobold/hand.svg"
  36009. }
  36010. },
  36011. pawDemi: {
  36012. height: math.unit(1.1, "feet"),
  36013. name: "Paw (Demi)",
  36014. image: {
  36015. source: "./media/characters/max-kobold/paw.svg"
  36016. }
  36017. },
  36018. headImp: {
  36019. height: math.unit(1.33, "feet"),
  36020. name: "Head (Imp)",
  36021. image: {
  36022. source: "./media/characters/max-kobold/head-imp.svg"
  36023. }
  36024. },
  36025. mawImp: {
  36026. height: math.unit(0.75, "feet"),
  36027. name: "Maw (Imp)",
  36028. image: {
  36029. source: "./media/characters/max-kobold/maw-imp.svg"
  36030. }
  36031. },
  36032. mawDemi: {
  36033. height: math.unit(0.42, "feet"),
  36034. name: "Maw (Demi)",
  36035. image: {
  36036. source: "./media/characters/max-kobold/maw-demi.svg"
  36037. }
  36038. },
  36039. },
  36040. [
  36041. {
  36042. name: "Normal",
  36043. height: math.unit(1 + 11/12, "feet"),
  36044. default: true
  36045. },
  36046. ]
  36047. ))
  36048. characterMakers.push(() => makeCharacter(
  36049. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36050. {
  36051. front: {
  36052. height: math.unit(7 + 5/12, "feet"),
  36053. name: "Front",
  36054. image: {
  36055. source: "./media/characters/carbon/front.svg",
  36056. extra: 1754/1689,
  36057. bottom: 65/1819
  36058. }
  36059. },
  36060. back: {
  36061. height: math.unit(7 + 5/12, "feet"),
  36062. name: "Back",
  36063. image: {
  36064. source: "./media/characters/carbon/back.svg",
  36065. extra: 1762/1695,
  36066. bottom: 24/1786
  36067. }
  36068. },
  36069. frontGigantamax: {
  36070. height: math.unit(150, "feet"),
  36071. name: "Front (Gigantamax)",
  36072. image: {
  36073. source: "./media/characters/carbon/front-gigantamax.svg",
  36074. extra: 1826/1669,
  36075. bottom: 59/1885
  36076. }
  36077. },
  36078. backGigantamax: {
  36079. height: math.unit(150, "feet"),
  36080. name: "Back (Gigantamax)",
  36081. image: {
  36082. source: "./media/characters/carbon/back-gigantamax.svg",
  36083. extra: 1796/1653,
  36084. bottom: 53/1849
  36085. }
  36086. },
  36087. maw: {
  36088. height: math.unit(0.48, "feet"),
  36089. name: "Maw",
  36090. image: {
  36091. source: "./media/characters/carbon/maw.svg"
  36092. }
  36093. },
  36094. mawGigantamax: {
  36095. height: math.unit(7.5, "feet"),
  36096. name: "Maw (Gigantamax)",
  36097. image: {
  36098. source: "./media/characters/carbon/maw-gigantamax.svg"
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(7 + 5/12, "feet"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36112. {
  36113. front: {
  36114. height: math.unit(6, "feet"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/maverick/front.svg",
  36118. extra: 1672/1661,
  36119. bottom: 85/1757
  36120. }
  36121. },
  36122. back: {
  36123. height: math.unit(6, "feet"),
  36124. name: "Back",
  36125. image: {
  36126. source: "./media/characters/maverick/back.svg",
  36127. extra: 1642/1631,
  36128. bottom: 38/1680
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(6, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36142. {
  36143. front: {
  36144. height: math.unit(15, "feet"),
  36145. weight: math.unit(615, "lb"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/grockle/front.svg",
  36149. extra: 1535/1427,
  36150. bottom: 56/1591
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(15, "feet"),
  36158. default: true
  36159. },
  36160. {
  36161. name: "Large",
  36162. height: math.unit(150, "feet")
  36163. },
  36164. {
  36165. name: "Macro",
  36166. height: math.unit(1876, "feet")
  36167. },
  36168. {
  36169. name: "Mega Macro",
  36170. height: math.unit(121940, "feet")
  36171. },
  36172. {
  36173. name: "Giga Macro",
  36174. height: math.unit(750, "km")
  36175. },
  36176. {
  36177. name: "Tera Macro",
  36178. height: math.unit(750000, "km")
  36179. },
  36180. {
  36181. name: "Galactic",
  36182. height: math.unit(1.4e5, "km")
  36183. },
  36184. {
  36185. name: "Godlike",
  36186. height: math.unit(9.8e280, "galaxies")
  36187. },
  36188. ]
  36189. ))
  36190. characterMakers.push(() => makeCharacter(
  36191. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36192. {
  36193. front: {
  36194. height: math.unit(11, "meters"),
  36195. weight: math.unit(20, "tonnes"),
  36196. name: "Front",
  36197. image: {
  36198. source: "./media/characters/alistair/front.svg",
  36199. extra: 1265/1009,
  36200. bottom: 93/1358
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(11, "meters"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36214. {
  36215. front: {
  36216. height: math.unit(5 + 8/12, "feet"),
  36217. name: "Front",
  36218. image: {
  36219. source: "./media/characters/haruka/front.svg",
  36220. extra: 2012/1952,
  36221. bottom: 0/2012
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Normal",
  36228. height: math.unit(5 + 8/12, "feet"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36235. {
  36236. back: {
  36237. height: math.unit(9, "feet"),
  36238. name: "Back",
  36239. image: {
  36240. source: "./media/characters/vivian-sylveon/back.svg",
  36241. extra: 1853/1714,
  36242. bottom: 0/1853
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(9, "feet"),
  36250. default: true
  36251. },
  36252. {
  36253. name: "Macro",
  36254. height: math.unit(500, "feet")
  36255. },
  36256. {
  36257. name: "Megamacro",
  36258. height: math.unit(600, "miles")
  36259. },
  36260. {
  36261. name: "Gigamacro",
  36262. height: math.unit(30000, "miles")
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36268. {
  36269. anthro: {
  36270. height: math.unit(5 + 10/12, "feet"),
  36271. weight: math.unit(100, "lb"),
  36272. name: "Anthro",
  36273. image: {
  36274. source: "./media/characters/daiki/anthro.svg",
  36275. extra: 1115/1027,
  36276. bottom: 69/1184
  36277. }
  36278. },
  36279. feral: {
  36280. height: math.unit(200, "feet"),
  36281. name: "Feral",
  36282. image: {
  36283. source: "./media/characters/daiki/feral.svg",
  36284. extra: 1256/313,
  36285. bottom: 39/1295
  36286. }
  36287. },
  36288. feralHead: {
  36289. height: math.unit(171, "feet"),
  36290. name: "Feral Head",
  36291. image: {
  36292. source: "./media/characters/daiki/feral-head.svg"
  36293. }
  36294. },
  36295. },
  36296. [
  36297. {
  36298. name: "Normal",
  36299. height: math.unit(5 + 10/12, "feet"),
  36300. default: true
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36306. {
  36307. fullyEquippedFront: {
  36308. height: math.unit(3 + 1/12, "feet"),
  36309. weight: math.unit(24, "lb"),
  36310. name: "Fully Equipped (Front)",
  36311. image: {
  36312. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36313. extra: 687/605,
  36314. bottom: 18/705
  36315. }
  36316. },
  36317. fullyEquippedBack: {
  36318. height: math.unit(3 + 1/12, "feet"),
  36319. weight: math.unit(24, "lb"),
  36320. name: "Fully Equipped (Back)",
  36321. image: {
  36322. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36323. extra: 689/590,
  36324. bottom: 18/707
  36325. }
  36326. },
  36327. dailyWear: {
  36328. height: math.unit(3 + 1/12, "feet"),
  36329. weight: math.unit(24, "lb"),
  36330. name: "Daily Wear",
  36331. image: {
  36332. source: "./media/characters/tea-spot/daily-wear.svg",
  36333. extra: 701/620,
  36334. bottom: 21/722
  36335. }
  36336. },
  36337. maidWork: {
  36338. height: math.unit(3 + 1/12, "feet"),
  36339. weight: math.unit(24, "lb"),
  36340. name: "Maid Work",
  36341. image: {
  36342. source: "./media/characters/tea-spot/maid-work.svg",
  36343. extra: 693/609,
  36344. bottom: 15/708
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(3 + 1/12, "feet"),
  36352. default: true
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36358. {
  36359. front: {
  36360. height: math.unit(175, "cm"),
  36361. weight: math.unit(75, "kg"),
  36362. name: "Front",
  36363. image: {
  36364. source: "./media/characters/chee/front.svg",
  36365. extra: 1796/1740,
  36366. bottom: 40/1836
  36367. }
  36368. },
  36369. },
  36370. [
  36371. {
  36372. name: "Micro-Micro",
  36373. height: math.unit(1, "nm")
  36374. },
  36375. {
  36376. name: "Micro-erst",
  36377. height: math.unit(1, "micrometer")
  36378. },
  36379. {
  36380. name: "Micro-er",
  36381. height: math.unit(1, "cm")
  36382. },
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(175, "cm"),
  36386. default: true
  36387. },
  36388. {
  36389. name: "Macro",
  36390. height: math.unit(100, "m")
  36391. },
  36392. {
  36393. name: "Macro-er",
  36394. height: math.unit(1, "km")
  36395. },
  36396. {
  36397. name: "Macro-erst",
  36398. height: math.unit(10, "km")
  36399. },
  36400. {
  36401. name: "Macro-Macro",
  36402. height: math.unit(100, "km")
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(11 + 9/12, "feet"),
  36411. weight: math.unit(935, "lb"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/kingsley/front.svg",
  36415. extra: 1803/1674,
  36416. bottom: 127/1930
  36417. }
  36418. },
  36419. frontNude: {
  36420. height: math.unit(11 + 9/12, "feet"),
  36421. weight: math.unit(935, "lb"),
  36422. name: "Front (Nude)",
  36423. image: {
  36424. source: "./media/characters/kingsley/front-nude.svg",
  36425. extra: 1803/1674,
  36426. bottom: 127/1930
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(11 + 9/12, "feet"),
  36434. default: true
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36440. {
  36441. side: {
  36442. height: math.unit(9, "feet"),
  36443. name: "Side",
  36444. image: {
  36445. source: "./media/characters/rymel/side.svg",
  36446. extra: 792/469,
  36447. bottom: 121/913
  36448. }
  36449. },
  36450. maw: {
  36451. height: math.unit(2.4, "meters"),
  36452. name: "Maw",
  36453. image: {
  36454. source: "./media/characters/rymel/maw.svg"
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "House Drake",
  36461. height: math.unit(2, "feet")
  36462. },
  36463. {
  36464. name: "Reduced",
  36465. height: math.unit(4.5, "feet")
  36466. },
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(9, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(1.74, "meters"),
  36479. weight: math.unit(55, "kg"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/rubus/front.svg",
  36483. extra: 1894/1742,
  36484. bottom: 44/1938
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Normal",
  36491. height: math.unit(1.74, "meters"),
  36492. default: true
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36498. {
  36499. front: {
  36500. height: math.unit(5 + 2/12, "feet"),
  36501. weight: math.unit(112, "lb"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/cassie-kingston/front.svg",
  36505. extra: 1438/1390,
  36506. bottom: 47/1485
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(5 + 2/12, "feet"),
  36514. default: true
  36515. },
  36516. {
  36517. name: "Macro",
  36518. height: math.unit(128, "feet")
  36519. },
  36520. {
  36521. name: "Megamacro",
  36522. height: math.unit(2.56, "miles")
  36523. },
  36524. ]
  36525. ))
  36526. characterMakers.push(() => makeCharacter(
  36527. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36528. {
  36529. front: {
  36530. height: math.unit(7, "feet"),
  36531. name: "Front",
  36532. image: {
  36533. source: "./media/characters/fox/front.svg",
  36534. extra: 1798/1703,
  36535. bottom: 55/1853
  36536. }
  36537. },
  36538. back: {
  36539. height: math.unit(7, "feet"),
  36540. name: "Back",
  36541. image: {
  36542. source: "./media/characters/fox/back.svg",
  36543. extra: 1748/1649,
  36544. bottom: 32/1780
  36545. }
  36546. },
  36547. head: {
  36548. height: math.unit(1.95, "feet"),
  36549. name: "Head",
  36550. image: {
  36551. source: "./media/characters/fox/head.svg"
  36552. }
  36553. },
  36554. dick: {
  36555. height: math.unit(1.33, "feet"),
  36556. name: "Dick",
  36557. image: {
  36558. source: "./media/characters/fox/dick.svg"
  36559. }
  36560. },
  36561. foot: {
  36562. height: math.unit(1, "feet"),
  36563. name: "Foot",
  36564. image: {
  36565. source: "./media/characters/fox/foot.svg"
  36566. }
  36567. },
  36568. paw: {
  36569. height: math.unit(0.92, "feet"),
  36570. name: "Paw",
  36571. image: {
  36572. source: "./media/characters/fox/paw.svg"
  36573. }
  36574. },
  36575. },
  36576. [
  36577. {
  36578. name: "Small",
  36579. height: math.unit(3, "inches")
  36580. },
  36581. {
  36582. name: "\"Realistic\"",
  36583. height: math.unit(7, "feet")
  36584. },
  36585. {
  36586. name: "Normal",
  36587. height: math.unit(150, "feet"),
  36588. default: true
  36589. },
  36590. {
  36591. name: "BIG",
  36592. height: math.unit(1200, "feet")
  36593. },
  36594. {
  36595. name: "👀",
  36596. height: math.unit(5, "miles")
  36597. },
  36598. {
  36599. name: "👀👀👀",
  36600. height: math.unit(64, "miles")
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(625, "feet"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/asonja-rossa/front.svg",
  36612. extra: 1833/1686,
  36613. bottom: 24/1857
  36614. }
  36615. },
  36616. back: {
  36617. height: math.unit(625, "feet"),
  36618. name: "Back",
  36619. image: {
  36620. source: "./media/characters/asonja-rossa/back.svg",
  36621. extra: 1852/1753,
  36622. bottom: 26/1878
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Macro",
  36629. height: math.unit(625, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36636. {
  36637. side: {
  36638. height: math.unit(6, "feet"),
  36639. weight: math.unit(150, "lb"),
  36640. name: "Side",
  36641. image: {
  36642. source: "./media/characters/rezukii/side.svg",
  36643. extra: 979/542,
  36644. bottom: 87/1066
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Tiny",
  36651. height: math.unit(2, "feet")
  36652. },
  36653. {
  36654. name: "Smol",
  36655. height: math.unit(4, "feet")
  36656. },
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(8, "feet"),
  36660. default: true
  36661. },
  36662. {
  36663. name: "Big",
  36664. height: math.unit(12, "feet")
  36665. },
  36666. {
  36667. name: "Macro",
  36668. height: math.unit(30, "feet")
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(14, "feet"),
  36677. weight: math.unit(9.5, "tonnes"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/dawnheart/front.svg",
  36681. extra: 2792/2675,
  36682. bottom: 64/2856
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(14, "feet"),
  36690. default: true
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36696. {
  36697. front: {
  36698. height: math.unit(1.7, "m"),
  36699. name: "Front",
  36700. image: {
  36701. source: "./media/characters/gladi/front.svg",
  36702. extra: 1460/1362,
  36703. bottom: 19/1479
  36704. }
  36705. },
  36706. back: {
  36707. height: math.unit(1.7, "m"),
  36708. name: "Back",
  36709. image: {
  36710. source: "./media/characters/gladi/back.svg",
  36711. extra: 1459/1357,
  36712. bottom: 12/1471
  36713. }
  36714. },
  36715. feral: {
  36716. height: math.unit(2.05, "m"),
  36717. name: "Feral",
  36718. image: {
  36719. source: "./media/characters/gladi/feral.svg",
  36720. extra: 821/557,
  36721. bottom: 91/912
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Shortest",
  36728. height: math.unit(70, "cm")
  36729. },
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(1.7, "m")
  36733. },
  36734. {
  36735. name: "Macro",
  36736. height: math.unit(10, "m"),
  36737. default: true
  36738. },
  36739. {
  36740. name: "Tallest",
  36741. height: math.unit(200, "m")
  36742. },
  36743. ]
  36744. ))
  36745. characterMakers.push(() => makeCharacter(
  36746. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36747. {
  36748. front: {
  36749. height: math.unit(5 + 7/12, "feet"),
  36750. weight: math.unit(92, "kg"),
  36751. name: "Front",
  36752. image: {
  36753. source: "./media/characters/erdno/front.svg",
  36754. extra: 1954/1889,
  36755. bottom: 22/1976
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Normal",
  36762. height: math.unit(5 + 7/12, "feet"),
  36763. default: true
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(5 + 10/12, "feet"),
  36772. weight: math.unit(150, "lb"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/jamie/front.svg",
  36776. extra: 1908/1768,
  36777. bottom: 19/1927
  36778. }
  36779. },
  36780. },
  36781. [
  36782. {
  36783. name: "Minimum",
  36784. height: math.unit(2, "cm")
  36785. },
  36786. {
  36787. name: "Micro",
  36788. height: math.unit(3, "inches")
  36789. },
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(5 + 10/12, "feet"),
  36793. default: true
  36794. },
  36795. {
  36796. name: "Macro",
  36797. height: math.unit(150, "feet")
  36798. },
  36799. {
  36800. name: "Megamacro",
  36801. height: math.unit(10000, "m")
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36807. {
  36808. front: {
  36809. height: math.unit(2, "meters"),
  36810. weight: math.unit(100, "kg"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/shiron/front.svg",
  36814. extra: 2103/1985,
  36815. bottom: 98/2201
  36816. }
  36817. },
  36818. back: {
  36819. height: math.unit(2, "meters"),
  36820. weight: math.unit(100, "kg"),
  36821. name: "Back",
  36822. image: {
  36823. source: "./media/characters/shiron/back.svg",
  36824. extra: 2110/2015,
  36825. bottom: 89/2199
  36826. }
  36827. },
  36828. hand: {
  36829. height: math.unit(0.96, "feet"),
  36830. name: "Hand",
  36831. image: {
  36832. source: "./media/characters/shiron/hand.svg"
  36833. }
  36834. },
  36835. foot: {
  36836. height: math.unit(1.464, "feet"),
  36837. name: "Foot",
  36838. image: {
  36839. source: "./media/characters/shiron/foot.svg"
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(2, "meters")
  36847. },
  36848. {
  36849. name: "Macro",
  36850. height: math.unit(500, "meters"),
  36851. default: true
  36852. },
  36853. {
  36854. name: "Megamacro",
  36855. height: math.unit(20, "km")
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(6, "feet"),
  36864. name: "Front",
  36865. image: {
  36866. source: "./media/characters/sam/front.svg",
  36867. extra: 849/826,
  36868. bottom: 19/868
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal",
  36875. height: math.unit(6, "feet"),
  36876. default: true
  36877. },
  36878. ]
  36879. ))
  36880. characterMakers.push(() => makeCharacter(
  36881. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36882. {
  36883. front: {
  36884. height: math.unit(8 + 4/12, "feet"),
  36885. weight: math.unit(122, "kg"),
  36886. name: "Front",
  36887. image: {
  36888. source: "./media/characters/namori-kurogawa/front.svg",
  36889. extra: 1894/1576,
  36890. bottom: 34/1928
  36891. }
  36892. },
  36893. },
  36894. [
  36895. {
  36896. name: "Normal",
  36897. height: math.unit(8 + 4/12, "feet"),
  36898. default: true
  36899. },
  36900. ]
  36901. ))
  36902. characterMakers.push(() => makeCharacter(
  36903. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36904. {
  36905. front: {
  36906. height: math.unit(9, "feet"),
  36907. weight: math.unit(621, "lb"),
  36908. name: "Front",
  36909. image: {
  36910. source: "./media/characters/unmru/front.svg",
  36911. extra: 1853/1747,
  36912. bottom: 73/1926
  36913. }
  36914. },
  36915. side: {
  36916. height: math.unit(9, "feet"),
  36917. weight: math.unit(621, "lb"),
  36918. name: "Side",
  36919. image: {
  36920. source: "./media/characters/unmru/side.svg",
  36921. extra: 1781/1671,
  36922. bottom: 127/1908
  36923. }
  36924. },
  36925. back: {
  36926. height: math.unit(9, "feet"),
  36927. weight: math.unit(621, "lb"),
  36928. name: "Back",
  36929. image: {
  36930. source: "./media/characters/unmru/back.svg",
  36931. extra: 1894/1765,
  36932. bottom: 75/1969
  36933. }
  36934. },
  36935. dick: {
  36936. height: math.unit(3, "feet"),
  36937. weight: math.unit(35, "lb"),
  36938. name: "Dick",
  36939. image: {
  36940. source: "./media/characters/unmru/dick.svg"
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(9, "feet")
  36948. },
  36949. {
  36950. name: "Natural",
  36951. height: math.unit(27, "feet"),
  36952. default: true
  36953. },
  36954. {
  36955. name: "Giant",
  36956. height: math.unit(90, "feet")
  36957. },
  36958. {
  36959. name: "Kaiju",
  36960. height: math.unit(270, "feet")
  36961. },
  36962. {
  36963. name: "Macro",
  36964. height: math.unit(900, "feet")
  36965. },
  36966. {
  36967. name: "Macro+",
  36968. height: math.unit(2700, "feet")
  36969. },
  36970. {
  36971. name: "Megamacro",
  36972. height: math.unit(9000, "feet")
  36973. },
  36974. {
  36975. name: "City-Crushing",
  36976. height: math.unit(27000, "feet")
  36977. },
  36978. {
  36979. name: "Mountain-Mashing",
  36980. height: math.unit(90000, "feet")
  36981. },
  36982. {
  36983. name: "Earth-Eclipsing",
  36984. height: math.unit(2.7e8, "feet")
  36985. },
  36986. {
  36987. name: "Sol-Swallowing",
  36988. height: math.unit(9e10, "feet")
  36989. },
  36990. {
  36991. name: "Majoris-Munching",
  36992. height: math.unit(2.7e13, "feet")
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36998. {
  36999. front: {
  37000. height: math.unit(1, "inch"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/squeaks-mouse/front.svg",
  37004. extra: 352/308,
  37005. bottom: 25/377
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Micro",
  37012. height: math.unit(1, "inch"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37019. {
  37020. side: {
  37021. height: math.unit(35, "feet"),
  37022. name: "Side",
  37023. image: {
  37024. source: "./media/characters/sayko/side.svg",
  37025. extra: 1697/1021,
  37026. bottom: 82/1779
  37027. }
  37028. },
  37029. head: {
  37030. height: math.unit(16, "feet"),
  37031. name: "Head",
  37032. image: {
  37033. source: "./media/characters/sayko/head.svg"
  37034. }
  37035. },
  37036. forepaw: {
  37037. height: math.unit(7.85, "feet"),
  37038. name: "Forepaw",
  37039. image: {
  37040. source: "./media/characters/sayko/forepaw.svg"
  37041. }
  37042. },
  37043. hindpaw: {
  37044. height: math.unit(8.8, "feet"),
  37045. name: "Hindpaw",
  37046. image: {
  37047. source: "./media/characters/sayko/hindpaw.svg"
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(35, "feet"),
  37055. default: true
  37056. },
  37057. {
  37058. name: "Colossus",
  37059. height: math.unit(100, "meters")
  37060. },
  37061. {
  37062. name: "\"Small\" Deity",
  37063. height: math.unit(1, "km")
  37064. },
  37065. {
  37066. name: "\"Large\" Deity",
  37067. height: math.unit(15, "km")
  37068. },
  37069. ]
  37070. ))
  37071. characterMakers.push(() => makeCharacter(
  37072. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37073. {
  37074. front: {
  37075. height: math.unit(6, "feet"),
  37076. weight: math.unit(250, "lb"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/mukiro/front.svg",
  37080. extra: 1368/1310,
  37081. bottom: 34/1402
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Normal",
  37088. height: math.unit(6, "feet"),
  37089. default: true
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(12 + 4/12, "feet"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37101. extra: 1346/1311,
  37102. bottom: 65/1411
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Base",
  37109. height: math.unit(12 + 4/12, "feet"),
  37110. default: true
  37111. },
  37112. {
  37113. name: "Macro",
  37114. height: math.unit(150, "feet")
  37115. },
  37116. {
  37117. name: "Mega",
  37118. height: math.unit(2, "miles")
  37119. },
  37120. {
  37121. name: "Demi God",
  37122. height: math.unit(4, "AU")
  37123. },
  37124. {
  37125. name: "God Size",
  37126. height: math.unit(1, "universe")
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37132. {
  37133. front: {
  37134. height: math.unit(3 + 3/12, "feet"),
  37135. weight: math.unit(88, "lb"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/trey/front.svg",
  37139. extra: 1815/1509,
  37140. bottom: 60/1875
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(3 + 3/12, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(4, "meters"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/adelonda/front.svg",
  37160. extra: 1942/1775,
  37161. bottom: 33/1975
  37162. }
  37163. },
  37164. back: {
  37165. height: math.unit(4, "meters"),
  37166. name: "Back",
  37167. image: {
  37168. source: "./media/characters/adelonda/back.svg",
  37169. extra: 1932/1780,
  37170. bottom: 42/1974
  37171. }
  37172. },
  37173. bust: {
  37174. height: math.unit(1.8, "meter"),
  37175. name: "Bust",
  37176. image: {
  37177. source: "./media/characters/adelonda/bust.svg"
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(4, "meters"),
  37185. default: true
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(8 + 4/12, "feet"),
  37194. weight: math.unit(670, "lb"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/acadiel/front.svg",
  37198. extra: 1901/1595,
  37199. bottom: 142/2043
  37200. }
  37201. },
  37202. },
  37203. [
  37204. {
  37205. name: "Normal",
  37206. height: math.unit(8 + 4/12, "feet"),
  37207. default: true
  37208. },
  37209. {
  37210. name: "Macro",
  37211. height: math.unit(200, "feet")
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(6 + 2/12, "feet"),
  37220. weight: math.unit(185, "lb"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/kayne-ein/front.svg",
  37224. extra: 1780/1560,
  37225. bottom: 81/1861
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(6 + 2/12, "feet"),
  37233. default: true
  37234. },
  37235. {
  37236. name: "Transformation Stage",
  37237. height: math.unit(15, "feet")
  37238. },
  37239. {
  37240. name: "Macro",
  37241. height: math.unit(150, "feet")
  37242. },
  37243. {
  37244. name: "Earth's Shadow",
  37245. height: math.unit(6200, "miles")
  37246. },
  37247. {
  37248. name: "Universal Demon",
  37249. height: math.unit(28e9, "parsecs")
  37250. },
  37251. {
  37252. name: "Multiverse God",
  37253. height: math.unit(3, "multiverses")
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(5 + 5/12, "feet"),
  37262. name: "Front",
  37263. image: {
  37264. source: "./media/characters/fawn/front.svg",
  37265. extra: 1873/1731,
  37266. bottom: 95/1968
  37267. }
  37268. },
  37269. back: {
  37270. height: math.unit(5 + 5/12, "feet"),
  37271. name: "Back",
  37272. image: {
  37273. source: "./media/characters/fawn/back.svg",
  37274. extra: 1813/1700,
  37275. bottom: 14/1827
  37276. }
  37277. },
  37278. hoof: {
  37279. height: math.unit(1.45, "feet"),
  37280. name: "Hoof",
  37281. image: {
  37282. source: "./media/characters/fawn/hoof.svg"
  37283. }
  37284. },
  37285. },
  37286. [
  37287. {
  37288. name: "Normal",
  37289. height: math.unit(5 + 5/12, "feet"),
  37290. default: true
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37296. {
  37297. front: {
  37298. height: math.unit(2 + 5/12, "feet"),
  37299. name: "Front",
  37300. image: {
  37301. source: "./media/characters/orion/front.svg",
  37302. extra: 1366/1304,
  37303. bottom: 43/1409
  37304. }
  37305. },
  37306. paw: {
  37307. height: math.unit(0.52, "feet"),
  37308. name: "Paw",
  37309. image: {
  37310. source: "./media/characters/orion/paw.svg"
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(2 + 5/12, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(5 + 10/12, "feet"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/vera/front.svg",
  37330. extra: 1680/1575,
  37331. bottom: 49/1729
  37332. }
  37333. },
  37334. back: {
  37335. height: math.unit(5 + 10/12, "feet"),
  37336. name: "Back",
  37337. image: {
  37338. source: "./media/characters/vera/back.svg",
  37339. extra: 1700/1588,
  37340. bottom: 18/1718
  37341. }
  37342. },
  37343. arcanine: {
  37344. height: math.unit(6 + 8/12, "feet"),
  37345. name: "Arcanine",
  37346. image: {
  37347. source: "./media/characters/vera/arcanine.svg",
  37348. extra: 1590/1511,
  37349. bottom: 71/1661
  37350. }
  37351. },
  37352. maw: {
  37353. height: math.unit(0.82, "feet"),
  37354. name: "Maw",
  37355. image: {
  37356. source: "./media/characters/vera/maw.svg"
  37357. }
  37358. },
  37359. mawArcanine: {
  37360. height: math.unit(0.97, "feet"),
  37361. name: "Maw (Arcanine)",
  37362. image: {
  37363. source: "./media/characters/vera/maw-arcanine.svg"
  37364. }
  37365. },
  37366. paw: {
  37367. height: math.unit(0.75, "feet"),
  37368. name: "Paw",
  37369. image: {
  37370. source: "./media/characters/vera/paw.svg"
  37371. }
  37372. },
  37373. pawprint: {
  37374. height: math.unit(0.52, "feet"),
  37375. name: "Pawprint",
  37376. image: {
  37377. source: "./media/characters/vera/pawprint.svg"
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(5 + 10/12, "feet"),
  37385. default: true
  37386. },
  37387. {
  37388. name: "Macro",
  37389. height: math.unit(75, "feet")
  37390. },
  37391. ]
  37392. ))
  37393. characterMakers.push(() => makeCharacter(
  37394. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37395. {
  37396. front: {
  37397. height: math.unit(4, "feet"),
  37398. weight: math.unit(40, "lb"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/orvan-rabbit/front.svg",
  37402. extra: 1896/1642,
  37403. bottom: 29/1925
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal",
  37410. height: math.unit(4, "feet"),
  37411. default: true
  37412. },
  37413. ]
  37414. ))
  37415. characterMakers.push(() => makeCharacter(
  37416. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37417. {
  37418. front: {
  37419. height: math.unit(6, "feet"),
  37420. weight: math.unit(168, "lb"),
  37421. name: "Front",
  37422. image: {
  37423. source: "./media/characters/lisa/front.svg",
  37424. extra: 2065/1867,
  37425. bottom: 46/2111
  37426. }
  37427. },
  37428. back: {
  37429. height: math.unit(6, "feet"),
  37430. weight: math.unit(168, "lb"),
  37431. name: "Back",
  37432. image: {
  37433. source: "./media/characters/lisa/back.svg",
  37434. extra: 1982/1838,
  37435. bottom: 29/2011
  37436. }
  37437. },
  37438. maw: {
  37439. height: math.unit(0.81, "feet"),
  37440. name: "Maw",
  37441. image: {
  37442. source: "./media/characters/lisa/maw.svg"
  37443. }
  37444. },
  37445. paw: {
  37446. height: math.unit(0.9, "feet"),
  37447. name: "Paw",
  37448. image: {
  37449. source: "./media/characters/lisa/paw.svg"
  37450. }
  37451. },
  37452. caribousune: {
  37453. height: math.unit(7 + 2/12, "feet"),
  37454. weight: math.unit(268, "lb"),
  37455. name: "Caribousune",
  37456. image: {
  37457. source: "./media/characters/lisa/caribousune.svg",
  37458. extra: 1843/1633,
  37459. bottom: 29/1872
  37460. }
  37461. },
  37462. frontCaribousune: {
  37463. height: math.unit(7 + 2/12, "feet"),
  37464. weight: math.unit(268, "lb"),
  37465. name: "Front (Caribousune)",
  37466. image: {
  37467. source: "./media/characters/lisa/front-caribousune.svg",
  37468. extra: 1818/1638,
  37469. bottom: 52/1870
  37470. }
  37471. },
  37472. sideCaribousune: {
  37473. height: math.unit(7 + 2/12, "feet"),
  37474. weight: math.unit(268, "lb"),
  37475. name: "Side (Caribousune)",
  37476. image: {
  37477. source: "./media/characters/lisa/side-caribousune.svg",
  37478. extra: 1851/1635,
  37479. bottom: 16/1867
  37480. }
  37481. },
  37482. backCaribousune: {
  37483. height: math.unit(7 + 2/12, "feet"),
  37484. weight: math.unit(268, "lb"),
  37485. name: "Back (Caribousune)",
  37486. image: {
  37487. source: "./media/characters/lisa/back-caribousune.svg",
  37488. extra: 1801/1604,
  37489. bottom: 44/1845
  37490. }
  37491. },
  37492. caribou: {
  37493. height: math.unit(7 + 2/12, "feet"),
  37494. weight: math.unit(268, "lb"),
  37495. name: "Caribou",
  37496. image: {
  37497. source: "./media/characters/lisa/caribou.svg",
  37498. extra: 1843/1633,
  37499. bottom: 29/1872
  37500. }
  37501. },
  37502. frontCaribou: {
  37503. height: math.unit(7 + 2/12, "feet"),
  37504. weight: math.unit(268, "lb"),
  37505. name: "Front (Caribou)",
  37506. image: {
  37507. source: "./media/characters/lisa/front-caribou.svg",
  37508. extra: 1818/1638,
  37509. bottom: 52/1870
  37510. }
  37511. },
  37512. sideCaribou: {
  37513. height: math.unit(7 + 2/12, "feet"),
  37514. weight: math.unit(268, "lb"),
  37515. name: "Side (Caribou)",
  37516. image: {
  37517. source: "./media/characters/lisa/side-caribou.svg",
  37518. extra: 1851/1635,
  37519. bottom: 16/1867
  37520. }
  37521. },
  37522. backCaribou: {
  37523. height: math.unit(7 + 2/12, "feet"),
  37524. weight: math.unit(268, "lb"),
  37525. name: "Back (Caribou)",
  37526. image: {
  37527. source: "./media/characters/lisa/back-caribou.svg",
  37528. extra: 1801/1604,
  37529. bottom: 44/1845
  37530. }
  37531. },
  37532. mawCaribou: {
  37533. height: math.unit(1.45, "feet"),
  37534. name: "Maw (Caribou)",
  37535. image: {
  37536. source: "./media/characters/lisa/maw-caribou.svg"
  37537. }
  37538. },
  37539. mawCaribousune: {
  37540. height: math.unit(1.45, "feet"),
  37541. name: "Maw (Caribousune)",
  37542. image: {
  37543. source: "./media/characters/lisa/maw-caribousune.svg"
  37544. }
  37545. },
  37546. pawCaribousune: {
  37547. height: math.unit(1.61, "feet"),
  37548. name: "Paw (Caribou)",
  37549. image: {
  37550. source: "./media/characters/lisa/paw-caribousune.svg"
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(6, "feet")
  37558. },
  37559. {
  37560. name: "God Size",
  37561. height: math.unit(72, "feet"),
  37562. default: true
  37563. },
  37564. {
  37565. name: "Towering",
  37566. height: math.unit(288, "feet")
  37567. },
  37568. {
  37569. name: "City Size",
  37570. height: math.unit(48384, "feet")
  37571. },
  37572. {
  37573. name: "Continental",
  37574. height: math.unit(4200, "miles")
  37575. },
  37576. {
  37577. name: "Planet Eater",
  37578. height: math.unit(42, "earths")
  37579. },
  37580. {
  37581. name: "Star Swallower",
  37582. height: math.unit(42, "solarradii")
  37583. },
  37584. {
  37585. name: "System Swallower",
  37586. height: math.unit(84000, "AU")
  37587. },
  37588. {
  37589. name: "Galaxy Gobbler",
  37590. height: math.unit(42, "galaxies")
  37591. },
  37592. {
  37593. name: "Universe Devourer",
  37594. height: math.unit(42, "universes")
  37595. },
  37596. {
  37597. name: "Multiverse Muncher",
  37598. height: math.unit(42, "multiverses")
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(36, "feet"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/shadow-rat/front.svg",
  37610. extra: 1845/1758,
  37611. bottom: 83/1928
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Macro",
  37618. height: math.unit(36, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37625. {
  37626. side: {
  37627. height: math.unit(8, "feet"),
  37628. weight: math.unit(2630, "lb"),
  37629. name: "Side",
  37630. image: {
  37631. source: "./media/characters/torallia/side.svg",
  37632. extra: 2164/2021,
  37633. bottom: 371/2535
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Mortal Interaction",
  37640. height: math.unit(8, "feet")
  37641. },
  37642. {
  37643. name: "Natural",
  37644. height: math.unit(24, "feet"),
  37645. default: true
  37646. },
  37647. {
  37648. name: "Giant",
  37649. height: math.unit(80, "feet")
  37650. },
  37651. {
  37652. name: "Kaiju",
  37653. height: math.unit(240, "feet")
  37654. },
  37655. {
  37656. name: "Macro",
  37657. height: math.unit(800, "feet")
  37658. },
  37659. {
  37660. name: "Macro+",
  37661. height: math.unit(2400, "feet")
  37662. },
  37663. {
  37664. name: "Macro++",
  37665. height: math.unit(8000, "feet")
  37666. },
  37667. {
  37668. name: "City-Crushing",
  37669. height: math.unit(24000, "feet")
  37670. },
  37671. {
  37672. name: "Mountain-Mashing",
  37673. height: math.unit(80000, "feet")
  37674. },
  37675. {
  37676. name: "District Demolisher",
  37677. height: math.unit(240000, "feet")
  37678. },
  37679. {
  37680. name: "Tri-County Terror",
  37681. height: math.unit(800000, "feet")
  37682. },
  37683. {
  37684. name: "State Smasher",
  37685. height: math.unit(2.4e6, "feet")
  37686. },
  37687. {
  37688. name: "Nation Nemesis",
  37689. height: math.unit(8e6, "feet")
  37690. },
  37691. {
  37692. name: "Continent Cracker",
  37693. height: math.unit(2.4e7, "feet")
  37694. },
  37695. {
  37696. name: "Planet-Pillaging",
  37697. height: math.unit(8e7, "feet")
  37698. },
  37699. {
  37700. name: "Earth-Eclipsing",
  37701. height: math.unit(2.4e8, "feet")
  37702. },
  37703. {
  37704. name: "Jovian-Jostling",
  37705. height: math.unit(8e8, "feet")
  37706. },
  37707. {
  37708. name: "Gas Giant Gulper",
  37709. height: math.unit(2.4e9, "feet")
  37710. },
  37711. {
  37712. name: "Astral Annihilator",
  37713. height: math.unit(8e9, "feet")
  37714. },
  37715. {
  37716. name: "Celestial Conqueror",
  37717. height: math.unit(2.4e10, "feet")
  37718. },
  37719. {
  37720. name: "Sol-Swallowing",
  37721. height: math.unit(8e10, "feet")
  37722. },
  37723. {
  37724. name: "Hunter of the Heavens",
  37725. height: math.unit(2.4e13, "feet")
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37731. {
  37732. front: {
  37733. height: math.unit(6 + 8/12, "feet"),
  37734. name: "Front",
  37735. image: {
  37736. source: "./media/characters/rebecca-pawlson/front.svg",
  37737. extra: 1737/1596,
  37738. bottom: 107/1844
  37739. }
  37740. },
  37741. back: {
  37742. height: math.unit(6 + 8/12, "feet"),
  37743. name: "Back",
  37744. image: {
  37745. source: "./media/characters/rebecca-pawlson/back.svg",
  37746. extra: 1702/1523,
  37747. bottom: 86/1788
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(6 + 8/12, "feet")
  37755. },
  37756. {
  37757. name: "Mini Macro",
  37758. height: math.unit(10, "feet"),
  37759. default: true
  37760. },
  37761. {
  37762. name: "Macro",
  37763. height: math.unit(100, "feet")
  37764. },
  37765. {
  37766. name: "Mega Macro",
  37767. height: math.unit(2500, "feet")
  37768. },
  37769. {
  37770. name: "Giga Macro",
  37771. height: math.unit(50, "miles")
  37772. },
  37773. ]
  37774. ))
  37775. characterMakers.push(() => makeCharacter(
  37776. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37777. {
  37778. front: {
  37779. height: math.unit(7 + 6/12, "feet"),
  37780. weight: math.unit(600, "lb"),
  37781. name: "Front",
  37782. image: {
  37783. source: "./media/characters/moxie-nova/front.svg",
  37784. extra: 1734/1652,
  37785. bottom: 41/1775
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(7 + 6/12, "feet"),
  37793. default: true
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(5, "feet"),
  37802. weight: math.unit(150, "lb"),
  37803. name: "Front",
  37804. image: {
  37805. source: "./media/characters/tiffany/front.svg",
  37806. extra: 1941/1845,
  37807. bottom: 58/1999
  37808. }
  37809. },
  37810. },
  37811. [
  37812. {
  37813. name: "Normal",
  37814. height: math.unit(5, "feet"),
  37815. default: true
  37816. },
  37817. ]
  37818. ))
  37819. characterMakers.push(() => makeCharacter(
  37820. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37821. {
  37822. front: {
  37823. height: math.unit(8, "feet"),
  37824. weight: math.unit(300, "lb"),
  37825. name: "Front",
  37826. image: {
  37827. source: "./media/characters/raxinath/front.svg",
  37828. extra: 1407/1309,
  37829. bottom: 39/1446
  37830. }
  37831. },
  37832. back: {
  37833. height: math.unit(8, "feet"),
  37834. weight: math.unit(300, "lb"),
  37835. name: "Back",
  37836. image: {
  37837. source: "./media/characters/raxinath/back.svg",
  37838. extra: 1405/1315,
  37839. bottom: 9/1414
  37840. }
  37841. },
  37842. },
  37843. [
  37844. {
  37845. name: "Speck",
  37846. height: math.unit(0.5, "nm")
  37847. },
  37848. {
  37849. name: "Micro",
  37850. height: math.unit(3, "inches")
  37851. },
  37852. {
  37853. name: "Kobold",
  37854. height: math.unit(3, "feet")
  37855. },
  37856. {
  37857. name: "Normal",
  37858. height: math.unit(8, "feet"),
  37859. default: true
  37860. },
  37861. {
  37862. name: "Giant",
  37863. height: math.unit(50, "feet")
  37864. },
  37865. {
  37866. name: "Macro",
  37867. height: math.unit(1000, "feet")
  37868. },
  37869. {
  37870. name: "Megamacro",
  37871. height: math.unit(1, "mile")
  37872. },
  37873. ]
  37874. ))
  37875. characterMakers.push(() => makeCharacter(
  37876. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37877. {
  37878. front: {
  37879. height: math.unit(10, "feet"),
  37880. weight: math.unit(1442, "lb"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/mal-dragon/front.svg",
  37884. extra: 1515/1444,
  37885. bottom: 113/1628
  37886. }
  37887. },
  37888. back: {
  37889. height: math.unit(10, "feet"),
  37890. weight: math.unit(1442, "lb"),
  37891. name: "Back",
  37892. image: {
  37893. source: "./media/characters/mal-dragon/back.svg",
  37894. extra: 1527/1434,
  37895. bottom: 25/1552
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Mortal Interaction",
  37902. height: math.unit(10, "feet"),
  37903. default: true
  37904. },
  37905. {
  37906. name: "Large",
  37907. height: math.unit(30, "feet")
  37908. },
  37909. {
  37910. name: "Kaiju",
  37911. height: math.unit(300, "feet")
  37912. },
  37913. {
  37914. name: "Megamacro",
  37915. height: math.unit(10000, "feet")
  37916. },
  37917. {
  37918. name: "Continent Cracker",
  37919. height: math.unit(30000000, "feet")
  37920. },
  37921. {
  37922. name: "Sol-Swallowing",
  37923. height: math.unit(1e11, "feet")
  37924. },
  37925. {
  37926. name: "Light Universal",
  37927. height: math.unit(5, "universes")
  37928. },
  37929. {
  37930. name: "Universe Atoms",
  37931. height: math.unit(1.829e9, "universes")
  37932. },
  37933. {
  37934. name: "Light Multiversal",
  37935. height: math.unit(5, "multiverses")
  37936. },
  37937. {
  37938. name: "Multiverse Atoms",
  37939. height: math.unit(1.829e9, "multiverses")
  37940. },
  37941. {
  37942. name: "Fabric of Time",
  37943. height: math.unit(1e262, "multiverses")
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(9, "feet"),
  37952. weight: math.unit(1050, "lb"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/tabitha/front.svg",
  37956. extra: 2083/1994,
  37957. bottom: 68/2151
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Baseline",
  37964. height: math.unit(9, "feet"),
  37965. default: true
  37966. },
  37967. {
  37968. name: "Giant",
  37969. height: math.unit(90, "feet")
  37970. },
  37971. {
  37972. name: "Macro",
  37973. height: math.unit(900, "feet")
  37974. },
  37975. {
  37976. name: "Megamacro",
  37977. height: math.unit(9000, "feet")
  37978. },
  37979. {
  37980. name: "City-Crushing",
  37981. height: math.unit(27000, "feet")
  37982. },
  37983. {
  37984. name: "Mountain-Mashing",
  37985. height: math.unit(90000, "feet")
  37986. },
  37987. {
  37988. name: "Nation Nemesis",
  37989. height: math.unit(9e6, "feet")
  37990. },
  37991. {
  37992. name: "Continent Cracker",
  37993. height: math.unit(27e6, "feet")
  37994. },
  37995. {
  37996. name: "Earth-Eclipsing",
  37997. height: math.unit(2.7e8, "feet")
  37998. },
  37999. {
  38000. name: "Gas Giant Gulper",
  38001. height: math.unit(2.7e9, "feet")
  38002. },
  38003. {
  38004. name: "Sol-Swallowing",
  38005. height: math.unit(9e10, "feet")
  38006. },
  38007. {
  38008. name: "Galaxy Gulper",
  38009. height: math.unit(9, "galaxies")
  38010. },
  38011. {
  38012. name: "Cosmos Churner",
  38013. height: math.unit(9, "universes")
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(160, "cm"),
  38022. weight: math.unit(55, "kg"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/tow/front.svg",
  38026. extra: 1751/1722,
  38027. bottom: 74/1825
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Norm",
  38034. height: math.unit(160, "cm")
  38035. },
  38036. {
  38037. name: "Casual",
  38038. height: math.unit(3200, "m"),
  38039. default: true
  38040. },
  38041. {
  38042. name: "Show-Off",
  38043. height: math.unit(160, "km")
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38049. {
  38050. front: {
  38051. height: math.unit(7 + 11/12, "feet"),
  38052. weight: math.unit(342.8, "lb"),
  38053. name: "Front",
  38054. image: {
  38055. source: "./media/characters/vivian-orca-dragon/front.svg",
  38056. extra: 1890/1865,
  38057. bottom: 28/1918
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Micro",
  38064. height: math.unit(5, "inches")
  38065. },
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(7 + 11/12, "feet"),
  38069. default: true
  38070. },
  38071. {
  38072. name: "Macro",
  38073. height: math.unit(395 + 7/12, "feet")
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38079. {
  38080. side: {
  38081. height: math.unit(10, "feet"),
  38082. weight: math.unit(1442, "lb"),
  38083. name: "Side",
  38084. image: {
  38085. source: "./media/characters/lotherakon/side.svg",
  38086. extra: 1604/1497,
  38087. bottom: 89/1693
  38088. }
  38089. },
  38090. },
  38091. [
  38092. {
  38093. name: "Mortal Interaction",
  38094. height: math.unit(10, "feet")
  38095. },
  38096. {
  38097. name: "Large",
  38098. height: math.unit(30, "feet"),
  38099. default: true
  38100. },
  38101. {
  38102. name: "Giant",
  38103. height: math.unit(100, "feet")
  38104. },
  38105. {
  38106. name: "Kaiju",
  38107. height: math.unit(300, "feet")
  38108. },
  38109. {
  38110. name: "Macro",
  38111. height: math.unit(1000, "feet")
  38112. },
  38113. {
  38114. name: "Macro+",
  38115. height: math.unit(3000, "feet")
  38116. },
  38117. {
  38118. name: "Megamacro",
  38119. height: math.unit(10000, "feet")
  38120. },
  38121. {
  38122. name: "City-Crushing",
  38123. height: math.unit(30000, "feet")
  38124. },
  38125. {
  38126. name: "Continent Cracker",
  38127. height: math.unit(30e6, "feet")
  38128. },
  38129. {
  38130. name: "Earth Eclipsing",
  38131. height: math.unit(3e8, "feet")
  38132. },
  38133. {
  38134. name: "Gas Giant Gulper",
  38135. height: math.unit(3e9, "feet")
  38136. },
  38137. {
  38138. name: "Sol-Swallowing",
  38139. height: math.unit(1e11, "feet")
  38140. },
  38141. {
  38142. name: "System Swallower",
  38143. height: math.unit(3e14, "feet")
  38144. },
  38145. {
  38146. name: "Galaxy Gulper",
  38147. height: math.unit(10, "galaxies")
  38148. },
  38149. {
  38150. name: "Light Universal",
  38151. height: math.unit(5, "universes")
  38152. },
  38153. {
  38154. name: "Universe Palm",
  38155. height: math.unit(20, "universes")
  38156. },
  38157. {
  38158. name: "Light Multiversal",
  38159. height: math.unit(5, "multiverses")
  38160. },
  38161. {
  38162. name: "Multiverse Palm",
  38163. height: math.unit(20, "multiverses")
  38164. },
  38165. {
  38166. name: "Inferno Incarnate",
  38167. height: math.unit(1e7, "multiverses")
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(8, "feet"),
  38176. weight: math.unit(1200, "lb"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/malithee/front.svg",
  38180. extra: 1675/1640,
  38181. bottom: 162/1837
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Mortal Interaction",
  38188. height: math.unit(8, "feet"),
  38189. default: true
  38190. },
  38191. {
  38192. name: "Large",
  38193. height: math.unit(24, "feet")
  38194. },
  38195. {
  38196. name: "Kaiju",
  38197. height: math.unit(240, "feet")
  38198. },
  38199. {
  38200. name: "Megamacro",
  38201. height: math.unit(8000, "feet")
  38202. },
  38203. {
  38204. name: "Continent Cracker",
  38205. height: math.unit(24e6, "feet")
  38206. },
  38207. {
  38208. name: "Earth-Eclipsing",
  38209. height: math.unit(2.4e8, "feet")
  38210. },
  38211. {
  38212. name: "Sol-Swallowing",
  38213. height: math.unit(8e10, "feet")
  38214. },
  38215. {
  38216. name: "Galaxy Gulper",
  38217. height: math.unit(8, "galaxies")
  38218. },
  38219. {
  38220. name: "Light Universal",
  38221. height: math.unit(4, "universes")
  38222. },
  38223. {
  38224. name: "Universe Atoms",
  38225. height: math.unit(1.829e9, "universes")
  38226. },
  38227. {
  38228. name: "Light Multiversal",
  38229. height: math.unit(4, "multiverses")
  38230. },
  38231. {
  38232. name: "Multiverse Atoms",
  38233. height: math.unit(1.829e9, "multiverses")
  38234. },
  38235. {
  38236. name: "Nigh-Omnipresence",
  38237. height: math.unit(8e261, "multiverses")
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(10, "feet"),
  38246. weight: math.unit(1500, "lb"),
  38247. name: "Front",
  38248. image: {
  38249. source: "./media/characters/miles-thestia/front.svg",
  38250. extra: 1812/1727,
  38251. bottom: 86/1898
  38252. }
  38253. },
  38254. back: {
  38255. height: math.unit(10, "feet"),
  38256. weight: math.unit(1500, "lb"),
  38257. name: "Back",
  38258. image: {
  38259. source: "./media/characters/miles-thestia/back.svg",
  38260. extra: 1799/1690,
  38261. bottom: 47/1846
  38262. }
  38263. },
  38264. frontNsfw: {
  38265. height: math.unit(10, "feet"),
  38266. weight: math.unit(1500, "lb"),
  38267. name: "Front (NSFW)",
  38268. image: {
  38269. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38270. extra: 1812/1727,
  38271. bottom: 86/1898
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Mini-Macro",
  38278. height: math.unit(10, "feet"),
  38279. default: true
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(25, "feet"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/titan-s-wulf/front.svg",
  38291. extra: 1560/1484,
  38292. bottom: 76/1636
  38293. }
  38294. },
  38295. },
  38296. [
  38297. {
  38298. name: "Smallest",
  38299. height: math.unit(25, "feet"),
  38300. default: true
  38301. },
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(200, "feet")
  38305. },
  38306. {
  38307. name: "Macro",
  38308. height: math.unit(200000, "feet")
  38309. },
  38310. {
  38311. name: "Multiversal Original",
  38312. height: math.unit(10000, "multiverses")
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(8, "feet"),
  38321. weight: math.unit(553, "lb"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/tawendeh/front.svg",
  38325. extra: 2365/2268,
  38326. bottom: 83/2448
  38327. }
  38328. },
  38329. frontClothed: {
  38330. height: math.unit(8, "feet"),
  38331. weight: math.unit(553, "lb"),
  38332. name: "Front (Clothed)",
  38333. image: {
  38334. source: "./media/characters/tawendeh/front-clothed.svg",
  38335. extra: 2365/2268,
  38336. bottom: 83/2448
  38337. }
  38338. },
  38339. back: {
  38340. height: math.unit(8, "feet"),
  38341. weight: math.unit(553, "lb"),
  38342. name: "Back",
  38343. image: {
  38344. source: "./media/characters/tawendeh/back.svg",
  38345. extra: 2397/2294,
  38346. bottom: 42/2439
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Mortal Interaction",
  38353. height: math.unit(8, "feet"),
  38354. default: true
  38355. },
  38356. {
  38357. name: "Giant",
  38358. height: math.unit(80, "feet")
  38359. },
  38360. {
  38361. name: "Macro",
  38362. height: math.unit(800, "feet")
  38363. },
  38364. {
  38365. name: "Megamacro",
  38366. height: math.unit(8000, "feet")
  38367. },
  38368. {
  38369. name: "City-Crushing",
  38370. height: math.unit(24000, "feet")
  38371. },
  38372. {
  38373. name: "Mountain-Mashing",
  38374. height: math.unit(80000, "feet")
  38375. },
  38376. {
  38377. name: "Nation Nemesis",
  38378. height: math.unit(8e6, "feet")
  38379. },
  38380. {
  38381. name: "Continent Cracker",
  38382. height: math.unit(24e6, "feet")
  38383. },
  38384. {
  38385. name: "Earth-Eclipsing",
  38386. height: math.unit(2.4e8, "feet")
  38387. },
  38388. {
  38389. name: "Gas Giant Gulper",
  38390. height: math.unit(2.4e9, "feet")
  38391. },
  38392. {
  38393. name: "Sol-Swallowing",
  38394. height: math.unit(8e10, "feet")
  38395. },
  38396. {
  38397. name: "Galaxy Gulper",
  38398. height: math.unit(8, "galaxies")
  38399. },
  38400. {
  38401. name: "Cosmos Churner",
  38402. height: math.unit(8, "universes")
  38403. },
  38404. {
  38405. name: "Omnipotent Otter",
  38406. height: math.unit(80, "universes")
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(2.6, "meters"),
  38415. weight: math.unit(900, "kg"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/neesha/front.svg",
  38419. extra: 1803/1653,
  38420. bottom: 128/1931
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(2.6, "meters"),
  38428. default: true
  38429. },
  38430. {
  38431. name: "Macro",
  38432. height: math.unit(50, "meters")
  38433. },
  38434. ]
  38435. ))
  38436. characterMakers.push(() => makeCharacter(
  38437. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38438. {
  38439. front: {
  38440. height: math.unit(5, "feet"),
  38441. weight: math.unit(185, "lb"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/kyera/front.svg",
  38445. extra: 1875/1790,
  38446. bottom: 96/1971
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(5, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(7 + 6/12, "feet"),
  38463. weight: math.unit(540, "lb"),
  38464. name: "Front",
  38465. image: {
  38466. source: "./media/characters/yuko/front.svg",
  38467. extra: 1282/1222,
  38468. bottom: 101/1383
  38469. }
  38470. },
  38471. frontClothed: {
  38472. height: math.unit(7 + 6/12, "feet"),
  38473. weight: math.unit(540, "lb"),
  38474. name: "Front (Clothed)",
  38475. image: {
  38476. source: "./media/characters/yuko/front-clothed.svg",
  38477. extra: 1282/1222,
  38478. bottom: 101/1383
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Normal",
  38485. height: math.unit(7 + 6/12, "feet"),
  38486. default: true
  38487. },
  38488. {
  38489. name: "Macro",
  38490. height: math.unit(26 + 9/12, "feet")
  38491. },
  38492. {
  38493. name: "Megamacro",
  38494. height: math.unit(300, "feet")
  38495. },
  38496. {
  38497. name: "Gigamacro",
  38498. height: math.unit(5000, "feet")
  38499. },
  38500. {
  38501. name: "Planetary",
  38502. height: math.unit(10000, "miles")
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38508. {
  38509. front: {
  38510. height: math.unit(8 + 2/12, "feet"),
  38511. weight: math.unit(600, "lb"),
  38512. name: "Front",
  38513. image: {
  38514. source: "./media/characters/deam-nitrel/front.svg",
  38515. extra: 1308/1234,
  38516. bottom: 125/1433
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(8 + 2/12, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38530. {
  38531. front: {
  38532. height: math.unit(6.1, "feet"),
  38533. weight: math.unit(180, "lb"),
  38534. name: "Front",
  38535. image: {
  38536. source: "./media/characters/skyress/front.svg",
  38537. extra: 1045/915,
  38538. bottom: 28/1073
  38539. }
  38540. },
  38541. maw: {
  38542. height: math.unit(1, "feet"),
  38543. name: "Maw",
  38544. image: {
  38545. source: "./media/characters/skyress/maw.svg"
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(6.1, "feet"),
  38553. default: true
  38554. },
  38555. {
  38556. name: "Macro",
  38557. height: math.unit(200, "feet")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(4 + 2/12, "feet"),
  38566. weight: math.unit(40, "kg"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/amethyst-jones/front.svg",
  38570. extra: 1220/1150,
  38571. bottom: 101/1321
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(4 + 2/12, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(1.7, "m"),
  38588. weight: math.unit(135, "lb"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/jade/front.svg",
  38592. extra: 1818/1767,
  38593. bottom: 32/1850
  38594. }
  38595. },
  38596. back: {
  38597. height: math.unit(1.7, "m"),
  38598. weight: math.unit(135, "lb"),
  38599. name: "Back",
  38600. image: {
  38601. source: "./media/characters/jade/back.svg",
  38602. extra: 1869/1809,
  38603. bottom: 35/1904
  38604. }
  38605. },
  38606. hand: {
  38607. height: math.unit(0.24, "m"),
  38608. name: "Hand",
  38609. image: {
  38610. source: "./media/characters/jade/hand.svg"
  38611. }
  38612. },
  38613. foot: {
  38614. height: math.unit(0.263, "m"),
  38615. name: "Foot",
  38616. image: {
  38617. source: "./media/characters/jade/foot.svg"
  38618. }
  38619. },
  38620. dick: {
  38621. height: math.unit(0.47, "m"),
  38622. name: "Dick",
  38623. image: {
  38624. source: "./media/characters/jade/dick.svg"
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Micro",
  38631. height: math.unit(22, "cm")
  38632. },
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(1.7, "m"),
  38636. default: true
  38637. },
  38638. {
  38639. name: "Macro",
  38640. height: math.unit(152, "m")
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(100, "miles"),
  38649. weight: math.unit(20000, "tons"),
  38650. name: "Front",
  38651. image: {
  38652. source: "./media/characters/cookie/front.svg",
  38653. extra: 1125/1070,
  38654. bottom: 30/1155
  38655. }
  38656. },
  38657. },
  38658. [
  38659. {
  38660. name: "Big",
  38661. height: math.unit(50, "feet")
  38662. },
  38663. {
  38664. name: "Macro",
  38665. height: math.unit(100, "miles"),
  38666. default: true
  38667. },
  38668. {
  38669. name: "Megamacro",
  38670. height: math.unit(90000, "miles")
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(6, "feet"),
  38679. weight: math.unit(145, "lb"),
  38680. name: "Front",
  38681. image: {
  38682. source: "./media/characters/farzian/front.svg",
  38683. extra: 1902/1693,
  38684. bottom: 108/2010
  38685. }
  38686. },
  38687. },
  38688. [
  38689. {
  38690. name: "Macro",
  38691. height: math.unit(500, "feet"),
  38692. default: true
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38698. {
  38699. front: {
  38700. height: math.unit(3 + 6/12, "feet"),
  38701. weight: math.unit(50, "lb"),
  38702. name: "Front",
  38703. image: {
  38704. source: "./media/characters/kimberly-tilson/front.svg",
  38705. extra: 1400/1322,
  38706. bottom: 36/1436
  38707. }
  38708. },
  38709. back: {
  38710. height: math.unit(3 + 6/12, "feet"),
  38711. weight: math.unit(50, "lb"),
  38712. name: "Back",
  38713. image: {
  38714. source: "./media/characters/kimberly-tilson/back.svg",
  38715. extra: 1370/1307,
  38716. bottom: 20/1390
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Normal",
  38723. height: math.unit(3 + 6/12, "feet"),
  38724. default: true
  38725. },
  38726. ]
  38727. ))
  38728. characterMakers.push(() => makeCharacter(
  38729. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38730. {
  38731. front: {
  38732. height: math.unit(1148, "feet"),
  38733. weight: math.unit(34057, "lb"),
  38734. name: "Front",
  38735. image: {
  38736. source: "./media/characters/harthos/front.svg",
  38737. extra: 1391/1339,
  38738. bottom: 13/1404
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Macro",
  38745. height: math.unit(1148, "feet"),
  38746. default: true
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(15, "feet"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/hypatia/front.svg",
  38758. extra: 1653/1591,
  38759. bottom: 79/1732
  38760. }
  38761. },
  38762. },
  38763. [
  38764. {
  38765. name: "Normal",
  38766. height: math.unit(15, "feet")
  38767. },
  38768. {
  38769. name: "Small",
  38770. height: math.unit(300, "feet")
  38771. },
  38772. {
  38773. name: "Macro",
  38774. height: math.unit(2500, "feet"),
  38775. default: true
  38776. },
  38777. {
  38778. name: "Mega Macro",
  38779. height: math.unit(1500, "miles")
  38780. },
  38781. {
  38782. name: "Giga Macro",
  38783. height: math.unit(1.5e6, "miles")
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(6, "feet"),
  38792. weight: math.unit(200, "lb"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/wulver/front.svg",
  38796. extra: 1724/1632,
  38797. bottom: 130/1854
  38798. }
  38799. },
  38800. frontNsfw: {
  38801. height: math.unit(6, "feet"),
  38802. weight: math.unit(200, "lb"),
  38803. name: "Front (NSFW)",
  38804. image: {
  38805. source: "./media/characters/wulver/front-nsfw.svg",
  38806. extra: 1724/1632,
  38807. bottom: 130/1854
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Human-Sized",
  38814. height: math.unit(6, "feet")
  38815. },
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(4, "meters"),
  38819. default: true
  38820. },
  38821. {
  38822. name: "Large",
  38823. height: math.unit(6, "m")
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(7, "feet"),
  38832. name: "Front",
  38833. image: {
  38834. source: "./media/characters/maru/front.svg",
  38835. extra: 1595/1570,
  38836. bottom: 0/1595
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(7, "feet"),
  38844. default: true
  38845. },
  38846. {
  38847. name: "Macro",
  38848. height: math.unit(700, "feet")
  38849. },
  38850. {
  38851. name: "Mega Macro",
  38852. height: math.unit(25, "miles")
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(6, "feet"),
  38861. weight: math.unit(170, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/xenon/front.svg",
  38865. extra: 1376/1305,
  38866. bottom: 56/1432
  38867. }
  38868. },
  38869. back: {
  38870. height: math.unit(6, "feet"),
  38871. weight: math.unit(170, "lb"),
  38872. name: "Back",
  38873. image: {
  38874. source: "./media/characters/xenon/back.svg",
  38875. extra: 1328/1259,
  38876. bottom: 95/1423
  38877. }
  38878. },
  38879. maw: {
  38880. height: math.unit(0.52, "feet"),
  38881. name: "Maw",
  38882. image: {
  38883. source: "./media/characters/xenon/maw.svg"
  38884. }
  38885. },
  38886. hand: {
  38887. height: math.unit(0.82, "feet"),
  38888. name: "Hand",
  38889. image: {
  38890. source: "./media/characters/xenon/hand.svg"
  38891. }
  38892. },
  38893. foot: {
  38894. height: math.unit(1.13, "feet"),
  38895. name: "Foot",
  38896. image: {
  38897. source: "./media/characters/xenon/foot.svg"
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Micro",
  38904. height: math.unit(0.8, "inches")
  38905. },
  38906. {
  38907. name: "Normal",
  38908. height: math.unit(6, "feet")
  38909. },
  38910. {
  38911. name: "Macro",
  38912. height: math.unit(50, "feet"),
  38913. default: true
  38914. },
  38915. {
  38916. name: "Macro+",
  38917. height: math.unit(250, "feet")
  38918. },
  38919. {
  38920. name: "Megamacro",
  38921. height: math.unit(1500, "feet")
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(7 + 5/12, "feet"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/zane/front.svg",
  38933. extra: 1260/1203,
  38934. bottom: 94/1354
  38935. }
  38936. },
  38937. back: {
  38938. height: math.unit(5.05, "feet"),
  38939. name: "Back",
  38940. image: {
  38941. source: "./media/characters/zane/back.svg",
  38942. extra: 893/829,
  38943. bottom: 30/923
  38944. }
  38945. },
  38946. werewolf: {
  38947. height: math.unit(11, "feet"),
  38948. name: "Werewolf",
  38949. image: {
  38950. source: "./media/characters/zane/werewolf.svg",
  38951. extra: 1383/1323,
  38952. bottom: 89/1472
  38953. }
  38954. },
  38955. foot: {
  38956. height: math.unit(1.46, "feet"),
  38957. name: "Foot",
  38958. image: {
  38959. source: "./media/characters/zane/foot.svg"
  38960. }
  38961. },
  38962. footFront: {
  38963. height: math.unit(0.784, "feet"),
  38964. name: "Foot (Front)",
  38965. image: {
  38966. source: "./media/characters/zane/foot-front.svg"
  38967. }
  38968. },
  38969. dick: {
  38970. height: math.unit(1.95, "feet"),
  38971. name: "Dick",
  38972. image: {
  38973. source: "./media/characters/zane/dick.svg"
  38974. }
  38975. },
  38976. dickWerewolf: {
  38977. height: math.unit(3.77, "feet"),
  38978. name: "Dick (Werewolf)",
  38979. image: {
  38980. source: "./media/characters/zane/dick.svg"
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(7 + 5/12, "feet"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(6 + 2/12, "feet"),
  38997. weight: math.unit(284, "lb"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/benni-desparque/front.svg",
  39001. extra: 1353/1126,
  39002. bottom: 69/1422
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Civilian",
  39009. height: math.unit(6 + 2/12, "feet")
  39010. },
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(98, "feet"),
  39014. default: true
  39015. },
  39016. {
  39017. name: "Kaiju Fighter",
  39018. height: math.unit(268, "feet")
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(5, "feet"),
  39027. weight: math.unit(105, "lb"),
  39028. name: "Front",
  39029. image: {
  39030. source: "./media/characters/maxine/front.svg",
  39031. extra: 1386/1250,
  39032. bottom: 71/1457
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(5, "feet"),
  39040. default: true
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(11 + 7/12, "feet"),
  39049. weight: math.unit(9576, "lb"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/scaly/front.svg",
  39053. extra: 888/867,
  39054. bottom: 36/924
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Normal",
  39061. height: math.unit(11 + 7/12, "feet"),
  39062. default: true
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(9, "inches"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/saelria/front.svg",
  39074. extra: 662/621,
  39075. bottom: 12/674
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Tiny",
  39082. height: math.unit(9, "inches"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(80, "meters"),
  39092. weight: math.unit(7000, "tonnes"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/tef/front.svg",
  39096. extra: 2036/1991,
  39097. bottom: 54/2090
  39098. }
  39099. },
  39100. back: {
  39101. height: math.unit(80, "meters"),
  39102. weight: math.unit(7000, "tonnes"),
  39103. name: "Back",
  39104. image: {
  39105. source: "./media/characters/tef/back.svg",
  39106. extra: 2036/1991,
  39107. bottom: 54/2090
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Macro",
  39114. height: math.unit(80, "meters"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(13, "feet"),
  39124. weight: math.unit(6, "tons"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/rover/front.svg",
  39128. extra: 1233/1156,
  39129. bottom: 50/1283
  39130. }
  39131. },
  39132. back: {
  39133. height: math.unit(13, "feet"),
  39134. weight: math.unit(6, "tons"),
  39135. name: "Back",
  39136. image: {
  39137. source: "./media/characters/rover/back.svg",
  39138. extra: 1327/1258,
  39139. bottom: 39/1366
  39140. }
  39141. },
  39142. },
  39143. [
  39144. {
  39145. name: "Normal",
  39146. height: math.unit(13, "feet"),
  39147. default: true
  39148. },
  39149. {
  39150. name: "Macro",
  39151. height: math.unit(1300, "feet")
  39152. },
  39153. {
  39154. name: "Megamacro",
  39155. height: math.unit(1300, "miles")
  39156. },
  39157. {
  39158. name: "Gigamacro",
  39159. height: math.unit(1300000, "miles")
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(6, "feet"),
  39168. weight: math.unit(150, "lb"),
  39169. name: "Front",
  39170. image: {
  39171. source: "./media/characters/ariz/front.svg",
  39172. extra: 1401/1346,
  39173. bottom: 5/1406
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(10, "feet"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(6, "feet"),
  39190. weight: math.unit(140, "lb"),
  39191. name: "Front",
  39192. image: {
  39193. source: "./media/characters/sigrun/front.svg",
  39194. extra: 1418/1359,
  39195. bottom: 27/1445
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Macro",
  39202. height: math.unit(35, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39209. {
  39210. front: {
  39211. height: math.unit(6, "feet"),
  39212. weight: math.unit(150, "lb"),
  39213. name: "Front",
  39214. image: {
  39215. source: "./media/characters/numin/front.svg",
  39216. extra: 1433/1388,
  39217. bottom: 12/1445
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Macro",
  39224. height: math.unit(21.5, "km"),
  39225. default: true
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39231. {
  39232. front: {
  39233. height: math.unit(6, "feet"),
  39234. weight: math.unit(463, "lb"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/melwa/front.svg",
  39238. extra: 1307/1248,
  39239. bottom: 93/1400
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Macro",
  39246. height: math.unit(50, "meters"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(325, "feet"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/zorkaiju/front.svg",
  39259. extra: 1955/1814,
  39260. bottom: 40/1995
  39261. }
  39262. },
  39263. frontExtended: {
  39264. height: math.unit(325, "feet"),
  39265. name: "Front (Extended)",
  39266. image: {
  39267. source: "./media/characters/zorkaiju/front-extended.svg",
  39268. extra: 1955/1814,
  39269. bottom: 40/1995
  39270. }
  39271. },
  39272. side: {
  39273. height: math.unit(325, "feet"),
  39274. name: "Side",
  39275. image: {
  39276. source: "./media/characters/zorkaiju/side.svg",
  39277. extra: 1495/1396,
  39278. bottom: 17/1512
  39279. }
  39280. },
  39281. sideExtended: {
  39282. height: math.unit(325, "feet"),
  39283. name: "Side (Extended)",
  39284. image: {
  39285. source: "./media/characters/zorkaiju/side-extended.svg",
  39286. extra: 1495/1396,
  39287. bottom: 17/1512
  39288. }
  39289. },
  39290. back: {
  39291. height: math.unit(325, "feet"),
  39292. name: "Back",
  39293. image: {
  39294. source: "./media/characters/zorkaiju/back.svg",
  39295. extra: 1959/1821,
  39296. bottom: 31/1990
  39297. }
  39298. },
  39299. backExtended: {
  39300. height: math.unit(325, "feet"),
  39301. name: "Back (Extended)",
  39302. image: {
  39303. source: "./media/characters/zorkaiju/back-extended.svg",
  39304. extra: 1959/1821,
  39305. bottom: 31/1990
  39306. }
  39307. },
  39308. hand: {
  39309. height: math.unit(58.4, "feet"),
  39310. name: "Hand",
  39311. image: {
  39312. source: "./media/characters/zorkaiju/hand.svg"
  39313. }
  39314. },
  39315. handExtended: {
  39316. height: math.unit(61.4, "feet"),
  39317. name: "Hand (Extended)",
  39318. image: {
  39319. source: "./media/characters/zorkaiju/hand-extended.svg"
  39320. }
  39321. },
  39322. foot: {
  39323. height: math.unit(95, "feet"),
  39324. name: "Foot",
  39325. image: {
  39326. source: "./media/characters/zorkaiju/foot.svg"
  39327. }
  39328. },
  39329. leftArm: {
  39330. height: math.unit(59, "feet"),
  39331. name: "Left Arm",
  39332. image: {
  39333. source: "./media/characters/zorkaiju/left-arm.svg"
  39334. }
  39335. },
  39336. rightArm: {
  39337. height: math.unit(59, "feet"),
  39338. name: "Right Arm",
  39339. image: {
  39340. source: "./media/characters/zorkaiju/right-arm.svg"
  39341. }
  39342. },
  39343. tail: {
  39344. height: math.unit(104, "feet"),
  39345. name: "Tail",
  39346. image: {
  39347. source: "./media/characters/zorkaiju/tail.svg"
  39348. }
  39349. },
  39350. tailExtended: {
  39351. height: math.unit(104, "feet"),
  39352. name: "Tail (Extended)",
  39353. image: {
  39354. source: "./media/characters/zorkaiju/tail-extended.svg"
  39355. }
  39356. },
  39357. tailBottom: {
  39358. height: math.unit(104, "feet"),
  39359. name: "Tail Bottom",
  39360. image: {
  39361. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39362. }
  39363. },
  39364. crystal: {
  39365. height: math.unit(27.54, "feet"),
  39366. name: "Crystal",
  39367. image: {
  39368. source: "./media/characters/zorkaiju/crystal.svg"
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Kaiju",
  39375. height: math.unit(325, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(6 + 1/12, "feet"),
  39385. weight: math.unit(115, "lb"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/bailey-belfry/front.svg",
  39389. extra: 1240/1121,
  39390. bottom: 101/1341
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(6 + 1/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39404. {
  39405. side: {
  39406. height: math.unit(4, "meters"),
  39407. weight: math.unit(250, "kg"),
  39408. name: "Side",
  39409. image: {
  39410. source: "./media/characters/blacky/side.svg",
  39411. extra: 1027/919,
  39412. bottom: 43/1070
  39413. }
  39414. },
  39415. maw: {
  39416. height: math.unit(1, "meters"),
  39417. name: "Maw",
  39418. image: {
  39419. source: "./media/characters/blacky/maw.svg"
  39420. }
  39421. },
  39422. paw: {
  39423. height: math.unit(1, "meters"),
  39424. name: "Paw",
  39425. image: {
  39426. source: "./media/characters/blacky/paw.svg"
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(4, "meters"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(170, "cm"),
  39443. weight: math.unit(66, "kg"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/thux-ei/front.svg",
  39447. extra: 1109/1011,
  39448. bottom: 8/1117
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(170, "cm"),
  39456. default: true
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(5, "feet"),
  39465. weight: math.unit(120, "lb"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/roxanne-voltaire/front.svg",
  39469. extra: 1901/1779,
  39470. bottom: 53/1954
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(5, "feet"),
  39478. default: true
  39479. },
  39480. {
  39481. name: "Giant",
  39482. height: math.unit(50, "feet")
  39483. },
  39484. {
  39485. name: "Titan",
  39486. height: math.unit(500, "feet")
  39487. },
  39488. {
  39489. name: "Macro",
  39490. height: math.unit(5000, "feet")
  39491. },
  39492. {
  39493. name: "Megamacro",
  39494. height: math.unit(50000, "feet")
  39495. },
  39496. {
  39497. name: "Gigamacro",
  39498. height: math.unit(500000, "feet")
  39499. },
  39500. {
  39501. name: "Teramacro",
  39502. height: math.unit(5e6, "feet")
  39503. },
  39504. ]
  39505. ))
  39506. characterMakers.push(() => makeCharacter(
  39507. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39508. {
  39509. front: {
  39510. height: math.unit(6 + 2/12, "feet"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/squeaks/front.svg",
  39514. extra: 1823/1768,
  39515. bottom: 138/1961
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Micro",
  39522. height: math.unit(0.5, "inches")
  39523. },
  39524. {
  39525. name: "Normal",
  39526. height: math.unit(6 + 2/12, "feet"),
  39527. default: true
  39528. },
  39529. {
  39530. name: "Macro",
  39531. height: math.unit(600, "feet")
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39537. {
  39538. front: {
  39539. height: math.unit(1.72, "meters"),
  39540. name: "Front",
  39541. image: {
  39542. source: "./media/characters/archinger/front.svg",
  39543. extra: 1861/1675,
  39544. bottom: 125/1986
  39545. }
  39546. },
  39547. back: {
  39548. height: math.unit(1.72, "meters"),
  39549. name: "Back",
  39550. image: {
  39551. source: "./media/characters/archinger/back.svg",
  39552. extra: 1844/1701,
  39553. bottom: 104/1948
  39554. }
  39555. },
  39556. cock: {
  39557. height: math.unit(0.59, "feet"),
  39558. name: "Cock",
  39559. image: {
  39560. source: "./media/characters/archinger/cock.svg"
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Normal",
  39567. height: math.unit(1.72, "meters"),
  39568. default: true
  39569. },
  39570. {
  39571. name: "Macro",
  39572. height: math.unit(84, "meters")
  39573. },
  39574. {
  39575. name: "Macro+",
  39576. height: math.unit(112, "meters")
  39577. },
  39578. {
  39579. name: "Macro++",
  39580. height: math.unit(960, "meters")
  39581. },
  39582. {
  39583. name: "Macro+++",
  39584. height: math.unit(4, "km")
  39585. },
  39586. {
  39587. name: "Macro++++",
  39588. height: math.unit(48, "km")
  39589. },
  39590. {
  39591. name: "Macro+++++",
  39592. height: math.unit(4500, "km")
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(5 + 5/12, "feet"),
  39601. name: "Front",
  39602. image: {
  39603. source: "./media/characters/alsnapz/front.svg",
  39604. extra: 1157/1065,
  39605. bottom: 42/1199
  39606. }
  39607. },
  39608. },
  39609. [
  39610. {
  39611. name: "Normal",
  39612. height: math.unit(5 + 5/12, "feet"),
  39613. default: true
  39614. },
  39615. ]
  39616. ))
  39617. characterMakers.push(() => makeCharacter(
  39618. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39619. {
  39620. side: {
  39621. height: math.unit(3.2, "earths"),
  39622. name: "Side",
  39623. image: {
  39624. source: "./media/characters/mag/side.svg",
  39625. extra: 1331/1008,
  39626. bottom: 52/1383
  39627. }
  39628. },
  39629. wing: {
  39630. height: math.unit(1.94, "earths"),
  39631. name: "Wing",
  39632. image: {
  39633. source: "./media/characters/mag/wing.svg"
  39634. }
  39635. },
  39636. dick: {
  39637. height: math.unit(1.8, "earths"),
  39638. name: "Dick",
  39639. image: {
  39640. source: "./media/characters/mag/dick.svg"
  39641. }
  39642. },
  39643. ass: {
  39644. height: math.unit(1.33, "earths"),
  39645. name: "Ass",
  39646. image: {
  39647. source: "./media/characters/mag/ass.svg"
  39648. }
  39649. },
  39650. head: {
  39651. height: math.unit(1.1, "earths"),
  39652. name: "Head",
  39653. image: {
  39654. source: "./media/characters/mag/head.svg"
  39655. }
  39656. },
  39657. maw: {
  39658. height: math.unit(1.62, "earths"),
  39659. name: "Maw",
  39660. image: {
  39661. source: "./media/characters/mag/maw.svg"
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Small",
  39668. height: math.unit(162, "feet")
  39669. },
  39670. {
  39671. name: "Normal",
  39672. height: math.unit(3.2, "earths"),
  39673. default: true
  39674. },
  39675. ]
  39676. ))
  39677. characterMakers.push(() => makeCharacter(
  39678. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39679. {
  39680. front: {
  39681. height: math.unit(512, "feet"),
  39682. weight: math.unit(63509, "tonnes"),
  39683. name: "Front",
  39684. image: {
  39685. source: "./media/characters/vorrel-harroc/front.svg",
  39686. extra: 1075/1063,
  39687. bottom: 62/1137
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(10, "feet")
  39695. },
  39696. {
  39697. name: "Macro",
  39698. height: math.unit(512, "feet"),
  39699. default: true
  39700. },
  39701. {
  39702. name: "Megamacro",
  39703. height: math.unit(256, "miles")
  39704. },
  39705. {
  39706. name: "Gigamacro",
  39707. height: math.unit(4096, "miles")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39713. {
  39714. side: {
  39715. height: math.unit(50, "feet"),
  39716. name: "Side",
  39717. image: {
  39718. source: "./media/characters/froimar/side.svg",
  39719. extra: 855/638,
  39720. bottom: 99/954
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Macro",
  39727. height: math.unit(50, "feet"),
  39728. default: true
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39734. {
  39735. front: {
  39736. height: math.unit(210, "miles"),
  39737. name: "Front",
  39738. image: {
  39739. source: "./media/characters/timothy/front.svg",
  39740. extra: 1007/943,
  39741. bottom: 62/1069
  39742. }
  39743. },
  39744. frontSkirt: {
  39745. height: math.unit(210, "miles"),
  39746. name: "Front (Skirt)",
  39747. image: {
  39748. source: "./media/characters/timothy/front-skirt.svg",
  39749. extra: 1007/943,
  39750. bottom: 62/1069
  39751. }
  39752. },
  39753. frontCoat: {
  39754. height: math.unit(210, "miles"),
  39755. name: "Front (Coat)",
  39756. image: {
  39757. source: "./media/characters/timothy/front-coat.svg",
  39758. extra: 1007/943,
  39759. bottom: 62/1069
  39760. }
  39761. },
  39762. },
  39763. [
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(210, "miles"),
  39767. default: true
  39768. },
  39769. {
  39770. name: "Megamacro",
  39771. height: math.unit(210000, "miles")
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39777. {
  39778. front: {
  39779. height: math.unit(188, "feet"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/pyotr/front.svg",
  39783. extra: 1912/1826,
  39784. bottom: 18/1930
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Macro",
  39791. height: math.unit(188, "feet"),
  39792. default: true
  39793. },
  39794. {
  39795. name: "Megamacro",
  39796. height: math.unit(8, "miles")
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39802. {
  39803. side: {
  39804. height: math.unit(10, "feet"),
  39805. weight: math.unit(4500, "lb"),
  39806. name: "Side",
  39807. image: {
  39808. source: "./media/characters/ackart/side.svg",
  39809. extra: 1776/1668,
  39810. bottom: 116/1892
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(10, "feet"),
  39818. default: true
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39824. {
  39825. side: {
  39826. height: math.unit(21, "feet"),
  39827. name: "Side",
  39828. image: {
  39829. source: "./media/characters/nolow/side.svg",
  39830. extra: 1484/1434,
  39831. bottom: 85/1569
  39832. }
  39833. },
  39834. sideErect: {
  39835. height: math.unit(21, "feet"),
  39836. name: "Side-erect",
  39837. image: {
  39838. source: "./media/characters/nolow/side-erect.svg",
  39839. extra: 1484/1434,
  39840. bottom: 85/1569
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Regular",
  39847. height: math.unit(12, "feet")
  39848. },
  39849. {
  39850. name: "Big Chee",
  39851. height: math.unit(21, "feet"),
  39852. default: true
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(7, "feet"),
  39861. weight: math.unit(250, "lb"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/nines/front.svg",
  39865. extra: 1741/1607,
  39866. bottom: 41/1782
  39867. }
  39868. },
  39869. side: {
  39870. height: math.unit(7, "feet"),
  39871. weight: math.unit(250, "lb"),
  39872. name: "Side",
  39873. image: {
  39874. source: "./media/characters/nines/side.svg",
  39875. extra: 1854/1735,
  39876. bottom: 93/1947
  39877. }
  39878. },
  39879. back: {
  39880. height: math.unit(7, "feet"),
  39881. weight: math.unit(250, "lb"),
  39882. name: "Back",
  39883. image: {
  39884. source: "./media/characters/nines/back.svg",
  39885. extra: 1748/1615,
  39886. bottom: 20/1768
  39887. }
  39888. },
  39889. },
  39890. [
  39891. {
  39892. name: "Megamacro",
  39893. height: math.unit(99, "km"),
  39894. default: true
  39895. },
  39896. ]
  39897. ))
  39898. characterMakers.push(() => makeCharacter(
  39899. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39900. {
  39901. front: {
  39902. height: math.unit(5 + 10/12, "feet"),
  39903. weight: math.unit(210, "lb"),
  39904. name: "Front",
  39905. image: {
  39906. source: "./media/characters/zenith/front.svg",
  39907. extra: 1531/1452,
  39908. bottom: 198/1729
  39909. }
  39910. },
  39911. back: {
  39912. height: math.unit(5 + 10/12, "feet"),
  39913. weight: math.unit(210, "lb"),
  39914. name: "Back",
  39915. image: {
  39916. source: "./media/characters/zenith/back.svg",
  39917. extra: 1571/1487,
  39918. bottom: 75/1646
  39919. }
  39920. },
  39921. },
  39922. [
  39923. {
  39924. name: "Normal",
  39925. height: math.unit(5 + 10/12, "feet"),
  39926. default: true
  39927. }
  39928. ]
  39929. ))
  39930. characterMakers.push(() => makeCharacter(
  39931. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39932. {
  39933. front: {
  39934. height: math.unit(4, "feet"),
  39935. weight: math.unit(60, "lb"),
  39936. name: "Front",
  39937. image: {
  39938. source: "./media/characters/jasper/front.svg",
  39939. extra: 1450/1379,
  39940. bottom: 19/1469
  39941. }
  39942. },
  39943. },
  39944. [
  39945. {
  39946. name: "Normal",
  39947. height: math.unit(4, "feet"),
  39948. default: true
  39949. },
  39950. ]
  39951. ))
  39952. characterMakers.push(() => makeCharacter(
  39953. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39954. {
  39955. front: {
  39956. height: math.unit(6 + 5/12, "feet"),
  39957. weight: math.unit(290, "lb"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/tiberius-thyben/front.svg",
  39961. extra: 757/739,
  39962. bottom: 39/796
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Micro",
  39969. height: math.unit(1.5, "inches")
  39970. },
  39971. {
  39972. name: "Normal",
  39973. height: math.unit(6 + 5/12, "feet"),
  39974. default: true
  39975. },
  39976. {
  39977. name: "Macro",
  39978. height: math.unit(300, "feet")
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  39984. {
  39985. front: {
  39986. height: math.unit(5 + 6/12, "feet"),
  39987. weight: math.unit(60, "kg"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/sabre/front.svg",
  39991. extra: 738/671,
  39992. bottom: 27/765
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Teeny",
  39999. height: math.unit(2, "inches")
  40000. },
  40001. {
  40002. name: "Smol",
  40003. height: math.unit(8, "inches")
  40004. },
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(5 + 6/12, "feet"),
  40008. default: true
  40009. },
  40010. {
  40011. name: "Mini-Macro",
  40012. height: math.unit(15, "feet")
  40013. },
  40014. {
  40015. name: "Macro",
  40016. height: math.unit(50, "feet")
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40022. {
  40023. front: {
  40024. height: math.unit(6 + 4/12, "feet"),
  40025. weight: math.unit(170, "lb"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/charlie/front.svg",
  40029. extra: 1348/1228,
  40030. bottom: 15/1363
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Macro",
  40037. height: math.unit(1700, "meters"),
  40038. default: true
  40039. },
  40040. {
  40041. name: "MegaMacro",
  40042. height: math.unit(20400, "meters")
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(6 + 3/12, "feet"),
  40051. weight: math.unit(185, "lb"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/susan-grant/front.svg",
  40055. extra: 1351/1327,
  40056. bottom: 26/1377
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(6 + 3/12, "feet"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "Macro",
  40068. height: math.unit(225, "feet")
  40069. },
  40070. {
  40071. name: "Macro+",
  40072. height: math.unit(900, "feet")
  40073. },
  40074. {
  40075. name: "MegaMacro",
  40076. height: math.unit(14400, "feet")
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(5 + 4/12, "feet"),
  40085. weight: math.unit(110, "lb"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/axel-isanov/front.svg",
  40089. extra: 1096/1065,
  40090. bottom: 13/1109
  40091. }
  40092. },
  40093. },
  40094. [
  40095. {
  40096. name: "Normal",
  40097. height: math.unit(5 + 4/12, "feet"),
  40098. default: true
  40099. },
  40100. ]
  40101. ))
  40102. characterMakers.push(() => makeCharacter(
  40103. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40104. {
  40105. front: {
  40106. height: math.unit(9, "feet"),
  40107. weight: math.unit(467, "lb"),
  40108. name: "Front",
  40109. image: {
  40110. source: "./media/characters/necahual/front.svg",
  40111. extra: 920/873,
  40112. bottom: 26/946
  40113. }
  40114. },
  40115. back: {
  40116. height: math.unit(9, "feet"),
  40117. weight: math.unit(467, "lb"),
  40118. name: "Back",
  40119. image: {
  40120. source: "./media/characters/necahual/back.svg",
  40121. extra: 930/884,
  40122. bottom: 16/946
  40123. }
  40124. },
  40125. frontUnderwear: {
  40126. height: math.unit(9, "feet"),
  40127. weight: math.unit(467, "lb"),
  40128. name: "Front (Underwear)",
  40129. image: {
  40130. source: "./media/characters/necahual/front-underwear.svg",
  40131. extra: 920/873,
  40132. bottom: 26/946
  40133. }
  40134. },
  40135. frontDressed: {
  40136. height: math.unit(9, "feet"),
  40137. weight: math.unit(467, "lb"),
  40138. name: "Front (Dressed)",
  40139. image: {
  40140. source: "./media/characters/necahual/front-dressed.svg",
  40141. extra: 920/873,
  40142. bottom: 26/946
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Comprsesed",
  40149. height: math.unit(9, "feet")
  40150. },
  40151. {
  40152. name: "Natural",
  40153. height: math.unit(15, "feet"),
  40154. default: true
  40155. },
  40156. {
  40157. name: "Boosted",
  40158. height: math.unit(50, "feet")
  40159. },
  40160. {
  40161. name: "Boosted+",
  40162. height: math.unit(150, "feet")
  40163. },
  40164. {
  40165. name: "Max",
  40166. height: math.unit(500, "feet")
  40167. },
  40168. ]
  40169. ))
  40170. characterMakers.push(() => makeCharacter(
  40171. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40172. {
  40173. front: {
  40174. height: math.unit(22 + 1/12, "feet"),
  40175. weight: math.unit(3200, "lb"),
  40176. name: "Front",
  40177. image: {
  40178. source: "./media/characters/theo-acacia/front.svg",
  40179. extra: 1796/1741,
  40180. bottom: 83/1879
  40181. }
  40182. },
  40183. frontUnderwear: {
  40184. height: math.unit(22 + 1/12, "feet"),
  40185. weight: math.unit(3200, "lb"),
  40186. name: "Front (Underwear)",
  40187. image: {
  40188. source: "./media/characters/theo-acacia/front-underwear.svg",
  40189. extra: 1796/1741,
  40190. bottom: 83/1879
  40191. }
  40192. },
  40193. frontNude: {
  40194. height: math.unit(22 + 1/12, "feet"),
  40195. weight: math.unit(3200, "lb"),
  40196. name: "Front (Nude)",
  40197. image: {
  40198. source: "./media/characters/theo-acacia/front-nude.svg",
  40199. extra: 1796/1741,
  40200. bottom: 83/1879
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(22 + 1/12, "feet"),
  40208. default: true
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40214. {
  40215. front: {
  40216. height: math.unit(20, "feet"),
  40217. name: "Front",
  40218. image: {
  40219. source: "./media/characters/astra/front.svg",
  40220. extra: 1850/1714,
  40221. bottom: 106/1956
  40222. }
  40223. },
  40224. frontUndressed: {
  40225. height: math.unit(20, "feet"),
  40226. name: "Front (Undressed)",
  40227. image: {
  40228. source: "./media/characters/astra/front-undressed.svg",
  40229. extra: 1926/1749,
  40230. bottom: 0/1926
  40231. }
  40232. },
  40233. hand: {
  40234. height: math.unit(1.53, "feet"),
  40235. name: "Hand",
  40236. image: {
  40237. source: "./media/characters/astra/hand.svg"
  40238. }
  40239. },
  40240. paw: {
  40241. height: math.unit(1.53, "feet"),
  40242. name: "Paw",
  40243. image: {
  40244. source: "./media/characters/astra/paw.svg"
  40245. }
  40246. },
  40247. },
  40248. [
  40249. {
  40250. name: "Smallest",
  40251. height: math.unit(20, "feet")
  40252. },
  40253. {
  40254. name: "Normal",
  40255. height: math.unit(1e9, "miles"),
  40256. default: true
  40257. },
  40258. {
  40259. name: "Larger",
  40260. height: math.unit(5, "multiverses")
  40261. },
  40262. {
  40263. name: "Largest",
  40264. height: math.unit(1e9, "multiverses")
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(8, "feet"),
  40273. name: "Front",
  40274. image: {
  40275. source: "./media/characters/breanna/front.svg",
  40276. extra: 1912/1632,
  40277. bottom: 33/1945
  40278. }
  40279. },
  40280. },
  40281. [
  40282. {
  40283. name: "Smallest",
  40284. height: math.unit(8, "feet")
  40285. },
  40286. {
  40287. name: "Normal",
  40288. height: math.unit(1, "mile"),
  40289. default: true
  40290. },
  40291. {
  40292. name: "Maximum",
  40293. height: math.unit(1500000000000, "lightyears")
  40294. },
  40295. ]
  40296. ))
  40297. characterMakers.push(() => makeCharacter(
  40298. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40299. {
  40300. front: {
  40301. height: math.unit(5 + 11/12, "feet"),
  40302. weight: math.unit(155, "lb"),
  40303. name: "Front",
  40304. image: {
  40305. source: "./media/characters/cai/front.svg",
  40306. extra: 1823/1702,
  40307. bottom: 32/1855
  40308. }
  40309. },
  40310. back: {
  40311. height: math.unit(5 + 11/12, "feet"),
  40312. weight: math.unit(155, "lb"),
  40313. name: "Back",
  40314. image: {
  40315. source: "./media/characters/cai/back.svg",
  40316. extra: 1809/1708,
  40317. bottom: 31/1840
  40318. }
  40319. },
  40320. },
  40321. [
  40322. {
  40323. name: "Normal",
  40324. height: math.unit(5 + 11/12, "feet"),
  40325. default: true
  40326. },
  40327. {
  40328. name: "Big",
  40329. height: math.unit(15, "feet")
  40330. },
  40331. {
  40332. name: "Macro",
  40333. height: math.unit(200, "feet")
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(5 + 6/12, "feet"),
  40342. weight: math.unit(160, "lb"),
  40343. name: "Front",
  40344. image: {
  40345. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40346. extra: 1227/1174,
  40347. bottom: 37/1264
  40348. }
  40349. },
  40350. },
  40351. [
  40352. {
  40353. name: "Macro",
  40354. height: math.unit(444, "meters"),
  40355. default: true
  40356. },
  40357. ]
  40358. ))
  40359. characterMakers.push(() => makeCharacter(
  40360. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40361. {
  40362. front: {
  40363. height: math.unit(18 + 7/12, "feet"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/rex/front.svg",
  40367. extra: 1941/1807,
  40368. bottom: 66/2007
  40369. }
  40370. },
  40371. back: {
  40372. height: math.unit(18 + 7/12, "feet"),
  40373. name: "Back",
  40374. image: {
  40375. source: "./media/characters/rex/back.svg",
  40376. extra: 1937/1822,
  40377. bottom: 42/1979
  40378. }
  40379. },
  40380. boot: {
  40381. height: math.unit(3.45, "feet"),
  40382. name: "Boot",
  40383. image: {
  40384. source: "./media/characters/rex/boot.svg"
  40385. }
  40386. },
  40387. paw: {
  40388. height: math.unit(4.17, "feet"),
  40389. name: "Paw",
  40390. image: {
  40391. source: "./media/characters/rex/paw.svg"
  40392. }
  40393. },
  40394. head: {
  40395. height: math.unit(6.728, "feet"),
  40396. name: "Head",
  40397. image: {
  40398. source: "./media/characters/rex/head.svg"
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Nano",
  40405. height: math.unit(18 + 7/12, "feet")
  40406. },
  40407. {
  40408. name: "Micro",
  40409. height: math.unit(1.5, "megameters")
  40410. },
  40411. {
  40412. name: "Normal",
  40413. height: math.unit(440, "megameters"),
  40414. default: true
  40415. },
  40416. {
  40417. name: "Macro",
  40418. height: math.unit(2.5, "gigameters")
  40419. },
  40420. {
  40421. name: "Gigamacro",
  40422. height: math.unit(2, "galaxies")
  40423. },
  40424. ]
  40425. ))
  40426. characterMakers.push(() => makeCharacter(
  40427. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40428. {
  40429. side: {
  40430. height: math.unit(32, "feet"),
  40431. weight: math.unit(250000, "lb"),
  40432. name: "Side",
  40433. image: {
  40434. source: "./media/characters/silverwing/side.svg",
  40435. extra: 1100/1019,
  40436. bottom: 204/1304
  40437. }
  40438. },
  40439. },
  40440. [
  40441. {
  40442. name: "Normal",
  40443. height: math.unit(32, "feet"),
  40444. default: true
  40445. },
  40446. ]
  40447. ))
  40448. //characters
  40449. function makeCharacters() {
  40450. const results = [];
  40451. characterMakers.forEach(character => {
  40452. results.push(character());
  40453. });
  40454. return results;
  40455. }