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

38943 строки
979 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.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. "mammal"
  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. "canine"
  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", "demon"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine"]
  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: ["mammal"]
  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: "T 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. }
  1647. //species
  1648. function getSpeciesInfo(speciesList) {
  1649. let result = new Set();
  1650. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1651. result.add(entry)
  1652. });
  1653. return Array.from(result);
  1654. };
  1655. function getSpeciesInfoHelper(species) {
  1656. if (!speciesData[species]) {
  1657. console.warn(species + " doesn't exist");
  1658. return [];
  1659. }
  1660. if (speciesData[species].parents) {
  1661. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1662. } else {
  1663. return [species];
  1664. }
  1665. }
  1666. characterMakers.push(() => makeCharacter(
  1667. {
  1668. name: "Fen",
  1669. species: ["crux"],
  1670. description: {
  1671. title: "Bio",
  1672. text: "Very furry. Sheds on everything."
  1673. },
  1674. tags: [
  1675. "anthro",
  1676. "goo"
  1677. ]
  1678. },
  1679. {
  1680. back: {
  1681. height: math.unit(2.2428, "meter"),
  1682. weight: math.unit(124.738, "kg"),
  1683. name: "Back",
  1684. image: {
  1685. source: "./media/characters/fen/back.svg",
  1686. extra: 2024 / 1867,
  1687. bottom: 13 / 2037
  1688. },
  1689. info: {
  1690. description: {
  1691. mode: "append",
  1692. text: "\n\nHe is not currently looking at you."
  1693. }
  1694. }
  1695. },
  1696. full: {
  1697. height: math.unit(1.34, "meter"),
  1698. weight: math.unit(225, "kg"),
  1699. name: "Full",
  1700. image: {
  1701. source: "./media/characters/fen/full.svg"
  1702. },
  1703. info: {
  1704. description: {
  1705. mode: "append",
  1706. text: "\n\nMunch."
  1707. }
  1708. }
  1709. },
  1710. kneeling: {
  1711. height: math.unit(5.4, "feet"),
  1712. weight: math.unit(124.738, "kg"),
  1713. name: "Kneeling",
  1714. image: {
  1715. source: "./media/characters/fen/kneeling.svg",
  1716. extra: 563 / 507
  1717. }
  1718. },
  1719. goo: {
  1720. height: math.unit(2.8, "feet"),
  1721. weight: math.unit(125, "kg"),
  1722. capacity: math.unit(1, "people"),
  1723. name: "Goo",
  1724. image: {
  1725. source: "./media/characters/fen/goo.svg",
  1726. bottom: 116 / 613
  1727. }
  1728. },
  1729. lounging: {
  1730. height: math.unit(6.5, "feet"),
  1731. weight: math.unit(125, "kg"),
  1732. name: "Lounging",
  1733. image: {
  1734. source: "./media/characters/fen/lounging.svg"
  1735. }
  1736. },
  1737. },
  1738. [
  1739. {
  1740. name: "Normal",
  1741. height: math.unit(2.2428, "meter")
  1742. },
  1743. {
  1744. name: "Big",
  1745. height: math.unit(12, "feet")
  1746. },
  1747. {
  1748. name: "Minimacro",
  1749. height: math.unit(40, "feet"),
  1750. default: true,
  1751. info: {
  1752. description: {
  1753. mode: "append",
  1754. text: "\n\nTOO DAMN BIG"
  1755. }
  1756. }
  1757. },
  1758. {
  1759. name: "Macro",
  1760. height: math.unit(100, "feet"),
  1761. info: {
  1762. description: {
  1763. mode: "append",
  1764. text: "\n\nTOO DAMN BIG"
  1765. }
  1766. }
  1767. },
  1768. {
  1769. name: "Macro+",
  1770. height: math.unit(300, "feet")
  1771. },
  1772. {
  1773. name: "Megamacro",
  1774. height: math.unit(2, "miles")
  1775. }
  1776. ]
  1777. ))
  1778. characterMakers.push(() => makeCharacter(
  1779. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1780. {
  1781. front: {
  1782. height: math.unit(183, "cm"),
  1783. weight: math.unit(80, "kg"),
  1784. name: "Front",
  1785. image: {
  1786. source: "./media/characters/sofia-fluttertail/front.svg",
  1787. bottom: 0.01,
  1788. extra: 2154 / 2081
  1789. }
  1790. },
  1791. frontAlt: {
  1792. height: math.unit(183, "cm"),
  1793. weight: math.unit(80, "kg"),
  1794. name: "Front (alt)",
  1795. image: {
  1796. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1797. }
  1798. },
  1799. back: {
  1800. height: math.unit(183, "cm"),
  1801. weight: math.unit(80, "kg"),
  1802. name: "Back",
  1803. image: {
  1804. source: "./media/characters/sofia-fluttertail/back.svg"
  1805. }
  1806. },
  1807. kneeling: {
  1808. height: math.unit(125, "cm"),
  1809. weight: math.unit(80, "kg"),
  1810. name: "Kneeling",
  1811. image: {
  1812. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1813. extra: 1033 / 977,
  1814. bottom: 23.7 / 1057
  1815. }
  1816. },
  1817. maw: {
  1818. height: math.unit(183 / 5, "cm"),
  1819. name: "Maw",
  1820. image: {
  1821. source: "./media/characters/sofia-fluttertail/maw.svg"
  1822. }
  1823. },
  1824. mawcloseup: {
  1825. height: math.unit(183 / 5 * 0.41, "cm"),
  1826. name: "Maw (Closeup)",
  1827. image: {
  1828. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1829. }
  1830. },
  1831. paws: {
  1832. height: math.unit(1.17, "feet"),
  1833. name: "Paws",
  1834. image: {
  1835. source: "./media/characters/sofia-fluttertail/paws.svg",
  1836. extra: 851 / 851,
  1837. bottom: 17 / 868
  1838. }
  1839. },
  1840. },
  1841. [
  1842. {
  1843. name: "Normal",
  1844. height: math.unit(1.83, "meter")
  1845. },
  1846. {
  1847. name: "Size Thief",
  1848. height: math.unit(18, "feet")
  1849. },
  1850. {
  1851. name: "50 Foot Collie",
  1852. height: math.unit(50, "feet")
  1853. },
  1854. {
  1855. name: "Macro",
  1856. height: math.unit(96, "feet"),
  1857. default: true
  1858. },
  1859. {
  1860. name: "Megamerger",
  1861. height: math.unit(650, "feet")
  1862. },
  1863. ]
  1864. ))
  1865. characterMakers.push(() => makeCharacter(
  1866. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1867. {
  1868. front: {
  1869. height: math.unit(7, "feet"),
  1870. weight: math.unit(100, "kg"),
  1871. name: "Front",
  1872. image: {
  1873. source: "./media/characters/march/front.svg",
  1874. extra: 1,
  1875. bottom: 0.015
  1876. }
  1877. },
  1878. foot: {
  1879. height: math.unit(0.9, "feet"),
  1880. name: "Foot",
  1881. image: {
  1882. source: "./media/characters/march/foot.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(7.9, "feet")
  1890. },
  1891. {
  1892. name: "Macro",
  1893. height: math.unit(220, "meters")
  1894. },
  1895. {
  1896. name: "Megamacro",
  1897. height: math.unit(2.98, "km"),
  1898. default: true
  1899. },
  1900. {
  1901. name: "Gigamacro",
  1902. height: math.unit(15963, "km")
  1903. },
  1904. {
  1905. name: "Teramacro",
  1906. height: math.unit(2980000000, "km")
  1907. },
  1908. {
  1909. name: "Examacro",
  1910. height: math.unit(250, "parsecs")
  1911. },
  1912. ]
  1913. ))
  1914. characterMakers.push(() => makeCharacter(
  1915. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1916. {
  1917. front: {
  1918. height: math.unit(6, "feet"),
  1919. weight: math.unit(60, "kg"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/noir/front.svg",
  1923. extra: 1,
  1924. bottom: 0.032
  1925. }
  1926. },
  1927. },
  1928. [
  1929. {
  1930. name: "Normal",
  1931. height: math.unit(6.6, "feet")
  1932. },
  1933. {
  1934. name: "Macro",
  1935. height: math.unit(500, "feet")
  1936. },
  1937. {
  1938. name: "Megamacro",
  1939. height: math.unit(2.5, "km"),
  1940. default: true
  1941. },
  1942. {
  1943. name: "Gigamacro",
  1944. height: math.unit(22500, "km")
  1945. },
  1946. {
  1947. name: "Teramacro",
  1948. height: math.unit(2500000000, "km")
  1949. },
  1950. {
  1951. name: "Examacro",
  1952. height: math.unit(200, "parsecs")
  1953. },
  1954. ]
  1955. ))
  1956. characterMakers.push(() => makeCharacter(
  1957. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1958. {
  1959. front: {
  1960. height: math.unit(7, "feet"),
  1961. weight: math.unit(100, "kg"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/okuri/front.svg",
  1965. extra: 1,
  1966. bottom: 0.037
  1967. }
  1968. },
  1969. back: {
  1970. height: math.unit(7, "feet"),
  1971. weight: math.unit(100, "kg"),
  1972. name: "Back",
  1973. image: {
  1974. source: "./media/characters/okuri/back.svg",
  1975. extra: 1,
  1976. bottom: 0.007
  1977. }
  1978. },
  1979. },
  1980. [
  1981. {
  1982. name: "Megamacro",
  1983. height: math.unit(100, "miles"),
  1984. default: true
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(7, "feet"),
  1993. weight: math.unit(100, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/manny/front.svg",
  1997. extra: 1,
  1998. bottom: 0.06
  1999. }
  2000. },
  2001. back: {
  2002. height: math.unit(7, "feet"),
  2003. weight: math.unit(100, "kg"),
  2004. name: "Back",
  2005. image: {
  2006. source: "./media/characters/manny/back.svg",
  2007. extra: 1,
  2008. bottom: 0.014
  2009. }
  2010. },
  2011. },
  2012. [
  2013. {
  2014. name: "Normal",
  2015. height: math.unit(7, "feet"),
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(78, "feet"),
  2020. default: true
  2021. },
  2022. {
  2023. name: "Macro+",
  2024. height: math.unit(300, "meters")
  2025. },
  2026. {
  2027. name: "Macro++",
  2028. height: math.unit(2400, "meters")
  2029. },
  2030. {
  2031. name: "Megamacro",
  2032. height: math.unit(5167, "meters")
  2033. },
  2034. {
  2035. name: "Gigamacro",
  2036. height: math.unit(41769, "miles")
  2037. },
  2038. ]
  2039. ))
  2040. characterMakers.push(() => makeCharacter(
  2041. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2042. {
  2043. front: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(100, "kg"),
  2046. name: "Front",
  2047. image: {
  2048. source: "./media/characters/adake/front-1.svg"
  2049. }
  2050. },
  2051. frontAlt: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(100, "kg"),
  2054. name: "Front (Alt)",
  2055. image: {
  2056. source: "./media/characters/adake/front-2.svg",
  2057. extra: 1,
  2058. bottom: 0.01
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(100, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/adake/back.svg",
  2067. }
  2068. },
  2069. kneel: {
  2070. height: math.unit(5.385, "feet"),
  2071. weight: math.unit(100, "kg"),
  2072. name: "Kneeling",
  2073. image: {
  2074. source: "./media/characters/adake/kneel.svg",
  2075. bottom: 0.052
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(7, "feet"),
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(78, "feet"),
  2087. default: true
  2088. },
  2089. {
  2090. name: "Macro+",
  2091. height: math.unit(300, "meters")
  2092. },
  2093. {
  2094. name: "Macro++",
  2095. height: math.unit(2400, "meters")
  2096. },
  2097. {
  2098. name: "Megamacro",
  2099. height: math.unit(5167, "meters")
  2100. },
  2101. {
  2102. name: "Gigamacro",
  2103. height: math.unit(41769, "miles")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(1.65, "meters"),
  2112. weight: math.unit(50, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/elijah/front.svg",
  2116. extra: 858 / 830,
  2117. bottom: 95.5 / 953.8559
  2118. }
  2119. },
  2120. back: {
  2121. height: math.unit(1.65, "meters"),
  2122. weight: math.unit(50, "kg"),
  2123. name: "Back",
  2124. image: {
  2125. source: "./media/characters/elijah/back.svg",
  2126. extra: 895 / 850,
  2127. bottom: 5.3 / 897.956
  2128. }
  2129. },
  2130. frontNsfw: {
  2131. height: math.unit(1.65, "meters"),
  2132. weight: math.unit(50, "kg"),
  2133. name: "Front (NSFW)",
  2134. image: {
  2135. source: "./media/characters/elijah/front-nsfw.svg",
  2136. extra: 858 / 830,
  2137. bottom: 95.5 / 953.8559
  2138. }
  2139. },
  2140. backNsfw: {
  2141. height: math.unit(1.65, "meters"),
  2142. weight: math.unit(50, "kg"),
  2143. name: "Back (NSFW)",
  2144. image: {
  2145. source: "./media/characters/elijah/back-nsfw.svg",
  2146. extra: 895 / 850,
  2147. bottom: 5.3 / 897.956
  2148. }
  2149. },
  2150. dick: {
  2151. height: math.unit(1, "feet"),
  2152. name: "Dick",
  2153. image: {
  2154. source: "./media/characters/elijah/dick.svg"
  2155. }
  2156. },
  2157. beakOpen: {
  2158. height: math.unit(1.25, "feet"),
  2159. name: "Beak (Open)",
  2160. image: {
  2161. source: "./media/characters/elijah/beak-open.svg"
  2162. }
  2163. },
  2164. beakShut: {
  2165. height: math.unit(1.25, "feet"),
  2166. name: "Beak (Shut)",
  2167. image: {
  2168. source: "./media/characters/elijah/beak-shut.svg"
  2169. }
  2170. },
  2171. footFlexing: {
  2172. height: math.unit(1.61, "feet"),
  2173. name: "Foot (Flexing)",
  2174. image: {
  2175. source: "./media/characters/elijah/foot-flexing.svg"
  2176. }
  2177. },
  2178. footStepping: {
  2179. height: math.unit(1.44, "feet"),
  2180. name: "Foot (Stepping)",
  2181. image: {
  2182. source: "./media/characters/elijah/foot-stepping.svg"
  2183. }
  2184. },
  2185. plantigradeLeg: {
  2186. height: math.unit(2.34, "feet"),
  2187. name: "Plantigrade Leg",
  2188. image: {
  2189. source: "./media/characters/elijah/plantigrade-leg.svg"
  2190. }
  2191. },
  2192. plantigradeFootLeft: {
  2193. height: math.unit(0.9, "feet"),
  2194. name: "Plantigrade Foot (Left)",
  2195. image: {
  2196. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2197. }
  2198. },
  2199. plantigradeFootRight: {
  2200. height: math.unit(0.9, "feet"),
  2201. name: "Plantigrade Foot (Right)",
  2202. image: {
  2203. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(1.65, "meters")
  2211. },
  2212. {
  2213. name: "Macro",
  2214. height: math.unit(55, "meters"),
  2215. default: true
  2216. },
  2217. {
  2218. name: "Macro+",
  2219. height: math.unit(105, "meters")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(11, "feet"),
  2228. weight: math.unit(320, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/rai/front.svg",
  2232. extra: 1802/1696,
  2233. bottom: 68/1870
  2234. }
  2235. },
  2236. frontDressed: {
  2237. height: math.unit(11, "feet"),
  2238. weight: math.unit(320, "kg"),
  2239. name: "Front (Dressed)",
  2240. image: {
  2241. source: "./media/characters/rai/front-dressed.svg",
  2242. extra: 1802/1696,
  2243. bottom: 68/1870
  2244. }
  2245. },
  2246. side: {
  2247. height: math.unit(11, "feet"),
  2248. weight: math.unit(320, "kg"),
  2249. name: "Side",
  2250. image: {
  2251. source: "./media/characters/rai/side.svg",
  2252. extra: 1789/1710,
  2253. bottom: 115/1904
  2254. }
  2255. },
  2256. back: {
  2257. height: math.unit(11, "feet"),
  2258. weight: math.unit(320, "kg"),
  2259. name: "Back",
  2260. image: {
  2261. source: "./media/characters/rai/back.svg",
  2262. extra: 1770/1707,
  2263. bottom: 28/1798
  2264. }
  2265. },
  2266. feral: {
  2267. height: math.unit(11, "feet"),
  2268. weight: math.unit(640, "kg"),
  2269. name: "Feral",
  2270. image: {
  2271. source: "./media/characters/rai/feral.svg",
  2272. extra: 1035/642,
  2273. bottom: 86/1121
  2274. }
  2275. },
  2276. dragon: {
  2277. height: math.unit(23, "feet"),
  2278. weight: math.unit(50000, "lb"),
  2279. name: "Dragon",
  2280. image: {
  2281. source: "./media/characters/rai/dragon.svg",
  2282. extra: 2498 / 2030,
  2283. bottom: 85.2 / 2584
  2284. }
  2285. },
  2286. maw: {
  2287. height: math.unit(6 / 3.81416, "feet"),
  2288. name: "Maw",
  2289. image: {
  2290. source: "./media/characters/rai/maw.svg"
  2291. }
  2292. },
  2293. },
  2294. [
  2295. {
  2296. name: "Normal",
  2297. height: math.unit(11, "feet")
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(302, "feet"),
  2302. default: true
  2303. },
  2304. ]
  2305. ))
  2306. characterMakers.push(() => makeCharacter(
  2307. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2308. {
  2309. frontDressed: {
  2310. height: math.unit(216, "feet"),
  2311. weight: math.unit(7000000, "lb"),
  2312. name: "Front (Dressed)",
  2313. image: {
  2314. source: "./media/characters/jazzy/front-dressed.svg",
  2315. extra: 2738 / 2651,
  2316. bottom: 41.8 / 2786
  2317. }
  2318. },
  2319. backDressed: {
  2320. height: math.unit(216, "feet"),
  2321. weight: math.unit(7000000, "lb"),
  2322. name: "Back (Dressed)",
  2323. image: {
  2324. source: "./media/characters/jazzy/back-dressed.svg",
  2325. extra: 2775 / 2673,
  2326. bottom: 36.8 / 2817
  2327. }
  2328. },
  2329. front: {
  2330. height: math.unit(216, "feet"),
  2331. weight: math.unit(7000000, "lb"),
  2332. name: "Front",
  2333. image: {
  2334. source: "./media/characters/jazzy/front.svg",
  2335. extra: 2738 / 2651,
  2336. bottom: 41.8 / 2786
  2337. }
  2338. },
  2339. back: {
  2340. height: math.unit(216, "feet"),
  2341. weight: math.unit(7000000, "lb"),
  2342. name: "Back",
  2343. image: {
  2344. source: "./media/characters/jazzy/back.svg",
  2345. extra: 2775 / 2673,
  2346. bottom: 36.8 / 2817
  2347. }
  2348. },
  2349. maw: {
  2350. height: math.unit(20, "feet"),
  2351. name: "Maw",
  2352. image: {
  2353. source: "./media/characters/jazzy/maw.svg"
  2354. }
  2355. },
  2356. paws: {
  2357. height: math.unit(27.5, "feet"),
  2358. name: "Paws",
  2359. image: {
  2360. source: "./media/characters/jazzy/paws.svg"
  2361. }
  2362. },
  2363. eye: {
  2364. height: math.unit(4.4, "feet"),
  2365. name: "Eye",
  2366. image: {
  2367. source: "./media/characters/jazzy/eye.svg"
  2368. }
  2369. },
  2370. droneOffense: {
  2371. height: math.unit(9.5, "inches"),
  2372. name: "Drone (Offense)",
  2373. image: {
  2374. source: "./media/characters/jazzy/drone-offense.svg"
  2375. }
  2376. },
  2377. droneRecon: {
  2378. height: math.unit(9.5, "inches"),
  2379. name: "Drone (Recon)",
  2380. image: {
  2381. source: "./media/characters/jazzy/drone-recon.svg"
  2382. }
  2383. },
  2384. droneDefense: {
  2385. height: math.unit(9.5, "inches"),
  2386. name: "Drone (Defense)",
  2387. image: {
  2388. source: "./media/characters/jazzy/drone-defense.svg"
  2389. }
  2390. },
  2391. },
  2392. [
  2393. {
  2394. name: "Macro",
  2395. height: math.unit(216, "feet"),
  2396. default: true
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(9 + 6/12, "feet"),
  2405. weight: math.unit(700, "lb"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/flamm/front.svg",
  2409. extra: 1751/1632,
  2410. bottom: 46/1797
  2411. }
  2412. },
  2413. buff: {
  2414. height: math.unit(9 + 6/12, "feet"),
  2415. weight: math.unit(950, "lb"),
  2416. name: "Buff",
  2417. image: {
  2418. source: "./media/characters/flamm/buff.svg",
  2419. extra: 3018/2874,
  2420. bottom: 221/3239
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(9.5, "feet")
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(200, "feet"),
  2432. default: true
  2433. },
  2434. ]
  2435. ))
  2436. characterMakers.push(() => makeCharacter(
  2437. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2438. {
  2439. front: {
  2440. height: math.unit(5 + 3/12, "feet"),
  2441. weight: math.unit(60, "kg"),
  2442. name: "Front",
  2443. image: {
  2444. source: "./media/characters/zephiro/front.svg",
  2445. extra: 2309 / 2162,
  2446. bottom: 0.069
  2447. }
  2448. },
  2449. side: {
  2450. height: math.unit(5 + 3/12, "feet"),
  2451. weight: math.unit(60, "kg"),
  2452. name: "Side",
  2453. image: {
  2454. source: "./media/characters/zephiro/side.svg",
  2455. extra: 2403 / 2279,
  2456. bottom: 0.015
  2457. }
  2458. },
  2459. back: {
  2460. height: math.unit(5 + 3/12, "feet"),
  2461. weight: math.unit(60, "kg"),
  2462. name: "Back",
  2463. image: {
  2464. source: "./media/characters/zephiro/back.svg",
  2465. extra: 2373 / 2244,
  2466. bottom: 0.013
  2467. }
  2468. },
  2469. hand: {
  2470. height: math.unit(0.68, "feet"),
  2471. name: "Hand",
  2472. image: {
  2473. source: "./media/characters/zephiro/hand.svg"
  2474. }
  2475. },
  2476. paw: {
  2477. height: math.unit(1, "feet"),
  2478. name: "Paw",
  2479. image: {
  2480. source: "./media/characters/zephiro/paw.svg"
  2481. }
  2482. },
  2483. beans: {
  2484. height: math.unit(0.93, "feet"),
  2485. name: "Beans",
  2486. image: {
  2487. source: "./media/characters/zephiro/beans.svg"
  2488. }
  2489. },
  2490. },
  2491. [
  2492. {
  2493. name: "Micro",
  2494. height: math.unit(3, "inches")
  2495. },
  2496. {
  2497. name: "Normal",
  2498. height: math.unit(5 + 3 / 12, "feet"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Macro",
  2503. height: math.unit(118, "feet")
  2504. },
  2505. ]
  2506. ))
  2507. characterMakers.push(() => makeCharacter(
  2508. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2509. {
  2510. front: {
  2511. height: math.unit(5, "feet"),
  2512. weight: math.unit(90, "kg"),
  2513. name: "Front",
  2514. image: {
  2515. source: "./media/characters/fory/front.svg",
  2516. extra: 2862 / 2674,
  2517. bottom: 180 / 3043.8
  2518. }
  2519. },
  2520. back: {
  2521. height: math.unit(5, "feet"),
  2522. weight: math.unit(90, "kg"),
  2523. name: "Back",
  2524. image: {
  2525. source: "./media/characters/fory/back.svg",
  2526. extra: 2962 / 2791,
  2527. bottom: 106 / 3071.8
  2528. }
  2529. },
  2530. foot: {
  2531. height: math.unit(2.14, "feet"),
  2532. name: "Foot",
  2533. image: {
  2534. source: "./media/characters/fory/foot.svg"
  2535. }
  2536. },
  2537. },
  2538. [
  2539. {
  2540. name: "Normal",
  2541. height: math.unit(5, "feet")
  2542. },
  2543. {
  2544. name: "Macro",
  2545. height: math.unit(50, "feet"),
  2546. default: true
  2547. },
  2548. {
  2549. name: "Megamacro",
  2550. height: math.unit(10, "miles")
  2551. },
  2552. {
  2553. name: "Gigamacro",
  2554. height: math.unit(5, "earths")
  2555. },
  2556. ]
  2557. ))
  2558. characterMakers.push(() => makeCharacter(
  2559. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2560. {
  2561. front: {
  2562. height: math.unit(7, "feet"),
  2563. weight: math.unit(90, "kg"),
  2564. name: "Front",
  2565. image: {
  2566. source: "./media/characters/kurrikage/front.svg",
  2567. extra: 1,
  2568. bottom: 0.035
  2569. }
  2570. },
  2571. back: {
  2572. height: math.unit(7, "feet"),
  2573. weight: math.unit(90, "lb"),
  2574. name: "Back",
  2575. image: {
  2576. source: "./media/characters/kurrikage/back.svg"
  2577. }
  2578. },
  2579. paw: {
  2580. height: math.unit(1.5, "feet"),
  2581. name: "Paw",
  2582. image: {
  2583. source: "./media/characters/kurrikage/paw.svg"
  2584. }
  2585. },
  2586. staff: {
  2587. height: math.unit(6.7, "feet"),
  2588. name: "Staff",
  2589. image: {
  2590. source: "./media/characters/kurrikage/staff.svg"
  2591. }
  2592. },
  2593. peek: {
  2594. height: math.unit(1.05, "feet"),
  2595. name: "Peeking",
  2596. image: {
  2597. source: "./media/characters/kurrikage/peek.svg",
  2598. bottom: 0.08
  2599. }
  2600. },
  2601. },
  2602. [
  2603. {
  2604. name: "Normal",
  2605. height: math.unit(12, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Big",
  2610. height: math.unit(20, "feet")
  2611. },
  2612. {
  2613. name: "Macro",
  2614. height: math.unit(500, "feet")
  2615. },
  2616. {
  2617. name: "Megamacro",
  2618. height: math.unit(20, "miles")
  2619. },
  2620. ]
  2621. ))
  2622. characterMakers.push(() => makeCharacter(
  2623. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2624. {
  2625. front: {
  2626. height: math.unit(6, "feet"),
  2627. weight: math.unit(75, "kg"),
  2628. name: "Front",
  2629. image: {
  2630. source: "./media/characters/shingo/front.svg",
  2631. extra: 706/681,
  2632. bottom: 11/717
  2633. }
  2634. },
  2635. frontAlt: {
  2636. height: math.unit(6, "feet"),
  2637. weight: math.unit(75, "kg"),
  2638. name: "Front (Alt)",
  2639. image: {
  2640. source: "./media/characters/shingo/front-alt.svg",
  2641. extra: 3511 / 3338,
  2642. bottom: 0.005
  2643. }
  2644. },
  2645. paw: {
  2646. height: math.unit(1, "feet"),
  2647. name: "Paw",
  2648. image: {
  2649. source: "./media/characters/shingo/paw.svg"
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Micro",
  2656. height: math.unit(4, "inches")
  2657. },
  2658. {
  2659. name: "Normal",
  2660. height: math.unit(6, "feet"),
  2661. default: true
  2662. },
  2663. {
  2664. name: "Macro",
  2665. height: math.unit(108, "feet")
  2666. },
  2667. {
  2668. name: "Macro+",
  2669. height: math.unit(1500, "feet")
  2670. },
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2675. {
  2676. side: {
  2677. height: math.unit(6, "feet"),
  2678. weight: math.unit(75, "kg"),
  2679. name: "Side",
  2680. image: {
  2681. source: "./media/characters/aigey/side.svg"
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(200, "feet"),
  2689. default: true
  2690. },
  2691. {
  2692. name: "Megamacro",
  2693. height: math.unit(100, "miles")
  2694. },
  2695. ]
  2696. )
  2697. )
  2698. characterMakers.push(() => makeCharacter(
  2699. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2700. {
  2701. front: {
  2702. height: math.unit(5 + 5 / 12, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Front",
  2705. image: {
  2706. source: "./media/characters/natasha/front.svg",
  2707. extra: 859 / 824,
  2708. bottom: 23 / 879.6
  2709. }
  2710. },
  2711. frontNsfw: {
  2712. height: math.unit(5 + 5 / 12, "feet"),
  2713. weight: math.unit(75, "kg"),
  2714. name: "Front (NSFW)",
  2715. image: {
  2716. source: "./media/characters/natasha/front-nsfw.svg",
  2717. extra: 859 / 824,
  2718. bottom: 23 / 879.6
  2719. }
  2720. },
  2721. frontErect: {
  2722. height: math.unit(5 + 5 / 12, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Front (Erect)",
  2725. image: {
  2726. source: "./media/characters/natasha/front-erect.svg",
  2727. extra: 859 / 824,
  2728. bottom: 23 / 879.6
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(5 + 5 / 12, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/natasha/back.svg",
  2737. extra: 887.9 / 852.6,
  2738. bottom: 9.7 / 896.4
  2739. }
  2740. },
  2741. backAlt: {
  2742. height: math.unit(5 + 5 / 12, "feet"),
  2743. weight: math.unit(75, "kg"),
  2744. name: "Back (Alt)",
  2745. image: {
  2746. source: "./media/characters/natasha/back-alt.svg",
  2747. extra: 1236.7 / 1192,
  2748. bottom: 22.3 / 1258.2
  2749. }
  2750. },
  2751. dick: {
  2752. height: math.unit(1.772, "feet"),
  2753. name: "Dick",
  2754. image: {
  2755. source: "./media/characters/natasha/dick.svg"
  2756. }
  2757. },
  2758. paw: {
  2759. height: math.unit(0.250, "meters"),
  2760. name: "Paw",
  2761. image: {
  2762. source: "./media/characters/natasha/paw.svg"
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(5 + 5 / 12, "feet")
  2770. },
  2771. {
  2772. name: "Large",
  2773. height: math.unit(12, "feet")
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(100, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(260, "feet")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(1, "mile")
  2787. },
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(6, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/malik/front.svg"
  2799. }
  2800. },
  2801. side: {
  2802. height: math.unit(6, "feet"),
  2803. weight: math.unit(75, "kg"),
  2804. name: "Side",
  2805. image: {
  2806. source: "./media/characters/malik/side.svg",
  2807. extra: 1.1539
  2808. }
  2809. },
  2810. back: {
  2811. height: math.unit(6, "feet"),
  2812. weight: math.unit(75, "kg"),
  2813. name: "Back",
  2814. image: {
  2815. source: "./media/characters/malik/back.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(156, "feet"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(1188, "feet")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/sefer/front.svg",
  2840. extra: 848 / 659,
  2841. bottom: 28.3 / 876.442
  2842. }
  2843. },
  2844. back: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Back",
  2848. image: {
  2849. source: "./media/characters/sefer/back.svg",
  2850. extra: 864 / 695,
  2851. bottom: 10 / 871
  2852. }
  2853. },
  2854. frontDressed: {
  2855. height: math.unit(6, "feet"),
  2856. weight: math.unit(75, "kg"),
  2857. name: "Front (Dressed)",
  2858. image: {
  2859. source: "./media/characters/sefer/front-dressed.svg",
  2860. extra: 839 / 653,
  2861. bottom: 37.6 / 878
  2862. }
  2863. },
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(6, "feet"),
  2869. default: true
  2870. },
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2875. {
  2876. body: {
  2877. height: math.unit(2.2428, "meter"),
  2878. weight: math.unit(124.738, "kg"),
  2879. name: "Body",
  2880. image: {
  2881. extra: 1225 / 1050,
  2882. source: "./media/characters/north/front.svg"
  2883. }
  2884. }
  2885. },
  2886. [
  2887. {
  2888. name: "Micro",
  2889. height: math.unit(4, "inches")
  2890. },
  2891. {
  2892. name: "Macro",
  2893. height: math.unit(63, "meters")
  2894. },
  2895. {
  2896. name: "Megamacro",
  2897. height: math.unit(101, "miles"),
  2898. default: true
  2899. }
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2904. {
  2905. angled: {
  2906. height: math.unit(4, "meter"),
  2907. weight: math.unit(150, "kg"),
  2908. name: "Angled",
  2909. image: {
  2910. source: "./media/characters/talan/angled-sfw.svg",
  2911. bottom: 29 / 3734
  2912. }
  2913. },
  2914. angledNsfw: {
  2915. height: math.unit(4, "meter"),
  2916. weight: math.unit(150, "kg"),
  2917. name: "Angled (NSFW)",
  2918. image: {
  2919. source: "./media/characters/talan/angled-nsfw.svg",
  2920. bottom: 29 / 3734
  2921. }
  2922. },
  2923. frontNsfw: {
  2924. height: math.unit(4, "meter"),
  2925. weight: math.unit(150, "kg"),
  2926. name: "Front (NSFW)",
  2927. image: {
  2928. source: "./media/characters/talan/front-nsfw.svg",
  2929. bottom: 29 / 3734
  2930. }
  2931. },
  2932. sideNsfw: {
  2933. height: math.unit(4, "meter"),
  2934. weight: math.unit(150, "kg"),
  2935. name: "Side (NSFW)",
  2936. image: {
  2937. source: "./media/characters/talan/side-nsfw.svg",
  2938. bottom: 29 / 3734
  2939. }
  2940. },
  2941. back: {
  2942. height: math.unit(4, "meter"),
  2943. weight: math.unit(150, "kg"),
  2944. name: "Back",
  2945. image: {
  2946. source: "./media/characters/talan/back.svg"
  2947. }
  2948. },
  2949. dickBottom: {
  2950. height: math.unit(0.621, "meter"),
  2951. name: "Dick (Bottom)",
  2952. image: {
  2953. source: "./media/characters/talan/dick-bottom.svg"
  2954. }
  2955. },
  2956. dickTop: {
  2957. height: math.unit(0.621, "meter"),
  2958. name: "Dick (Top)",
  2959. image: {
  2960. source: "./media/characters/talan/dick-top.svg"
  2961. }
  2962. },
  2963. dickSide: {
  2964. height: math.unit(0.305, "meter"),
  2965. name: "Dick (Side)",
  2966. image: {
  2967. source: "./media/characters/talan/dick-side.svg"
  2968. }
  2969. },
  2970. dickFront: {
  2971. height: math.unit(0.305, "meter"),
  2972. name: "Dick (Front)",
  2973. image: {
  2974. source: "./media/characters/talan/dick-front.svg"
  2975. }
  2976. },
  2977. },
  2978. [
  2979. {
  2980. name: "Normal",
  2981. height: math.unit(4, "meters")
  2982. },
  2983. {
  2984. name: "Macro",
  2985. height: math.unit(100, "meters")
  2986. },
  2987. {
  2988. name: "Megamacro",
  2989. height: math.unit(2, "miles"),
  2990. default: true
  2991. },
  2992. {
  2993. name: "Gigamacro",
  2994. height: math.unit(5000, "miles")
  2995. },
  2996. {
  2997. name: "Teramacro",
  2998. height: math.unit(100, "parsecs")
  2999. }
  3000. ]
  3001. ))
  3002. characterMakers.push(() => makeCharacter(
  3003. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3004. {
  3005. front: {
  3006. height: math.unit(2, "meter"),
  3007. weight: math.unit(90, "kg"),
  3008. name: "Front",
  3009. image: {
  3010. source: "./media/characters/gael'rathus/front.svg"
  3011. }
  3012. },
  3013. frontAlt: {
  3014. height: math.unit(2, "meter"),
  3015. weight: math.unit(90, "kg"),
  3016. name: "Front (alt)",
  3017. image: {
  3018. source: "./media/characters/gael'rathus/front-alt.svg"
  3019. }
  3020. },
  3021. frontAlt2: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Front (alt 2)",
  3025. image: {
  3026. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3027. }
  3028. }
  3029. },
  3030. [
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(9, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Large",
  3038. height: math.unit(25, "feet")
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(0.25, "miles")
  3043. },
  3044. {
  3045. name: "Megamacro",
  3046. height: math.unit(10, "miles")
  3047. }
  3048. ]
  3049. ))
  3050. characterMakers.push(() => makeCharacter(
  3051. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3052. {
  3053. side: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(140, "kg"),
  3056. name: "Side",
  3057. image: {
  3058. source: "./media/characters/sosha/side.svg",
  3059. bottom: 0.042
  3060. }
  3061. },
  3062. },
  3063. [
  3064. {
  3065. name: "Normal",
  3066. height: math.unit(12, "feet"),
  3067. default: true
  3068. }
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3073. {
  3074. side: {
  3075. height: math.unit(5 + 5 / 12, "feet"),
  3076. weight: math.unit(170, "kg"),
  3077. name: "Side",
  3078. image: {
  3079. source: "./media/characters/runnola/side.svg",
  3080. extra: 741 / 448,
  3081. bottom: 0.05
  3082. }
  3083. },
  3084. },
  3085. [
  3086. {
  3087. name: "Small",
  3088. height: math.unit(3, "feet")
  3089. },
  3090. {
  3091. name: "Normal",
  3092. height: math.unit(5 + 5 / 12, "feet"),
  3093. default: true
  3094. },
  3095. {
  3096. name: "Big",
  3097. height: math.unit(10, "feet")
  3098. },
  3099. ]
  3100. ))
  3101. characterMakers.push(() => makeCharacter(
  3102. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3103. {
  3104. front: {
  3105. height: math.unit(2, "meter"),
  3106. weight: math.unit(50, "kg"),
  3107. name: "Front",
  3108. image: {
  3109. source: "./media/characters/kurribird/front.svg",
  3110. bottom: 0.015
  3111. }
  3112. },
  3113. frontAlt: {
  3114. height: math.unit(1.5, "meter"),
  3115. weight: math.unit(50, "kg"),
  3116. name: "Front (Alt)",
  3117. image: {
  3118. source: "./media/characters/kurribird/front-alt.svg",
  3119. extra: 1.45
  3120. }
  3121. },
  3122. },
  3123. [
  3124. {
  3125. name: "Normal",
  3126. height: math.unit(7, "feet")
  3127. },
  3128. {
  3129. name: "Big",
  3130. height: math.unit(12, "feet"),
  3131. default: true
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(1500, "feet")
  3136. },
  3137. {
  3138. name: "Megamacro",
  3139. height: math.unit(2, "miles")
  3140. }
  3141. ]
  3142. ))
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3145. {
  3146. front: {
  3147. height: math.unit(2, "meter"),
  3148. weight: math.unit(80, "kg"),
  3149. name: "Front",
  3150. image: {
  3151. source: "./media/characters/elbial/front.svg",
  3152. extra: 1643 / 1556,
  3153. bottom: 60.2 / 1696
  3154. }
  3155. },
  3156. side: {
  3157. height: math.unit(2, "meter"),
  3158. weight: math.unit(80, "kg"),
  3159. name: "Side",
  3160. image: {
  3161. source: "./media/characters/elbial/side.svg",
  3162. extra: 1630 / 1565,
  3163. bottom: 71.5 / 1697
  3164. }
  3165. },
  3166. back: {
  3167. height: math.unit(2, "meter"),
  3168. weight: math.unit(80, "kg"),
  3169. name: "Back",
  3170. image: {
  3171. source: "./media/characters/elbial/back.svg",
  3172. extra: 1668 / 1595,
  3173. bottom: 5.6 / 1672
  3174. }
  3175. },
  3176. frontDressed: {
  3177. height: math.unit(2, "meter"),
  3178. weight: math.unit(80, "kg"),
  3179. name: "Front (Dressed)",
  3180. image: {
  3181. source: "./media/characters/elbial/front-dressed.svg",
  3182. extra: 1653 / 1584,
  3183. bottom: 57 / 1708
  3184. }
  3185. },
  3186. genitals: {
  3187. height: math.unit(2 / 3.367, "meter"),
  3188. name: "Genitals",
  3189. image: {
  3190. source: "./media/characters/elbial/genitals.svg"
  3191. }
  3192. },
  3193. },
  3194. [
  3195. {
  3196. name: "Large",
  3197. height: math.unit(100, "feet")
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(500, "feet"),
  3202. default: true
  3203. },
  3204. {
  3205. name: "Megamacro",
  3206. height: math.unit(10, "miles")
  3207. },
  3208. {
  3209. name: "Gigamacro",
  3210. height: math.unit(25000, "miles")
  3211. },
  3212. {
  3213. name: "Full-Size",
  3214. height: math.unit(8000000, "gigaparsecs")
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3220. {
  3221. front: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(60, "kg"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/noah/front.svg"
  3227. }
  3228. },
  3229. talons: {
  3230. height: math.unit(0.315, "meter"),
  3231. name: "Talons",
  3232. image: {
  3233. source: "./media/characters/noah/talons.svg"
  3234. }
  3235. }
  3236. },
  3237. [
  3238. {
  3239. name: "Large",
  3240. height: math.unit(50, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(750, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Megamacro",
  3249. height: math.unit(50, "miles")
  3250. },
  3251. {
  3252. name: "Gigamacro",
  3253. height: math.unit(100000, "miles")
  3254. },
  3255. {
  3256. name: "Full-Size",
  3257. height: math.unit(3000000000, "miles")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(80, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/natalya/front.svg"
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(80, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/natalya/back.svg"
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(150, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Megamacro",
  3289. height: math.unit(5, "miles")
  3290. },
  3291. {
  3292. name: "Full-Size",
  3293. height: math.unit(600, "kiloparsecs")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(50, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/erestrebah/front.svg",
  3306. extra: 208 / 193,
  3307. bottom: 0.055
  3308. }
  3309. },
  3310. back: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(50, "kg"),
  3313. name: "Back",
  3314. image: {
  3315. source: "./media/characters/erestrebah/back.svg",
  3316. extra: 1.3
  3317. }
  3318. }
  3319. },
  3320. [
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(10, "feet")
  3324. },
  3325. {
  3326. name: "Large",
  3327. height: math.unit(50, "feet"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Macro",
  3332. height: math.unit(300, "feet")
  3333. },
  3334. {
  3335. name: "Macro+",
  3336. height: math.unit(750, "feet")
  3337. },
  3338. {
  3339. name: "Megamacro",
  3340. height: math.unit(3, "miles")
  3341. }
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(2, "meter"),
  3349. weight: math.unit(80, "kg"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/jennifer/front.svg",
  3353. bottom: 0.11,
  3354. extra: 1.16
  3355. }
  3356. },
  3357. frontAlt: {
  3358. height: math.unit(2, "meter"),
  3359. weight: math.unit(80, "kg"),
  3360. name: "Front (Alt)",
  3361. image: {
  3362. source: "./media/characters/jennifer/front-alt.svg"
  3363. }
  3364. }
  3365. },
  3366. [
  3367. {
  3368. name: "Canon Height",
  3369. height: math.unit(120, "feet"),
  3370. default: true
  3371. },
  3372. {
  3373. name: "Macro+",
  3374. height: math.unit(300, "feet")
  3375. },
  3376. {
  3377. name: "Megamacro",
  3378. height: math.unit(20000, "feet")
  3379. }
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3384. {
  3385. front: {
  3386. height: math.unit(2, "meter"),
  3387. weight: math.unit(50, "kg"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/kalista/front.svg",
  3391. extra: 1947 / 1700,
  3392. bottom: 76.6 / 1412.98
  3393. }
  3394. },
  3395. back: {
  3396. height: math.unit(2, "meter"),
  3397. weight: math.unit(50, "kg"),
  3398. name: "Back",
  3399. image: {
  3400. source: "./media/characters/kalista/back.svg",
  3401. extra: 1366 / 1156,
  3402. bottom: 33.9 / 1362.78
  3403. }
  3404. }
  3405. },
  3406. [
  3407. {
  3408. name: "Uncomfortably Small",
  3409. height: math.unit(10, "feet")
  3410. },
  3411. {
  3412. name: "Small",
  3413. height: math.unit(30, "feet")
  3414. },
  3415. {
  3416. name: "Macro",
  3417. height: math.unit(100, "feet"),
  3418. default: true
  3419. },
  3420. {
  3421. name: "Macro+",
  3422. height: math.unit(2000, "feet")
  3423. },
  3424. {
  3425. name: "True Form",
  3426. height: math.unit(8924, "miles")
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(2, "meter"),
  3435. weight: math.unit(120, "kg"),
  3436. name: "Front",
  3437. image: {
  3438. source: "./media/characters/ggv/front.svg"
  3439. }
  3440. },
  3441. side: {
  3442. height: math.unit(2, "meter"),
  3443. weight: math.unit(120, "kg"),
  3444. name: "Side",
  3445. image: {
  3446. source: "./media/characters/ggv/side.svg"
  3447. }
  3448. }
  3449. },
  3450. [
  3451. {
  3452. name: "Extremely Puny",
  3453. height: math.unit(9 + 5 / 12, "feet")
  3454. },
  3455. {
  3456. name: "Horribly Small",
  3457. height: math.unit(47.7, "miles"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Reasonably Sized",
  3462. height: math.unit(25000, "parsecs")
  3463. },
  3464. {
  3465. name: "Slightly Uncompressed",
  3466. height: math.unit(7.77e31, "parsecs")
  3467. },
  3468. {
  3469. name: "Omniversal",
  3470. height: math.unit(1e300, "meters")
  3471. },
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(75, "lb"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/napalm/front.svg"
  3483. }
  3484. },
  3485. back: {
  3486. height: math.unit(2, "meter"),
  3487. weight: math.unit(75, "lb"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/napalm/back.svg"
  3491. }
  3492. }
  3493. },
  3494. [
  3495. {
  3496. name: "Standard",
  3497. height: math.unit(55, "feet"),
  3498. default: true
  3499. }
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3504. {
  3505. front: {
  3506. height: math.unit(7 + 5 / 6, "feet"),
  3507. weight: math.unit(325, "lb"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/asana/front.svg",
  3511. extra: 1133 / 1060,
  3512. bottom: 15.2 / 1148.6
  3513. }
  3514. },
  3515. back: {
  3516. height: math.unit(7 + 5 / 6, "feet"),
  3517. weight: math.unit(325, "lb"),
  3518. name: "Back",
  3519. image: {
  3520. source: "./media/characters/asana/back.svg",
  3521. extra: 1114 / 1043,
  3522. bottom: 5 / 1120
  3523. }
  3524. },
  3525. dressedDark: {
  3526. height: math.unit(7 + 5 / 6, "feet"),
  3527. weight: math.unit(325, "lb"),
  3528. name: "Dressed (Dark)",
  3529. image: {
  3530. source: "./media/characters/asana/dressed-dark.svg",
  3531. extra: 1133 / 1060,
  3532. bottom: 15.2 / 1148.6
  3533. }
  3534. },
  3535. dressedLight: {
  3536. height: math.unit(7 + 5 / 6, "feet"),
  3537. weight: math.unit(325, "lb"),
  3538. name: "Dressed (Light)",
  3539. image: {
  3540. source: "./media/characters/asana/dressed-light.svg",
  3541. extra: 1133 / 1060,
  3542. bottom: 15.2 / 1148.6
  3543. }
  3544. },
  3545. },
  3546. [
  3547. {
  3548. name: "Standard",
  3549. height: math.unit(7 + 5 / 6, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Large",
  3554. height: math.unit(10, "meters")
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(2500, "meters")
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(5e6, "meters")
  3563. },
  3564. {
  3565. name: "Examacro",
  3566. height: math.unit(5e12, "lightyears")
  3567. },
  3568. {
  3569. name: "Max Size",
  3570. height: math.unit(1e31, "lightyears")
  3571. }
  3572. ]
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3576. {
  3577. front: {
  3578. height: math.unit(2, "meter"),
  3579. weight: math.unit(60, "kg"),
  3580. name: "Front",
  3581. image: {
  3582. source: "./media/characters/ebony/front.svg",
  3583. bottom: 0.03,
  3584. extra: 1045 / 810 + 0.03
  3585. }
  3586. },
  3587. side: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(60, "kg"),
  3590. name: "Side",
  3591. image: {
  3592. source: "./media/characters/ebony/side.svg",
  3593. bottom: 0.03,
  3594. extra: 1045 / 810 + 0.03
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(60, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/ebony/back.svg",
  3603. bottom: 0.01,
  3604. extra: 1045 / 810 + 0.01
  3605. }
  3606. },
  3607. },
  3608. [
  3609. // TODO check why I did this lol
  3610. {
  3611. name: "Standard",
  3612. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3613. default: true
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(200, "feet")
  3618. },
  3619. {
  3620. name: "Gigamacro",
  3621. height: math.unit(13000, "km")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(6, "feet"),
  3630. weight: math.unit(175, "lb"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/mountain/front.svg",
  3634. extra: 972 / 955,
  3635. bottom: 64 / 1036.6
  3636. }
  3637. },
  3638. back: {
  3639. height: math.unit(6, "feet"),
  3640. weight: math.unit(175, "lb"),
  3641. name: "Back",
  3642. image: {
  3643. source: "./media/characters/mountain/back.svg",
  3644. extra: 970 / 950,
  3645. bottom: 28.25 / 999
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Large",
  3652. height: math.unit(20, "meters")
  3653. },
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(300, "meters")
  3657. },
  3658. {
  3659. name: "Gigamacro",
  3660. height: math.unit(10000, "km"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Examacro",
  3665. height: math.unit(10e9, "lightyears")
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3671. {
  3672. front: {
  3673. height: math.unit(8, "feet"),
  3674. weight: math.unit(500, "lb"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/rick/front.svg"
  3678. }
  3679. }
  3680. },
  3681. [
  3682. {
  3683. name: "Normal",
  3684. height: math.unit(8, "feet"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(5, "km")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(8, "feet"),
  3698. weight: math.unit(120, "lb"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/ona/front.svg"
  3702. }
  3703. },
  3704. frontAlt: {
  3705. height: math.unit(8, "feet"),
  3706. weight: math.unit(120, "lb"),
  3707. name: "Front (Alt)",
  3708. image: {
  3709. source: "./media/characters/ona/front-alt.svg"
  3710. }
  3711. },
  3712. back: {
  3713. height: math.unit(8, "feet"),
  3714. weight: math.unit(120, "lb"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/ona/back.svg"
  3718. }
  3719. },
  3720. foot: {
  3721. height: math.unit(1.1, "feet"),
  3722. name: "Foot",
  3723. image: {
  3724. source: "./media/characters/ona/foot.svg"
  3725. }
  3726. }
  3727. },
  3728. [
  3729. {
  3730. name: "Megamacro",
  3731. height: math.unit(70, "km"),
  3732. default: true
  3733. },
  3734. {
  3735. name: "Gigamacro",
  3736. height: math.unit(681818, "miles")
  3737. },
  3738. {
  3739. name: "Examacro",
  3740. height: math.unit(3800000, "lightyears")
  3741. },
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(12, "feet"),
  3749. weight: math.unit(3000, "lb"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/mech/front.svg",
  3753. extra: 2900 / 2770,
  3754. bottom: 110 / 3010
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(12, "feet"),
  3759. weight: math.unit(3000, "lb"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/mech/back.svg",
  3763. extra: 3011 / 2890,
  3764. bottom: 94 / 3105
  3765. }
  3766. },
  3767. maw: {
  3768. height: math.unit(3.07, "feet"),
  3769. name: "Maw",
  3770. image: {
  3771. source: "./media/characters/mech/maw.svg"
  3772. }
  3773. },
  3774. head: {
  3775. height: math.unit(2.82, "feet"),
  3776. name: "Head",
  3777. image: {
  3778. source: "./media/characters/mech/head.svg"
  3779. }
  3780. },
  3781. dick: {
  3782. height: math.unit(1.43, "feet"),
  3783. name: "Dick",
  3784. image: {
  3785. source: "./media/characters/mech/dick.svg"
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(12, "feet")
  3793. },
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(300, "feet"),
  3797. default: true
  3798. },
  3799. {
  3800. name: "Macro+",
  3801. height: math.unit(1500, "feet")
  3802. },
  3803. ]
  3804. ))
  3805. characterMakers.push(() => makeCharacter(
  3806. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3807. {
  3808. front: {
  3809. height: math.unit(1.3, "meter"),
  3810. weight: math.unit(30, "kg"),
  3811. name: "Front",
  3812. image: {
  3813. source: "./media/characters/gregory/front.svg",
  3814. }
  3815. }
  3816. },
  3817. [
  3818. {
  3819. name: "Normal",
  3820. height: math.unit(1.3, "meter"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Macro",
  3825. height: math.unit(20, "meter")
  3826. }
  3827. ]
  3828. ))
  3829. characterMakers.push(() => makeCharacter(
  3830. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3831. {
  3832. front: {
  3833. height: math.unit(2.8, "meter"),
  3834. weight: math.unit(200, "kg"),
  3835. name: "Front",
  3836. image: {
  3837. source: "./media/characters/elory/front.svg",
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Normal",
  3844. height: math.unit(2.8, "meter"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Macro",
  3849. height: math.unit(38, "meter")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3855. {
  3856. front: {
  3857. height: math.unit(470, "feet"),
  3858. weight: math.unit(924, "tons"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/angelpatamon/front.svg",
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(470, "feet"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Deity Size I",
  3873. height: math.unit(28651.2, "km")
  3874. },
  3875. {
  3876. name: "Deity Size II",
  3877. height: math.unit(171907.2, "km")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3883. {
  3884. side: {
  3885. height: math.unit(7.2, "meter"),
  3886. weight: math.unit(8.2, "tons"),
  3887. name: "Side",
  3888. image: {
  3889. source: "./media/characters/cryae/side.svg",
  3890. extra: 3500 / 1500
  3891. }
  3892. }
  3893. },
  3894. [
  3895. {
  3896. name: "Normal",
  3897. height: math.unit(7.2, "meter"),
  3898. default: true
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(175, "lb"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/xera/front.svg",
  3911. extra: 2377 / 1972,
  3912. bottom: 75.5 / 2452
  3913. }
  3914. },
  3915. side: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(175, "lb"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/xera/side.svg",
  3921. extra: 2345 / 2019,
  3922. bottom: 39.7 / 2384
  3923. }
  3924. },
  3925. back: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(175, "lb"),
  3928. name: "Back",
  3929. image: {
  3930. source: "./media/characters/xera/back.svg",
  3931. extra: 2095 / 1984,
  3932. bottom: 67 / 2166
  3933. }
  3934. },
  3935. },
  3936. [
  3937. {
  3938. name: "Small",
  3939. height: math.unit(10, "feet")
  3940. },
  3941. {
  3942. name: "Macro",
  3943. height: math.unit(500, "meters"),
  3944. default: true
  3945. },
  3946. {
  3947. name: "Macro+",
  3948. height: math.unit(10, "km")
  3949. },
  3950. {
  3951. name: "Gigamacro",
  3952. height: math.unit(25000, "km")
  3953. },
  3954. {
  3955. name: "Teramacro",
  3956. height: math.unit(3e6, "km")
  3957. }
  3958. ]
  3959. ))
  3960. characterMakers.push(() => makeCharacter(
  3961. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3962. {
  3963. front: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(175, "lb"),
  3966. name: "Front",
  3967. image: {
  3968. source: "./media/characters/nebula/front.svg",
  3969. extra: 2566 / 2362,
  3970. bottom: 81 / 2644
  3971. }
  3972. }
  3973. },
  3974. [
  3975. {
  3976. name: "Small",
  3977. height: math.unit(4.5, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(1500, "meters"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Megamacro",
  3986. height: math.unit(150, "km")
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(27000, "km")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(225, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/abysgar/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Small",
  4009. height: math.unit(4.5, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(1250, "meters"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Megamacro",
  4018. height: math.unit(125, "km")
  4019. },
  4020. {
  4021. name: "Gigamacro",
  4022. height: math.unit(26000, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(180, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/yakuz/front.svg"
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Small",
  4041. height: math.unit(5, "meters")
  4042. },
  4043. {
  4044. name: "Macro",
  4045. height: math.unit(1500, "meters"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Megamacro",
  4050. height: math.unit(200, "km")
  4051. },
  4052. {
  4053. name: "Gigamacro",
  4054. height: math.unit(100000, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(175, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/mirova/front.svg",
  4067. extra: 3334 / 3071,
  4068. bottom: 42 / 3375.6
  4069. }
  4070. }
  4071. },
  4072. [
  4073. {
  4074. name: "Small",
  4075. height: math.unit(5, "meters")
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(900, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(135, "km")
  4085. },
  4086. {
  4087. name: "Gigamacro",
  4088. height: math.unit(20000, "km")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4094. {
  4095. side: {
  4096. height: math.unit(28.35, "feet"),
  4097. weight: math.unit(99.75, "tons"),
  4098. name: "Side",
  4099. image: {
  4100. source: "./media/characters/asana-mech/side.svg",
  4101. extra: 923 / 699,
  4102. bottom: 50 / 975
  4103. }
  4104. },
  4105. chaingun: {
  4106. height: math.unit(7, "feet"),
  4107. weight: math.unit(2400, "lb"),
  4108. name: "Chaingun",
  4109. image: {
  4110. source: "./media/characters/asana-mech/chaingun.svg"
  4111. }
  4112. },
  4113. laser: {
  4114. height: math.unit(7.12, "feet"),
  4115. weight: math.unit(2000, "lb"),
  4116. name: "Laser",
  4117. image: {
  4118. source: "./media/characters/asana-mech/laser.svg"
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(28.35, "feet"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(2500, "feet")
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(25, "miles")
  4135. },
  4136. {
  4137. name: "Examacro",
  4138. height: math.unit(6e8, "lightyears")
  4139. },
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4144. {
  4145. front: {
  4146. height: math.unit(5, "meters"),
  4147. weight: math.unit(1000, "kg"),
  4148. name: "Front",
  4149. image: {
  4150. source: "./media/characters/asche/front.svg",
  4151. extra: 1258 / 1190,
  4152. bottom: 47 / 1305
  4153. }
  4154. },
  4155. frontUnderwear: {
  4156. height: math.unit(5, "meters"),
  4157. weight: math.unit(1000, "kg"),
  4158. name: "Front (Underwear)",
  4159. image: {
  4160. source: "./media/characters/asche/front-underwear.svg",
  4161. extra: 1258 / 1190,
  4162. bottom: 47 / 1305
  4163. }
  4164. },
  4165. frontDressed: {
  4166. height: math.unit(5, "meters"),
  4167. weight: math.unit(1000, "kg"),
  4168. name: "Front (Dressed)",
  4169. image: {
  4170. source: "./media/characters/asche/front-dressed.svg",
  4171. extra: 1258 / 1190,
  4172. bottom: 47 / 1305
  4173. }
  4174. },
  4175. frontArmor: {
  4176. height: math.unit(5, "meters"),
  4177. weight: math.unit(1000, "kg"),
  4178. name: "Front (Armored)",
  4179. image: {
  4180. source: "./media/characters/asche/front-armored.svg",
  4181. extra: 1374 / 1308,
  4182. bottom: 23 / 1397
  4183. }
  4184. },
  4185. mp724: {
  4186. height: math.unit(0.96, "meters"),
  4187. weight: math.unit(38, "kg"),
  4188. name: "H&K MP724",
  4189. image: {
  4190. source: "./media/characters/asche/h&k-mp724.svg"
  4191. }
  4192. },
  4193. side: {
  4194. height: math.unit(5, "meters"),
  4195. weight: math.unit(1000, "kg"),
  4196. name: "Side",
  4197. image: {
  4198. source: "./media/characters/asche/side.svg",
  4199. extra: 1717 / 1609,
  4200. bottom: 0.005
  4201. }
  4202. },
  4203. back: {
  4204. height: math.unit(5, "meters"),
  4205. weight: math.unit(1000, "kg"),
  4206. name: "Back",
  4207. image: {
  4208. source: "./media/characters/asche/back.svg",
  4209. extra: 1570 / 1501
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "DEFCON 5",
  4216. height: math.unit(5, "meters")
  4217. },
  4218. {
  4219. name: "DEFCON 4",
  4220. height: math.unit(500, "meters"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "DEFCON 3",
  4225. height: math.unit(5, "km")
  4226. },
  4227. {
  4228. name: "DEFCON 2",
  4229. height: math.unit(500, "km")
  4230. },
  4231. {
  4232. name: "DEFCON 1",
  4233. height: math.unit(500000, "km")
  4234. },
  4235. {
  4236. name: "DEFCON 0",
  4237. height: math.unit(3, "gigaparsecs")
  4238. },
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meters"),
  4246. weight: math.unit(76, "kg"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/gale/front.svg"
  4250. }
  4251. },
  4252. frontAlt1: {
  4253. height: math.unit(2, "meters"),
  4254. weight: math.unit(76, "kg"),
  4255. name: "Front (Alt 1)",
  4256. image: {
  4257. source: "./media/characters/gale/front-alt-1.svg"
  4258. }
  4259. },
  4260. frontAlt2: {
  4261. height: math.unit(2, "meters"),
  4262. weight: math.unit(76, "kg"),
  4263. name: "Front (Alt 2)",
  4264. image: {
  4265. source: "./media/characters/gale/front-alt-2.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(7, "feet")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(150, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Macro+",
  4281. height: math.unit(300, "feet")
  4282. },
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(2, "meters"),
  4290. weight: math.unit(76, "kg"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/draylen/front.svg"
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(150, "feet"),
  4301. default: true
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(7 + 9 / 12, "feet"),
  4310. weight: math.unit(379, "lbs"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/chez/front.svg"
  4314. }
  4315. },
  4316. side: {
  4317. height: math.unit(7 + 9 / 12, "feet"),
  4318. weight: math.unit(379, "lbs"),
  4319. name: "Side",
  4320. image: {
  4321. source: "./media/characters/chez/side.svg"
  4322. }
  4323. }
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(7 + 9 / 12, "feet"),
  4329. default: true
  4330. },
  4331. {
  4332. name: "God King",
  4333. height: math.unit(9750000, "meters")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(6, "feet"),
  4342. weight: math.unit(275, "lbs"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/kaylum/front.svg",
  4346. bottom: 0.01,
  4347. extra: 1166 / 1031
  4348. }
  4349. },
  4350. frontWingless: {
  4351. height: math.unit(6, "feet"),
  4352. weight: math.unit(275, "lbs"),
  4353. name: "Front (Wingless)",
  4354. image: {
  4355. source: "./media/characters/kaylum/front-wingless.svg",
  4356. bottom: 0.01,
  4357. extra: 1117 / 1031
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(3.05, "meters")
  4365. },
  4366. {
  4367. name: "Master",
  4368. height: math.unit(5.5, "meters")
  4369. },
  4370. {
  4371. name: "Rampage",
  4372. height: math.unit(19, "meters")
  4373. },
  4374. {
  4375. name: "Macro Lite",
  4376. height: math.unit(37, "meters")
  4377. },
  4378. {
  4379. name: "Hyper Predator",
  4380. height: math.unit(61, "meters")
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(138, "meters"),
  4385. default: true
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(6, "feet"),
  4394. weight: math.unit(150, "lbs"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/geta/front.svg"
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Micro",
  4404. height: math.unit(3, "inches"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Normal",
  4409. height: math.unit(5 + 5 / 12, "feet")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(300, "lbs"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/tyrnn/front.svg"
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Main Height",
  4428. height: math.unit(355, "feet"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Fave. Height",
  4433. height: math.unit(2400, "feet")
  4434. }
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4439. {
  4440. front: {
  4441. height: math.unit(6, "feet"),
  4442. weight: math.unit(300, "lbs"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/appledectomy/front.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(2500, "feet")
  4453. },
  4454. {
  4455. name: "Megamacro",
  4456. height: math.unit(50, "miles"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Gigamacro",
  4461. height: math.unit(5000, "miles")
  4462. },
  4463. {
  4464. name: "Teramacro",
  4465. height: math.unit(250000, "miles")
  4466. },
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(6, "feet"),
  4474. weight: math.unit(200, "lbs"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/vulpes/front.svg",
  4478. extra: 573 / 543,
  4479. bottom: 0.033
  4480. }
  4481. },
  4482. side: {
  4483. height: math.unit(6, "feet"),
  4484. weight: math.unit(200, "lbs"),
  4485. name: "Side",
  4486. image: {
  4487. source: "./media/characters/vulpes/side.svg",
  4488. extra: 577 / 549,
  4489. bottom: 11 / 588
  4490. }
  4491. },
  4492. back: {
  4493. height: math.unit(6, "feet"),
  4494. weight: math.unit(200, "lbs"),
  4495. name: "Back",
  4496. image: {
  4497. source: "./media/characters/vulpes/back.svg",
  4498. extra: 573 / 549,
  4499. bottom: 20 / 593
  4500. }
  4501. },
  4502. feet: {
  4503. height: math.unit(1.276, "feet"),
  4504. name: "Feet",
  4505. image: {
  4506. source: "./media/characters/vulpes/feet.svg"
  4507. }
  4508. },
  4509. maw: {
  4510. height: math.unit(1.18, "feet"),
  4511. name: "Maw",
  4512. image: {
  4513. source: "./media/characters/vulpes/maw.svg"
  4514. }
  4515. },
  4516. },
  4517. [
  4518. {
  4519. name: "Micro",
  4520. height: math.unit(2, "inches")
  4521. },
  4522. {
  4523. name: "Normal",
  4524. height: math.unit(6.3, "feet")
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(850, "feet")
  4529. },
  4530. {
  4531. name: "Megamacro",
  4532. height: math.unit(7500, "feet"),
  4533. default: true
  4534. },
  4535. {
  4536. name: "Gigamacro",
  4537. height: math.unit(570000, "miles")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(210, "lbs"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/rain-fallen/front.svg"
  4550. }
  4551. },
  4552. side: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(210, "lbs"),
  4555. name: "Side",
  4556. image: {
  4557. source: "./media/characters/rain-fallen/side.svg"
  4558. }
  4559. },
  4560. back: {
  4561. height: math.unit(6, "feet"),
  4562. weight: math.unit(210, "lbs"),
  4563. name: "Back",
  4564. image: {
  4565. source: "./media/characters/rain-fallen/back.svg"
  4566. }
  4567. },
  4568. feral: {
  4569. height: math.unit(9, "feet"),
  4570. weight: math.unit(700, "lbs"),
  4571. name: "Feral",
  4572. image: {
  4573. source: "./media/characters/rain-fallen/feral.svg"
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Meddling with Mortals",
  4580. height: math.unit(8 + 8/12, "feet")
  4581. },
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(5, "meter")
  4585. },
  4586. {
  4587. name: "Macro",
  4588. height: math.unit(150, "meter"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(278e6, "meter")
  4594. },
  4595. {
  4596. name: "Gigamacro",
  4597. height: math.unit(2e9, "meter")
  4598. },
  4599. {
  4600. name: "Teramacro",
  4601. height: math.unit(8e12, "meter")
  4602. },
  4603. {
  4604. name: "Devourer",
  4605. height: math.unit(14, "zettameters")
  4606. },
  4607. {
  4608. name: "Scarlet King",
  4609. height: math.unit(18, "yottameters")
  4610. },
  4611. {
  4612. name: "Void",
  4613. height: math.unit(1e88, "yottameters")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4619. {
  4620. standing: {
  4621. height: math.unit(6, "feet"),
  4622. weight: math.unit(180, "lbs"),
  4623. name: "Standing",
  4624. image: {
  4625. source: "./media/characters/zaakira/standing.svg",
  4626. extra: 1599/1504,
  4627. bottom: 39/1638
  4628. }
  4629. },
  4630. laying: {
  4631. height: math.unit(3, "feet"),
  4632. weight: math.unit(180, "lbs"),
  4633. name: "Laying",
  4634. image: {
  4635. source: "./media/characters/zaakira/laying.svg"
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Normal",
  4642. height: math.unit(12, "feet")
  4643. },
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(279, "feet"),
  4647. default: true
  4648. }
  4649. ]
  4650. ))
  4651. characterMakers.push(() => makeCharacter(
  4652. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4653. {
  4654. femSfw: {
  4655. height: math.unit(8, "feet"),
  4656. weight: math.unit(350, "lb"),
  4657. name: "Fem",
  4658. image: {
  4659. source: "./media/characters/sigvald/fem-sfw.svg",
  4660. extra: 182 / 164,
  4661. bottom: 8.7 / 190.5
  4662. }
  4663. },
  4664. femNsfw: {
  4665. height: math.unit(8, "feet"),
  4666. weight: math.unit(350, "lb"),
  4667. name: "Fem (NSFW)",
  4668. image: {
  4669. source: "./media/characters/sigvald/fem-nsfw.svg",
  4670. extra: 182 / 164,
  4671. bottom: 8.7 / 190.5
  4672. }
  4673. },
  4674. maleNsfw: {
  4675. height: math.unit(8, "feet"),
  4676. weight: math.unit(350, "lb"),
  4677. name: "Male (NSFW)",
  4678. image: {
  4679. source: "./media/characters/sigvald/male-nsfw.svg",
  4680. extra: 182 / 164,
  4681. bottom: 8.7 / 190.5
  4682. }
  4683. },
  4684. hermNsfw: {
  4685. height: math.unit(8, "feet"),
  4686. weight: math.unit(350, "lb"),
  4687. name: "Herm (NSFW)",
  4688. image: {
  4689. source: "./media/characters/sigvald/herm-nsfw.svg",
  4690. extra: 182 / 164,
  4691. bottom: 8.7 / 190.5
  4692. }
  4693. },
  4694. dick: {
  4695. height: math.unit(2.36, "feet"),
  4696. name: "Dick",
  4697. image: {
  4698. source: "./media/characters/sigvald/dick.svg"
  4699. }
  4700. },
  4701. eye: {
  4702. height: math.unit(0.31, "feet"),
  4703. name: "Eye",
  4704. image: {
  4705. source: "./media/characters/sigvald/eye.svg"
  4706. }
  4707. },
  4708. mouth: {
  4709. height: math.unit(0.92, "feet"),
  4710. name: "Mouth",
  4711. image: {
  4712. source: "./media/characters/sigvald/mouth.svg"
  4713. }
  4714. },
  4715. paws: {
  4716. height: math.unit(2.2, "feet"),
  4717. name: "Paws",
  4718. image: {
  4719. source: "./media/characters/sigvald/paws.svg"
  4720. }
  4721. }
  4722. },
  4723. [
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(8, "feet")
  4727. },
  4728. {
  4729. name: "Large",
  4730. height: math.unit(12, "feet")
  4731. },
  4732. {
  4733. name: "Larger",
  4734. height: math.unit(20, "feet")
  4735. },
  4736. {
  4737. name: "Macro",
  4738. height: math.unit(150, "feet")
  4739. },
  4740. {
  4741. name: "Macro+",
  4742. height: math.unit(200, "feet"),
  4743. default: true
  4744. },
  4745. ]
  4746. ))
  4747. characterMakers.push(() => makeCharacter(
  4748. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4749. {
  4750. side: {
  4751. height: math.unit(12, "feet"),
  4752. weight: math.unit(2000, "kg"),
  4753. name: "Side",
  4754. image: {
  4755. source: "./media/characters/scott/side.svg",
  4756. extra: 754 / 724,
  4757. bottom: 0.069
  4758. }
  4759. },
  4760. upright: {
  4761. height: math.unit(12, "feet"),
  4762. weight: math.unit(2000, "kg"),
  4763. name: "Upright",
  4764. image: {
  4765. source: "./media/characters/scott/upright.svg",
  4766. extra: 3881 / 3722,
  4767. bottom: 0.05
  4768. }
  4769. },
  4770. },
  4771. [
  4772. {
  4773. name: "Normal",
  4774. height: math.unit(12, "feet"),
  4775. default: true
  4776. },
  4777. ]
  4778. ))
  4779. characterMakers.push(() => makeCharacter(
  4780. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4781. {
  4782. side: {
  4783. height: math.unit(8, "meters"),
  4784. weight: math.unit(84755, "lbs"),
  4785. name: "Side",
  4786. image: {
  4787. source: "./media/characters/tobias/side.svg",
  4788. extra: 1474 / 1096,
  4789. bottom: 38.9 / 1513.1235
  4790. }
  4791. },
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(8, "meters"),
  4797. default: true
  4798. },
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4803. {
  4804. front: {
  4805. height: math.unit(5.5, "feet"),
  4806. weight: math.unit(400, "lbs"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/kieran/front.svg",
  4810. extra: 2694 / 2364,
  4811. bottom: 217 / 2908
  4812. }
  4813. },
  4814. side: {
  4815. height: math.unit(5.5, "feet"),
  4816. weight: math.unit(400, "lbs"),
  4817. name: "Side",
  4818. image: {
  4819. source: "./media/characters/kieran/side.svg",
  4820. extra: 875 / 777,
  4821. bottom: 84.6 / 959
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(5.5, "feet"),
  4829. default: true
  4830. },
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4835. {
  4836. side: {
  4837. height: math.unit(2, "meters"),
  4838. weight: math.unit(70, "kg"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/sanya/side.svg",
  4842. bottom: 0.02,
  4843. extra: 1.02
  4844. }
  4845. },
  4846. },
  4847. [
  4848. {
  4849. name: "Small",
  4850. height: math.unit(2, "meters")
  4851. },
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(3, "meters")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(16, "meters"),
  4859. default: true
  4860. },
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4865. {
  4866. front: {
  4867. height: math.unit(2, "meters"),
  4868. weight: math.unit(120, "kg"),
  4869. name: "Front",
  4870. image: {
  4871. source: "./media/characters/miranda/front.svg",
  4872. extra: 195 / 185,
  4873. bottom: 10.9 / 206.5
  4874. }
  4875. },
  4876. back: {
  4877. height: math.unit(2, "meters"),
  4878. weight: math.unit(120, "kg"),
  4879. name: "Back",
  4880. image: {
  4881. source: "./media/characters/miranda/back.svg",
  4882. extra: 201 / 193,
  4883. bottom: 2.3 / 203.7
  4884. }
  4885. },
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(10, "feet"),
  4891. default: true
  4892. }
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "James", species: ["deer"], tags: ["anthro"] },
  4897. {
  4898. side: {
  4899. height: math.unit(2, "meters"),
  4900. weight: math.unit(100, "kg"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/james/front.svg",
  4904. extra: 10 / 8.5
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(8.5, "feet"),
  4912. default: true
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4918. {
  4919. side: {
  4920. height: math.unit(9.5, "feet"),
  4921. weight: math.unit(2500, "lbs"),
  4922. name: "Side",
  4923. image: {
  4924. source: "./media/characters/heather/side.svg"
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(9.5, "feet"),
  4932. default: true
  4933. }
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4938. {
  4939. side: {
  4940. height: math.unit(6.5, "feet"),
  4941. weight: math.unit(400, "lbs"),
  4942. name: "Side",
  4943. image: {
  4944. source: "./media/characters/lukas/side.svg",
  4945. extra: 7.25 / 6.5
  4946. }
  4947. },
  4948. },
  4949. [
  4950. {
  4951. name: "Normal",
  4952. height: math.unit(6.5, "feet"),
  4953. default: true
  4954. }
  4955. ]
  4956. ))
  4957. characterMakers.push(() => makeCharacter(
  4958. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4959. {
  4960. side: {
  4961. height: math.unit(5, "feet"),
  4962. weight: math.unit(3000, "lbs"),
  4963. name: "Side",
  4964. image: {
  4965. source: "./media/characters/louise/side.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(5, "feet"),
  4973. default: true
  4974. }
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4979. {
  4980. side: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(150, "lbs"),
  4983. name: "Side",
  4984. image: {
  4985. source: "./media/characters/ramona/side.svg"
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(5.3, "meters"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Macro",
  4997. height: math.unit(20, "stories")
  4998. },
  4999. {
  5000. name: "Macro+",
  5001. height: math.unit(50, "stories")
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5007. {
  5008. standing: {
  5009. height: math.unit(5.75, "feet"),
  5010. weight: math.unit(160, "lbs"),
  5011. name: "Standing",
  5012. image: {
  5013. source: "./media/characters/deerpuff/standing.svg",
  5014. extra: 682 / 624
  5015. }
  5016. },
  5017. sitting: {
  5018. height: math.unit(5.75 / 1.79, "feet"),
  5019. weight: math.unit(160, "lbs"),
  5020. name: "Sitting",
  5021. image: {
  5022. source: "./media/characters/deerpuff/sitting.svg",
  5023. bottom: 44 / 400,
  5024. extra: 1
  5025. }
  5026. },
  5027. taurLaying: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(400, "lbs"),
  5030. name: "Taur (Laying)",
  5031. image: {
  5032. source: "./media/characters/deerpuff/taur-laying.svg"
  5033. }
  5034. },
  5035. },
  5036. [
  5037. {
  5038. name: "Puffball",
  5039. height: math.unit(6, "inches")
  5040. },
  5041. {
  5042. name: "Normalpuff",
  5043. height: math.unit(5.75, "feet")
  5044. },
  5045. {
  5046. name: "Macropuff",
  5047. height: math.unit(1500, "feet"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Megapuff",
  5052. height: math.unit(500, "miles")
  5053. },
  5054. {
  5055. name: "Gigapuff",
  5056. height: math.unit(250000, "miles")
  5057. },
  5058. {
  5059. name: "Omegapuff",
  5060. height: math.unit(1000, "lightyears")
  5061. },
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5066. {
  5067. stomping: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(170, "lbs"),
  5070. name: "Stomping",
  5071. image: {
  5072. source: "./media/characters/vivian/stomping.svg"
  5073. }
  5074. },
  5075. sitting: {
  5076. height: math.unit(6 / 1.75, "feet"),
  5077. weight: math.unit(170, "lbs"),
  5078. name: "Sitting",
  5079. image: {
  5080. source: "./media/characters/vivian/sitting.svg",
  5081. bottom: 1 / 6.4,
  5082. extra: 1,
  5083. }
  5084. },
  5085. },
  5086. [
  5087. {
  5088. name: "Normal",
  5089. height: math.unit(7, "feet"),
  5090. default: true
  5091. },
  5092. {
  5093. name: "Macro",
  5094. height: math.unit(10, "stories")
  5095. },
  5096. {
  5097. name: "Macro+",
  5098. height: math.unit(30, "stories")
  5099. },
  5100. {
  5101. name: "Megamacro",
  5102. height: math.unit(10, "miles")
  5103. },
  5104. {
  5105. name: "Megamacro+",
  5106. height: math.unit(2750000, "meters")
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5112. {
  5113. front: {
  5114. height: math.unit(6, "feet"),
  5115. weight: math.unit(160, "lbs"),
  5116. name: "Front",
  5117. image: {
  5118. source: "./media/characters/prince/front.svg",
  5119. extra: 3400 / 3000
  5120. }
  5121. },
  5122. jumping: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(160, "lbs"),
  5125. name: "Jumping",
  5126. image: {
  5127. source: "./media/characters/prince/jump.svg",
  5128. extra: 2555 / 2134
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(7.75, "feet"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Not cute",
  5140. height: math.unit(17, "feet")
  5141. },
  5142. {
  5143. name: "I said NOT",
  5144. height: math.unit(91, "feet")
  5145. },
  5146. {
  5147. name: "Please stop",
  5148. height: math.unit(560, "feet")
  5149. },
  5150. {
  5151. name: "What have you done",
  5152. height: math.unit(2200, "feet")
  5153. },
  5154. {
  5155. name: "Deer God",
  5156. height: math.unit(3.6, "miles")
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5162. {
  5163. standing: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(300, "lbs"),
  5166. name: "Standing",
  5167. image: {
  5168. source: "./media/characters/psymon/standing.svg",
  5169. extra: 1888 / 1810,
  5170. bottom: 0.05
  5171. }
  5172. },
  5173. slithering: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(300, "lbs"),
  5176. name: "Slithering",
  5177. image: {
  5178. source: "./media/characters/psymon/slithering.svg",
  5179. extra: 1330 / 1224
  5180. }
  5181. },
  5182. slitheringAlt: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(300, "lbs"),
  5185. name: "Slithering (Alt)",
  5186. image: {
  5187. source: "./media/characters/psymon/slithering-alt.svg",
  5188. extra: 1330 / 1224
  5189. }
  5190. },
  5191. },
  5192. [
  5193. {
  5194. name: "Normal",
  5195. height: math.unit(11.25, "feet"),
  5196. default: true
  5197. },
  5198. {
  5199. name: "Large",
  5200. height: math.unit(27, "feet")
  5201. },
  5202. {
  5203. name: "Giant",
  5204. height: math.unit(87, "feet")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(365, "feet")
  5209. },
  5210. {
  5211. name: "Megamacro",
  5212. height: math.unit(3, "miles")
  5213. },
  5214. {
  5215. name: "World Serpent",
  5216. height: math.unit(8000, "miles")
  5217. },
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5222. {
  5223. front: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(180, "lbs"),
  5226. name: "Front",
  5227. image: {
  5228. source: "./media/characters/daimos/front.svg",
  5229. extra: 4160 / 3897,
  5230. bottom: 0.021
  5231. }
  5232. }
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(8, "feet"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Big Dog",
  5242. height: math.unit(22, "feet")
  5243. },
  5244. {
  5245. name: "Macro",
  5246. height: math.unit(127, "feet")
  5247. },
  5248. {
  5249. name: "Megamacro",
  5250. height: math.unit(3600, "feet")
  5251. },
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5256. {
  5257. side: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(180, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/blake/side.svg",
  5263. extra: 1212 / 1120,
  5264. bottom: 0.05
  5265. }
  5266. },
  5267. crouched: {
  5268. height: math.unit(6 * 0.57, "feet"),
  5269. weight: math.unit(180, "lbs"),
  5270. name: "Crouched",
  5271. image: {
  5272. source: "./media/characters/blake/crouched.svg",
  5273. extra: 840 / 587,
  5274. bottom: 0.04
  5275. }
  5276. },
  5277. bent: {
  5278. height: math.unit(6 * 0.75, "feet"),
  5279. weight: math.unit(180, "lbs"),
  5280. name: "Bent",
  5281. image: {
  5282. source: "./media/characters/blake/bent.svg",
  5283. extra: 592 / 544,
  5284. bottom: 0.035
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(8 + 1 / 6, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Big Backside",
  5296. height: math.unit(37, "feet")
  5297. },
  5298. {
  5299. name: "Subway Shredder",
  5300. height: math.unit(72, "feet")
  5301. },
  5302. {
  5303. name: "City Carver",
  5304. height: math.unit(1675, "feet")
  5305. },
  5306. {
  5307. name: "Tectonic Tweaker",
  5308. height: math.unit(2300, "miles")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(180, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/guisetto/front.svg",
  5321. extra: 856 / 817,
  5322. bottom: 0.06
  5323. }
  5324. },
  5325. airborne: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(180, "lbs"),
  5328. name: "Airborne",
  5329. image: {
  5330. source: "./media/characters/guisetto/airborne.svg",
  5331. extra: 584 / 525
  5332. }
  5333. },
  5334. },
  5335. [
  5336. {
  5337. name: "Normal",
  5338. height: math.unit(10 + 11 / 12, "feet"),
  5339. default: true
  5340. },
  5341. {
  5342. name: "Large",
  5343. height: math.unit(35, "feet")
  5344. },
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(475, "feet")
  5348. },
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5353. {
  5354. front: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(180, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/luxor/front.svg",
  5360. extra: 2940 / 2152
  5361. }
  5362. },
  5363. back: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(180, "lbs"),
  5366. name: "Back",
  5367. image: {
  5368. source: "./media/characters/luxor/back.svg",
  5369. extra: 1083 / 960
  5370. }
  5371. },
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(5 + 5 / 6, "feet"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "Lamp",
  5381. height: math.unit(50, "feet")
  5382. },
  5383. {
  5384. name: "Lämp",
  5385. height: math.unit(300, "feet")
  5386. },
  5387. {
  5388. name: "The sun is a lamp",
  5389. height: math.unit(250000, "miles")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(50, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/huoyan/front.svg"
  5402. }
  5403. },
  5404. side: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(180, "lbs"),
  5407. name: "Side",
  5408. image: {
  5409. source: "./media/characters/huoyan/side.svg"
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Chef",
  5416. height: math.unit(9, "feet")
  5417. },
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(65, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(780, "feet")
  5426. },
  5427. {
  5428. name: "Flaming Mountain",
  5429. height: math.unit(4.8, "miles")
  5430. },
  5431. {
  5432. name: "Celestial",
  5433. height: math.unit(765000, "miles")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5439. {
  5440. front: {
  5441. height: math.unit(5 + 3 / 4, "feet"),
  5442. weight: math.unit(120, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/tails/front.svg"
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(5 + 3 / 4, "feet"),
  5453. default: true
  5454. }
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5459. {
  5460. front: {
  5461. height: math.unit(4, "feet"),
  5462. weight: math.unit(50, "lbs"),
  5463. name: "Front",
  5464. image: {
  5465. source: "./media/characters/rainy/front.svg"
  5466. }
  5467. }
  5468. },
  5469. [
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(800, "feet"),
  5473. default: true
  5474. }
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(150, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/rainier/front.svg"
  5486. }
  5487. }
  5488. },
  5489. [
  5490. {
  5491. name: "Micro",
  5492. height: math.unit(2, "mm"),
  5493. default: true
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5499. {
  5500. front: {
  5501. height: math.unit(8 + 4/12, "feet"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/andy-renard/front.svg",
  5505. extra: 1839/1726,
  5506. bottom: 134/1973
  5507. }
  5508. },
  5509. back: {
  5510. height: math.unit(8 + 4/12, "feet"),
  5511. name: "Back",
  5512. image: {
  5513. source: "./media/characters/andy-renard/back.svg",
  5514. extra: 1838/1710,
  5515. bottom: 105/1943
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Tall",
  5522. height: math.unit(8 + 4/12, "feet")
  5523. },
  5524. {
  5525. name: "Mini Macro",
  5526. height: math.unit(15, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(100, "feet")
  5532. },
  5533. {
  5534. name: "Mega Macro",
  5535. height: math.unit(1000, "feet")
  5536. },
  5537. {
  5538. name: "Giga Macro",
  5539. height: math.unit(10, "miles")
  5540. },
  5541. {
  5542. name: "God Macro",
  5543. height: math.unit(1, "multiverse")
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(210, "lbs"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/cimmaron/front-sfw.svg",
  5556. extra: 701 / 676,
  5557. bottom: 0.046
  5558. }
  5559. },
  5560. back: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(210, "lbs"),
  5563. name: "Back",
  5564. image: {
  5565. source: "./media/characters/cimmaron/back-sfw.svg",
  5566. extra: 701 / 676,
  5567. bottom: 0.046
  5568. }
  5569. },
  5570. frontNsfw: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(210, "lbs"),
  5573. name: "Front (NSFW)",
  5574. image: {
  5575. source: "./media/characters/cimmaron/front-nsfw.svg",
  5576. extra: 701 / 676,
  5577. bottom: 0.046
  5578. }
  5579. },
  5580. backNsfw: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(210, "lbs"),
  5583. name: "Back (NSFW)",
  5584. image: {
  5585. source: "./media/characters/cimmaron/back-nsfw.svg",
  5586. extra: 701 / 676,
  5587. bottom: 0.046
  5588. }
  5589. },
  5590. dick: {
  5591. height: math.unit(1.714, "feet"),
  5592. name: "Dick",
  5593. image: {
  5594. source: "./media/characters/cimmaron/dick.svg"
  5595. }
  5596. },
  5597. },
  5598. [
  5599. {
  5600. name: "Normal",
  5601. height: math.unit(6, "feet"),
  5602. default: true
  5603. },
  5604. {
  5605. name: "Macro Mayor",
  5606. height: math.unit(350, "meters")
  5607. },
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5612. {
  5613. front: {
  5614. height: math.unit(6, "feet"),
  5615. weight: math.unit(200, "lbs"),
  5616. name: "Front",
  5617. image: {
  5618. source: "./media/characters/akari/front.svg",
  5619. extra: 962 / 901,
  5620. bottom: 0.04
  5621. }
  5622. }
  5623. },
  5624. [
  5625. {
  5626. name: "Micro",
  5627. height: math.unit(5, "inches"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(7, "feet")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(140, "lbs"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/cynosura/front.svg",
  5645. extra: 896 / 847
  5646. }
  5647. },
  5648. back: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(140, "lbs"),
  5651. name: "Back",
  5652. image: {
  5653. source: "./media/characters/cynosura/back.svg",
  5654. extra: 1365 / 1250
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Micro",
  5661. height: math.unit(4, "inches")
  5662. },
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5.75, "feet"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Tall",
  5670. height: math.unit(10, "feet")
  5671. },
  5672. {
  5673. name: "Big",
  5674. height: math.unit(20, "feet")
  5675. },
  5676. {
  5677. name: "Macro",
  5678. height: math.unit(50, "feet")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(13 + 2/12, "feet"),
  5687. weight: math.unit(800, "kg"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/gin/front.svg",
  5691. extra: 1312/1191,
  5692. bottom: 45/1357
  5693. }
  5694. },
  5695. mouth: {
  5696. height: math.unit(2.39 * 1.8, "feet"),
  5697. name: "Mouth",
  5698. image: {
  5699. source: "./media/characters/gin/mouth.svg"
  5700. }
  5701. },
  5702. hand: {
  5703. height: math.unit(1.57 * 2.19, "feet"),
  5704. name: "Hand",
  5705. image: {
  5706. source: "./media/characters/gin/hand.svg"
  5707. }
  5708. },
  5709. foot: {
  5710. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5711. name: "Foot",
  5712. image: {
  5713. source: "./media/characters/gin/foot.svg"
  5714. }
  5715. },
  5716. sole: {
  5717. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5718. name: "Sole",
  5719. image: {
  5720. source: "./media/characters/gin/sole.svg"
  5721. }
  5722. },
  5723. },
  5724. [
  5725. {
  5726. name: "Very Small",
  5727. height: math.unit(13 + 2 / 12, "feet")
  5728. },
  5729. {
  5730. name: "Micro",
  5731. height: math.unit(600, "miles")
  5732. },
  5733. {
  5734. name: "Regular",
  5735. height: math.unit(20, "earths"),
  5736. default: true
  5737. },
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(2.2, "solarradii")
  5741. },
  5742. {
  5743. name: "Teramacro",
  5744. height: math.unit(1.2, "galaxies")
  5745. },
  5746. {
  5747. name: "Omegamacro",
  5748. height: math.unit(200, "universes")
  5749. },
  5750. ]
  5751. ))
  5752. characterMakers.push(() => makeCharacter(
  5753. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5754. {
  5755. front: {
  5756. height: math.unit(6 + 1 / 6, "feet"),
  5757. weight: math.unit(178, "lbs"),
  5758. name: "Front",
  5759. image: {
  5760. source: "./media/characters/guy/front.svg"
  5761. }
  5762. }
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(6 + 1 / 6, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Large",
  5772. height: math.unit(25 + 7 / 12, "feet")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(60 + 9 / 12, "feet")
  5777. },
  5778. {
  5779. name: "Macro+",
  5780. height: math.unit(246, "feet")
  5781. },
  5782. {
  5783. name: "Macro++",
  5784. height: math.unit(878, "feet")
  5785. }
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(9, "feet"),
  5793. weight: math.unit(800, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/tiberius/front.svg",
  5797. extra: 2295 / 2071
  5798. }
  5799. },
  5800. back: {
  5801. height: math.unit(9, "feet"),
  5802. weight: math.unit(800, "lbs"),
  5803. name: "Back",
  5804. image: {
  5805. source: "./media/characters/tiberius/back.svg",
  5806. extra: 2373 / 2160
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(9, "feet"),
  5814. default: true
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(600, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/surgo/front.svg",
  5827. extra: 3591 / 2227
  5828. }
  5829. },
  5830. back: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(600, "lbs"),
  5833. name: "Back",
  5834. image: {
  5835. source: "./media/characters/surgo/back.svg",
  5836. extra: 3557 / 2228
  5837. }
  5838. },
  5839. laying: {
  5840. height: math.unit(6 * 0.85, "feet"),
  5841. weight: math.unit(600, "lbs"),
  5842. name: "Laying",
  5843. image: {
  5844. source: "./media/characters/surgo/laying.svg"
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(6, "feet"),
  5852. default: true
  5853. }
  5854. ]
  5855. ))
  5856. characterMakers.push(() => makeCharacter(
  5857. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5858. {
  5859. side: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(150, "lbs"),
  5862. name: "Side",
  5863. image: {
  5864. source: "./media/characters/cibus/side.svg",
  5865. extra: 800 / 400
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(6, "feet"),
  5873. default: true
  5874. }
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(240, "lbs"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/nibbles/front.svg"
  5886. }
  5887. },
  5888. side: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(240, "lbs"),
  5891. name: "Side",
  5892. image: {
  5893. source: "./media/characters/nibbles/side.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(9, "feet"),
  5901. default: true
  5902. }
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5907. {
  5908. side: {
  5909. height: math.unit(5 + 1 / 6, "feet"),
  5910. weight: math.unit(130, "lbs"),
  5911. name: "Side",
  5912. image: {
  5913. source: "./media/characters/rikky/side.svg",
  5914. extra: 851 / 801
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(5 + 1 / 6, "feet")
  5922. },
  5923. {
  5924. name: "Macro",
  5925. height: math.unit(152, "feet"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Megamacro",
  5930. height: math.unit(7, "miles")
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5936. {
  5937. side: {
  5938. height: math.unit(370, "cm"),
  5939. weight: math.unit(350, "lbs"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/malfressa/side.svg"
  5943. }
  5944. },
  5945. walking: {
  5946. height: math.unit(370, "cm"),
  5947. weight: math.unit(350, "lbs"),
  5948. name: "Walking",
  5949. image: {
  5950. source: "./media/characters/malfressa/walking.svg"
  5951. }
  5952. },
  5953. feral: {
  5954. height: math.unit(2500, "cm"),
  5955. weight: math.unit(100000, "lbs"),
  5956. name: "Feral",
  5957. image: {
  5958. source: "./media/characters/malfressa/feral.svg",
  5959. extra: 2108 / 837,
  5960. bottom: 0.02
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(370, "cm")
  5968. },
  5969. {
  5970. name: "Macro",
  5971. height: math.unit(300, "meters"),
  5972. default: true
  5973. }
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5978. {
  5979. front: {
  5980. height: math.unit(6, "feet"),
  5981. weight: math.unit(60, "kg"),
  5982. name: "Front",
  5983. image: {
  5984. source: "./media/characters/jaro/front.svg"
  5985. }
  5986. },
  5987. back: {
  5988. height: math.unit(6, "feet"),
  5989. weight: math.unit(60, "kg"),
  5990. name: "Back",
  5991. image: {
  5992. source: "./media/characters/jaro/back.svg"
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Micro",
  5999. height: math.unit(7, "inches")
  6000. },
  6001. {
  6002. name: "Normal",
  6003. height: math.unit(5.5, "feet"),
  6004. default: true
  6005. },
  6006. {
  6007. name: "Minimacro",
  6008. height: math.unit(20, "feet")
  6009. },
  6010. {
  6011. name: "Macro",
  6012. height: math.unit(200, "meters")
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6018. {
  6019. front: {
  6020. height: math.unit(6, "feet"),
  6021. weight: math.unit(195, "lb"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/rogue/front.svg"
  6025. }
  6026. },
  6027. },
  6028. [
  6029. {
  6030. name: "Macro",
  6031. height: math.unit(90, "feet"),
  6032. default: true
  6033. },
  6034. ]
  6035. ))
  6036. characterMakers.push(() => makeCharacter(
  6037. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6038. {
  6039. front: {
  6040. height: math.unit(5 + 8 / 12, "feet"),
  6041. weight: math.unit(140, "lb"),
  6042. name: "Front",
  6043. image: {
  6044. source: "./media/characters/piper/front.svg",
  6045. extra: 3948/3655,
  6046. bottom: 0/3948
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Micro",
  6053. height: math.unit(2, "inches")
  6054. },
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(5 + 8 / 12, "feet")
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(250, "feet"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(7, "miles")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(220, "lb"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/gemini/front.svg"
  6079. }
  6080. },
  6081. back: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(220, "lb"),
  6084. name: "Back",
  6085. image: {
  6086. source: "./media/characters/gemini/back.svg"
  6087. }
  6088. },
  6089. kneeling: {
  6090. height: math.unit(6 / 1.5, "feet"),
  6091. weight: math.unit(220, "lb"),
  6092. name: "Kneeling",
  6093. image: {
  6094. source: "./media/characters/gemini/kneeling.svg",
  6095. bottom: 0.02
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(300, "meters"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Megamacro",
  6107. height: math.unit(6900, "meters")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6113. {
  6114. anthro: {
  6115. height: math.unit(2.35, "meters"),
  6116. weight: math.unit(73, "kg"),
  6117. name: "Anthro",
  6118. image: {
  6119. source: "./media/characters/alicia/anthro.svg",
  6120. extra: 2571 / 2385,
  6121. bottom: 75 / 2648
  6122. }
  6123. },
  6124. paw: {
  6125. height: math.unit(1.32, "feet"),
  6126. name: "Paw",
  6127. image: {
  6128. source: "./media/characters/alicia/paw.svg"
  6129. }
  6130. },
  6131. feral: {
  6132. height: math.unit(1.69, "meters"),
  6133. weight: math.unit(73, "kg"),
  6134. name: "Feral",
  6135. image: {
  6136. source: "./media/characters/alicia/feral.svg",
  6137. extra: 2123 / 1715,
  6138. bottom: 222 / 2349
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Normal",
  6145. height: math.unit(2.35, "meters")
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(60, "meters"),
  6150. default: true
  6151. },
  6152. {
  6153. name: "Megamacro",
  6154. height: math.unit(10000, "kilometers")
  6155. },
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6160. {
  6161. front: {
  6162. height: math.unit(7, "feet"),
  6163. weight: math.unit(250, "lbs"),
  6164. name: "Front",
  6165. image: {
  6166. source: "./media/characters/archy/front.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Micro",
  6173. height: math.unit(1, "inch")
  6174. },
  6175. {
  6176. name: "Shorty",
  6177. height: math.unit(5, "feet")
  6178. },
  6179. {
  6180. name: "Normal",
  6181. height: math.unit(7, "feet")
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(600, "meters"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Megamacro",
  6190. height: math.unit(1, "mile")
  6191. },
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6196. {
  6197. front: {
  6198. height: math.unit(1.65, "meters"),
  6199. weight: math.unit(74, "kg"),
  6200. name: "Front",
  6201. image: {
  6202. source: "./media/characters/berri/front.svg",
  6203. extra: 857 / 837,
  6204. bottom: 18 / 877
  6205. }
  6206. },
  6207. bum: {
  6208. height: math.unit(1.46, "feet"),
  6209. name: "Bum",
  6210. image: {
  6211. source: "./media/characters/berri/bum.svg"
  6212. }
  6213. },
  6214. mouth: {
  6215. height: math.unit(0.44, "feet"),
  6216. name: "Mouth",
  6217. image: {
  6218. source: "./media/characters/berri/mouth.svg"
  6219. }
  6220. },
  6221. paw: {
  6222. height: math.unit(0.826, "feet"),
  6223. name: "Paw",
  6224. image: {
  6225. source: "./media/characters/berri/paw.svg"
  6226. }
  6227. },
  6228. },
  6229. [
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(1.65, "meters")
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(60, "m"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Megamacro",
  6241. height: math.unit(9.213, "km")
  6242. },
  6243. {
  6244. name: "Planet Eater",
  6245. height: math.unit(489, "megameters")
  6246. },
  6247. {
  6248. name: "Teramacro",
  6249. height: math.unit(2471635000000, "meters")
  6250. },
  6251. {
  6252. name: "Examacro",
  6253. height: math.unit(8.0624e+26, "meters")
  6254. }
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(1.72, "meters"),
  6262. weight: math.unit(68, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/lexi/front.svg"
  6266. }
  6267. }
  6268. },
  6269. [
  6270. {
  6271. name: "Very Smol",
  6272. height: math.unit(10, "mm")
  6273. },
  6274. {
  6275. name: "Micro",
  6276. height: math.unit(6.8, "cm"),
  6277. default: true
  6278. },
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(1.72, "m")
  6282. }
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(1.69, "meters"),
  6290. weight: math.unit(68, "kg"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/martin/front.svg",
  6294. extra: 596 / 581
  6295. }
  6296. }
  6297. },
  6298. [
  6299. {
  6300. name: "Micro",
  6301. height: math.unit(6.85, "cm"),
  6302. default: true
  6303. },
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(1.69, "m")
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(1.69, "meters"),
  6315. weight: math.unit(68, "kg"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/juno/front.svg"
  6319. }
  6320. }
  6321. },
  6322. [
  6323. {
  6324. name: "Micro",
  6325. height: math.unit(7, "cm")
  6326. },
  6327. {
  6328. name: "Normal",
  6329. height: math.unit(1.89, "m")
  6330. },
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(353, "meters"),
  6334. default: true
  6335. }
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(1.93, "meters"),
  6343. weight: math.unit(83, "kg"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/samantha/front.svg"
  6347. }
  6348. },
  6349. frontClothed: {
  6350. height: math.unit(1.93, "meters"),
  6351. weight: math.unit(83, "kg"),
  6352. name: "Front (Clothed)",
  6353. image: {
  6354. source: "./media/characters/samantha/front-clothed.svg"
  6355. }
  6356. },
  6357. back: {
  6358. height: math.unit(1.93, "meters"),
  6359. weight: math.unit(83, "kg"),
  6360. name: "Back",
  6361. image: {
  6362. source: "./media/characters/samantha/back.svg"
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(1.93, "m")
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(74, "meters"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Macro+",
  6378. height: math.unit(223, "meters"),
  6379. },
  6380. {
  6381. name: "Megamacro",
  6382. height: math.unit(8381, "meters"),
  6383. },
  6384. {
  6385. name: "Megamacro+",
  6386. height: math.unit(12000, "kilometers")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6392. {
  6393. front: {
  6394. height: math.unit(1.92, "meters"),
  6395. weight: math.unit(80, "kg"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/dr-clay/front.svg"
  6399. }
  6400. },
  6401. frontClothed: {
  6402. height: math.unit(1.92, "meters"),
  6403. weight: math.unit(80, "kg"),
  6404. name: "Front (Clothed)",
  6405. image: {
  6406. source: "./media/characters/dr-clay/front-clothed.svg"
  6407. }
  6408. }
  6409. },
  6410. [
  6411. {
  6412. name: "Normal",
  6413. height: math.unit(1.92, "m")
  6414. },
  6415. {
  6416. name: "Macro",
  6417. height: math.unit(214, "meters"),
  6418. default: true
  6419. },
  6420. {
  6421. name: "Macro+",
  6422. height: math.unit(12.237, "meters"),
  6423. },
  6424. {
  6425. name: "Megamacro",
  6426. height: math.unit(557, "megameters"),
  6427. },
  6428. {
  6429. name: "Unimaginable",
  6430. height: math.unit(120e9, "lightyears")
  6431. },
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(2, "meters"),
  6439. weight: math.unit(80, "kg"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6443. }
  6444. }
  6445. },
  6446. [
  6447. {
  6448. name: "Teramacro",
  6449. height: math.unit(500000, "lightyears"),
  6450. default: true
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(2, "meters"),
  6459. weight: math.unit(150, "kg"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/vemus/front.svg",
  6463. extra: 1074/936,
  6464. bottom: 23/1097
  6465. }
  6466. }
  6467. },
  6468. [
  6469. {
  6470. name: "Normal",
  6471. height: math.unit(3.75, "meters"),
  6472. default: true
  6473. },
  6474. {
  6475. name: "Big",
  6476. height: math.unit(8, "meters")
  6477. },
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(100, "meters")
  6481. },
  6482. {
  6483. name: "Macro+",
  6484. height: math.unit(1500, "meters")
  6485. },
  6486. {
  6487. name: "Stellar",
  6488. height: math.unit(14e8, "meters")
  6489. },
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6494. {
  6495. front: {
  6496. height: math.unit(2, "meters"),
  6497. weight: math.unit(70, "kg"),
  6498. name: "Front",
  6499. image: {
  6500. source: "./media/characters/beherit/front.svg",
  6501. extra: 1408 / 1242
  6502. }
  6503. }
  6504. },
  6505. [
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(6, "feet")
  6509. },
  6510. {
  6511. name: "Lorg",
  6512. height: math.unit(25, "feet"),
  6513. default: true
  6514. },
  6515. {
  6516. name: "Lorger",
  6517. height: math.unit(75, "feet")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(200, "meters")
  6522. },
  6523. ]
  6524. ))
  6525. characterMakers.push(() => makeCharacter(
  6526. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6527. {
  6528. front: {
  6529. height: math.unit(2, "meters"),
  6530. weight: math.unit(150, "kg"),
  6531. name: "Front",
  6532. image: {
  6533. source: "./media/characters/everett/front.svg",
  6534. extra: 2038 / 1737,
  6535. bottom: 0.03
  6536. }
  6537. },
  6538. paw: {
  6539. height: math.unit(2 / 3.6, "meters"),
  6540. name: "Paw",
  6541. image: {
  6542. source: "./media/characters/everett/paw.svg"
  6543. }
  6544. },
  6545. },
  6546. [
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(15, "feet"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Lorg",
  6554. height: math.unit(70, "feet"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Lorger",
  6559. height: math.unit(250, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(500, "meters")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(2, "meters"),
  6572. weight: math.unit(86, "kg"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/rose/front.svg",
  6576. extra: 1785/1636,
  6577. bottom: 30/1815
  6578. }
  6579. },
  6580. frontSporty: {
  6581. height: math.unit(2, "meters"),
  6582. weight: math.unit(86, "kg"),
  6583. name: "Front (Sporty)",
  6584. image: {
  6585. source: "./media/characters/rose/front-sporty.svg",
  6586. extra: 350/335,
  6587. bottom: 10/360
  6588. }
  6589. },
  6590. frontAlt: {
  6591. height: math.unit(1.6, "meters"),
  6592. weight: math.unit(86, "kg"),
  6593. name: "Front (Alt)",
  6594. image: {
  6595. source: "./media/characters/rose/front-alt.svg",
  6596. extra: 299/283,
  6597. bottom: 3/302
  6598. }
  6599. },
  6600. plush: {
  6601. height: math.unit(2, "meters"),
  6602. weight: math.unit(86/3, "kg"),
  6603. name: "Plush",
  6604. image: {
  6605. source: "./media/characters/rose/plush.svg",
  6606. extra: 361/337,
  6607. bottom: 11/372
  6608. }
  6609. },
  6610. },
  6611. [
  6612. {
  6613. name: "True Micro",
  6614. height: math.unit(9, "cm")
  6615. },
  6616. {
  6617. name: "Micro",
  6618. height: math.unit(16, "cm")
  6619. },
  6620. {
  6621. name: "Normal",
  6622. height: math.unit(1.85, "meters"),
  6623. default: true
  6624. },
  6625. {
  6626. name: "Mini-Macro",
  6627. height: math.unit(5, "meters")
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(15, "meters")
  6632. },
  6633. {
  6634. name: "True Macro",
  6635. height: math.unit(40, "meters")
  6636. },
  6637. {
  6638. name: "City Scale",
  6639. height: math.unit(1, "km")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(2, "meters"),
  6648. weight: math.unit(350, "lbs"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/regal/front.svg"
  6652. }
  6653. },
  6654. back: {
  6655. height: math.unit(2, "meters"),
  6656. weight: math.unit(350, "lbs"),
  6657. name: "Back",
  6658. image: {
  6659. source: "./media/characters/regal/back.svg"
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(350, "feet"),
  6667. default: true
  6668. }
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(4 + 11 / 12, "feet"),
  6676. weight: math.unit(100, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/opal/front.svg"
  6680. }
  6681. },
  6682. frontAlt: {
  6683. height: math.unit(4 + 11 / 12, "feet"),
  6684. weight: math.unit(100, "lbs"),
  6685. name: "Front (Alt)",
  6686. image: {
  6687. source: "./media/characters/opal/front-alt.svg"
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Small",
  6694. height: math.unit(4 + 11 / 12, "feet")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(20, "feet"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(120, "feet")
  6704. },
  6705. {
  6706. name: "Megamacro",
  6707. height: math.unit(80, "miles")
  6708. },
  6709. {
  6710. name: "True Size",
  6711. height: math.unit(100000, "lightyears")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(200, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/vector-wuff/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(2.8, "meters")
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(450, "meters"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Megamacro",
  6739. height: math.unit(15, "kilometers")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(256, "lbs"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/dannik/front.svg"
  6752. }
  6753. }
  6754. },
  6755. [
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(69.57, "meters"),
  6759. default: true
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(120, "lbs"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/azura-saharah/front.svg"
  6772. }
  6773. },
  6774. back: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(120, "lbs"),
  6777. name: "Back",
  6778. image: {
  6779. source: "./media/characters/azura-saharah/back.svg"
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(100, "feet"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6793. {
  6794. side: {
  6795. height: math.unit(5 + 4 / 12, "feet"),
  6796. weight: math.unit(163, "lbs"),
  6797. name: "Side",
  6798. image: {
  6799. source: "./media/characters/kennedy/side.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Standard Doggo",
  6806. height: math.unit(5 + 4 / 12, "feet")
  6807. },
  6808. {
  6809. name: "Big Doggo",
  6810. height: math.unit(25 + 3 / 12, "feet"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(6, "feet"),
  6820. weight: math.unit(90, "lbs"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/odi-lunar/front.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Micro",
  6830. height: math.unit(3, "inches"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(5.5, "feet")
  6836. }
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6841. {
  6842. back: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(220, "lbs"),
  6845. name: "Back",
  6846. image: {
  6847. source: "./media/characters/mandake/back.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(7, "feet"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(78, "feet")
  6860. },
  6861. {
  6862. name: "Macro+",
  6863. height: math.unit(300, "meters")
  6864. },
  6865. {
  6866. name: "Macro++",
  6867. height: math.unit(2400, "feet")
  6868. },
  6869. {
  6870. name: "Megamacro",
  6871. height: math.unit(5167, "meters")
  6872. },
  6873. {
  6874. name: "Gigamacro",
  6875. height: math.unit(41769, "miles")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(120, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/yozey/front.svg"
  6888. }
  6889. },
  6890. frontAlt: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(120, "lbs"),
  6893. name: "Front (Alt)",
  6894. image: {
  6895. source: "./media/characters/yozey/front-alt.svg"
  6896. }
  6897. },
  6898. side: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(120, "lbs"),
  6901. name: "Side",
  6902. image: {
  6903. source: "./media/characters/yozey/side.svg"
  6904. }
  6905. },
  6906. },
  6907. [
  6908. {
  6909. name: "Micro",
  6910. height: math.unit(3, "inches"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(6, "feet")
  6916. }
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(103, "lbs"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/valeska-voss/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Mini-Sized Sub",
  6934. height: math.unit(3.1, "inches")
  6935. },
  6936. {
  6937. name: "Mid-Sized Sub",
  6938. height: math.unit(6.2, "inches")
  6939. },
  6940. {
  6941. name: "Full-Sized Sub",
  6942. height: math.unit(9.3, "inches")
  6943. },
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(5 + 2 / 12, "foot"),
  6947. default: true
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(160, "lbs"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/gene-zeta/front.svg",
  6960. extra: 3006 / 2826,
  6961. bottom: 182 / 3188
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Micro",
  6968. height: math.unit(6, "inches")
  6969. },
  6970. {
  6971. name: "Normal",
  6972. height: math.unit(5 + 11 / 12, "foot"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(140, "feet")
  6978. },
  6979. {
  6980. name: "Supercharged",
  6981. height: math.unit(2500, "feet")
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(350, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/razinox/front.svg",
  6994. extra: 1686 / 1548,
  6995. bottom: 28.2 / 1868
  6996. }
  6997. },
  6998. back: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(350, "lbs"),
  7001. name: "Back",
  7002. image: {
  7003. source: "./media/characters/razinox/back.svg",
  7004. extra: 1660 / 1590,
  7005. bottom: 15 / 1665
  7006. }
  7007. },
  7008. },
  7009. [
  7010. {
  7011. name: "Normal",
  7012. height: math.unit(10 + 8 / 12, "foot")
  7013. },
  7014. {
  7015. name: "Minimacro",
  7016. height: math.unit(15, "foot")
  7017. },
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(60, "foot"),
  7021. default: true
  7022. },
  7023. {
  7024. name: "Megamacro",
  7025. height: math.unit(5, "miles")
  7026. },
  7027. {
  7028. name: "Gigamacro",
  7029. height: math.unit(6000, "miles")
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7035. {
  7036. front: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(150, "lbs"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/cobalt/front.svg"
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(8 + 1 / 12, "foot")
  7049. },
  7050. {
  7051. name: "Macro",
  7052. height: math.unit(111, "foot"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Supracosmic",
  7057. height: math.unit(1e42, "feet")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(140, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/amanda/front.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Micro",
  7076. height: math.unit(5, "inches"),
  7077. default: true
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(2.75, "meters"),
  7086. weight: math.unit(1200, "lb"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/teal/front.svg",
  7090. extra: 2463 / 2320,
  7091. bottom: 166 / 2629
  7092. }
  7093. },
  7094. back: {
  7095. height: math.unit(2.75, "meters"),
  7096. weight: math.unit(1200, "lb"),
  7097. name: "Back",
  7098. image: {
  7099. source: "./media/characters/teal/back.svg",
  7100. extra: 2580 / 2489,
  7101. bottom: 151 / 2731
  7102. }
  7103. },
  7104. sitting: {
  7105. height: math.unit(1.9, "meters"),
  7106. weight: math.unit(1200, "lb"),
  7107. name: "Sitting",
  7108. image: {
  7109. source: "./media/characters/teal/sitting.svg",
  7110. extra: 623 / 590,
  7111. bottom: 121 / 744
  7112. }
  7113. },
  7114. standing: {
  7115. height: math.unit(2.75, "meters"),
  7116. weight: math.unit(1200, "lb"),
  7117. name: "Standing",
  7118. image: {
  7119. source: "./media/characters/teal/standing.svg",
  7120. extra: 923 / 893,
  7121. bottom: 60 / 983
  7122. }
  7123. },
  7124. stretching: {
  7125. height: math.unit(3.65, "meters"),
  7126. weight: math.unit(1200, "lb"),
  7127. name: "Stretching",
  7128. image: {
  7129. source: "./media/characters/teal/stretching.svg",
  7130. extra: 1276 / 1244,
  7131. bottom: 0 / 1276
  7132. }
  7133. },
  7134. legged: {
  7135. height: math.unit(1.3, "meters"),
  7136. weight: math.unit(100, "lb"),
  7137. name: "Legged",
  7138. image: {
  7139. source: "./media/characters/teal/legged.svg",
  7140. extra: 462 / 437,
  7141. bottom: 24 / 486
  7142. }
  7143. },
  7144. naga: {
  7145. height: math.unit(5.4, "meters"),
  7146. weight: math.unit(4000, "lb"),
  7147. name: "Naga",
  7148. image: {
  7149. source: "./media/characters/teal/naga.svg",
  7150. extra: 1902 / 1858,
  7151. bottom: 0 / 1902
  7152. }
  7153. },
  7154. hand: {
  7155. height: math.unit(0.52, "meters"),
  7156. name: "Hand",
  7157. image: {
  7158. source: "./media/characters/teal/hand.svg"
  7159. }
  7160. },
  7161. maw: {
  7162. height: math.unit(0.43, "meters"),
  7163. name: "Maw",
  7164. image: {
  7165. source: "./media/characters/teal/maw.svg"
  7166. }
  7167. },
  7168. slit: {
  7169. height: math.unit(0.25, "meters"),
  7170. name: "Slit",
  7171. image: {
  7172. source: "./media/characters/teal/slit.svg"
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(2.75, "meters"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(300, "feet")
  7185. },
  7186. {
  7187. name: "Macro+",
  7188. height: math.unit(2000, "feet")
  7189. },
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7194. {
  7195. frontCat: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(180, "lbs"),
  7198. name: "Front (Cat)",
  7199. image: {
  7200. source: "./media/characters/ravin-amulet/front-cat.svg"
  7201. }
  7202. },
  7203. frontCatAlt: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(180, "lbs"),
  7206. name: "Front (Alt, Cat)",
  7207. image: {
  7208. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7209. }
  7210. },
  7211. frontWerewolf: {
  7212. height: math.unit(6 * 1.2, "feet"),
  7213. weight: math.unit(225, "lbs"),
  7214. name: "Front (Werewolf)",
  7215. image: {
  7216. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7217. }
  7218. },
  7219. backWerewolf: {
  7220. height: math.unit(6 * 1.2, "feet"),
  7221. weight: math.unit(225, "lbs"),
  7222. name: "Back (Werewolf)",
  7223. image: {
  7224. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Nano",
  7231. height: math.unit(1, "micrometer")
  7232. },
  7233. {
  7234. name: "Micro",
  7235. height: math.unit(1, "inch")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(6, "feet"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(60, "feet")
  7245. }
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(6, "feet"),
  7253. weight: math.unit(165, "lbs"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/fluoresce/front.svg"
  7257. }
  7258. }
  7259. },
  7260. [
  7261. {
  7262. name: "Micro",
  7263. height: math.unit(6, "cm")
  7264. },
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(5 + 7 / 12, "feet"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(56, "feet")
  7273. },
  7274. {
  7275. name: "Megamacro",
  7276. height: math.unit(1.9, "miles")
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(9 + 6 / 12, "feet"),
  7285. weight: math.unit(523, "lbs"),
  7286. name: "Side",
  7287. image: {
  7288. source: "./media/characters/aurora/side.svg"
  7289. }
  7290. }
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(9 + 6 / 12, "feet")
  7296. },
  7297. {
  7298. name: "Macro",
  7299. height: math.unit(96, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Macro+",
  7304. height: math.unit(243, "feet")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(194, "cm"),
  7313. weight: math.unit(90, "kg"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/ranek/front.svg"
  7317. }
  7318. },
  7319. side: {
  7320. height: math.unit(194, "cm"),
  7321. weight: math.unit(90, "kg"),
  7322. name: "Side",
  7323. image: {
  7324. source: "./media/characters/ranek/side.svg"
  7325. }
  7326. },
  7327. back: {
  7328. height: math.unit(194, "cm"),
  7329. weight: math.unit(90, "kg"),
  7330. name: "Back",
  7331. image: {
  7332. source: "./media/characters/ranek/back.svg"
  7333. }
  7334. },
  7335. feral: {
  7336. height: math.unit(30, "cm"),
  7337. weight: math.unit(1.6, "lbs"),
  7338. name: "Feral",
  7339. image: {
  7340. source: "./media/characters/ranek/feral.svg"
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(194, "cm"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(100, "meters")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(5 + 6 / 12, "feet"),
  7361. weight: math.unit(153, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/andrew-cooper/front.svg"
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Nano",
  7371. height: math.unit(1, "mm")
  7372. },
  7373. {
  7374. name: "Micro",
  7375. height: math.unit(2, "inches")
  7376. },
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(5 + 6 / 12, "feet"),
  7380. default: true
  7381. }
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(6, "feet"),
  7389. weight: math.unit(180, "lbs"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/akane-sato/front.svg",
  7393. extra: 1219 / 1140
  7394. }
  7395. },
  7396. back: {
  7397. height: math.unit(6, "feet"),
  7398. weight: math.unit(180, "lbs"),
  7399. name: "Back",
  7400. image: {
  7401. source: "./media/characters/akane-sato/back.svg",
  7402. extra: 1219 / 1170
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(2.5, "meters")
  7410. },
  7411. {
  7412. name: "Macro",
  7413. height: math.unit(250, "meters"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Megamacro",
  7418. height: math.unit(25, "km")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(65, "kg"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/rook/front.svg",
  7431. extra: 960 / 950
  7432. }
  7433. }
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(8.8, "feet")
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(88, "feet"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Megamacro",
  7447. height: math.unit(8, "miles")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(12 + 2 / 12, "feet"),
  7456. weight: math.unit(808, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/prodigy/front.svg"
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(12 + 2 / 12, "feet"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro",
  7471. height: math.unit(143, "feet")
  7472. },
  7473. {
  7474. name: "Macro+",
  7475. height: math.unit(400, "feet")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(225, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/daniel/front.svg"
  7488. }
  7489. },
  7490. leaning: {
  7491. height: math.unit(6, "feet"),
  7492. weight: math.unit(225, "lbs"),
  7493. name: "Leaning",
  7494. image: {
  7495. source: "./media/characters/daniel/leaning.svg"
  7496. }
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(1000, "feet"),
  7503. default: true
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(6, "feet"),
  7512. weight: math.unit(88, "lbs"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/chiros/front.svg",
  7516. extra: 306 / 226
  7517. }
  7518. },
  7519. side: {
  7520. height: math.unit(6, "feet"),
  7521. weight: math.unit(88, "lbs"),
  7522. name: "Side",
  7523. image: {
  7524. source: "./media/characters/chiros/side.svg",
  7525. extra: 306 / 226
  7526. }
  7527. },
  7528. },
  7529. [
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(6, "cm"),
  7533. default: true
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(100, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/selka/front.svg",
  7546. extra: 947 / 887
  7547. }
  7548. }
  7549. },
  7550. [
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(5, "cm"),
  7554. default: true
  7555. },
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7560. {
  7561. front: {
  7562. height: math.unit(8 + 3 / 12, "feet"),
  7563. weight: math.unit(424, "lbs"),
  7564. name: "Front",
  7565. image: {
  7566. source: "./media/characters/verin/front.svg",
  7567. extra: 1845 / 1550
  7568. }
  7569. },
  7570. frontArmored: {
  7571. height: math.unit(8 + 3 / 12, "feet"),
  7572. weight: math.unit(424, "lbs"),
  7573. name: "Front (Armored)",
  7574. image: {
  7575. source: "./media/characters/verin/front-armor.svg",
  7576. extra: 1845 / 1550,
  7577. bottom: 0.01
  7578. }
  7579. },
  7580. back: {
  7581. height: math.unit(8 + 3 / 12, "feet"),
  7582. weight: math.unit(424, "lbs"),
  7583. name: "Back",
  7584. image: {
  7585. source: "./media/characters/verin/back.svg",
  7586. bottom: 0.1,
  7587. extra: 1
  7588. }
  7589. },
  7590. foot: {
  7591. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7592. name: "Foot",
  7593. image: {
  7594. source: "./media/characters/verin/foot.svg"
  7595. }
  7596. },
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(8 + 3 / 12, "feet")
  7602. },
  7603. {
  7604. name: "Minimacro",
  7605. height: math.unit(21, "feet"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(626, "feet")
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(2.718, "meters"),
  7619. weight: math.unit(150, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/sovrim-terraquian/front.svg"
  7623. }
  7624. },
  7625. back: {
  7626. height: math.unit(2.718, "meters"),
  7627. weight: math.unit(150, "lbs"),
  7628. name: "Back",
  7629. image: {
  7630. source: "./media/characters/sovrim-terraquian/back.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(2, "inches")
  7638. },
  7639. {
  7640. name: "Small",
  7641. height: math.unit(1, "meter")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(Math.E, "meters"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(20, "meters")
  7651. },
  7652. {
  7653. name: "Macro+",
  7654. height: math.unit(400, "meters")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(7, "feet"),
  7663. weight: math.unit(489, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/reece-silvermane/front.svg",
  7667. bottom: 0.02,
  7668. extra: 1
  7669. }
  7670. },
  7671. },
  7672. [
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(1.5, "miles"),
  7676. default: true
  7677. },
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7682. {
  7683. front: {
  7684. height: math.unit(6, "feet"),
  7685. weight: math.unit(78, "kg"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/kane/front.svg",
  7689. extra: 978 / 899
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(2.1, "m"),
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(1, "km"),
  7701. default: true
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(200, "kg"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/tegon/front.svg",
  7714. bottom: 0.01,
  7715. extra: 1
  7716. }
  7717. },
  7718. },
  7719. [
  7720. {
  7721. name: "Micro",
  7722. height: math.unit(1, "inch")
  7723. },
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(6 + 3 / 12, "feet"),
  7727. default: true
  7728. },
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(300, "feet")
  7732. },
  7733. {
  7734. name: "Megamacro",
  7735. height: math.unit(69, "miles")
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7741. {
  7742. side: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(2304, "lbs"),
  7745. name: "Side",
  7746. image: {
  7747. source: "./media/characters/arcturax/side.svg",
  7748. extra: 790 / 376,
  7749. bottom: 0.01
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Micro",
  7756. height: math.unit(2, "inch")
  7757. },
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(6, "feet")
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(39, "feet"),
  7765. default: true
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(7, "miles")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(6, "feet"),
  7778. weight: math.unit(50, "lbs"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/sentri/front.svg",
  7782. extra: 1750 / 1570,
  7783. bottom: 0.025
  7784. }
  7785. },
  7786. frontAlt: {
  7787. height: math.unit(6, "feet"),
  7788. weight: math.unit(50, "lbs"),
  7789. name: "Front (Alt)",
  7790. image: {
  7791. source: "./media/characters/sentri/front-alt.svg",
  7792. extra: 1750 / 1570,
  7793. bottom: 0.025
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(15, "feet"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(2500, "feet")
  7806. }
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(5 + 8 / 12, "feet"),
  7814. weight: math.unit(130, "lbs"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/corvin/front.svg",
  7818. extra: 1803 / 1629
  7819. }
  7820. },
  7821. frontShirt: {
  7822. height: math.unit(5 + 8 / 12, "feet"),
  7823. weight: math.unit(130, "lbs"),
  7824. name: "Front (Shirt)",
  7825. image: {
  7826. source: "./media/characters/corvin/front-shirt.svg",
  7827. extra: 1803 / 1629
  7828. }
  7829. },
  7830. frontPoncho: {
  7831. height: math.unit(5 + 8 / 12, "feet"),
  7832. weight: math.unit(130, "lbs"),
  7833. name: "Front (Poncho)",
  7834. image: {
  7835. source: "./media/characters/corvin/front-poncho.svg",
  7836. extra: 1803 / 1629
  7837. }
  7838. },
  7839. side: {
  7840. height: math.unit(5 + 8 / 12, "feet"),
  7841. weight: math.unit(130, "lbs"),
  7842. name: "Side",
  7843. image: {
  7844. source: "./media/characters/corvin/side.svg",
  7845. extra: 1012 / 945
  7846. }
  7847. },
  7848. back: {
  7849. height: math.unit(5 + 8 / 12, "feet"),
  7850. weight: math.unit(130, "lbs"),
  7851. name: "Back",
  7852. image: {
  7853. source: "./media/characters/corvin/back.svg",
  7854. extra: 1803 / 1629
  7855. }
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "Micro",
  7861. height: math.unit(3, "inches")
  7862. },
  7863. {
  7864. name: "Normal",
  7865. height: math.unit(5 + 8 / 12, "feet")
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(300, "feet"),
  7870. default: true
  7871. },
  7872. {
  7873. name: "Megamacro",
  7874. height: math.unit(500, "miles")
  7875. }
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7880. {
  7881. front: {
  7882. height: math.unit(6, "feet"),
  7883. weight: math.unit(135, "lbs"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/q/front.svg",
  7887. extra: 854 / 752,
  7888. bottom: 0.005
  7889. }
  7890. },
  7891. back: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(130, "lbs"),
  7894. name: "Back",
  7895. image: {
  7896. source: "./media/characters/q/back.svg",
  7897. extra: 854 / 752
  7898. }
  7899. },
  7900. },
  7901. [
  7902. {
  7903. name: "Macro",
  7904. height: math.unit(90, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Extra Macro",
  7909. height: math.unit(300, "feet"),
  7910. },
  7911. {
  7912. name: "BIG WALF",
  7913. height: math.unit(750, "feet"),
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(150, "lbs"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/carley/front.svg",
  7926. extra: 3927 / 3540,
  7927. bottom: 29.2 / 735
  7928. }
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(6 + 3 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(185, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Megamacro",
  7943. height: math.unit(8, "miles"),
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(3, "feet"),
  7952. weight: math.unit(28, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/citrine/front.svg"
  7956. }
  7957. }
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(3, "feet"),
  7963. default: true
  7964. }
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7969. {
  7970. front: {
  7971. height: math.unit(14, "feet"),
  7972. weight: math.unit(1450, "kg"),
  7973. capacity: math.unit(15, "people"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/aura-starwind/front.svg",
  7977. extra: 1455 / 1335
  7978. }
  7979. },
  7980. side: {
  7981. height: math.unit(14, "feet"),
  7982. weight: math.unit(1450, "kg"),
  7983. capacity: math.unit(15, "people"),
  7984. name: "Side",
  7985. image: {
  7986. source: "./media/characters/aura-starwind/side.svg",
  7987. extra: 1654 / 1497
  7988. }
  7989. },
  7990. taur: {
  7991. height: math.unit(18, "feet"),
  7992. weight: math.unit(5500, "kg"),
  7993. capacity: math.unit(50, "people"),
  7994. name: "Taur",
  7995. image: {
  7996. source: "./media/characters/aura-starwind/taur.svg",
  7997. extra: 1760 / 1650
  7998. }
  7999. },
  8000. feral: {
  8001. height: math.unit(46, "feet"),
  8002. weight: math.unit(25000, "kg"),
  8003. capacity: math.unit(120, "people"),
  8004. name: "Feral",
  8005. image: {
  8006. source: "./media/characters/aura-starwind/feral.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(14, "feet"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(50, "meters")
  8019. },
  8020. {
  8021. name: "Megamacro",
  8022. height: math.unit(5000, "meters")
  8023. },
  8024. {
  8025. name: "Gigamacro",
  8026. height: math.unit(100000, "kilometers")
  8027. },
  8028. ]
  8029. ))
  8030. characterMakers.push(() => makeCharacter(
  8031. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8032. {
  8033. front: {
  8034. height: math.unit(2 + 7 / 12, "feet"),
  8035. weight: math.unit(32, "lbs"),
  8036. name: "Front",
  8037. image: {
  8038. source: "./media/characters/rivet/front.svg",
  8039. extra: 1716 / 1658,
  8040. bottom: 0.03
  8041. }
  8042. },
  8043. foot: {
  8044. height: math.unit(0.551, "feet"),
  8045. name: "Rivet's Foot",
  8046. image: {
  8047. source: "./media/characters/rivet/foot.svg"
  8048. },
  8049. rename: true
  8050. }
  8051. },
  8052. [
  8053. {
  8054. name: "Micro",
  8055. height: math.unit(1.5, "inches"),
  8056. },
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(2 + 7 / 12, "feet"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(85, "feet")
  8065. },
  8066. {
  8067. name: "Megamacro",
  8068. height: math.unit(2.2, "km")
  8069. }
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(5 + 9 / 12, "feet"),
  8077. weight: math.unit(150, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/coffee/front.svg",
  8081. extra: 3666 / 3032,
  8082. bottom: 0.04
  8083. }
  8084. },
  8085. foot: {
  8086. height: math.unit(1.29, "feet"),
  8087. name: "Foot",
  8088. image: {
  8089. source: "./media/characters/coffee/foot.svg"
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Micro",
  8096. height: math.unit(2, "inches"),
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(5 + 9 / 12, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(800, "feet")
  8106. },
  8107. {
  8108. name: "Megamacro",
  8109. height: math.unit(25, "miles")
  8110. }
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(200, "lbs"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/chari-gal/front.svg",
  8122. extra: 1568 / 1385,
  8123. bottom: 0.047
  8124. }
  8125. },
  8126. gigantamax: {
  8127. height: math.unit(6 * 16, "feet"),
  8128. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8129. name: "Gigantamax",
  8130. image: {
  8131. source: "./media/characters/chari-gal/gigantamax.svg",
  8132. extra: 1124 / 888,
  8133. bottom: 0.03
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(5 + 7 / 12, "feet")
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(200, "feet"),
  8145. default: true
  8146. }
  8147. ]
  8148. ))
  8149. characterMakers.push(() => makeCharacter(
  8150. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8151. {
  8152. front: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(150, "lbs"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/nova/front.svg",
  8158. extra: 5000 / 4722,
  8159. bottom: 0.02
  8160. }
  8161. }
  8162. },
  8163. [
  8164. {
  8165. name: "Micro-",
  8166. height: math.unit(0.8, "inches")
  8167. },
  8168. {
  8169. name: "Micro",
  8170. height: math.unit(2, "inches"),
  8171. default: true
  8172. },
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(3 + 1 / 12, "feet"),
  8180. weight: math.unit(21.7, "lbs"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/argent/front.svg",
  8184. extra: 1471 / 1331,
  8185. bottom: 100.8 / 1575.5
  8186. }
  8187. }
  8188. },
  8189. [
  8190. {
  8191. name: "Micro",
  8192. height: math.unit(2, "inches")
  8193. },
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(3 + 1 / 12, "feet"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(120, "feet")
  8202. },
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8207. {
  8208. lamp: {
  8209. height: math.unit(7 * 1559 / 989, "feet"),
  8210. name: "Magic Lamp",
  8211. image: {
  8212. source: "./media/characters/mira-al-cul/lamp.svg",
  8213. extra: 1617 / 1559
  8214. }
  8215. },
  8216. front: {
  8217. height: math.unit(7, "feet"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/mira-al-cul/front.svg",
  8221. extra: 1044 / 990
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Heavily Restricted",
  8228. height: math.unit(7 * 1559 / 989, "feet")
  8229. },
  8230. {
  8231. name: "Freshly Freed",
  8232. height: math.unit(50 * 1559 / 989, "feet")
  8233. },
  8234. {
  8235. name: "World Encompassing",
  8236. height: math.unit(10000 * 1559 / 989, "miles")
  8237. },
  8238. {
  8239. name: "Galactic",
  8240. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8241. },
  8242. {
  8243. name: "Palmed Universe",
  8244. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8245. default: true
  8246. },
  8247. {
  8248. name: "Multiversal Matriarch",
  8249. height: math.unit(8.87e10, "yottameters")
  8250. },
  8251. {
  8252. name: "Void Mother",
  8253. height: math.unit(3.14e110, "yottaparsecs")
  8254. },
  8255. {
  8256. name: "Toying with Transcendence",
  8257. height: math.unit(1e307, "meters")
  8258. },
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8263. {
  8264. front: {
  8265. height: math.unit(17 + 1 / 12, "feet"),
  8266. weight: math.unit(476.2 * 5, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/kuro-shi-uchū/front.svg",
  8270. extra: 2329 / 1835,
  8271. bottom: 0.02
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Micro",
  8278. height: math.unit(2, "inches")
  8279. },
  8280. {
  8281. name: "Normal",
  8282. height: math.unit(12, "meters")
  8283. },
  8284. {
  8285. name: "Planetary",
  8286. height: math.unit(0.00929, "AU"),
  8287. default: true
  8288. },
  8289. {
  8290. name: "Universal",
  8291. height: math.unit(20, "gigaparsecs")
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(5 + 2 / 12, "feet"),
  8300. weight: math.unit(120, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/katherine/front.svg",
  8304. extra: 2075 / 1969
  8305. }
  8306. },
  8307. dress: {
  8308. height: math.unit(5 + 2 / 12, "feet"),
  8309. weight: math.unit(120, "lbs"),
  8310. name: "Dress",
  8311. image: {
  8312. source: "./media/characters/katherine/dress.svg",
  8313. extra: 2258 / 2064
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(1, "inches"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Normal",
  8325. height: math.unit(5 + 2 / 12, "feet")
  8326. },
  8327. {
  8328. name: "Macro",
  8329. height: math.unit(100, "meters")
  8330. },
  8331. {
  8332. name: "Megamacro",
  8333. height: math.unit(80, "miles")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(7 + 8 / 12, "feet"),
  8342. weight: math.unit(250, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/yevis/front.svg",
  8346. extra: 1938 / 1755
  8347. }
  8348. }
  8349. },
  8350. [
  8351. {
  8352. name: "Mortal",
  8353. height: math.unit(7 + 8 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Battle",
  8357. height: math.unit(25 + 11 / 12, "feet")
  8358. },
  8359. {
  8360. name: "Wrath",
  8361. height: math.unit(1654 + 11 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Planet Destroyer",
  8365. height: math.unit(12000, "miles")
  8366. },
  8367. {
  8368. name: "Galaxy Conqueror",
  8369. height: math.unit(1.45, "zettameters"),
  8370. default: true
  8371. },
  8372. {
  8373. name: "Universal War",
  8374. height: math.unit(184, "gigaparsecs")
  8375. },
  8376. {
  8377. name: "Eternity War",
  8378. height: math.unit(1.98e55, "yottaparsecs")
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(5 + 8 / 12, "feet"),
  8387. weight: math.unit(63, "kg"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/xavier/front.svg",
  8391. extra: 944 / 883
  8392. }
  8393. },
  8394. frontStretch: {
  8395. height: math.unit(5 + 8 / 12, "feet"),
  8396. weight: math.unit(63, "kg"),
  8397. name: "Stretching",
  8398. image: {
  8399. source: "./media/characters/xavier/front-stretch.svg",
  8400. extra: 962 / 820
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(5 + 8 / 12, "feet")
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(100, "meters"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "McLargeHuge",
  8416. height: math.unit(10, "miles")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(5 + 5 / 12, "feet"),
  8425. weight: math.unit(150, "lb"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/joshii/front.svg",
  8429. extra: 765 / 653,
  8430. bottom: 51 / 816
  8431. }
  8432. },
  8433. foot: {
  8434. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8435. name: "Foot",
  8436. image: {
  8437. source: "./media/characters/joshii/foot.svg"
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Micro",
  8444. height: math.unit(2, "inches"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(5 + 5 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(785, "feet")
  8454. },
  8455. {
  8456. name: "Megamacro",
  8457. height: math.unit(24.5, "miles")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8463. {
  8464. front: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(150, "lb"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/goddess-elizabeth/front.svg",
  8470. extra: 1800 / 1525,
  8471. bottom: 0.005
  8472. }
  8473. },
  8474. foot: {
  8475. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8476. name: "Foot",
  8477. image: {
  8478. source: "./media/characters/goddess-elizabeth/foot.svg"
  8479. }
  8480. },
  8481. mouth: {
  8482. height: math.unit(6, "feet"),
  8483. name: "Mouth",
  8484. image: {
  8485. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8486. }
  8487. },
  8488. },
  8489. [
  8490. {
  8491. name: "Micro",
  8492. height: math.unit(12, "feet")
  8493. },
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(80, "miles"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(15000, "parsecs")
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(5 + 9 / 12, "feet"),
  8510. weight: math.unit(144, "lb"),
  8511. name: "Front",
  8512. image: {
  8513. source: "./media/characters/kara/front.svg"
  8514. }
  8515. },
  8516. feet: {
  8517. height: math.unit(6 / 6.765, "feet"),
  8518. name: "Kara's Feet",
  8519. rename: true,
  8520. image: {
  8521. source: "./media/characters/kara/feet.svg"
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5 + 9 / 12, "feet")
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(174, "feet"),
  8533. default: true
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(18, "feet"),
  8542. weight: math.unit(4050, "lb"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/tyrone/front.svg",
  8546. extra: 2405 / 2270,
  8547. bottom: 182 / 2587
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(18, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(300, "feet")
  8560. },
  8561. {
  8562. name: "Megamacro",
  8563. height: math.unit(15, "km")
  8564. },
  8565. {
  8566. name: "Gigamacro",
  8567. height: math.unit(500, "km")
  8568. },
  8569. {
  8570. name: "Teramacro",
  8571. height: math.unit(0.5, "gigameters")
  8572. },
  8573. {
  8574. name: "Omnimacro",
  8575. height: math.unit(1e252, "yottauniverse")
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8581. {
  8582. front: {
  8583. height: math.unit(7 + 8 / 12, "feet"),
  8584. weight: math.unit(120, "lb"),
  8585. name: "Front",
  8586. image: {
  8587. source: "./media/characters/danny/front.svg",
  8588. extra: 1490 / 1350
  8589. }
  8590. },
  8591. back: {
  8592. height: math.unit(7 + 8 / 12, "feet"),
  8593. weight: math.unit(120, "lb"),
  8594. name: "Back",
  8595. image: {
  8596. source: "./media/characters/danny/back.svg",
  8597. extra: 1490 / 1350
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(7 + 8 / 12, "feet"),
  8605. default: true
  8606. },
  8607. ]
  8608. ))
  8609. characterMakers.push(() => makeCharacter(
  8610. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8611. {
  8612. front: {
  8613. height: math.unit(3.5, "inches"),
  8614. weight: math.unit(19, "grams"),
  8615. name: "Front",
  8616. image: {
  8617. source: "./media/characters/mallow/front.svg",
  8618. extra: 471 / 431
  8619. }
  8620. },
  8621. back: {
  8622. height: math.unit(3.5, "inches"),
  8623. weight: math.unit(19, "grams"),
  8624. name: "Back",
  8625. image: {
  8626. source: "./media/characters/mallow/back.svg",
  8627. extra: 471 / 431
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(3.5, "inches"),
  8635. default: true
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(9, "feet"),
  8644. weight: math.unit(230, "kg"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/starry-aqua/front.svg"
  8648. }
  8649. },
  8650. back: {
  8651. height: math.unit(9, "feet"),
  8652. weight: math.unit(230, "kg"),
  8653. name: "Back",
  8654. image: {
  8655. source: "./media/characters/starry-aqua/back.svg"
  8656. }
  8657. },
  8658. hand: {
  8659. height: math.unit(9 * 0.1168, "feet"),
  8660. name: "Hand",
  8661. image: {
  8662. source: "./media/characters/starry-aqua/hand.svg"
  8663. }
  8664. },
  8665. foot: {
  8666. height: math.unit(9 * 0.18, "feet"),
  8667. name: "Foot",
  8668. image: {
  8669. source: "./media/characters/starry-aqua/foot.svg"
  8670. }
  8671. }
  8672. },
  8673. [
  8674. {
  8675. name: "Micro",
  8676. height: math.unit(3, "inches")
  8677. },
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(9, "feet")
  8681. },
  8682. {
  8683. name: "Macro",
  8684. height: math.unit(300, "feet"),
  8685. default: true
  8686. },
  8687. {
  8688. name: "Megamacro",
  8689. height: math.unit(3200, "feet")
  8690. }
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(230, "lb"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/luka/front.svg",
  8702. extra: 1,
  8703. bottom: 0.025
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(12 + 8 / 12, "feet"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Minimacro",
  8715. height: math.unit(20, "feet")
  8716. },
  8717. {
  8718. name: "Macro",
  8719. height: math.unit(250, "feet")
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(5, "miles")
  8724. },
  8725. {
  8726. name: "Gigamacro",
  8727. height: math.unit(8000, "miles")
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(150, "lb"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/natalie-nightring/front.svg",
  8740. extra: 1,
  8741. bottom: 0.06
  8742. }
  8743. },
  8744. },
  8745. [
  8746. {
  8747. name: "Uh Oh",
  8748. height: math.unit(0.1, "mm")
  8749. },
  8750. {
  8751. name: "Small",
  8752. height: math.unit(3, "inches")
  8753. },
  8754. {
  8755. name: "Human Scale",
  8756. height: math.unit(6, "feet")
  8757. },
  8758. {
  8759. name: "Librarian",
  8760. height: math.unit(50, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Immense",
  8765. height: math.unit(200, "miles")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(180, "lbs"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/danni-rosie/front.svg",
  8778. extra: 1260 / 1128,
  8779. bottom: 0.022
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(2, "inches"),
  8787. default: true
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(5 + 9 / 12, "feet"),
  8796. weight: math.unit(220, "lb"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/samantha-kruse/front.svg",
  8800. extra: (985 / 935),
  8801. bottom: 0.03
  8802. }
  8803. },
  8804. frontUndressed: {
  8805. height: math.unit(5 + 9 / 12, "feet"),
  8806. weight: math.unit(220, "lb"),
  8807. name: "Front (Undressed)",
  8808. image: {
  8809. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8810. extra: (973 / 923),
  8811. bottom: 0.025
  8812. }
  8813. },
  8814. fat: {
  8815. height: math.unit(5 + 9 / 12, "feet"),
  8816. weight: math.unit(900, "lb"),
  8817. name: "Front (Fat)",
  8818. image: {
  8819. source: "./media/characters/samantha-kruse/fat.svg",
  8820. extra: 2688 / 2561
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(5 + 9 / 12, "feet"),
  8828. default: true
  8829. }
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8834. {
  8835. back: {
  8836. height: math.unit(5 + 4 / 12, "feet"),
  8837. weight: math.unit(4963, "lb"),
  8838. name: "Back",
  8839. image: {
  8840. source: "./media/characters/amelia-rosie/back.svg",
  8841. extra: 1113 / 963,
  8842. bottom: 0.01
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Level 0",
  8849. height: math.unit(5 + 4 / 12, "feet")
  8850. },
  8851. {
  8852. name: "Level 1",
  8853. height: math.unit(164597, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Level 2",
  8858. height: math.unit(956243, "miles")
  8859. },
  8860. {
  8861. name: "Level 3",
  8862. height: math.unit(29421709423, "miles")
  8863. },
  8864. {
  8865. name: "Level 4",
  8866. height: math.unit(154, "lightyears")
  8867. },
  8868. {
  8869. name: "Level 5",
  8870. height: math.unit(4738272, "lightyears")
  8871. },
  8872. {
  8873. name: "Level 6",
  8874. height: math.unit(145787152896, "lightyears")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(5 + 11 / 12, "feet"),
  8883. weight: math.unit(65, "kg"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/rook-kitara/front.svg",
  8887. extra: 1347 / 1274,
  8888. bottom: 0.005
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Totally Unfair",
  8895. height: math.unit(1.8, "mm")
  8896. },
  8897. {
  8898. name: "Lap Rookie",
  8899. height: math.unit(1.4, "feet")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(5 + 11 / 12, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "How Did This Happen",
  8908. height: math.unit(80, "miles")
  8909. }
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(7, "feet"),
  8917. weight: math.unit(300, "lb"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/pisces/front.svg",
  8921. extra: 2255 / 2115,
  8922. bottom: 0.03
  8923. }
  8924. },
  8925. back: {
  8926. height: math.unit(7, "feet"),
  8927. weight: math.unit(300, "lb"),
  8928. name: "Back",
  8929. image: {
  8930. source: "./media/characters/pisces/back.svg",
  8931. extra: 2146 / 2055,
  8932. bottom: 0.04
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(7, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Swimming Pool",
  8944. height: math.unit(12.2, "meters")
  8945. },
  8946. {
  8947. name: "Olympic Swimming Pool",
  8948. height: math.unit(56.3, "meters")
  8949. },
  8950. {
  8951. name: "Lake Superior",
  8952. height: math.unit(93900, "meters")
  8953. },
  8954. {
  8955. name: "Mediterranean Sea",
  8956. height: math.unit(644457, "meters")
  8957. },
  8958. {
  8959. name: "World's Oceans",
  8960. height: math.unit(4567491, "meters")
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(2.3, "meters"),
  8969. weight: math.unit(120, "kg"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/zelas/front.svg"
  8973. }
  8974. },
  8975. side: {
  8976. height: math.unit(2.3, "meters"),
  8977. weight: math.unit(120, "kg"),
  8978. name: "Side",
  8979. image: {
  8980. source: "./media/characters/zelas/side.svg"
  8981. }
  8982. },
  8983. back: {
  8984. height: math.unit(2.3, "meters"),
  8985. weight: math.unit(120, "kg"),
  8986. name: "Back",
  8987. image: {
  8988. source: "./media/characters/zelas/back.svg"
  8989. }
  8990. },
  8991. foot: {
  8992. height: math.unit(1.116, "feet"),
  8993. name: "Foot",
  8994. image: {
  8995. source: "./media/characters/zelas/foot.svg"
  8996. }
  8997. },
  8998. },
  8999. [
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(2.3, "meters")
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(30, "meters"),
  9007. default: true
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(1, "inch"),
  9016. weight: math.unit(0.21, "grams"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/talbot/front.svg",
  9020. extra: 594 / 544
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Micro",
  9027. height: math.unit(1, "inch"),
  9028. default: true
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9034. {
  9035. front: {
  9036. height: math.unit(3 + 3 / 12, "feet"),
  9037. weight: math.unit(51.8, "lb"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/fliss/front.svg",
  9041. extra: 840 / 640
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Teeny Tiny",
  9048. height: math.unit(1, "mm")
  9049. },
  9050. {
  9051. name: "Small",
  9052. height: math.unit(1, "inch"),
  9053. default: true
  9054. },
  9055. {
  9056. name: "Standard Sylveon",
  9057. height: math.unit(3 + 3 / 12, "feet")
  9058. },
  9059. {
  9060. name: "Large Nuisance",
  9061. height: math.unit(33, "feet")
  9062. },
  9063. {
  9064. name: "City Filler",
  9065. height: math.unit(3000, "feet")
  9066. },
  9067. {
  9068. name: "New Horizon",
  9069. height: math.unit(6000, "miles")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(5, "cm"),
  9078. weight: math.unit(1.94, "g"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/fleta/front.svg",
  9082. extra: 835 / 803
  9083. }
  9084. },
  9085. back: {
  9086. height: math.unit(5, "cm"),
  9087. weight: math.unit(1.94, "g"),
  9088. name: "Back",
  9089. image: {
  9090. source: "./media/characters/fleta/back.svg",
  9091. extra: 835 / 803
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Micro",
  9098. height: math.unit(5, "cm"),
  9099. default: true
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(225, "lb"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/dominic/front.svg",
  9112. extra: 1770 / 1620,
  9113. bottom: 0.025
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(225, "lb"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/dominic/back.svg",
  9122. extra: 1745 / 1620,
  9123. bottom: 0.065
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Nano",
  9130. height: math.unit(0.1, "mm")
  9131. },
  9132. {
  9133. name: "Micro-",
  9134. height: math.unit(1, "mm")
  9135. },
  9136. {
  9137. name: "Micro",
  9138. height: math.unit(4, "inches")
  9139. },
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(6 + 4 / 12, "feet"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(115, "feet")
  9148. },
  9149. {
  9150. name: "Macro+",
  9151. height: math.unit(955, "feet")
  9152. },
  9153. {
  9154. name: "Megamacro",
  9155. height: math.unit(8990, "feet")
  9156. },
  9157. {
  9158. name: "Gigmacro",
  9159. height: math.unit(9310, "miles")
  9160. },
  9161. {
  9162. name: "Teramacro",
  9163. height: math.unit(1567005010, "miles")
  9164. },
  9165. {
  9166. name: "Examacro",
  9167. height: math.unit(1425, "parsecs")
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(400, "feet"),
  9176. weight: math.unit(44444444, "lb"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/major-colonel/front.svg"
  9180. }
  9181. },
  9182. back: {
  9183. height: math.unit(400, "feet"),
  9184. weight: math.unit(44444444, "lb"),
  9185. name: "Back",
  9186. image: {
  9187. source: "./media/characters/major-colonel/back.svg"
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Macro",
  9194. height: math.unit(400, "feet"),
  9195. default: true
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9201. {
  9202. catFront: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(120, "lb"),
  9205. name: "Front (Cat Side)",
  9206. image: {
  9207. source: "./media/characters/axel-lycan/cat-front.svg",
  9208. extra: 430 / 402,
  9209. bottom: 43 / 472.35
  9210. }
  9211. },
  9212. catBack: {
  9213. height: math.unit(6, "feet"),
  9214. weight: math.unit(120, "lb"),
  9215. name: "Back (Cat Side)",
  9216. image: {
  9217. source: "./media/characters/axel-lycan/cat-back.svg",
  9218. extra: 447 / 419,
  9219. bottom: 23.3 / 469
  9220. }
  9221. },
  9222. wolfFront: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(120, "lb"),
  9225. name: "Front (Wolf Side)",
  9226. image: {
  9227. source: "./media/characters/axel-lycan/wolf-front.svg",
  9228. extra: 485 / 456,
  9229. bottom: 19 / 504
  9230. }
  9231. },
  9232. wolfBack: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(120, "lb"),
  9235. name: "Back (Wolf Side)",
  9236. image: {
  9237. source: "./media/characters/axel-lycan/wolf-back.svg",
  9238. extra: 475 / 438,
  9239. bottom: 39.2 / 514
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Macro",
  9246. height: math.unit(1, "km"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(5 + 9 / 12, "feet"),
  9256. weight: math.unit(175, "lb"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/vanrel-hyena/front.svg",
  9260. extra: 1086 / 1010,
  9261. bottom: 0.04
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(5 + 9 / 12, "feet"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(103, "lb"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/abbott-absol/front.svg",
  9282. extra: 2010 / 1842
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Megamicro",
  9289. height: math.unit(0.1, "mm")
  9290. },
  9291. {
  9292. name: "Micro",
  9293. height: math.unit(1, "inch")
  9294. },
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(6, "feet"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(264, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/hector/front.svg",
  9311. extra: 2280 / 2130,
  9312. bottom: 0.07
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(12.25, "foot"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Macro",
  9324. height: math.unit(160, "feet")
  9325. },
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9330. {
  9331. front: {
  9332. height: math.unit(6, "feet"),
  9333. weight: math.unit(150, "lb"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/sal/front.svg",
  9337. extra: 1846 / 1699,
  9338. bottom: 0.04
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Megamacro",
  9345. height: math.unit(10, "miles"),
  9346. default: true
  9347. },
  9348. ]
  9349. ))
  9350. characterMakers.push(() => makeCharacter(
  9351. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9352. {
  9353. front: {
  9354. height: math.unit(3, "meters"),
  9355. weight: math.unit(450, "kg"),
  9356. name: "front",
  9357. image: {
  9358. source: "./media/characters/ranger/front.svg",
  9359. extra: 2401 / 2243,
  9360. bottom: 0.05
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(3, "meters"),
  9368. default: true
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9374. {
  9375. front: {
  9376. height: math.unit(14, "feet"),
  9377. weight: math.unit(800, "kg"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/theresa/front.svg",
  9381. extra: 3575 / 3346,
  9382. bottom: 0.03
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(14, "feet"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(3, "kg"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/ine/front.svg",
  9403. extra: 678 / 539,
  9404. bottom: 0.023
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(2.265, "feet"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(5, "feet"),
  9421. weight: math.unit(30, "kg"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/vial/front.svg",
  9425. extra: 1365 / 1277,
  9426. bottom: 0.04
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(5, "feet"),
  9434. default: true
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9440. {
  9441. side: {
  9442. height: math.unit(3.4, "meters"),
  9443. weight: math.unit(1000, "lb"),
  9444. name: "Side",
  9445. image: {
  9446. source: "./media/characters/rovoska/side.svg",
  9447. extra: 4403 / 1515
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Normal",
  9454. height: math.unit(3.4, "meters"),
  9455. default: true
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(8, "feet"),
  9464. weight: math.unit(315, "lb"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/gunner-rotthbauer/front.svg"
  9468. }
  9469. },
  9470. back: {
  9471. height: math.unit(8, "feet"),
  9472. weight: math.unit(315, "lb"),
  9473. name: "Back",
  9474. image: {
  9475. source: "./media/characters/gunner-rotthbauer/back.svg"
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Micro",
  9482. height: math.unit(3.5, "inches")
  9483. },
  9484. {
  9485. name: "Normal",
  9486. height: math.unit(8, "feet"),
  9487. default: true
  9488. },
  9489. {
  9490. name: "Macro",
  9491. height: math.unit(250, "feet")
  9492. },
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(1, "AU")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(5 + 5 / 12, "feet"),
  9504. weight: math.unit(140, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/allatia/front.svg",
  9508. extra: 1227 / 1180,
  9509. bottom: 0.027
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(5 + 5 / 12, "feet")
  9517. },
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(250, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Megamacro",
  9525. height: math.unit(8, "miles")
  9526. }
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(120, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/tene/front.svg",
  9538. extra: 1728 / 1578,
  9539. bottom: 0.022
  9540. }
  9541. },
  9542. stomping: {
  9543. height: math.unit(2.025, "meters"),
  9544. weight: math.unit(120, "lb"),
  9545. name: "Stomping",
  9546. image: {
  9547. source: "./media/characters/tene/stomping.svg",
  9548. extra: 938 / 873,
  9549. bottom: 0.01
  9550. }
  9551. },
  9552. sitting: {
  9553. height: math.unit(1, "meter"),
  9554. weight: math.unit(120, "lb"),
  9555. name: "Sitting",
  9556. image: {
  9557. source: "./media/characters/tene/sitting.svg",
  9558. extra: 437 / 415,
  9559. bottom: 0.1
  9560. }
  9561. },
  9562. feral: {
  9563. height: math.unit(3.9, "feet"),
  9564. weight: math.unit(250, "lb"),
  9565. name: "Feral",
  9566. image: {
  9567. source: "./media/characters/tene/feral.svg",
  9568. extra: 717 / 458,
  9569. bottom: 0.179
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(6, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(300, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Megamacro",
  9585. height: math.unit(5, "miles")
  9586. },
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9591. {
  9592. side: {
  9593. height: math.unit(6, "feet"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/evander/side.svg",
  9597. extra: 877 / 477
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(0.83, "meters"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(12, "feet"),
  9614. weight: math.unit(1000, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9618. extra: 1762 / 1611
  9619. }
  9620. },
  9621. back: {
  9622. height: math.unit(12, "feet"),
  9623. weight: math.unit(1000, "lb"),
  9624. name: "Back",
  9625. image: {
  9626. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9627. extra: 1762 / 1611
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(12, "feet"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "Kaiju",
  9639. height: math.unit(150, "feet")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(150, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/zero-alurus/front.svg"
  9652. }
  9653. },
  9654. back: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(150, "lb"),
  9657. name: "Back",
  9658. image: {
  9659. source: "./media/characters/zero-alurus/back.svg"
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(5 + 10 / 12, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(60, "feet"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Macro+",
  9675. height: math.unit(450, "feet")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(200, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/mega-shi/front.svg",
  9688. extra: 1279 / 1250,
  9689. bottom: 0.02
  9690. }
  9691. },
  9692. back: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(200, "lb"),
  9695. name: "Back",
  9696. image: {
  9697. source: "./media/characters/mega-shi/back.svg",
  9698. extra: 1279 / 1250,
  9699. bottom: 0.02
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(16 + 6 / 12, "feet")
  9707. },
  9708. {
  9709. name: "Third Dimension",
  9710. height: math.unit(40, "meters")
  9711. },
  9712. {
  9713. name: "Normal",
  9714. height: math.unit(660, "feet"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Megamacro",
  9719. height: math.unit(10, "miles")
  9720. },
  9721. {
  9722. name: "Planetary Launch",
  9723. height: math.unit(500, "miles")
  9724. },
  9725. {
  9726. name: "Interstellar",
  9727. height: math.unit(1e9, "miles")
  9728. },
  9729. {
  9730. name: "Leaving the Universe",
  9731. height: math.unit(1, "gigaparsec")
  9732. },
  9733. {
  9734. name: "Travelling Universes",
  9735. height: math.unit(30e15, "parsecs")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/odyssey/front.svg",
  9748. extra: 1782 / 1582,
  9749. bottom: 0.01
  9750. }
  9751. },
  9752. side: {
  9753. height: math.unit(5.7, "feet"),
  9754. weight: math.unit(140, "lb"),
  9755. name: "Side",
  9756. image: {
  9757. source: "./media/characters/odyssey/side.svg",
  9758. extra: 6462 / 5700
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(5 + 4 / 12, "feet")
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(1, "km")
  9770. },
  9771. {
  9772. name: "Megamacro",
  9773. height: math.unit(3000, "km")
  9774. },
  9775. {
  9776. name: "Gigamacro",
  9777. height: math.unit(1, "AU"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Omniversal",
  9782. height: math.unit(100e14, "lightyears")
  9783. },
  9784. ]
  9785. ))
  9786. characterMakers.push(() => makeCharacter(
  9787. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9788. {
  9789. front: {
  9790. height: math.unit(6, "feet"),
  9791. weight: math.unit(300, "lb"),
  9792. name: "Front",
  9793. image: {
  9794. source: "./media/characters/mekuto/front.svg",
  9795. extra: 921 / 832,
  9796. bottom: 0.03
  9797. }
  9798. },
  9799. hand: {
  9800. height: math.unit(6 / 10.24, "feet"),
  9801. name: "Hand",
  9802. image: {
  9803. source: "./media/characters/mekuto/hand.svg"
  9804. }
  9805. },
  9806. foot: {
  9807. height: math.unit(6 / 5.05, "feet"),
  9808. name: "Foot",
  9809. image: {
  9810. source: "./media/characters/mekuto/foot.svg"
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Minimicro",
  9817. height: math.unit(0.2, "inches")
  9818. },
  9819. {
  9820. name: "Micro",
  9821. height: math.unit(1.5, "inches")
  9822. },
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(5 + 11 / 12, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Minimacro",
  9830. height: math.unit(17 + 9 / 12, "feet")
  9831. },
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(177.5, "feet")
  9835. },
  9836. {
  9837. name: "Megamacro",
  9838. height: math.unit(152, "miles")
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6.5, "inches"),
  9847. weight: math.unit(13, "oz"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/dafydd-tomos/front.svg",
  9851. extra: 2990 / 2603,
  9852. bottom: 0.03
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Micro",
  9859. height: math.unit(6.5, "inches"),
  9860. default: true
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(150, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/splinter/front.svg",
  9873. extra: 2990 / 2882,
  9874. bottom: 0.04
  9875. }
  9876. },
  9877. back: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(150, "lb"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/splinter/back.svg",
  9883. extra: 2990 / 2882,
  9884. bottom: 0.04
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(6, "feet")
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(230, "meters"),
  9896. default: true
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(4 + 10 / 12, "feet"),
  9905. weight: math.unit(480, "lb"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/snow-gabumon/front.svg",
  9909. extra: 1140 / 963,
  9910. bottom: 0.058
  9911. }
  9912. },
  9913. back: {
  9914. height: math.unit(4 + 10 / 12, "feet"),
  9915. weight: math.unit(480, "lb"),
  9916. name: "Back",
  9917. image: {
  9918. source: "./media/characters/snow-gabumon/back.svg",
  9919. extra: 1115 / 962,
  9920. bottom: 0.041
  9921. }
  9922. },
  9923. frontUndresed: {
  9924. height: math.unit(4 + 10 / 12, "feet"),
  9925. weight: math.unit(480, "lb"),
  9926. name: "Front (Undressed)",
  9927. image: {
  9928. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9929. extra: 1061 / 960,
  9930. bottom: 0.045
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Micro",
  9937. height: math.unit(1, "inch")
  9938. },
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(4 + 10 / 12, "feet"),
  9942. default: true
  9943. },
  9944. {
  9945. name: "Macro",
  9946. height: math.unit(200, "feet")
  9947. },
  9948. {
  9949. name: "Megamacro",
  9950. height: math.unit(120, "miles")
  9951. },
  9952. {
  9953. name: "Gigamacro",
  9954. height: math.unit(9800, "miles")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(1.7, "meters"),
  9963. weight: math.unit(140, "lb"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/moody/front.svg",
  9967. extra: 3226 / 3007,
  9968. bottom: 0.087
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(1, "mm")
  9976. },
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(1.7, "meters"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(80, "meters")
  9985. },
  9986. {
  9987. name: "Macro+",
  9988. height: math.unit(500, "meters")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6, "feet"),
  9997. weight: math.unit(150, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/zyas/front.svg",
  10001. extra: 1180 / 1120,
  10002. bottom: 0.045
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Normal",
  10009. height: math.unit(10, "feet"),
  10010. default: true
  10011. },
  10012. {
  10013. name: "Macro",
  10014. height: math.unit(500, "feet")
  10015. },
  10016. {
  10017. name: "Megamacro",
  10018. height: math.unit(5, "miles")
  10019. },
  10020. {
  10021. name: "Teramacro",
  10022. height: math.unit(150000, "miles")
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/cuon/front.svg",
  10035. extra: 1390 / 1320,
  10036. bottom: 0.008
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Micro",
  10043. height: math.unit(3, "inches")
  10044. },
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(18 + 9 / 12, "feet"),
  10048. default: true
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(360, "feet")
  10053. },
  10054. {
  10055. name: "Megamacro",
  10056. height: math.unit(360, "miles")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(2.4, "meters"),
  10065. weight: math.unit(70, "kg"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/nyanuxk/front.svg",
  10069. extra: 1172 / 1084,
  10070. bottom: 0.065
  10071. }
  10072. },
  10073. side: {
  10074. height: math.unit(2.4, "meters"),
  10075. weight: math.unit(70, "kg"),
  10076. name: "Side",
  10077. image: {
  10078. source: "./media/characters/nyanuxk/side.svg",
  10079. extra: 1190 / 1132,
  10080. bottom: 0.007
  10081. }
  10082. },
  10083. back: {
  10084. height: math.unit(2.4, "meters"),
  10085. weight: math.unit(70, "kg"),
  10086. name: "Back",
  10087. image: {
  10088. source: "./media/characters/nyanuxk/back.svg",
  10089. extra: 1200 / 1141,
  10090. bottom: 0.015
  10091. }
  10092. },
  10093. foot: {
  10094. height: math.unit(0.52, "meters"),
  10095. name: "Foot",
  10096. image: {
  10097. source: "./media/characters/nyanuxk/foot.svg"
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Micro",
  10104. height: math.unit(2, "cm")
  10105. },
  10106. {
  10107. name: "Normal",
  10108. height: math.unit(2.4, "meters"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "Smaller Macro",
  10113. height: math.unit(120, "meters")
  10114. },
  10115. {
  10116. name: "Bigger Macro",
  10117. height: math.unit(1.2, "km")
  10118. },
  10119. {
  10120. name: "Megamacro",
  10121. height: math.unit(15, "kilometers")
  10122. },
  10123. {
  10124. name: "Gigamacro",
  10125. height: math.unit(2000, "km")
  10126. },
  10127. {
  10128. name: "Teramacro",
  10129. height: math.unit(500000, "km")
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10135. {
  10136. side: {
  10137. height: math.unit(6, "feet"),
  10138. name: "Side",
  10139. image: {
  10140. source: "./media/characters/ailbhe/side.svg",
  10141. extra: 757 / 464,
  10142. bottom: 0.041
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(1.07, "meters"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(120, "kg"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/zevulfius/front.svg",
  10163. extra: 965 / 903
  10164. }
  10165. },
  10166. side: {
  10167. height: math.unit(6, "feet"),
  10168. weight: math.unit(120, "kg"),
  10169. name: "Side",
  10170. image: {
  10171. source: "./media/characters/zevulfius/side.svg",
  10172. extra: 939 / 900
  10173. }
  10174. },
  10175. back: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(120, "kg"),
  10178. name: "Back",
  10179. image: {
  10180. source: "./media/characters/zevulfius/back.svg",
  10181. extra: 918 / 854,
  10182. bottom: 0.005
  10183. }
  10184. },
  10185. foot: {
  10186. height: math.unit(6 / 3.72, "feet"),
  10187. name: "Foot",
  10188. image: {
  10189. source: "./media/characters/zevulfius/foot.svg"
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(750, "meters")
  10197. },
  10198. {
  10199. name: "Megamacro",
  10200. height: math.unit(20, "km"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "Gigamacro",
  10205. height: math.unit(2000, "km")
  10206. },
  10207. {
  10208. name: "Teramacro",
  10209. height: math.unit(250000, "km")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(100, "feet"),
  10218. weight: math.unit(350, "kg"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/rikes/front.svg",
  10222. extra: 1565 / 1483,
  10223. bottom: 0.017
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(100, "feet"),
  10231. default: true
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10237. {
  10238. anthro: {
  10239. height: math.unit(8, "feet"),
  10240. weight: math.unit(120, "kg"),
  10241. name: "Anthro",
  10242. image: {
  10243. source: "./media/characters/adam-silver-mane/anthro.svg",
  10244. extra: 5743 / 5339,
  10245. bottom: 0.07
  10246. }
  10247. },
  10248. taur: {
  10249. height: math.unit(16, "feet"),
  10250. weight: math.unit(1500, "kg"),
  10251. name: "Taur",
  10252. image: {
  10253. source: "./media/characters/adam-silver-mane/taur.svg",
  10254. extra: 1713 / 1571,
  10255. bottom: 0.01
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(8, "feet")
  10263. },
  10264. {
  10265. name: "Minimacro",
  10266. height: math.unit(80, "feet")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(800, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(8000, "feet")
  10276. },
  10277. {
  10278. name: "Gigamacro",
  10279. height: math.unit(800, "miles")
  10280. },
  10281. {
  10282. name: "Teramacro",
  10283. height: math.unit(80000, "miles")
  10284. },
  10285. {
  10286. name: "Celestial",
  10287. height: math.unit(8e6, "miles")
  10288. },
  10289. {
  10290. name: "Star Dragon",
  10291. height: math.unit(800000, "parsecs")
  10292. },
  10293. {
  10294. name: "Godly",
  10295. height: math.unit(800, "teraparsecs")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(6, "feet"),
  10304. weight: math.unit(150, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/ky'owin/front.svg",
  10308. extra: 3888 / 3068,
  10309. bottom: 0.015
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(6 + 8 / 12, "feet")
  10317. },
  10318. {
  10319. name: "Large",
  10320. height: math.unit(68, "feet")
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(132, "feet")
  10325. },
  10326. {
  10327. name: "Macro+",
  10328. height: math.unit(340, "feet")
  10329. },
  10330. {
  10331. name: "Macro++",
  10332. height: math.unit(680, "feet"),
  10333. default: true
  10334. },
  10335. {
  10336. name: "Megamacro",
  10337. height: math.unit(1, "mile")
  10338. },
  10339. {
  10340. name: "Megamacro+",
  10341. height: math.unit(10, "miles")
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10347. {
  10348. front: {
  10349. height: math.unit(4, "feet"),
  10350. weight: math.unit(50, "lb"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/mal/front.svg",
  10354. extra: 785 / 724,
  10355. bottom: 0.07
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Micro",
  10362. height: math.unit(4, "inches")
  10363. },
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(4, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Macro",
  10371. height: math.unit(200, "feet")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(150, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/jordan-deware/front.svg",
  10384. extra: 1191 / 1012
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Nano",
  10391. height: math.unit(0.01, "mm")
  10392. },
  10393. {
  10394. name: "Minimicro",
  10395. height: math.unit(1, "mm")
  10396. },
  10397. {
  10398. name: "Micro",
  10399. height: math.unit(0.5, "inches")
  10400. },
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(4, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Minimacro",
  10408. height: math.unit(40, "meters")
  10409. },
  10410. {
  10411. name: "Small Macro",
  10412. height: math.unit(400, "meters")
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(4, "miles")
  10417. },
  10418. {
  10419. name: "Megamacro",
  10420. height: math.unit(40, "miles")
  10421. },
  10422. {
  10423. name: "Megamacro+",
  10424. height: math.unit(400, "miles")
  10425. },
  10426. {
  10427. name: "Gigamacro",
  10428. height: math.unit(400000, "miles")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10434. {
  10435. side: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Side",
  10439. image: {
  10440. source: "./media/characters/kimiko/side.svg",
  10441. extra: 600 / 358
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(15, "feet"),
  10449. default: true
  10450. },
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(220, "feet")
  10454. },
  10455. {
  10456. name: "Macro+",
  10457. height: math.unit(1450, "feet")
  10458. },
  10459. {
  10460. name: "Megamacro",
  10461. height: math.unit(11500, "feet")
  10462. },
  10463. {
  10464. name: "Gigamacro",
  10465. height: math.unit(9500, "miles")
  10466. },
  10467. {
  10468. name: "Teramacro",
  10469. height: math.unit(2208005005, "miles")
  10470. },
  10471. {
  10472. name: "Examacro",
  10473. height: math.unit(2750, "parsecs")
  10474. },
  10475. {
  10476. name: "Zettamacro",
  10477. height: math.unit(101500, "parsecs")
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(70, "kg"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/andrew-sleepy/front.svg"
  10490. }
  10491. },
  10492. side: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(70, "kg"),
  10495. name: "Side",
  10496. image: {
  10497. source: "./media/characters/andrew-sleepy/side.svg"
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Micro",
  10504. height: math.unit(1, "mm"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(150, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/judio/front.svg",
  10518. extra: 1258 / 1110
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(5 + 6 / 12, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(1000, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(10, "miles")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(6, "feet"),
  10543. weight: math.unit(68, "kg"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/nomaxice/front.svg",
  10547. extra: 1498 / 1073,
  10548. bottom: 0.075
  10549. }
  10550. },
  10551. foot: {
  10552. height: math.unit(1.1, "feet"),
  10553. name: "Foot",
  10554. image: {
  10555. source: "./media/characters/nomaxice/foot.svg"
  10556. }
  10557. },
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(8, "cm")
  10563. },
  10564. {
  10565. name: "Norm",
  10566. height: math.unit(1.82, "m")
  10567. },
  10568. {
  10569. name: "Norm+",
  10570. height: math.unit(8.8, "feet")
  10571. },
  10572. {
  10573. name: "Big",
  10574. height: math.unit(8, "meters"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(18, "meters")
  10580. },
  10581. {
  10582. name: "Macro+",
  10583. height: math.unit(88, "meters")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10589. {
  10590. front: {
  10591. height: math.unit(12, "feet"),
  10592. weight: math.unit(1.5, "tons"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/dydros/front.svg",
  10596. extra: 863 / 800,
  10597. bottom: 0.015
  10598. }
  10599. },
  10600. back: {
  10601. height: math.unit(12, "feet"),
  10602. weight: math.unit(1.5, "tons"),
  10603. name: "Back",
  10604. image: {
  10605. source: "./media/characters/dydros/back.svg",
  10606. extra: 900 / 843,
  10607. bottom: 0.005
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(12, "feet"),
  10615. default: true
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10621. {
  10622. front: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(100, "kg"),
  10625. name: "Front",
  10626. image: {
  10627. source: "./media/characters/riggi/front.svg",
  10628. extra: 5787 / 5303
  10629. }
  10630. },
  10631. hyper: {
  10632. height: math.unit(6 * 5 / 3, "feet"),
  10633. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10634. name: "Hyper",
  10635. image: {
  10636. source: "./media/characters/riggi/hyper.svg",
  10637. extra: 3595 / 3485
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Small Macro",
  10644. height: math.unit(50, "feet")
  10645. },
  10646. {
  10647. name: "Default",
  10648. height: math.unit(200, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Loom",
  10653. height: math.unit(10000, "feet")
  10654. },
  10655. {
  10656. name: "Cruising Altitude",
  10657. height: math.unit(30000, "feet")
  10658. },
  10659. {
  10660. name: "Megamacro",
  10661. height: math.unit(100, "miles")
  10662. },
  10663. {
  10664. name: "Continent Sized",
  10665. height: math.unit(2800, "miles")
  10666. },
  10667. {
  10668. name: "Earth Sized",
  10669. height: math.unit(8000, "miles")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(6, "feet"),
  10678. weight: math.unit(250, "lb"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/alexi/front.svg",
  10682. extra: 3483 / 3291,
  10683. bottom: 0.04
  10684. }
  10685. },
  10686. back: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(250, "lb"),
  10689. name: "Back",
  10690. image: {
  10691. source: "./media/characters/alexi/back.svg",
  10692. extra: 3533 / 3356,
  10693. bottom: 0.021
  10694. }
  10695. },
  10696. frontTransforming: {
  10697. height: math.unit(8.58, "feet"),
  10698. weight: math.unit(1300, "lb"),
  10699. name: "Transforming",
  10700. image: {
  10701. source: "./media/characters/alexi/front-transforming.svg",
  10702. extra: 437 / 409,
  10703. bottom: 19 / 458.66
  10704. }
  10705. },
  10706. frontTransformed: {
  10707. height: math.unit(12.5, "feet"),
  10708. weight: math.unit(4000, "lb"),
  10709. name: "Transformed",
  10710. image: {
  10711. source: "./media/characters/alexi/front-transformed.svg",
  10712. extra: 639 / 614,
  10713. bottom: 30.55 / 671
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(14, "feet"),
  10721. default: true
  10722. },
  10723. {
  10724. name: "Minimacro",
  10725. height: math.unit(30, "meters")
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(500, "meters")
  10730. },
  10731. {
  10732. name: "Megamacro",
  10733. height: math.unit(9000, "km")
  10734. },
  10735. {
  10736. name: "Teramacro",
  10737. height: math.unit(384000, "km")
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(6, "feet"),
  10746. weight: math.unit(150, "lb"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/kayroo/front.svg",
  10750. extra: 1153 / 1038,
  10751. bottom: 0.06
  10752. }
  10753. },
  10754. foot: {
  10755. height: math.unit(6, "feet"),
  10756. weight: math.unit(150, "lb"),
  10757. name: "Foot",
  10758. image: {
  10759. source: "./media/characters/kayroo/foot.svg"
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Normal",
  10766. height: math.unit(8, "feet"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Minimacro",
  10771. height: math.unit(250, "feet")
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(2800, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(5200, "feet")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(27000, "feet")
  10784. },
  10785. {
  10786. name: "Omega",
  10787. height: math.unit(45000, "feet")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(18, "feet"),
  10796. weight: math.unit(5800, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/rhys/front.svg",
  10800. extra: 3386 / 3090,
  10801. bottom: 0.07
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(18, "feet"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Working Size",
  10813. height: math.unit(200, "feet")
  10814. },
  10815. {
  10816. name: "Demolition Size",
  10817. height: math.unit(2000, "feet")
  10818. },
  10819. {
  10820. name: "Maximum Licensed Size",
  10821. height: math.unit(5, "miles")
  10822. },
  10823. {
  10824. name: "Maximum Observed Size",
  10825. height: math.unit(10, "yottameters")
  10826. },
  10827. ]
  10828. ))
  10829. characterMakers.push(() => makeCharacter(
  10830. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10831. {
  10832. front: {
  10833. height: math.unit(6, "feet"),
  10834. weight: math.unit(250, "lb"),
  10835. name: "Front",
  10836. image: {
  10837. source: "./media/characters/toto/front.svg",
  10838. extra: 527 / 479,
  10839. bottom: 0.05
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Micro",
  10846. height: math.unit(3, "feet")
  10847. },
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(10, "feet")
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(150, "feet"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Megamacro",
  10859. height: math.unit(1200, "feet")
  10860. },
  10861. ]
  10862. ))
  10863. characterMakers.push(() => makeCharacter(
  10864. { name: "King", species: ["lion"], tags: ["anthro"] },
  10865. {
  10866. back: {
  10867. height: math.unit(6, "feet"),
  10868. weight: math.unit(150, "lb"),
  10869. name: "Back",
  10870. image: {
  10871. source: "./media/characters/king/back.svg"
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Micro",
  10878. height: math.unit(2, "inches")
  10879. },
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(8, "feet")
  10883. },
  10884. {
  10885. name: "Macro",
  10886. height: math.unit(200, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(50, "miles")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10897. {
  10898. anthro: {
  10899. height: math.unit(6 + 5 / 12, "feet"),
  10900. weight: math.unit(280, "lb"),
  10901. name: "Anthro",
  10902. image: {
  10903. source: "./media/characters/cordite/anthro.svg",
  10904. extra: 1986 / 1905,
  10905. bottom: 0.025
  10906. }
  10907. },
  10908. feral: {
  10909. height: math.unit(2, "feet"),
  10910. weight: math.unit(90, "lb"),
  10911. name: "Feral",
  10912. image: {
  10913. source: "./media/characters/cordite/feral.svg",
  10914. extra: 1260 / 755,
  10915. bottom: 0.05
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Normal",
  10922. height: math.unit(6 + 5 / 12, "feet"),
  10923. default: true
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/pianostrong/front.svg",
  10936. extra: 6577 / 6254,
  10937. bottom: 0.02
  10938. }
  10939. },
  10940. side: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Side",
  10944. image: {
  10945. source: "./media/characters/pianostrong/side.svg",
  10946. extra: 6106 / 5730
  10947. }
  10948. },
  10949. back: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Back",
  10953. image: {
  10954. source: "./media/characters/pianostrong/back.svg",
  10955. extra: 6085 / 5733,
  10956. bottom: 0.01
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(100, "feet")
  10964. },
  10965. {
  10966. name: "Macro+",
  10967. height: math.unit(300, "feet"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Macro++",
  10972. height: math.unit(1000, "feet")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10978. {
  10979. front: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/kona/front.svg",
  10985. extra: 2960 / 2629,
  10986. bottom: 0.005
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(11 + 8 / 12, "feet")
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(850, "feet"),
  10998. default: true
  10999. },
  11000. {
  11001. name: "Macro+",
  11002. height: math.unit(1.5, "km"),
  11003. default: true
  11004. },
  11005. {
  11006. name: "Megamacro",
  11007. height: math.unit(80, "miles")
  11008. },
  11009. {
  11010. name: "Gigamacro",
  11011. height: math.unit(3500, "miles")
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11017. {
  11018. side: {
  11019. height: math.unit(1.9, "meters"),
  11020. weight: math.unit(326, "kg"),
  11021. name: "Side",
  11022. image: {
  11023. source: "./media/characters/levi/side.svg",
  11024. extra: 1704 / 1334,
  11025. bottom: 0.02
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(1.9, "meters"),
  11033. default: true
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(20, "meters")
  11038. },
  11039. {
  11040. name: "Macro+",
  11041. height: math.unit(200, "meters")
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(2, "km")
  11046. },
  11047. {
  11048. name: "Megamacro+",
  11049. height: math.unit(20, "km")
  11050. },
  11051. {
  11052. name: "Gigamacro",
  11053. height: math.unit(2500, "km")
  11054. },
  11055. {
  11056. name: "Gigamacro+",
  11057. height: math.unit(120000, "km")
  11058. },
  11059. {
  11060. name: "Teramacro",
  11061. height: math.unit(7.77e6, "km")
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(6 + 4 / 12, "feet"),
  11070. weight: math.unit(188, "lb"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/bmc/front.svg",
  11074. extra: 1067 / 1022,
  11075. bottom: 0.047
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Human-sized",
  11082. height: math.unit(6 + 4 / 12, "feet")
  11083. },
  11084. {
  11085. name: "Small",
  11086. height: math.unit(250, "feet")
  11087. },
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(1250, "feet"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Good Day",
  11095. height: math.unit(88, "miles")
  11096. },
  11097. {
  11098. name: "Largest Measured Size",
  11099. height: math.unit(11.2e6, "lightyears")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(20, "feet"),
  11108. weight: math.unit(2016, "kg"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/sven-the-kaiju/front.svg",
  11112. extra: 1277/1250,
  11113. bottom: 35/1312
  11114. }
  11115. },
  11116. mouth: {
  11117. height: math.unit(1.85, "feet"),
  11118. name: "Mouth",
  11119. image: {
  11120. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Fairy",
  11127. height: math.unit(6, "inches")
  11128. },
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(20, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Rampage",
  11136. height: math.unit(200, "feet")
  11137. },
  11138. {
  11139. name: "Archfey Forest Guardian",
  11140. height: math.unit(1, "mile")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(4, "meters"),
  11149. weight: math.unit(2, "tons"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/marik/front.svg",
  11153. extra: 1057 / 1003,
  11154. bottom: 0.08
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(4, "meters"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(20, "meters")
  11167. },
  11168. {
  11169. name: "Megamacro",
  11170. height: math.unit(50, "km")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(100, "km")
  11175. },
  11176. {
  11177. name: "Alpha Macro",
  11178. height: math.unit(7.88e7, "yottameters")
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11184. {
  11185. front: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(110, "lb"),
  11188. name: "Front",
  11189. image: {
  11190. source: "./media/characters/mel/front.svg",
  11191. extra: 736 / 617,
  11192. bottom: 0.017
  11193. }
  11194. },
  11195. },
  11196. [
  11197. {
  11198. name: "Pico",
  11199. height: math.unit(3, "pm")
  11200. },
  11201. {
  11202. name: "Nano",
  11203. height: math.unit(3, "nm")
  11204. },
  11205. {
  11206. name: "Micro",
  11207. height: math.unit(0.3, "mm"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Micro+",
  11212. height: math.unit(3, "mm")
  11213. },
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(5 + 10.5 / 12, "feet")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11222. {
  11223. kaiju: {
  11224. height: math.unit(1.75, "meters"),
  11225. weight: math.unit(55, "kg"),
  11226. name: "Kaiju",
  11227. image: {
  11228. source: "./media/characters/lykonous/kaiju.svg",
  11229. extra: 1055 / 946,
  11230. bottom: 0.135
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(2.5, "meters"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Kaiju Dragon",
  11242. height: math.unit(60, "meters")
  11243. },
  11244. {
  11245. name: "Mega Kaiju",
  11246. height: math.unit(120, "km")
  11247. },
  11248. {
  11249. name: "Giga Kaiju",
  11250. height: math.unit(200, "megameters")
  11251. },
  11252. {
  11253. name: "Terra Kaiju",
  11254. height: math.unit(400, "gigameters")
  11255. },
  11256. {
  11257. name: "Kaiju Dragon God",
  11258. height: math.unit(13000, "exaparsecs")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/blü/front.svg",
  11271. extra: 1883 / 1564,
  11272. bottom: 0.031
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(13, "feet"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Big Boi",
  11284. height: math.unit(150, "meters")
  11285. },
  11286. {
  11287. name: "Mini Stomper",
  11288. height: math.unit(300, "meters")
  11289. },
  11290. {
  11291. name: "Macro",
  11292. height: math.unit(1000, "meters")
  11293. },
  11294. {
  11295. name: "Megamacro",
  11296. height: math.unit(11000, "meters")
  11297. },
  11298. {
  11299. name: "Gigamacro",
  11300. height: math.unit(11000, "km")
  11301. },
  11302. {
  11303. name: "Teramacro",
  11304. height: math.unit(420000, "km")
  11305. },
  11306. {
  11307. name: "Examacro",
  11308. height: math.unit(120, "parsecs")
  11309. },
  11310. {
  11311. name: "God Tho",
  11312. height: math.unit(98000000000, "parsecs")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11318. {
  11319. taurFront: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(200, "lb"),
  11322. name: "Taur (Front)",
  11323. image: {
  11324. source: "./media/characters/scales/taur-front.svg",
  11325. extra: 1,
  11326. bottom: 0.05
  11327. }
  11328. },
  11329. taurBack: {
  11330. height: math.unit(6, "feet"),
  11331. weight: math.unit(200, "lb"),
  11332. name: "Taur (Back)",
  11333. image: {
  11334. source: "./media/characters/scales/taur-back.svg",
  11335. extra: 1,
  11336. bottom: 0.08
  11337. }
  11338. },
  11339. anthro: {
  11340. height: math.unit(6 * 7 / 12, "feet"),
  11341. weight: math.unit(100, "lb"),
  11342. name: "Anthro",
  11343. image: {
  11344. source: "./media/characters/scales/anthro.svg",
  11345. extra: 1,
  11346. bottom: 0.06
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(12, "feet"),
  11354. default: true
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/koragos/front.svg",
  11367. extra: 841 / 794,
  11368. bottom: 0.035
  11369. }
  11370. },
  11371. back: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(150, "lb"),
  11374. name: "Back",
  11375. image: {
  11376. source: "./media/characters/koragos/back.svg",
  11377. extra: 841 / 810,
  11378. bottom: 0.022
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(6 + 11 / 12, "feet"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Macro",
  11390. height: math.unit(490, "feet")
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(10, "miles")
  11395. },
  11396. {
  11397. name: "Gigamacro",
  11398. height: math.unit(50, "miles")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(250, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/xylrem/front.svg",
  11411. extra: 3323 / 3050,
  11412. bottom: 0.065
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Micro",
  11419. height: math.unit(4, "feet")
  11420. },
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(16, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(2720, "feet")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(25000, "miles")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(8, "feet"),
  11441. weight: math.unit(250, "kg"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/ikideru/front.svg",
  11445. extra: 930 / 870,
  11446. bottom: 0.087
  11447. }
  11448. },
  11449. back: {
  11450. height: math.unit(8, "feet"),
  11451. weight: math.unit(250, "kg"),
  11452. name: "Back",
  11453. image: {
  11454. source: "./media/characters/ikideru/back.svg",
  11455. extra: 919 / 852,
  11456. bottom: 0.055
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Rare",
  11463. height: math.unit(8, "feet"),
  11464. default: true
  11465. },
  11466. {
  11467. name: "Playful Loom",
  11468. height: math.unit(80, "feet")
  11469. },
  11470. {
  11471. name: "City Leaner",
  11472. height: math.unit(230, "feet")
  11473. },
  11474. {
  11475. name: "Megamacro",
  11476. height: math.unit(2500, "feet")
  11477. },
  11478. {
  11479. name: "Gigamacro",
  11480. height: math.unit(26400, "feet")
  11481. },
  11482. {
  11483. name: "Tectonic Shifter",
  11484. height: math.unit(1.7, "megameters")
  11485. },
  11486. {
  11487. name: "Planet Carer",
  11488. height: math.unit(21, "megameters")
  11489. },
  11490. {
  11491. name: "God",
  11492. height: math.unit(11157.22, "parsecs")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(6, "feet"),
  11501. weight: math.unit(120, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/neo/front.svg"
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Micro",
  11511. height: math.unit(2, "inches"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Human Size",
  11516. height: math.unit(5 + 8 / 12, "feet")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(13 + 10 / 12, "feet"),
  11525. weight: math.unit(5320, "lb"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/chauncey-chantz/front.svg",
  11529. extra: 1587 / 1435,
  11530. bottom: 0.02
  11531. }
  11532. },
  11533. },
  11534. [
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(13 + 10 / 12, "feet"),
  11538. default: true
  11539. },
  11540. {
  11541. name: "Macro",
  11542. height: math.unit(45, "feet")
  11543. },
  11544. {
  11545. name: "Megamacro",
  11546. height: math.unit(250, "miles")
  11547. },
  11548. {
  11549. name: "Planetary",
  11550. height: math.unit(10000, "miles")
  11551. },
  11552. {
  11553. name: "Galactic",
  11554. height: math.unit(40000, "parsecs")
  11555. },
  11556. {
  11557. name: "Universal",
  11558. height: math.unit(1, "yottameter")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11564. {
  11565. front: {
  11566. height: math.unit(6, "feet"),
  11567. weight: math.unit(150, "lb"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/epifox/front.svg",
  11571. extra: 1,
  11572. bottom: 0.075
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Micro",
  11579. height: math.unit(6, "inches")
  11580. },
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(12, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(3810, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(500, "miles")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(1.8796, "m"),
  11601. weight: math.unit(230, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/colin-t/front.svg",
  11605. extra: 1272 / 1193,
  11606. bottom: 0.07
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Micro",
  11613. height: math.unit(0.571, "meters")
  11614. },
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(1.8796, "meters"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Tall",
  11622. height: math.unit(4, "meters")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(67.241, "meters")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(371.856, "meters")
  11631. },
  11632. {
  11633. name: "Planetary",
  11634. height: math.unit(12631.5689, "km")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(1.85, "meters"),
  11643. weight: math.unit(80, "kg"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/matvei/front.svg",
  11647. extra: 614 / 594,
  11648. bottom: 0.01
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(1.85, "meters"),
  11656. default: true
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(5 + 9 / 12, "feet"),
  11665. weight: math.unit(70, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/quincy/front.svg",
  11669. extra: 3041 / 2751
  11670. }
  11671. },
  11672. back: {
  11673. height: math.unit(5 + 9 / 12, "feet"),
  11674. weight: math.unit(70, "lb"),
  11675. name: "Back",
  11676. image: {
  11677. source: "./media/characters/quincy/back.svg",
  11678. extra: 3041 / 2751
  11679. }
  11680. },
  11681. flying: {
  11682. height: math.unit(5 + 4 / 12, "feet"),
  11683. weight: math.unit(70, "lb"),
  11684. name: "Flying",
  11685. image: {
  11686. source: "./media/characters/quincy/flying.svg",
  11687. extra: 1044 / 930
  11688. }
  11689. },
  11690. },
  11691. [
  11692. {
  11693. name: "Micro",
  11694. height: math.unit(3, "cm")
  11695. },
  11696. {
  11697. name: "Normal",
  11698. height: math.unit(5 + 9 / 12, "feet")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(200, "meters"),
  11703. default: true
  11704. },
  11705. {
  11706. name: "Megamacro",
  11707. height: math.unit(1000, "meters")
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11713. {
  11714. front: {
  11715. height: math.unit(4 + 7 / 12, "feet"),
  11716. weight: math.unit(50, "lb"),
  11717. name: "Front",
  11718. image: {
  11719. source: "./media/characters/vanrel/front.svg",
  11720. extra: 1,
  11721. bottom: 0.02
  11722. }
  11723. },
  11724. frontAlt: {
  11725. height: math.unit(4 + 7 / 12, "feet"),
  11726. weight: math.unit(50, "lb"),
  11727. name: "Front-alt",
  11728. image: {
  11729. source: "./media/characters/vanrel/front-alt.svg",
  11730. extra: 1,
  11731. bottom: 15 / 1511
  11732. }
  11733. },
  11734. elemental: {
  11735. height: math.unit(3, "feet"),
  11736. weight: math.unit(50, "lb"),
  11737. name: "Elemental",
  11738. image: {
  11739. source: "./media/characters/vanrel/elemental.svg",
  11740. extra: 192.3 / 162.8,
  11741. bottom: 1.79 / 194.17
  11742. }
  11743. },
  11744. side: {
  11745. height: math.unit(4 + 7 / 12, "feet"),
  11746. weight: math.unit(50, "lb"),
  11747. name: "Side",
  11748. image: {
  11749. source: "./media/characters/vanrel/side.svg",
  11750. extra: 1,
  11751. bottom: 0.025
  11752. }
  11753. },
  11754. tome: {
  11755. height: math.unit(1.35, "feet"),
  11756. weight: math.unit(10, "lb"),
  11757. name: "Vanrel's Tome",
  11758. rename: true,
  11759. image: {
  11760. source: "./media/characters/vanrel/tome.svg"
  11761. }
  11762. },
  11763. beans: {
  11764. height: math.unit(0.89, "feet"),
  11765. name: "Beans",
  11766. image: {
  11767. source: "./media/characters/vanrel/beans.svg"
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(4 + 7 / 12, "feet"),
  11775. default: true
  11776. },
  11777. ]
  11778. ))
  11779. characterMakers.push(() => makeCharacter(
  11780. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11781. {
  11782. front: {
  11783. height: math.unit(7 + 5 / 12, "feet"),
  11784. weight: math.unit(150, "lb"),
  11785. name: "Front",
  11786. image: {
  11787. source: "./media/characters/kuiper-vanrel/front.svg",
  11788. extra: 1118 / 1068,
  11789. bottom: 0.09
  11790. }
  11791. },
  11792. foot: {
  11793. height: math.unit(0.55, "meters"),
  11794. name: "Foot",
  11795. image: {
  11796. source: "./media/characters/kuiper-vanrel/foot.svg",
  11797. }
  11798. },
  11799. battle: {
  11800. height: math.unit(6.824, "feet"),
  11801. weight: math.unit(150, "lb"),
  11802. name: "Battle",
  11803. image: {
  11804. source: "./media/characters/kuiper-vanrel/battle.svg",
  11805. extra: 1466 / 1327,
  11806. bottom: 29 / 1492.5
  11807. }
  11808. },
  11809. battleAlt: {
  11810. height: math.unit(6.824, "feet"),
  11811. weight: math.unit(150, "lb"),
  11812. name: "Battle (Alt)",
  11813. image: {
  11814. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11815. extra: 2081 / 1965,
  11816. bottom: 40 / 2121
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(7 + 5 / 12, "feet"),
  11824. default: true
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(8 + 5 / 12, "feet"),
  11833. weight: math.unit(150, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/keset-vanrel/front.svg",
  11837. extra: 1150 / 1084,
  11838. bottom: 0.05
  11839. }
  11840. },
  11841. hand: {
  11842. height: math.unit(0.6, "meters"),
  11843. name: "Hand",
  11844. image: {
  11845. source: "./media/characters/keset-vanrel/hand.svg"
  11846. }
  11847. },
  11848. foot: {
  11849. height: math.unit(0.94978, "meters"),
  11850. name: "Foot",
  11851. image: {
  11852. source: "./media/characters/keset-vanrel/foot.svg"
  11853. }
  11854. },
  11855. battle: {
  11856. height: math.unit(7.408, "feet"),
  11857. weight: math.unit(150, "lb"),
  11858. name: "Battle",
  11859. image: {
  11860. source: "./media/characters/keset-vanrel/battle.svg",
  11861. extra: 1890 / 1386,
  11862. bottom: 73.28 / 1970
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(8 + 5 / 12, "feet"),
  11870. default: true
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(150, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/neos/front.svg",
  11883. extra: 1696 / 992,
  11884. bottom: 0.14
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(54, "cm"),
  11892. default: true
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(100, "m")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(10, "km")
  11901. },
  11902. {
  11903. name: "Megamacro+",
  11904. height: math.unit(100, "km")
  11905. },
  11906. {
  11907. name: "Gigamacro",
  11908. height: math.unit(100, "Mm")
  11909. },
  11910. {
  11911. name: "Teramacro",
  11912. height: math.unit(100, "Gm")
  11913. },
  11914. {
  11915. name: "Examacro",
  11916. height: math.unit(100, "Em")
  11917. },
  11918. {
  11919. name: "Godly",
  11920. height: math.unit(10000, "Ym")
  11921. },
  11922. {
  11923. name: "Beyond Godly",
  11924. height: math.unit(25, "multiverses")
  11925. },
  11926. ]
  11927. ))
  11928. characterMakers.push(() => makeCharacter(
  11929. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11930. {
  11931. feminine: {
  11932. height: math.unit(5, "feet"),
  11933. weight: math.unit(100, "lb"),
  11934. name: "Feminine",
  11935. image: {
  11936. source: "./media/characters/sammy-mouse/feminine.svg",
  11937. extra: 2526 / 2425,
  11938. bottom: 0.123
  11939. }
  11940. },
  11941. masculine: {
  11942. height: math.unit(5, "feet"),
  11943. weight: math.unit(100, "lb"),
  11944. name: "Masculine",
  11945. image: {
  11946. source: "./media/characters/sammy-mouse/masculine.svg",
  11947. extra: 2526 / 2425,
  11948. bottom: 0.123
  11949. }
  11950. },
  11951. },
  11952. [
  11953. {
  11954. name: "Micro",
  11955. height: math.unit(5, "inches")
  11956. },
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(5, "feet"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Macro",
  11964. height: math.unit(60, "feet")
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(4, "feet"),
  11973. weight: math.unit(50, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/kole/front.svg",
  11977. extra: 1423 / 1303,
  11978. bottom: 0.025
  11979. }
  11980. },
  11981. back: {
  11982. height: math.unit(4, "feet"),
  11983. weight: math.unit(50, "lb"),
  11984. name: "Back",
  11985. image: {
  11986. source: "./media/characters/kole/back.svg",
  11987. extra: 1426 / 1280,
  11988. bottom: 0.02
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(4, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(2 + 6 / 12, "feet"),
  12005. weight: math.unit(20, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/rufran/front.svg",
  12009. extra: 2041 / 1839,
  12010. bottom: 0.055
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(2 + 6 / 12, "feet"),
  12015. weight: math.unit(20, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/rufran/back.svg",
  12019. extra: 2054 / 1839,
  12020. bottom: 0.01
  12021. }
  12022. },
  12023. hand: {
  12024. height: math.unit(0.2166, "meters"),
  12025. name: "Hand",
  12026. image: {
  12027. source: "./media/characters/rufran/hand.svg"
  12028. }
  12029. },
  12030. foot: {
  12031. height: math.unit(0.185, "meters"),
  12032. name: "Foot",
  12033. image: {
  12034. source: "./media/characters/rufran/foot.svg"
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Micro",
  12041. height: math.unit(1, "inch")
  12042. },
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(2 + 6 / 12, "feet"),
  12046. default: true
  12047. },
  12048. {
  12049. name: "Big",
  12050. height: math.unit(60, "feet")
  12051. },
  12052. {
  12053. name: "Macro",
  12054. height: math.unit(325, "feet")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(0.3, "meters"),
  12063. weight: math.unit(3.5, "kg"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/chip/front.svg",
  12067. extra: 748 / 674
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Micro",
  12074. height: math.unit(1, "inch"),
  12075. default: true
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12081. {
  12082. side: {
  12083. height: math.unit(2.3, "meters"),
  12084. weight: math.unit(3500, "lb"),
  12085. name: "Side",
  12086. image: {
  12087. source: "./media/characters/torvid/side.svg",
  12088. extra: 1972 / 722,
  12089. bottom: 0.035
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(2.3, "meters"),
  12097. default: true
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(2, "meters"),
  12106. weight: math.unit(150.5, "kg"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/susan/front.svg",
  12110. extra: 693 / 635,
  12111. bottom: 0.05
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(505, "miles"),
  12119. default: true
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(150, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/raindrops/front.svg",
  12132. extra: 2655 / 2461,
  12133. bottom: 49 / 2705
  12134. }
  12135. },
  12136. back: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(150, "lb"),
  12139. name: "Back",
  12140. image: {
  12141. source: "./media/characters/raindrops/back.svg",
  12142. extra: 2574 / 2400,
  12143. bottom: 65 / 2634
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Micro",
  12150. height: math.unit(6, "inches")
  12151. },
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(6 + 2 / 12, "feet")
  12155. },
  12156. {
  12157. name: "Macro",
  12158. height: math.unit(131, "feet"),
  12159. default: true
  12160. },
  12161. {
  12162. name: "Megamacro",
  12163. height: math.unit(15, "miles")
  12164. },
  12165. {
  12166. name: "Gigamacro",
  12167. height: math.unit(4000, "miles")
  12168. },
  12169. {
  12170. name: "Teramacro",
  12171. height: math.unit(315000, "miles")
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(2.794, "meters"),
  12180. weight: math.unit(325, "kg"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/tezwa/front.svg",
  12184. extra: 2083 / 1906,
  12185. bottom: 0.031
  12186. }
  12187. },
  12188. foot: {
  12189. height: math.unit(0.687, "meters"),
  12190. name: "Foot",
  12191. image: {
  12192. source: "./media/characters/tezwa/foot.svg"
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Normal",
  12199. height: math.unit(9 + 2 / 12, "feet"),
  12200. default: true
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12206. {
  12207. front: {
  12208. height: math.unit(58, "feet"),
  12209. weight: math.unit(89000, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/typhus/front.svg",
  12213. extra: 816 / 800,
  12214. bottom: 0.065
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Macro",
  12221. height: math.unit(58, "feet"),
  12222. default: true
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(12, "feet"),
  12231. weight: math.unit(6, "tonnes"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/lyra-von-wulf/front.svg",
  12235. extra: 1,
  12236. bottom: 0.10
  12237. }
  12238. },
  12239. frontMecha: {
  12240. height: math.unit(12, "feet"),
  12241. weight: math.unit(12, "tonnes"),
  12242. name: "Front (Mecha)",
  12243. image: {
  12244. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12245. extra: 1,
  12246. bottom: 0.042
  12247. }
  12248. },
  12249. maw: {
  12250. height: math.unit(2.2, "feet"),
  12251. name: "Maw",
  12252. image: {
  12253. source: "./media/characters/lyra-von-wulf/maw.svg"
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(12, "feet"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Classic",
  12265. height: math.unit(50, "feet")
  12266. },
  12267. {
  12268. name: "Macro",
  12269. height: math.unit(500, "feet")
  12270. },
  12271. {
  12272. name: "Megamacro",
  12273. height: math.unit(1, "mile")
  12274. },
  12275. {
  12276. name: "Gigamacro",
  12277. height: math.unit(400, "miles")
  12278. },
  12279. {
  12280. name: "Teramacro",
  12281. height: math.unit(22000, "miles")
  12282. },
  12283. {
  12284. name: "Solarmacro",
  12285. height: math.unit(8600000, "miles")
  12286. },
  12287. {
  12288. name: "Galactic",
  12289. height: math.unit(1057000, "lightyears")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(6 + 10 / 12, "feet"),
  12298. weight: math.unit(150, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/dixon/front.svg",
  12302. extra: 3361 / 3209,
  12303. bottom: 0.01
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(6 + 10 / 12, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Big",
  12315. height: math.unit(12, "meters")
  12316. },
  12317. {
  12318. name: "Macro",
  12319. height: math.unit(500, "meters")
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(2, "km")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(185, "cm"),
  12332. weight: math.unit(68, "kg"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/kauko/front.svg",
  12336. extra: 1455 / 1421,
  12337. bottom: 0.03
  12338. }
  12339. },
  12340. back: {
  12341. height: math.unit(185, "cm"),
  12342. weight: math.unit(68, "kg"),
  12343. name: "Back",
  12344. image: {
  12345. source: "./media/characters/kauko/back.svg",
  12346. extra: 1455 / 1421,
  12347. bottom: 0.004
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(185, "cm"),
  12355. default: true
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(150, "kg"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/varg/front.svg",
  12368. extra: 1108 / 1018,
  12369. bottom: 0.0375
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(5, "meters")
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(200, "meters")
  12381. },
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(20, "kilometers")
  12385. },
  12386. {
  12387. name: "True Size",
  12388. height: math.unit(211, "km"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Gigamacro",
  12393. height: math.unit(1000, "km")
  12394. },
  12395. {
  12396. name: "Gigamacro+",
  12397. height: math.unit(8000, "km")
  12398. },
  12399. {
  12400. name: "Teramacro",
  12401. height: math.unit(1000000, "km")
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12407. {
  12408. front: {
  12409. height: math.unit(7 + 7 / 12, "feet"),
  12410. weight: math.unit(267, "lb"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/dayza/front.svg",
  12414. extra: 1262 / 1200,
  12415. bottom: 0.035
  12416. }
  12417. },
  12418. side: {
  12419. height: math.unit(7 + 7 / 12, "feet"),
  12420. weight: math.unit(267, "lb"),
  12421. name: "Side",
  12422. image: {
  12423. source: "./media/characters/dayza/side.svg",
  12424. extra: 1295 / 1245,
  12425. bottom: 0.05
  12426. }
  12427. },
  12428. back: {
  12429. height: math.unit(7 + 7 / 12, "feet"),
  12430. weight: math.unit(267, "lb"),
  12431. name: "Back",
  12432. image: {
  12433. source: "./media/characters/dayza/back.svg",
  12434. extra: 1241 / 1170
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(7 + 7 / 12, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Macro",
  12446. height: math.unit(155, "feet")
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12452. {
  12453. front: {
  12454. height: math.unit(6 + 5 / 12, "feet"),
  12455. weight: math.unit(160, "lb"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/xanthos/front.svg",
  12459. extra: 1,
  12460. bottom: 0.04
  12461. }
  12462. },
  12463. back: {
  12464. height: math.unit(6 + 5 / 12, "feet"),
  12465. weight: math.unit(160, "lb"),
  12466. name: "Back",
  12467. image: {
  12468. source: "./media/characters/xanthos/back.svg",
  12469. extra: 1,
  12470. bottom: 0.03
  12471. }
  12472. },
  12473. hand: {
  12474. height: math.unit(0.928, "feet"),
  12475. name: "Hand",
  12476. image: {
  12477. source: "./media/characters/xanthos/hand.svg"
  12478. }
  12479. },
  12480. foot: {
  12481. height: math.unit(1.286, "feet"),
  12482. name: "Foot",
  12483. image: {
  12484. source: "./media/characters/xanthos/foot.svg"
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(6 + 5 / 12, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Normal+",
  12496. height: math.unit(6, "meters")
  12497. },
  12498. {
  12499. name: "Macro",
  12500. height: math.unit(40, "feet")
  12501. },
  12502. {
  12503. name: "Macro+",
  12504. height: math.unit(200, "meters")
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(20, "km")
  12509. },
  12510. {
  12511. name: "Megamacro+",
  12512. height: math.unit(100, "km")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6 + 3 / 12, "feet"),
  12521. weight: math.unit(215, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/grynn/front.svg",
  12525. extra: 4627 / 4209,
  12526. bottom: 0.047
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Micro",
  12533. height: math.unit(6, "inches")
  12534. },
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(6 + 3 / 12, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Big",
  12542. height: math.unit(104, "feet")
  12543. },
  12544. {
  12545. name: "Macro",
  12546. height: math.unit(944, "feet")
  12547. },
  12548. {
  12549. name: "Macro+",
  12550. height: math.unit(9480, "feet")
  12551. },
  12552. {
  12553. name: "Megamacro",
  12554. height: math.unit(78752, "feet")
  12555. },
  12556. {
  12557. name: "Megamacro+",
  12558. height: math.unit(630128, "feet")
  12559. },
  12560. {
  12561. name: "Megamacro++",
  12562. height: math.unit(3150695, "feet")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(7 + 5 / 12, "feet"),
  12571. weight: math.unit(450, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/mocha-aura/front.svg",
  12575. extra: 1907 / 1817,
  12576. bottom: 0.04
  12577. }
  12578. },
  12579. back: {
  12580. height: math.unit(7 + 5 / 12, "feet"),
  12581. weight: math.unit(450, "lb"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/mocha-aura/back.svg",
  12585. extra: 1900 / 1825,
  12586. bottom: 0.045
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Nano",
  12593. height: math.unit(1, "nm")
  12594. },
  12595. {
  12596. name: "Megamicro",
  12597. height: math.unit(1, "mm")
  12598. },
  12599. {
  12600. name: "Micro",
  12601. height: math.unit(3, "inches")
  12602. },
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(7 + 5 / 12, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(30, "feet")
  12611. },
  12612. {
  12613. name: "Megamacro",
  12614. height: math.unit(3500, "feet")
  12615. },
  12616. {
  12617. name: "Teramacro",
  12618. height: math.unit(500000, "miles")
  12619. },
  12620. {
  12621. name: "Petamacro",
  12622. height: math.unit(50000000000000000, "parsecs")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(150, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/ilisha-devya/front.svg",
  12635. extra: 1,
  12636. bottom: 0.175
  12637. }
  12638. },
  12639. back: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(150, "lb"),
  12642. name: "Back",
  12643. image: {
  12644. source: "./media/characters/ilisha-devya/back.svg",
  12645. extra: 1,
  12646. bottom: 0.015
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(500, "feet"),
  12654. default: true
  12655. },
  12656. {
  12657. name: "Megamacro",
  12658. height: math.unit(10, "miles")
  12659. },
  12660. {
  12661. name: "Gigamacro",
  12662. height: math.unit(100000, "miles")
  12663. },
  12664. {
  12665. name: "Examacro",
  12666. height: math.unit(1e9, "lightyears")
  12667. },
  12668. {
  12669. name: "Omniversal",
  12670. height: math.unit(1e33, "lightyears")
  12671. },
  12672. {
  12673. name: "Beyond Infinite",
  12674. height: math.unit(1e100, "lightyears")
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12680. {
  12681. Side: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Side",
  12685. image: {
  12686. source: "./media/characters/mira/side.svg",
  12687. extra: 900 / 799,
  12688. bottom: 0.02
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Human Size",
  12695. height: math.unit(6, "feet")
  12696. },
  12697. {
  12698. name: "Macro",
  12699. height: math.unit(100, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Megamacro",
  12704. height: math.unit(10, "miles")
  12705. },
  12706. {
  12707. name: "Gigamacro",
  12708. height: math.unit(25000, "miles")
  12709. },
  12710. {
  12711. name: "Teramacro",
  12712. height: math.unit(300, "AU")
  12713. },
  12714. {
  12715. name: "Full Size",
  12716. height: math.unit(4.5e10, "lightyears")
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12722. {
  12723. front: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(150, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/holly/front.svg",
  12729. extra: 639 / 606
  12730. }
  12731. },
  12732. back: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(150, "lb"),
  12735. name: "Back",
  12736. image: {
  12737. source: "./media/characters/holly/back.svg",
  12738. extra: 623 / 598
  12739. }
  12740. },
  12741. frontWorking: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "lb"),
  12744. name: "Front (Working)",
  12745. image: {
  12746. source: "./media/characters/holly/front-working.svg",
  12747. extra: 607 / 577,
  12748. bottom: 0.048
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(12 + 3 / 12, "feet"),
  12756. default: true
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/porter/front.svg",
  12769. extra: 1,
  12770. bottom: 0.01
  12771. }
  12772. },
  12773. frontRobes: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(150, "lb"),
  12776. name: "Front (Robes)",
  12777. image: {
  12778. source: "./media/characters/porter/front-robes.svg",
  12779. extra: 1.01,
  12780. bottom: 0.01
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(11 + 9 / 12, "feet"),
  12788. default: true
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12794. {
  12795. legendary: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(150, "lb"),
  12798. name: "Legendary",
  12799. image: {
  12800. source: "./media/characters/lucy/legendary.svg",
  12801. extra: 1355 / 1100,
  12802. bottom: 0.045
  12803. }
  12804. },
  12805. },
  12806. [
  12807. {
  12808. name: "Legendary",
  12809. height: math.unit(86882 * 2, "miles"),
  12810. default: true
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12816. {
  12817. front: {
  12818. height: math.unit(6, "feet"),
  12819. weight: math.unit(150, "lb"),
  12820. name: "Front",
  12821. image: {
  12822. source: "./media/characters/drusilla/front.svg",
  12823. extra: 678 / 635,
  12824. bottom: 0.03
  12825. }
  12826. },
  12827. back: {
  12828. height: math.unit(6, "feet"),
  12829. weight: math.unit(150, "lb"),
  12830. name: "Back",
  12831. image: {
  12832. source: "./media/characters/drusilla/back.svg",
  12833. extra: 678 / 635,
  12834. bottom: 0.005
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(100, "feet")
  12842. },
  12843. {
  12844. name: "Canon Height",
  12845. height: math.unit(2000, "feet"),
  12846. default: true
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(180, "lb"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/renard-thatch/front.svg",
  12859. extra: 2411 / 2275,
  12860. bottom: 0.01
  12861. }
  12862. },
  12863. frontPosing: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(180, "lb"),
  12866. name: "Front (Posing)",
  12867. image: {
  12868. source: "./media/characters/renard-thatch/front-posing.svg",
  12869. extra: 2381 / 2261,
  12870. bottom: 0.01
  12871. }
  12872. },
  12873. back: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(180, "lb"),
  12876. name: "Back",
  12877. image: {
  12878. source: "./media/characters/renard-thatch/back.svg",
  12879. extra: 2428 / 2288
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Micro",
  12886. height: math.unit(3, "inches")
  12887. },
  12888. {
  12889. name: "Default",
  12890. height: math.unit(6, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(75, "feet")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(1450, "feet"),
  12904. weight: math.unit(1.21e6, "tons"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/sekvra/front.svg",
  12908. extra: 1,
  12909. bottom: 0.03
  12910. }
  12911. },
  12912. frontClothed: {
  12913. height: math.unit(1450, "feet"),
  12914. weight: math.unit(1.21e6, "tons"),
  12915. name: "Front (Clothed)",
  12916. image: {
  12917. source: "./media/characters/sekvra/front-clothed.svg",
  12918. extra: 1,
  12919. bottom: 0.03
  12920. }
  12921. },
  12922. side: {
  12923. height: math.unit(1450, "feet"),
  12924. weight: math.unit(1.21e6, "tons"),
  12925. name: "Side",
  12926. image: {
  12927. source: "./media/characters/sekvra/side.svg",
  12928. extra: 1,
  12929. bottom: 0.025
  12930. }
  12931. },
  12932. back: {
  12933. height: math.unit(1450, "feet"),
  12934. weight: math.unit(1.21e6, "tons"),
  12935. name: "Back",
  12936. image: {
  12937. source: "./media/characters/sekvra/back.svg",
  12938. extra: 1,
  12939. bottom: 0.005
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(1450, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(15000, "feet")
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12957. {
  12958. front: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(150, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/carmine/front.svg",
  12964. extra: 1,
  12965. bottom: 0.035
  12966. }
  12967. },
  12968. frontArmor: {
  12969. height: math.unit(6, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Front (Armor)",
  12972. image: {
  12973. source: "./media/characters/carmine/front-armor.svg",
  12974. extra: 1,
  12975. bottom: 0.035
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Large",
  12982. height: math.unit(1, "mile")
  12983. },
  12984. {
  12985. name: "Huge",
  12986. height: math.unit(40, "miles"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Colossal",
  12991. height: math.unit(2500, "miles")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/elyssia/front.svg",
  13004. extra: 2201 / 2035,
  13005. bottom: 0.05
  13006. }
  13007. },
  13008. frontClothed: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front (Clothed)",
  13012. image: {
  13013. source: "./media/characters/elyssia/front-clothed.svg",
  13014. extra: 2201 / 2035,
  13015. bottom: 0.05
  13016. }
  13017. },
  13018. back: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Back",
  13022. image: {
  13023. source: "./media/characters/elyssia/back.svg",
  13024. extra: 2201 / 2035,
  13025. bottom: 0.013
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Smaller",
  13032. height: math.unit(150, "feet")
  13033. },
  13034. {
  13035. name: "Standard",
  13036. height: math.unit(1400, "feet"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Distracted",
  13041. height: math.unit(15000, "feet")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(7 + 4 / 12, "feet"),
  13050. weight: math.unit(500, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/geno-maxwell/front.svg",
  13054. extra: 2207 / 2040,
  13055. bottom: 0.015
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Micro",
  13062. height: math.unit(3, "inches")
  13063. },
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(7 + 4 / 12, "feet"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Macro",
  13071. height: math.unit(220, "feet")
  13072. },
  13073. {
  13074. name: "Megamacro",
  13075. height: math.unit(11, "miles")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(7 + 4 / 12, "feet"),
  13084. weight: math.unit(500, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/regena-maxwell/front.svg",
  13088. extra: 3115 / 2770,
  13089. bottom: 0.02
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(7 + 4 / 12, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(220, "feet")
  13102. },
  13103. {
  13104. name: "Megamacro",
  13105. height: math.unit(11, "miles")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13118. extra: 860 / 690,
  13119. bottom: 0.03
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(1.7, "meters"),
  13127. default: true
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/quilly/front.svg",
  13140. extra: 890 / 776
  13141. }
  13142. },
  13143. },
  13144. [
  13145. {
  13146. name: "Gigamacro",
  13147. height: math.unit(404090, "miles"),
  13148. default: true
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(7 + 8 / 12, "feet"),
  13157. weight: math.unit(350, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/tempest/front.svg",
  13161. extra: 1175 / 1086,
  13162. bottom: 0.02
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(7 + 8 / 12, "feet"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13176. {
  13177. side: {
  13178. height: math.unit(4 + 5 / 12, "feet"),
  13179. weight: math.unit(80, "lb"),
  13180. name: "Side",
  13181. image: {
  13182. source: "./media/characters/rodger/side.svg",
  13183. extra: 1235 / 1118
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Micro",
  13190. height: math.unit(1, "inch")
  13191. },
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(4 + 5 / 12, "feet"),
  13195. default: true
  13196. },
  13197. {
  13198. name: "Macro",
  13199. height: math.unit(120, "feet")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/danyel/front.svg",
  13212. extra: 1185 / 1123,
  13213. bottom: 0.05
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Shrunken",
  13220. height: math.unit(0.5, "mm")
  13221. },
  13222. {
  13223. name: "Micro",
  13224. height: math.unit(1, "mm"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Upsized",
  13229. height: math.unit(5 + 5 / 12, "feet")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(5 + 6 / 12, "feet"),
  13238. weight: math.unit(200, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/vivian-bijoux/front.svg",
  13242. extra: 1,
  13243. bottom: 0.072
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(5 + 6 / 12, "feet"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Bad Dream",
  13255. height: math.unit(500, "feet")
  13256. },
  13257. {
  13258. name: "Nightmare",
  13259. height: math.unit(500, "miles")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(6 + 1 / 12, "feet"),
  13268. weight: math.unit(260, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/zeta/front.svg",
  13272. extra: 1968 / 1889,
  13273. bottom: 0.06
  13274. }
  13275. },
  13276. back: {
  13277. height: math.unit(6 + 1 / 12, "feet"),
  13278. weight: math.unit(260, "lb"),
  13279. name: "Back",
  13280. image: {
  13281. source: "./media/characters/zeta/back.svg",
  13282. extra: 1944 / 1858,
  13283. bottom: 0.03
  13284. }
  13285. },
  13286. hand: {
  13287. height: math.unit(1.112, "feet"),
  13288. name: "Hand",
  13289. image: {
  13290. source: "./media/characters/zeta/hand.svg"
  13291. }
  13292. },
  13293. foot: {
  13294. height: math.unit(1.48, "feet"),
  13295. name: "Foot",
  13296. image: {
  13297. source: "./media/characters/zeta/foot.svg"
  13298. }
  13299. },
  13300. },
  13301. [
  13302. {
  13303. name: "Micro",
  13304. height: math.unit(6, "inches")
  13305. },
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(6 + 1 / 12, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(20, "feet")
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13319. {
  13320. front: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Front",
  13324. image: {
  13325. source: "./media/characters/jamie-larsen/front.svg",
  13326. extra: 962 / 933,
  13327. bottom: 0.02
  13328. }
  13329. },
  13330. back: {
  13331. height: math.unit(6, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Back",
  13334. image: {
  13335. source: "./media/characters/jamie-larsen/back.svg",
  13336. extra: 997 / 946
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(28 + 7 / 12, "feet"),
  13344. default: true
  13345. },
  13346. {
  13347. name: "Macro+",
  13348. height: math.unit(180, "feet")
  13349. },
  13350. {
  13351. name: "Megamacro",
  13352. height: math.unit(10, "miles")
  13353. },
  13354. {
  13355. name: "Gigamacro",
  13356. height: math.unit(200000, "miles")
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(120, "lb"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/vance/front.svg",
  13369. extra: 1980 / 1890,
  13370. bottom: 0.09
  13371. }
  13372. },
  13373. back: {
  13374. height: math.unit(6, "feet"),
  13375. weight: math.unit(120, "lb"),
  13376. name: "Back",
  13377. image: {
  13378. source: "./media/characters/vance/back.svg",
  13379. extra: 2081 / 1994,
  13380. bottom: 0.014
  13381. }
  13382. },
  13383. hand: {
  13384. height: math.unit(0.88, "feet"),
  13385. name: "Hand",
  13386. image: {
  13387. source: "./media/characters/vance/hand.svg"
  13388. }
  13389. },
  13390. foot: {
  13391. height: math.unit(0.64, "feet"),
  13392. name: "Foot",
  13393. image: {
  13394. source: "./media/characters/vance/foot.svg"
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Small",
  13401. height: math.unit(90, "feet"),
  13402. default: true
  13403. },
  13404. {
  13405. name: "Macro",
  13406. height: math.unit(100, "meters")
  13407. },
  13408. {
  13409. name: "Megamacro",
  13410. height: math.unit(15, "miles")
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13416. {
  13417. front: {
  13418. height: math.unit(6, "feet"),
  13419. weight: math.unit(180, "lb"),
  13420. name: "Front",
  13421. image: {
  13422. source: "./media/characters/xochitl/front.svg",
  13423. extra: 2297 / 2261,
  13424. bottom: 0.065
  13425. }
  13426. },
  13427. back: {
  13428. height: math.unit(6, "feet"),
  13429. weight: math.unit(180, "lb"),
  13430. name: "Back",
  13431. image: {
  13432. source: "./media/characters/xochitl/back.svg",
  13433. extra: 2386 / 2354,
  13434. bottom: 0.01
  13435. }
  13436. },
  13437. foot: {
  13438. height: math.unit(6 / 5 * 1.15, "feet"),
  13439. weight: math.unit(150, "lb"),
  13440. name: "Foot",
  13441. image: {
  13442. source: "./media/characters/xochitl/foot.svg"
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Macro",
  13449. height: math.unit(80, "feet")
  13450. },
  13451. {
  13452. name: "Macro+",
  13453. height: math.unit(400, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Gigamacro",
  13458. height: math.unit(80000, "miles")
  13459. },
  13460. {
  13461. name: "Gigamacro+",
  13462. height: math.unit(400000, "miles")
  13463. },
  13464. {
  13465. name: "Teramacro",
  13466. height: math.unit(300, "AU")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(6, "feet"),
  13475. weight: math.unit(150, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/vincent/front.svg",
  13479. extra: 1130 / 1080,
  13480. bottom: 0.055
  13481. }
  13482. },
  13483. beak: {
  13484. height: math.unit(6 * 0.1, "feet"),
  13485. name: "Beak",
  13486. image: {
  13487. source: "./media/characters/vincent/beak.svg"
  13488. }
  13489. },
  13490. hand: {
  13491. height: math.unit(6 * 0.85, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Hand",
  13494. image: {
  13495. source: "./media/characters/vincent/hand.svg"
  13496. }
  13497. },
  13498. foot: {
  13499. height: math.unit(6 * 0.19, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Foot",
  13502. image: {
  13503. source: "./media/characters/vincent/foot.svg"
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Base",
  13510. height: math.unit(6 + 5 / 12, "feet"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Macro",
  13515. height: math.unit(300, "feet")
  13516. },
  13517. {
  13518. name: "Megamacro",
  13519. height: math.unit(2, "miles")
  13520. },
  13521. {
  13522. name: "Gigamacro",
  13523. height: math.unit(1000, "miles")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(2, "meters"),
  13532. weight: math.unit(500, "kg"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/coatl/front.svg",
  13536. extra: 3948 / 3500,
  13537. bottom: 0.082
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Normal",
  13544. height: math.unit(4, "meters")
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(100, "meters"),
  13549. default: true
  13550. },
  13551. {
  13552. name: "Macro+",
  13553. height: math.unit(300, "meters")
  13554. },
  13555. {
  13556. name: "Megamacro",
  13557. height: math.unit(3, "gigameters")
  13558. },
  13559. {
  13560. name: "Megamacro+",
  13561. height: math.unit(300, "terameters")
  13562. },
  13563. {
  13564. name: "Megamacro++",
  13565. height: math.unit(3, "lightyears")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(50, "kg"),
  13575. name: "front",
  13576. image: {
  13577. source: "./media/characters/shiroryu/front.svg",
  13578. extra: 1990 / 1935
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Mortal Mingling",
  13585. height: math.unit(3, "meters")
  13586. },
  13587. {
  13588. name: "Kaiju-ish",
  13589. height: math.unit(250, "meters")
  13590. },
  13591. {
  13592. name: "Somewhat Godly",
  13593. height: math.unit(400, "km"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Planetary",
  13598. height: math.unit(300, "megameters")
  13599. },
  13600. {
  13601. name: "Galaxy-dwarfing",
  13602. height: math.unit(450, "kiloparsecs")
  13603. },
  13604. {
  13605. name: "Universe Eater",
  13606. height: math.unit(150, "gigaparsecs")
  13607. },
  13608. {
  13609. name: "Almost Immeasurable",
  13610. height: math.unit(1.3e266, "yottaparsecs")
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/umeko/front.svg",
  13623. extra: 1,
  13624. bottom: 0.019
  13625. }
  13626. },
  13627. frontArmored: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front (Armored)",
  13631. image: {
  13632. source: "./media/characters/umeko/front-armored.svg",
  13633. extra: 1,
  13634. bottom: 0.021
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Macro",
  13641. height: math.unit(220, "feet"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Guardian Dragon",
  13646. height: math.unit(50, "miles")
  13647. },
  13648. {
  13649. name: "Cosmic",
  13650. height: math.unit(800000, "miles")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/cassidy/front.svg",
  13663. extra: 1,
  13664. bottom: 0.043
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Canon Height",
  13671. height: math.unit(120, "feet"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Macro+",
  13676. height: math.unit(400, "feet")
  13677. },
  13678. {
  13679. name: "Macro++",
  13680. height: math.unit(4000, "feet")
  13681. },
  13682. {
  13683. name: "Megamacro",
  13684. height: math.unit(3, "miles")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/isaac/front.svg",
  13697. extra: 896 / 815,
  13698. bottom: 0.11
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Human Size",
  13705. height: math.unit(8, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Macro",
  13710. height: math.unit(400, "feet")
  13711. },
  13712. {
  13713. name: "Megamacro",
  13714. height: math.unit(50, "miles")
  13715. },
  13716. {
  13717. name: "Canon Height",
  13718. height: math.unit(200, "AU")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(72, "kg"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/sleekit/front.svg",
  13731. extra: 4693 / 4487,
  13732. bottom: 0.012
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Minimum Height",
  13739. height: math.unit(10, "meters")
  13740. },
  13741. {
  13742. name: "Smaller",
  13743. height: math.unit(25, "meters")
  13744. },
  13745. {
  13746. name: "Larger",
  13747. height: math.unit(38, "meters"),
  13748. default: true
  13749. },
  13750. {
  13751. name: "Maximum height",
  13752. height: math.unit(100, "meters")
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/nillia/front.svg",
  13765. extra: 2195 / 2037,
  13766. bottom: 0.005
  13767. }
  13768. },
  13769. back: {
  13770. height: math.unit(6, "feet"),
  13771. weight: math.unit(150, "lb"),
  13772. name: "Back",
  13773. image: {
  13774. source: "./media/characters/nillia/back.svg",
  13775. extra: 2195 / 2037,
  13776. bottom: 0.005
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Canon Height",
  13783. height: math.unit(489, "feet"),
  13784. default: true
  13785. }
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/mesmyriza/front.svg",
  13797. extra: 2067 / 1784,
  13798. bottom: 0.035
  13799. }
  13800. },
  13801. foot: {
  13802. height: math.unit(6 / (250 / 35), "feet"),
  13803. name: "Foot",
  13804. image: {
  13805. source: "./media/characters/mesmyriza/foot.svg"
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Macro",
  13812. height: math.unit(457, "meters"),
  13813. default: true
  13814. },
  13815. {
  13816. name: "Megamacro",
  13817. height: math.unit(8, "megameters")
  13818. },
  13819. ]
  13820. ))
  13821. characterMakers.push(() => makeCharacter(
  13822. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13823. {
  13824. front: {
  13825. height: math.unit(6, "feet"),
  13826. weight: math.unit(250, "lb"),
  13827. name: "Front",
  13828. image: {
  13829. source: "./media/characters/saudade/front.svg",
  13830. extra: 1172 / 1139,
  13831. bottom: 0.035
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Micro",
  13838. height: math.unit(3, "inches")
  13839. },
  13840. {
  13841. name: "Normal",
  13842. height: math.unit(6, "feet"),
  13843. default: true
  13844. },
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(50, "feet")
  13848. },
  13849. {
  13850. name: "Megamacro",
  13851. height: math.unit(2800, "feet")
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(5 + 4 / 12, "feet"),
  13860. weight: math.unit(100, "lb"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/keireer/front.svg",
  13864. extra: 716 / 666,
  13865. bottom: 0.05
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Normal",
  13872. height: math.unit(5 + 4 / 12, "feet"),
  13873. default: true
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(6, "feet"),
  13882. weight: math.unit(90, "kg"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/mirja/front.svg",
  13886. extra: 1789 / 1683,
  13887. bottom: 0.05
  13888. }
  13889. },
  13890. frontDressed: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(90, "lb"),
  13893. name: "Front (Dressed)",
  13894. image: {
  13895. source: "./media/characters/mirja/front-dressed.svg",
  13896. extra: 1789 / 1683,
  13897. bottom: 0.05
  13898. }
  13899. },
  13900. back: {
  13901. height: math.unit(6, "feet"),
  13902. weight: math.unit(90, "lb"),
  13903. name: "Back",
  13904. image: {
  13905. source: "./media/characters/mirja/back.svg",
  13906. extra: 953 / 917,
  13907. bottom: 0.017
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "\"Incognito\"",
  13914. height: math.unit(3, "meters")
  13915. },
  13916. {
  13917. name: "Strolling Size",
  13918. height: math.unit(15, "km")
  13919. },
  13920. {
  13921. name: "Larger Strolling Size",
  13922. height: math.unit(400, "km")
  13923. },
  13924. {
  13925. name: "Preferred Size",
  13926. height: math.unit(5000, "km")
  13927. },
  13928. {
  13929. name: "True Size",
  13930. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13931. default: true
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(15, "feet"),
  13940. weight: math.unit(880, "kg"),
  13941. name: "Front",
  13942. image: {
  13943. source: "./media/characters/nightraver/front.svg",
  13944. extra: 2444 / 2160,
  13945. bottom: 0.027
  13946. }
  13947. },
  13948. back: {
  13949. height: math.unit(15, "feet"),
  13950. weight: math.unit(880, "kg"),
  13951. name: "Back",
  13952. image: {
  13953. source: "./media/characters/nightraver/back.svg",
  13954. extra: 2309 / 2180,
  13955. bottom: 0.005
  13956. }
  13957. },
  13958. sole: {
  13959. height: math.unit(2.878, "feet"),
  13960. name: "Sole",
  13961. image: {
  13962. source: "./media/characters/nightraver/sole.svg"
  13963. }
  13964. },
  13965. foot: {
  13966. height: math.unit(2.285, "feet"),
  13967. name: "Foot",
  13968. image: {
  13969. source: "./media/characters/nightraver/foot.svg"
  13970. }
  13971. },
  13972. maw: {
  13973. height: math.unit(2.67, "feet"),
  13974. name: "Maw",
  13975. image: {
  13976. source: "./media/characters/nightraver/maw.svg"
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Micro",
  13983. height: math.unit(1, "cm")
  13984. },
  13985. {
  13986. name: "Normal",
  13987. height: math.unit(15, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Macro",
  13992. height: math.unit(300, "feet")
  13993. },
  13994. {
  13995. name: "Megamacro",
  13996. height: math.unit(300, "miles")
  13997. },
  13998. {
  13999. name: "Gigamacro",
  14000. height: math.unit(10000, "miles")
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14006. {
  14007. side: {
  14008. height: math.unit(2, "inches"),
  14009. weight: math.unit(5, "grams"),
  14010. name: "Side",
  14011. image: {
  14012. source: "./media/characters/arc/side.svg"
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Micro",
  14019. height: math.unit(2, "inches"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(1.1938, "meters"),
  14029. weight: math.unit(54, "kg"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/nebula-shahar/front.svg",
  14033. extra: 1642 / 1436,
  14034. bottom: 0.06
  14035. }
  14036. },
  14037. },
  14038. [
  14039. {
  14040. name: "Megamicro",
  14041. height: math.unit(0.3, "mm")
  14042. },
  14043. {
  14044. name: "Micro",
  14045. height: math.unit(3, "cm")
  14046. },
  14047. {
  14048. name: "Normal",
  14049. height: math.unit(138, "cm"),
  14050. default: true
  14051. },
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(30, "m")
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(5.24, "feet"),
  14063. weight: math.unit(150, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/shayla/front.svg",
  14067. extra: 1512 / 1414,
  14068. bottom: 0.01
  14069. }
  14070. },
  14071. back: {
  14072. height: math.unit(5.24, "feet"),
  14073. weight: math.unit(150, "lb"),
  14074. name: "Back",
  14075. image: {
  14076. source: "./media/characters/shayla/back.svg",
  14077. extra: 1512 / 1414
  14078. }
  14079. },
  14080. hand: {
  14081. height: math.unit(0.7781496062992126, "feet"),
  14082. name: "Hand",
  14083. image: {
  14084. source: "./media/characters/shayla/hand.svg"
  14085. }
  14086. },
  14087. foot: {
  14088. height: math.unit(1.4206036745406823, "feet"),
  14089. name: "Foot",
  14090. image: {
  14091. source: "./media/characters/shayla/foot.svg"
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Micro",
  14098. height: math.unit(0.32, "feet")
  14099. },
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(5.24, "feet"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Macro",
  14107. height: math.unit(492.12, "feet")
  14108. },
  14109. {
  14110. name: "Megamacro",
  14111. height: math.unit(186.41, "miles")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(2.2, "m"),
  14120. weight: math.unit(120, "kg"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/pia-jr/front.svg",
  14124. extra: 1000 / 970,
  14125. bottom: 0.035
  14126. }
  14127. },
  14128. hand: {
  14129. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14130. name: "Hand",
  14131. image: {
  14132. source: "./media/characters/pia-jr/hand.svg"
  14133. }
  14134. },
  14135. paw: {
  14136. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14137. name: "Paw",
  14138. image: {
  14139. source: "./media/characters/pia-jr/paw.svg"
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Micro",
  14146. height: math.unit(1.2, "cm")
  14147. },
  14148. {
  14149. name: "Normal",
  14150. height: math.unit(2.2, "m"),
  14151. default: true
  14152. },
  14153. {
  14154. name: "Macro",
  14155. height: math.unit(180, "m")
  14156. },
  14157. {
  14158. name: "Megamacro",
  14159. height: math.unit(420, "km")
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(2, "m"),
  14168. weight: math.unit(115, "kg"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/pia-sr/front.svg",
  14172. extra: 760 / 730,
  14173. bottom: 0.015
  14174. }
  14175. },
  14176. back: {
  14177. height: math.unit(2, "m"),
  14178. weight: math.unit(115, "kg"),
  14179. name: "Back",
  14180. image: {
  14181. source: "./media/characters/pia-sr/back.svg",
  14182. extra: 760 / 730,
  14183. bottom: 0.01
  14184. }
  14185. },
  14186. hand: {
  14187. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14188. name: "Hand",
  14189. image: {
  14190. source: "./media/characters/pia-sr/hand.svg"
  14191. }
  14192. },
  14193. foot: {
  14194. height: math.unit(1.83, "feet"),
  14195. name: "Foot",
  14196. image: {
  14197. source: "./media/characters/pia-sr/foot.svg"
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Micro",
  14204. height: math.unit(88, "mm")
  14205. },
  14206. {
  14207. name: "Normal",
  14208. height: math.unit(2, "m"),
  14209. default: true
  14210. },
  14211. {
  14212. name: "Macro",
  14213. height: math.unit(200, "m")
  14214. },
  14215. {
  14216. name: "Megamacro",
  14217. height: math.unit(420, "km")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(8 + 2 / 12, "feet"),
  14226. weight: math.unit(300, "lb"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/kibibyte/front.svg",
  14230. extra: 2221 / 2098,
  14231. bottom: 0.04
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Normal",
  14238. height: math.unit(8 + 2 / 12, "feet"),
  14239. default: true
  14240. },
  14241. {
  14242. name: "Socialable Macro",
  14243. height: math.unit(50, "feet")
  14244. },
  14245. {
  14246. name: "Macro",
  14247. height: math.unit(300, "feet")
  14248. },
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(500, "miles")
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(6, "feet"),
  14260. weight: math.unit(150, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/felix/front.svg",
  14264. extra: 762 / 722,
  14265. bottom: 0.02
  14266. }
  14267. },
  14268. frontClothed: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(150, "lb"),
  14271. name: "Front (Clothed)",
  14272. image: {
  14273. source: "./media/characters/felix/front-clothed.svg",
  14274. extra: 762 / 722,
  14275. bottom: 0.02
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Normal",
  14282. height: math.unit(6 + 8 / 12, "feet"),
  14283. default: true
  14284. },
  14285. {
  14286. name: "Macro",
  14287. height: math.unit(2600, "feet")
  14288. },
  14289. {
  14290. name: "Megamacro",
  14291. height: math.unit(450, "miles")
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(6 + 1 / 12, "feet"),
  14300. weight: math.unit(250, "lb"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/tobo/front.svg",
  14304. extra: 608 / 586,
  14305. bottom: 0.023
  14306. }
  14307. },
  14308. back: {
  14309. height: math.unit(6 + 1 / 12, "feet"),
  14310. weight: math.unit(250, "lb"),
  14311. name: "Back",
  14312. image: {
  14313. source: "./media/characters/tobo/back.svg",
  14314. extra: 608 / 586
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Nano",
  14321. height: math.unit(2, "nm")
  14322. },
  14323. {
  14324. name: "Megamicro",
  14325. height: math.unit(0.1, "mm")
  14326. },
  14327. {
  14328. name: "Micro",
  14329. height: math.unit(1, "inch"),
  14330. default: true
  14331. },
  14332. {
  14333. name: "Human-sized",
  14334. height: math.unit(6 + 1 / 12, "feet")
  14335. },
  14336. {
  14337. name: "Macro",
  14338. height: math.unit(250, "feet")
  14339. },
  14340. {
  14341. name: "Megamacro",
  14342. height: math.unit(75, "miles")
  14343. },
  14344. {
  14345. name: "Texas-sized",
  14346. height: math.unit(750, "miles")
  14347. },
  14348. {
  14349. name: "Teramacro",
  14350. height: math.unit(50000, "miles")
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(6, "feet"),
  14359. weight: math.unit(269, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/danny-kapowsky/front.svg",
  14363. extra: 766 / 736,
  14364. bottom: 0.044
  14365. }
  14366. },
  14367. back: {
  14368. height: math.unit(6, "feet"),
  14369. weight: math.unit(269, "lb"),
  14370. name: "Back",
  14371. image: {
  14372. source: "./media/characters/danny-kapowsky/back.svg",
  14373. extra: 797 / 760,
  14374. bottom: 0.025
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Macro",
  14381. height: math.unit(150, "feet"),
  14382. default: true
  14383. },
  14384. {
  14385. name: "Macro+",
  14386. height: math.unit(200, "feet")
  14387. },
  14388. {
  14389. name: "Macro++",
  14390. height: math.unit(300, "feet")
  14391. },
  14392. {
  14393. name: "Macro+++",
  14394. height: math.unit(400, "feet")
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14400. {
  14401. side: {
  14402. height: math.unit(6, "feet"),
  14403. weight: math.unit(170, "lb"),
  14404. name: "Side",
  14405. image: {
  14406. source: "./media/characters/finn/side.svg",
  14407. extra: 1953 / 1807,
  14408. bottom: 0.057
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(14445, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(5 + 6 / 12, "feet"),
  14425. weight: math.unit(125, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/roy/front.svg",
  14429. extra: 1,
  14430. bottom: 0.11
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Micro",
  14437. height: math.unit(3, "inches"),
  14438. default: true
  14439. },
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5 + 6 / 12, "feet")
  14443. },
  14444. {
  14445. name: "Lesser Macro",
  14446. height: math.unit(60, "feet")
  14447. },
  14448. {
  14449. name: "Greater Macro",
  14450. height: math.unit(120, "feet")
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(6, "feet"),
  14459. weight: math.unit(100, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/aevsivs/front.svg",
  14463. extra: 1,
  14464. bottom: 0.03
  14465. }
  14466. },
  14467. back: {
  14468. height: math.unit(6, "feet"),
  14469. weight: math.unit(100, "lb"),
  14470. name: "Back",
  14471. image: {
  14472. source: "./media/characters/aevsivs/back.svg"
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Micro",
  14479. height: math.unit(2, "inches"),
  14480. default: true
  14481. },
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(5, "feet")
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(5 + 7 / 12, "feet"),
  14493. weight: math.unit(159, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/hildegard/front.svg",
  14497. extra: 289 / 269,
  14498. bottom: 7.63 / 297.8
  14499. }
  14500. },
  14501. back: {
  14502. height: math.unit(5 + 7 / 12, "feet"),
  14503. weight: math.unit(159, "lb"),
  14504. name: "Back",
  14505. image: {
  14506. source: "./media/characters/hildegard/back.svg",
  14507. extra: 280 / 260,
  14508. bottom: 2.3 / 282
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Normal",
  14515. height: math.unit(5 + 7 / 12, "feet"),
  14516. default: true
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14522. {
  14523. bernard: {
  14524. height: math.unit(2 + 7 / 12, "feet"),
  14525. weight: math.unit(66, "lb"),
  14526. name: "Bernard",
  14527. rename: true,
  14528. image: {
  14529. source: "./media/characters/bernard-wilder/bernard.svg",
  14530. extra: 192 / 128,
  14531. bottom: 0.05
  14532. }
  14533. },
  14534. wilder: {
  14535. height: math.unit(5 + 8 / 12, "feet"),
  14536. weight: math.unit(143, "lb"),
  14537. name: "Wilder",
  14538. rename: true,
  14539. image: {
  14540. source: "./media/characters/bernard-wilder/wilder.svg",
  14541. extra: 361 / 312,
  14542. bottom: 0.02
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(2 + 7 / 12, "feet"),
  14550. default: true
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14556. {
  14557. anthro: {
  14558. height: math.unit(6 + 1 / 12, "feet"),
  14559. weight: math.unit(155, "lb"),
  14560. name: "Anthro",
  14561. image: {
  14562. source: "./media/characters/hearth/anthro.svg",
  14563. extra: 260 / 250,
  14564. bottom: 0.02
  14565. }
  14566. },
  14567. feral: {
  14568. height: math.unit(3.78, "feet"),
  14569. weight: math.unit(35, "kg"),
  14570. name: "Feral",
  14571. image: {
  14572. source: "./media/characters/hearth/feral.svg",
  14573. extra: 153 / 135,
  14574. bottom: 0.03
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Normal",
  14581. height: math.unit(6 + 1 / 12, "feet"),
  14582. default: true
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(182, "lb"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/ingrid/front.svg",
  14595. extra: 294 / 268,
  14596. bottom: 0.027
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(6, "feet"),
  14604. default: true
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14610. {
  14611. eevee: {
  14612. height: math.unit(2 + 10 / 12, "feet"),
  14613. weight: math.unit(86, "lb"),
  14614. name: "Malgam",
  14615. image: {
  14616. source: "./media/characters/malgam/eevee.svg",
  14617. extra: 218 / 180,
  14618. bottom: 0.2
  14619. }
  14620. },
  14621. sylveon: {
  14622. height: math.unit(4, "feet"),
  14623. weight: math.unit(101, "lb"),
  14624. name: "Future Malgam",
  14625. rename: true,
  14626. image: {
  14627. source: "./media/characters/malgam/sylveon.svg",
  14628. extra: 371 / 325,
  14629. bottom: 0.015
  14630. }
  14631. },
  14632. gigantamax: {
  14633. height: math.unit(50, "feet"),
  14634. name: "Gigantamax Malgam",
  14635. rename: true,
  14636. image: {
  14637. source: "./media/characters/malgam/gigantamax.svg"
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(2 + 10 / 12, "feet"),
  14645. default: true
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(5 + 11 / 12, "feet"),
  14654. weight: math.unit(188, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/fleur/front.svg",
  14658. extra: 309 / 283,
  14659. bottom: 0.007
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(5 + 11 / 12, "feet"),
  14667. default: true
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(5 + 4 / 12, "feet"),
  14676. weight: math.unit(122, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/jude/front.svg",
  14680. extra: 288 / 273,
  14681. bottom: 0.03
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(5 + 4 / 12, "feet"),
  14689. default: true
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(5 + 11 / 12, "feet"),
  14698. weight: math.unit(190, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/seara/front.svg",
  14702. extra: 1,
  14703. bottom: 0.05
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(5 + 11 / 12, "feet"),
  14711. default: true
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(16 + 5 / 12, "feet"),
  14720. weight: math.unit(524, "lb"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/caspian/front.svg",
  14724. extra: 1,
  14725. bottom: 0.04
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(16 + 5 / 12, "feet"),
  14733. default: true
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(5 + 7 / 12, "feet"),
  14742. weight: math.unit(170, "lb"),
  14743. name: "Front",
  14744. image: {
  14745. source: "./media/characters/mika/front.svg",
  14746. extra: 1,
  14747. bottom: 0.016
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(5 + 7 / 12, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6 + 2 / 12, "feet"),
  14764. weight: math.unit(268, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/sol/front.svg",
  14768. extra: 247 / 231,
  14769. bottom: 0.05
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(6 + 2 / 12, "feet"),
  14777. default: true
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14783. {
  14784. buizel: {
  14785. height: math.unit(2 + 5 / 12, "feet"),
  14786. weight: math.unit(87, "lb"),
  14787. name: "Buizel",
  14788. image: {
  14789. source: "./media/characters/umiko/buizel.svg",
  14790. extra: 172 / 157,
  14791. bottom: 0.01
  14792. }
  14793. },
  14794. floatzel: {
  14795. height: math.unit(5 + 9 / 12, "feet"),
  14796. weight: math.unit(250, "lb"),
  14797. name: "Floatzel",
  14798. image: {
  14799. source: "./media/characters/umiko/floatzel.svg",
  14800. extra: 262 / 248
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(2 + 5 / 12, "feet"),
  14808. default: true
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14814. {
  14815. front: {
  14816. height: math.unit(6 + 2 / 12, "feet"),
  14817. weight: math.unit(146, "lb"),
  14818. name: "Front",
  14819. image: {
  14820. source: "./media/characters/iliac/front.svg",
  14821. extra: 389 / 365,
  14822. bottom: 0.035
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(6 + 2 / 12, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(6, "feet"),
  14839. weight: math.unit(170, "lb"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/topaz/front.svg",
  14843. extra: 317 / 303,
  14844. bottom: 0.055
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(6, "feet"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(5 + 11 / 12, "feet"),
  14861. weight: math.unit(144, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/gabriel/front.svg",
  14865. extra: 285 / 262,
  14866. bottom: 0.004
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Normal",
  14873. height: math.unit(5 + 11 / 12, "feet"),
  14874. default: true
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14880. {
  14881. side: {
  14882. height: math.unit(6 + 5 / 12, "feet"),
  14883. weight: math.unit(300, "lb"),
  14884. name: "Side",
  14885. image: {
  14886. source: "./media/characters/tempest-suicune/side.svg",
  14887. extra: 195 / 154,
  14888. bottom: 0.04
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(6 + 5 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(7 + 2 / 12, "feet"),
  14905. weight: math.unit(322, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/vulcan/front.svg",
  14909. extra: 154 / 147,
  14910. bottom: 0.04
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(7 + 2 / 12, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(5 + 10 / 12, "feet"),
  14927. weight: math.unit(264, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/gault/front.svg",
  14931. extra: 161 / 140,
  14932. bottom: 0.028
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(5 + 10 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/shard/front.svg",
  14953. extra: 273 / 238,
  14954. bottom: 0.02
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(3 + 6 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(5 + 11 / 12, "feet"),
  14971. weight: math.unit(146, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/ashe/front.svg",
  14975. extra: 400 / 373,
  14976. bottom: 0.01
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(5 + 11 / 12, "feet"),
  14984. default: true
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(5 + 5 / 12, "feet"),
  14993. weight: math.unit(135, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/beatrix/front.svg",
  14997. extra: 392 / 379,
  14998. bottom: 0.01
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(6, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(150, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/ignatius/front.svg",
  15019. extra: 245 / 222,
  15020. bottom: 0.01
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(5 + 5 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(6 + 2 / 12, "feet"),
  15037. weight: math.unit(138, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/mei-li/front.svg",
  15041. extra: 237 / 229,
  15042. bottom: 0.03
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(6 + 2 / 12, "feet"),
  15050. default: true
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15056. {
  15057. front: {
  15058. height: math.unit(2 + 4 / 12, "feet"),
  15059. weight: math.unit(62, "lb"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/puru/front.svg",
  15063. extra: 206 / 149,
  15064. bottom: 0.06
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Normal",
  15071. height: math.unit(2 + 4 / 12, "feet"),
  15072. default: true
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15078. {
  15079. anthro: {
  15080. height: math.unit(5 + 8/12, "feet"),
  15081. weight: math.unit(200, "lb"),
  15082. energyNeed: math.unit(2000, "kcal"),
  15083. name: "Anthro",
  15084. image: {
  15085. source: "./media/characters/kee/anthro.svg",
  15086. extra: 3251/3184,
  15087. bottom: 250/3501
  15088. }
  15089. },
  15090. taur: {
  15091. height: math.unit(11, "feet"),
  15092. weight: math.unit(500, "lb"),
  15093. energyNeed: math.unit(5000, "kcal"),
  15094. name: "Taur",
  15095. image: {
  15096. source: "./media/characters/kee/taur.svg",
  15097. extra: 1362/1320,
  15098. bottom: 83/1445
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(5 + 8/12, "feet"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Macro",
  15110. height: math.unit(35, "feet")
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15116. {
  15117. anthro: {
  15118. height: math.unit(7, "feet"),
  15119. weight: math.unit(190, "lb"),
  15120. name: "Anthro",
  15121. image: {
  15122. source: "./media/characters/cobalt-dracha/anthro.svg",
  15123. extra: 231 / 225,
  15124. bottom: 0.04
  15125. }
  15126. },
  15127. feral: {
  15128. height: math.unit(9 + 7 / 12, "feet"),
  15129. weight: math.unit(294, "lb"),
  15130. name: "Feral",
  15131. image: {
  15132. source: "./media/characters/cobalt-dracha/feral.svg",
  15133. extra: 692 / 633,
  15134. bottom: 0.05
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(7, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15148. {
  15149. fallen: {
  15150. height: math.unit(11 + 8 / 12, "feet"),
  15151. weight: math.unit(485, "lb"),
  15152. name: "Java (Fallen)",
  15153. rename: true,
  15154. image: {
  15155. source: "./media/characters/java/fallen.svg",
  15156. extra: 226 / 208,
  15157. bottom: 0.005
  15158. }
  15159. },
  15160. godkin: {
  15161. height: math.unit(10 + 6 / 12, "feet"),
  15162. weight: math.unit(328, "lb"),
  15163. name: "Java (Godkin)",
  15164. rename: true,
  15165. image: {
  15166. source: "./media/characters/java/godkin.svg",
  15167. extra: 270 / 262,
  15168. bottom: 0.02
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(11 + 8 / 12, "feet"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(7 + 8 / 12, "feet"),
  15185. weight: math.unit(320, "lb"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/skoll/front.svg",
  15189. extra: 232 / 220,
  15190. bottom: 0.02
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(7 + 8 / 12, "feet"),
  15198. default: true
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15204. {
  15205. front: {
  15206. height: math.unit(5 + 9 / 12, "feet"),
  15207. weight: math.unit(170, "lb"),
  15208. name: "Front",
  15209. image: {
  15210. source: "./media/characters/purna/front.svg",
  15211. extra: 239 / 229,
  15212. bottom: 0.01
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(5 + 9 / 12, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(5 + 9 / 12, "feet"),
  15229. weight: math.unit(142, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/kuva/front.svg",
  15233. extra: 281 / 271,
  15234. bottom: 0.006
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(5 + 9 / 12, "feet"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15248. {
  15249. anthro: {
  15250. height: math.unit(9 + 2 / 12, "feet"),
  15251. weight: math.unit(270, "lb"),
  15252. name: "Anthro",
  15253. image: {
  15254. source: "./media/characters/embra/anthro.svg",
  15255. extra: 200 / 187,
  15256. bottom: 0.02
  15257. }
  15258. },
  15259. feral: {
  15260. height: math.unit(18 + 8 / 12, "feet"),
  15261. weight: math.unit(576, "lb"),
  15262. name: "Feral",
  15263. image: {
  15264. source: "./media/characters/embra/feral.svg",
  15265. extra: 152 / 137,
  15266. bottom: 0.037
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Normal",
  15273. height: math.unit(9 + 2 / 12, "feet"),
  15274. default: true
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15280. {
  15281. anthro: {
  15282. height: math.unit(10 + 9 / 12, "feet"),
  15283. weight: math.unit(224, "lb"),
  15284. name: "Anthro",
  15285. image: {
  15286. source: "./media/characters/grottos/anthro.svg",
  15287. extra: 350 / 332,
  15288. bottom: 0.045
  15289. }
  15290. },
  15291. feral: {
  15292. height: math.unit(20 + 7 / 12, "feet"),
  15293. weight: math.unit(629, "lb"),
  15294. name: "Feral",
  15295. image: {
  15296. source: "./media/characters/grottos/feral.svg",
  15297. extra: 207 / 190,
  15298. bottom: 0.05
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(10 + 9 / 12, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15312. {
  15313. anthro: {
  15314. height: math.unit(9 + 6 / 12, "feet"),
  15315. weight: math.unit(298, "lb"),
  15316. name: "Anthro",
  15317. image: {
  15318. source: "./media/characters/frifna/anthro.svg",
  15319. extra: 282 / 269,
  15320. bottom: 0.015
  15321. }
  15322. },
  15323. feral: {
  15324. height: math.unit(16 + 2 / 12, "feet"),
  15325. weight: math.unit(624, "lb"),
  15326. name: "Feral",
  15327. image: {
  15328. source: "./media/characters/frifna/feral.svg"
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(9 + 6 / 12, "feet"),
  15336. default: true
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15342. {
  15343. front: {
  15344. height: math.unit(6 + 2 / 12, "feet"),
  15345. weight: math.unit(168, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/elise/front.svg",
  15349. extra: 276 / 271
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(6 + 2 / 12, "feet"),
  15357. default: true
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(5 + 10 / 12, "feet"),
  15366. weight: math.unit(210, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/glade/front.svg",
  15370. extra: 258 / 247,
  15371. bottom: 0.008
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Normal",
  15378. height: math.unit(5 + 10 / 12, "feet"),
  15379. default: true
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(5 + 10 / 12, "feet"),
  15388. weight: math.unit(129, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/rina/front.svg",
  15392. extra: 266 / 255,
  15393. bottom: 0.005
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(5 + 10 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(6 + 1 / 12, "feet"),
  15410. weight: math.unit(192, "lb"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/veronica/front.svg",
  15414. extra: 319 / 309,
  15415. bottom: 0.005
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Normal",
  15422. height: math.unit(6 + 1 / 12, "feet"),
  15423. default: true
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(9 + 3 / 12, "feet"),
  15432. weight: math.unit(1100, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/braxton/front.svg",
  15436. extra: 1057 / 984,
  15437. bottom: 0.05
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(9 + 3 / 12, "feet")
  15445. },
  15446. {
  15447. name: "Giant",
  15448. height: math.unit(300, "feet"),
  15449. default: true
  15450. },
  15451. {
  15452. name: "Macro",
  15453. height: math.unit(700, "feet")
  15454. },
  15455. {
  15456. name: "Megamacro",
  15457. height: math.unit(6000, "feet")
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(6 + 7 / 12, "feet"),
  15466. weight: math.unit(150, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/blue-feyonics/front.svg",
  15470. extra: 1403 / 1306,
  15471. bottom: 0.047
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(6 + 7 / 12, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(1.8, "meters"),
  15488. weight: math.unit(60, "kg"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/maxwell/front.svg",
  15492. extra: 2060 / 1873
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Micro",
  15499. height: math.unit(1, "mm")
  15500. },
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(1.8, "meter"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(30, "meters")
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(10, "km")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(150, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/jack/front.svg",
  15525. extra: 1754 / 1640,
  15526. bottom: 0.01
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(80000, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Max size",
  15538. height: math.unit(10, "lightyears")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15544. {
  15545. upright: {
  15546. height: math.unit(7, "feet"),
  15547. weight: math.unit(170, "lb"),
  15548. name: "Upright",
  15549. image: {
  15550. source: "./media/characters/cafat/upright.svg",
  15551. bottom: 0.01
  15552. }
  15553. },
  15554. uprightFull: {
  15555. height: math.unit(7, "feet"),
  15556. weight: math.unit(170, "lb"),
  15557. name: "Upright (Full)",
  15558. image: {
  15559. source: "./media/characters/cafat/upright-full.svg",
  15560. bottom: 0.01
  15561. }
  15562. },
  15563. side: {
  15564. height: math.unit(5, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Side",
  15567. image: {
  15568. source: "./media/characters/cafat/side.svg"
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Small",
  15575. height: math.unit(7, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Large",
  15580. height: math.unit(15.5, "feet")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/verin-raharra/front.svg",
  15593. extra: 5019 / 4835,
  15594. bottom: 0.023
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(7 + 5 / 12, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Upsized",
  15606. height: math.unit(20, "feet")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(7, "feet"),
  15615. weight: math.unit(230, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/nakata/front.svg",
  15619. extra: 1.005,
  15620. bottom: 0.01
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(7, "feet"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Big",
  15632. height: math.unit(14, "feet")
  15633. },
  15634. {
  15635. name: "Macro",
  15636. height: math.unit(400, "feet")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(4.91, "feet"),
  15645. weight: math.unit(100, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/lily/front.svg",
  15649. extra: 1585 / 1415,
  15650. bottom: 0.02
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(4.91, "feet"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15664. {
  15665. laying: {
  15666. height: math.unit(4 + 4 / 12, "feet"),
  15667. weight: math.unit(600, "lb"),
  15668. name: "Laying",
  15669. image: {
  15670. source: "./media/characters/sheila/laying.svg",
  15671. extra: 1333 / 1265,
  15672. bottom: 0.16
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(4 + 4 / 12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(190, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/sax/front.svg",
  15693. extra: 1187 / 973,
  15694. bottom: 0.042
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Micro",
  15701. height: math.unit(4, "inches"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(6, "feet"),
  15711. weight: math.unit(150, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/pandora/front.svg",
  15715. extra: 2720 / 2556,
  15716. bottom: 0.015
  15717. }
  15718. },
  15719. back: {
  15720. height: math.unit(6, "feet"),
  15721. weight: math.unit(150, "lb"),
  15722. name: "Back",
  15723. image: {
  15724. source: "./media/characters/pandora/back.svg",
  15725. extra: 2720 / 2556,
  15726. bottom: 0.01
  15727. }
  15728. },
  15729. beans: {
  15730. height: math.unit(6 / 8, "feet"),
  15731. name: "Beans",
  15732. image: {
  15733. source: "./media/characters/pandora/beans.svg"
  15734. }
  15735. },
  15736. skirt: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Skirt",
  15740. image: {
  15741. source: "./media/characters/pandora/skirt.svg",
  15742. extra: 1622 / 1525,
  15743. bottom: 0.015
  15744. }
  15745. },
  15746. hoodie: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Hoodie",
  15750. image: {
  15751. source: "./media/characters/pandora/hoodie.svg",
  15752. extra: 1622 / 1525,
  15753. bottom: 0.015
  15754. }
  15755. },
  15756. casual: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(150, "lb"),
  15759. name: "Casual",
  15760. image: {
  15761. source: "./media/characters/pandora/casual.svg",
  15762. extra: 1622 / 1525,
  15763. bottom: 0.015
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(6, "feet")
  15771. },
  15772. {
  15773. name: "Big Steppy",
  15774. height: math.unit(1, "km"),
  15775. default: true
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15781. {
  15782. side: {
  15783. height: math.unit(10, "feet"),
  15784. weight: math.unit(800, "kg"),
  15785. name: "Side",
  15786. image: {
  15787. source: "./media/characters/venio-darcony/side.svg",
  15788. extra: 1373 / 1003,
  15789. bottom: 0.037
  15790. }
  15791. },
  15792. front: {
  15793. height: math.unit(19, "feet"),
  15794. weight: math.unit(800, "kg"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/venio-darcony/front.svg"
  15798. }
  15799. },
  15800. back: {
  15801. height: math.unit(19, "feet"),
  15802. weight: math.unit(800, "kg"),
  15803. name: "Back",
  15804. image: {
  15805. source: "./media/characters/venio-darcony/back.svg"
  15806. }
  15807. },
  15808. sideNsfw: {
  15809. height: math.unit(10, "feet"),
  15810. weight: math.unit(800, "kg"),
  15811. name: "Side (NSFW)",
  15812. image: {
  15813. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15814. extra: 1373 / 1003,
  15815. bottom: 0.037
  15816. }
  15817. },
  15818. frontNsfw: {
  15819. height: math.unit(19, "feet"),
  15820. weight: math.unit(800, "kg"),
  15821. name: "Front (NSFW)",
  15822. image: {
  15823. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15824. }
  15825. },
  15826. backNsfw: {
  15827. height: math.unit(19, "feet"),
  15828. weight: math.unit(800, "kg"),
  15829. name: "Back (NSFW)",
  15830. image: {
  15831. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15832. }
  15833. },
  15834. sideArmored: {
  15835. height: math.unit(10, "feet"),
  15836. weight: math.unit(800, "kg"),
  15837. name: "Side (Armored)",
  15838. image: {
  15839. source: "./media/characters/venio-darcony/side-armored.svg",
  15840. extra: 1373 / 1003,
  15841. bottom: 0.037
  15842. }
  15843. },
  15844. frontArmored: {
  15845. height: math.unit(19, "feet"),
  15846. weight: math.unit(900, "kg"),
  15847. name: "Front (Armored)",
  15848. image: {
  15849. source: "./media/characters/venio-darcony/front-armored.svg"
  15850. }
  15851. },
  15852. backArmored: {
  15853. height: math.unit(19, "feet"),
  15854. weight: math.unit(900, "kg"),
  15855. name: "Back (Armored)",
  15856. image: {
  15857. source: "./media/characters/venio-darcony/back-armored.svg"
  15858. }
  15859. },
  15860. sword: {
  15861. height: math.unit(10, "feet"),
  15862. weight: math.unit(50, "lb"),
  15863. name: "Sword",
  15864. image: {
  15865. source: "./media/characters/venio-darcony/sword.svg"
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(10, "feet")
  15873. },
  15874. {
  15875. name: "Macro",
  15876. height: math.unit(130, "feet"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Macro+",
  15881. height: math.unit(240, "feet")
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(6, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/veski/front.svg",
  15894. extra: 1299 / 1225,
  15895. bottom: 0.04
  15896. }
  15897. },
  15898. back: {
  15899. height: math.unit(6, "feet"),
  15900. weight: math.unit(150, "lb"),
  15901. name: "Back",
  15902. image: {
  15903. source: "./media/characters/veski/back.svg",
  15904. extra: 1299 / 1225,
  15905. bottom: 0.008
  15906. }
  15907. },
  15908. maw: {
  15909. height: math.unit(1.5 * 1.21, "feet"),
  15910. name: "Maw",
  15911. image: {
  15912. source: "./media/characters/veski/maw.svg"
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(2, "km"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(5 + 7 / 12, "feet"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/isabelle/front.svg",
  15932. extra: 2130 / 1976,
  15933. bottom: 0.05
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Supermicro",
  15940. height: math.unit(10, "micrometers")
  15941. },
  15942. {
  15943. name: "Micro",
  15944. height: math.unit(1, "inch")
  15945. },
  15946. {
  15947. name: "Tiny",
  15948. height: math.unit(5, "inches")
  15949. },
  15950. {
  15951. name: "Standard",
  15952. height: math.unit(5 + 7 / 12, "inches")
  15953. },
  15954. {
  15955. name: "Macro",
  15956. height: math.unit(80, "meters"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Megamacro",
  15961. height: math.unit(250, "meters")
  15962. },
  15963. {
  15964. name: "Gigamacro",
  15965. height: math.unit(5, "km")
  15966. },
  15967. {
  15968. name: "Cosmic",
  15969. height: math.unit(2.5e6, "miles")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(150, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/hanzo/front.svg",
  15982. extra: 374 / 344,
  15983. bottom: 0.02
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(8, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(7, "feet"),
  16000. weight: math.unit(130, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/anna/front.svg",
  16004. extra: 169 / 145,
  16005. bottom: 0.06
  16006. }
  16007. },
  16008. full: {
  16009. height: math.unit(4.96, "feet"),
  16010. weight: math.unit(220, "lb"),
  16011. name: "Full",
  16012. image: {
  16013. source: "./media/characters/anna/full.svg",
  16014. extra: 138 / 114,
  16015. bottom: 0.15
  16016. }
  16017. },
  16018. tongue: {
  16019. height: math.unit(2.53, "feet"),
  16020. name: "Tongue",
  16021. image: {
  16022. source: "./media/characters/anna/tongue.svg"
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(7, "feet"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(7, "feet"),
  16039. weight: math.unit(150, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/ian-corvid/front.svg",
  16043. extra: 150 / 142,
  16044. bottom: 0.02
  16045. }
  16046. },
  16047. back: {
  16048. height: math.unit(7, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Back",
  16051. image: {
  16052. source: "./media/characters/ian-corvid/back.svg",
  16053. extra: 150 / 143,
  16054. bottom: 0.01
  16055. }
  16056. },
  16057. stomping: {
  16058. height: math.unit(7, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Stomping",
  16061. image: {
  16062. source: "./media/characters/ian-corvid/stomping.svg",
  16063. extra: 76 / 72
  16064. }
  16065. },
  16066. sitting: {
  16067. height: math.unit(7 / 1.8, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Sitting",
  16070. image: {
  16071. source: "./media/characters/ian-corvid/sitting.svg",
  16072. extra: 1400 / 1269,
  16073. bottom: 0.15
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Tiny Microw",
  16080. height: math.unit(1, "inch")
  16081. },
  16082. {
  16083. name: "Microw",
  16084. height: math.unit(6, "inches")
  16085. },
  16086. {
  16087. name: "Crow",
  16088. height: math.unit(7 + 1 / 12, "feet"),
  16089. default: true
  16090. },
  16091. {
  16092. name: "Macrow",
  16093. height: math.unit(176, "feet")
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(5 + 7 / 12, "feet"),
  16102. weight: math.unit(147, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/natalie-kellon/front.svg",
  16106. extra: 1214 / 1141,
  16107. bottom: 0.02
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Micro",
  16114. height: math.unit(1 / 16, "inch")
  16115. },
  16116. {
  16117. name: "Tiny",
  16118. height: math.unit(4, "inches")
  16119. },
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(5 + 7 / 12, "feet"),
  16123. default: true
  16124. },
  16125. {
  16126. name: "Amazon",
  16127. height: math.unit(12, "feet")
  16128. },
  16129. {
  16130. name: "Giantess",
  16131. height: math.unit(160, "meters")
  16132. },
  16133. {
  16134. name: "Titaness",
  16135. height: math.unit(800, "meters")
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(6, "feet"),
  16144. weight: math.unit(150, "lb"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/alluria/front.svg",
  16148. extra: 806 / 738,
  16149. bottom: 0.01
  16150. }
  16151. },
  16152. side: {
  16153. height: math.unit(6, "feet"),
  16154. weight: math.unit(150, "lb"),
  16155. name: "Side",
  16156. image: {
  16157. source: "./media/characters/alluria/side.svg",
  16158. extra: 800 / 750,
  16159. }
  16160. },
  16161. back: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(150, "lb"),
  16164. name: "Back",
  16165. image: {
  16166. source: "./media/characters/alluria/back.svg",
  16167. extra: 806 / 738,
  16168. }
  16169. },
  16170. frontMaid: {
  16171. height: math.unit(6, "feet"),
  16172. weight: math.unit(150, "lb"),
  16173. name: "Front (Maid)",
  16174. image: {
  16175. source: "./media/characters/alluria/front-maid.svg",
  16176. extra: 806 / 738,
  16177. bottom: 0.01
  16178. }
  16179. },
  16180. sideMaid: {
  16181. height: math.unit(6, "feet"),
  16182. weight: math.unit(150, "lb"),
  16183. name: "Side (Maid)",
  16184. image: {
  16185. source: "./media/characters/alluria/side-maid.svg",
  16186. extra: 800 / 750,
  16187. bottom: 0.005
  16188. }
  16189. },
  16190. backMaid: {
  16191. height: math.unit(6, "feet"),
  16192. weight: math.unit(150, "lb"),
  16193. name: "Back (Maid)",
  16194. image: {
  16195. source: "./media/characters/alluria/back-maid.svg",
  16196. extra: 806 / 738,
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Micro",
  16203. height: math.unit(6, "inches"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(150, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/kyle/front.svg",
  16217. extra: 1069 / 962,
  16218. bottom: 77.228 / 1727.45
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Macro",
  16225. height: math.unit(150, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(300, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/duncan/front.svg",
  16239. extra: 1650 / 1482,
  16240. bottom: 0.05
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Macro",
  16247. height: math.unit(100, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(5 + 4 / 12, "feet"),
  16257. weight: math.unit(220, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/memory/front.svg",
  16261. extra: 3641 / 3545,
  16262. bottom: 0.03
  16263. }
  16264. },
  16265. back: {
  16266. height: math.unit(5 + 4 / 12, "feet"),
  16267. weight: math.unit(220, "lb"),
  16268. name: "Back",
  16269. image: {
  16270. source: "./media/characters/memory/back.svg",
  16271. extra: 3641 / 3545,
  16272. bottom: 0.025
  16273. }
  16274. },
  16275. frontSkirt: {
  16276. height: math.unit(5 + 4 / 12, "feet"),
  16277. weight: math.unit(220, "lb"),
  16278. name: "Front (Skirt)",
  16279. image: {
  16280. source: "./media/characters/memory/front-skirt.svg",
  16281. extra: 3641 / 3545,
  16282. bottom: 0.03
  16283. }
  16284. },
  16285. frontDress: {
  16286. height: math.unit(5 + 4 / 12, "feet"),
  16287. weight: math.unit(220, "lb"),
  16288. name: "Front (Dress)",
  16289. image: {
  16290. source: "./media/characters/memory/front-dress.svg",
  16291. extra: 3641 / 3545,
  16292. bottom: 0.03
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Micro",
  16299. height: math.unit(6, "inches"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(5 + 4 / 12, "feet")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(4 + 11 / 12, "feet"),
  16313. weight: math.unit(100, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/luno/front.svg",
  16317. extra: 1535 / 1487,
  16318. bottom: 0.03
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Micro",
  16325. height: math.unit(3, "inches")
  16326. },
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(4 + 11 / 12, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(300, "feet")
  16335. },
  16336. {
  16337. name: "Megamacro",
  16338. height: math.unit(700, "miles")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(6 + 2 / 12, "feet"),
  16347. weight: math.unit(170, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/jamesy/front.svg",
  16351. extra: 440 / 382,
  16352. bottom: 0.005
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Micro",
  16359. height: math.unit(3, "inches")
  16360. },
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(6 + 2 / 12, "feet"),
  16364. default: true
  16365. },
  16366. {
  16367. name: "Macro",
  16368. height: math.unit(300, "feet")
  16369. },
  16370. {
  16371. name: "Megamacro",
  16372. height: math.unit(700, "miles")
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6, "feet"),
  16381. weight: math.unit(160, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/mark/front.svg",
  16385. extra: 3300 / 3100,
  16386. bottom: 136.42 / 3440.47
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Macro",
  16393. height: math.unit(120, "meters")
  16394. },
  16395. {
  16396. name: "Bigger Macro",
  16397. height: math.unit(350, "meters")
  16398. },
  16399. {
  16400. name: "Megamacro",
  16401. height: math.unit(8, "km"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Continental",
  16406. height: math.unit(4550, "km")
  16407. },
  16408. {
  16409. name: "Planetary",
  16410. height: math.unit(65000, "km")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(6, "feet"),
  16419. weight: math.unit(400, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/mac/front.svg",
  16423. extra: 1048 / 987.7,
  16424. bottom: 60 / 1107.6,
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Macro",
  16431. height: math.unit(500, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(5 + 2 / 12, "feet"),
  16441. weight: math.unit(190, "lb"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/bari/front.svg",
  16445. extra: 3156 / 2880,
  16446. bottom: 0.03
  16447. }
  16448. },
  16449. back: {
  16450. height: math.unit(5 + 2 / 12, "feet"),
  16451. weight: math.unit(190, "lb"),
  16452. name: "Back",
  16453. image: {
  16454. source: "./media/characters/bari/back.svg",
  16455. extra: 3260 / 2834,
  16456. bottom: 0.025
  16457. }
  16458. },
  16459. frontPlush: {
  16460. height: math.unit(5 + 2 / 12, "feet"),
  16461. weight: math.unit(190, "lb"),
  16462. name: "Front (Plush)",
  16463. image: {
  16464. source: "./media/characters/bari/front-plush.svg",
  16465. extra: 1112 / 1061,
  16466. bottom: 0.002
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Micro",
  16473. height: math.unit(3, "inches")
  16474. },
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(5 + 2 / 12, "feet"),
  16478. default: true
  16479. },
  16480. {
  16481. name: "Macro",
  16482. height: math.unit(20, "feet")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(6 + 1 / 12, "feet"),
  16491. weight: math.unit(275, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/hunter-misha-raven/front.svg"
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Mortal",
  16501. height: math.unit(6 + 1 / 12, "feet")
  16502. },
  16503. {
  16504. name: "Divine",
  16505. height: math.unit(1.12134e34, "parsecs"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(6 + 3 / 12, "feet"),
  16515. weight: math.unit(220, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/max-calore/front.svg",
  16519. extra: 1700 / 1648,
  16520. bottom: 0.01
  16521. }
  16522. },
  16523. back: {
  16524. height: math.unit(6 + 3 / 12, "feet"),
  16525. weight: math.unit(220, "lb"),
  16526. name: "Back",
  16527. image: {
  16528. source: "./media/characters/max-calore/back.svg",
  16529. extra: 1700 / 1648,
  16530. bottom: 0.01
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(6 + 3 / 12, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16544. {
  16545. side: {
  16546. height: math.unit(2 + 8 / 12, "feet"),
  16547. weight: math.unit(99, "lb"),
  16548. name: "Side",
  16549. image: {
  16550. source: "./media/characters/aspen/side.svg",
  16551. extra: 152 / 138,
  16552. bottom: 0.032
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(2 + 8 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16566. {
  16567. side: {
  16568. height: math.unit(3 + 2 / 12, "feet"),
  16569. weight: math.unit(224, "lb"),
  16570. name: "Side",
  16571. image: {
  16572. source: "./media/characters/sheila-feral-wolf/side.svg",
  16573. extra: 179 / 166,
  16574. bottom: 0.03
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(3 + 2 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16588. {
  16589. side: {
  16590. height: math.unit(1 + 9 / 12, "feet"),
  16591. weight: math.unit(38, "lb"),
  16592. name: "Side",
  16593. image: {
  16594. source: "./media/characters/michelle/side.svg",
  16595. extra: 147 / 136.7,
  16596. bottom: 0.03
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(1 + 9 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(1 + 1 / 12, "feet"),
  16613. weight: math.unit(18, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/nino/front.svg"
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(1 + 1 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(1, "feet"),
  16633. weight: math.unit(16, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/viola/front.svg"
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(1, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(6 + 5 / 12, "feet"),
  16653. weight: math.unit(580, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/atlas/front.svg",
  16657. extra: 298.5 / 290,
  16658. bottom: 0.015
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(6 + 5 / 12, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16672. {
  16673. side: {
  16674. height: math.unit(1 + 10 / 12, "feet"),
  16675. weight: math.unit(25, "lb"),
  16676. name: "Side",
  16677. image: {
  16678. source: "./media/characters/davy/side.svg",
  16679. extra: 200 / 170,
  16680. bottom: 0.01
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(1 + 10 / 12, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16694. {
  16695. side: {
  16696. height: math.unit(4 + 8 / 12, "feet"),
  16697. weight: math.unit(166, "lb"),
  16698. name: "Side",
  16699. image: {
  16700. source: "./media/characters/fiona/side.svg",
  16701. extra: 232 / 220,
  16702. bottom: 0.03
  16703. }
  16704. },
  16705. },
  16706. [
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(4 + 8 / 12, "feet"),
  16710. default: true
  16711. },
  16712. ]
  16713. ))
  16714. characterMakers.push(() => makeCharacter(
  16715. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16716. {
  16717. front: {
  16718. height: math.unit(2, "feet"),
  16719. weight: math.unit(62, "lb"),
  16720. name: "Front",
  16721. image: {
  16722. source: "./media/characters/lyla/front.svg",
  16723. bottom: 0.1
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(2, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16737. {
  16738. side: {
  16739. height: math.unit(1.8, "feet"),
  16740. weight: math.unit(44, "lb"),
  16741. name: "Side",
  16742. image: {
  16743. source: "./media/characters/perseus/side.svg",
  16744. bottom: 0.21
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(1.8, "feet"),
  16752. default: true
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16758. {
  16759. side: {
  16760. height: math.unit(4 + 2 / 12, "feet"),
  16761. weight: math.unit(20, "lb"),
  16762. name: "Side",
  16763. image: {
  16764. source: "./media/characters/remus/side.svg"
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(4 + 2 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(4 + 11 / 12, "feet"),
  16781. weight: math.unit(114, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/raf/front.svg",
  16785. bottom: 20.5 / 1863
  16786. }
  16787. },
  16788. side: {
  16789. height: math.unit(4 + 11 / 12, "feet"),
  16790. weight: math.unit(114, "lb"),
  16791. name: "Side",
  16792. image: {
  16793. source: "./media/characters/raf/side.svg",
  16794. bottom: 22 / 1822
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Micro",
  16801. height: math.unit(2, "inches")
  16802. },
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(4 + 11 / 12, "feet"),
  16806. default: true
  16807. },
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(70, "feet")
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16816. {
  16817. front: {
  16818. height: math.unit(1.5, "meters"),
  16819. weight: math.unit(68, "kg"),
  16820. name: "Front",
  16821. image: {
  16822. source: "./media/characters/liam-einarr/front.svg",
  16823. extra: 2822 / 2666
  16824. }
  16825. },
  16826. back: {
  16827. height: math.unit(1.5, "meters"),
  16828. weight: math.unit(68, "kg"),
  16829. name: "Back",
  16830. image: {
  16831. source: "./media/characters/liam-einarr/back.svg",
  16832. extra: 2822 / 2666,
  16833. bottom: 0.015
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(1.5, "meters"),
  16841. default: true
  16842. },
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(150, "meters")
  16846. },
  16847. {
  16848. name: "Megamacro",
  16849. height: math.unit(35, "km")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(6, "feet"),
  16858. weight: math.unit(75, "kg"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/linda/front.svg",
  16862. extra: 930 / 874,
  16863. bottom: 0.004
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(6, "feet"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(6 + 8 / 12, "feet"),
  16880. weight: math.unit(220, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/caylex/front.svg",
  16884. extra: 821 / 772,
  16885. bottom: 0.07
  16886. }
  16887. },
  16888. back: {
  16889. height: math.unit(6 + 8 / 12, "feet"),
  16890. weight: math.unit(220, "lb"),
  16891. name: "Back",
  16892. image: {
  16893. source: "./media/characters/caylex/back.svg",
  16894. extra: 821 / 772,
  16895. bottom: 0.022
  16896. }
  16897. },
  16898. hand: {
  16899. height: math.unit(1.25, "feet"),
  16900. name: "Hand",
  16901. image: {
  16902. source: "./media/characters/caylex/hand.svg"
  16903. }
  16904. },
  16905. foot: {
  16906. height: math.unit(1.6, "feet"),
  16907. name: "Foot",
  16908. image: {
  16909. source: "./media/characters/caylex/foot.svg"
  16910. }
  16911. },
  16912. armored: {
  16913. height: math.unit(6 + 8 / 12, "feet"),
  16914. weight: math.unit(250, "lb"),
  16915. name: "Armored",
  16916. image: {
  16917. source: "./media/characters/caylex/armored.svg",
  16918. extra: 1420 / 1310,
  16919. bottom: 0.045
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6 + 8 / 12, "feet"),
  16927. default: true
  16928. },
  16929. {
  16930. name: "Normal+",
  16931. height: math.unit(12, "feet")
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16937. {
  16938. front: {
  16939. height: math.unit(7 + 6 / 12, "feet"),
  16940. weight: math.unit(288, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/alana/front.svg",
  16944. extra: 679 / 653,
  16945. bottom: 22.5 / 701
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(7 + 6 / 12, "feet")
  16953. },
  16954. {
  16955. name: "Large",
  16956. height: math.unit(50, "feet")
  16957. },
  16958. {
  16959. name: "Macro",
  16960. height: math.unit(100, "feet"),
  16961. default: true
  16962. },
  16963. {
  16964. name: "Macro+",
  16965. height: math.unit(200, "feet")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6 + 1 / 12, "feet"),
  16974. weight: math.unit(210, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/hasani/front.svg",
  16978. extra: 244 / 232,
  16979. bottom: 0.01
  16980. }
  16981. },
  16982. back: {
  16983. height: math.unit(6 + 1 / 12, "feet"),
  16984. weight: math.unit(210, "lb"),
  16985. name: "Back",
  16986. image: {
  16987. source: "./media/characters/hasani/back.svg",
  16988. extra: 244 / 232,
  16989. bottom: 0.01
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(6 + 1 / 12, "feet")
  16997. },
  16998. {
  16999. name: "Macro",
  17000. height: math.unit(175, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(1.82, "meters"),
  17010. weight: math.unit(140, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/nita/front.svg",
  17014. extra: 2473 / 2363,
  17015. bottom: 0.01
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(1.82, "m")
  17023. },
  17024. {
  17025. name: "Macro",
  17026. height: math.unit(300, "m")
  17027. },
  17028. {
  17029. name: "Mistake Canon",
  17030. height: math.unit(0.5, "miles"),
  17031. default: true
  17032. },
  17033. {
  17034. name: "Big Mistake",
  17035. height: math.unit(13, "miles")
  17036. },
  17037. {
  17038. name: "Playing God",
  17039. height: math.unit(2450, "miles")
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(4, "feet"),
  17048. weight: math.unit(120, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/shiriko/front.svg",
  17052. extra: 195 / 188
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(4, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(6, "feet"),
  17069. name: "front",
  17070. image: {
  17071. source: "./media/characters/deja/front.svg",
  17072. extra: 926 / 840,
  17073. bottom: 0.07
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Planck Length",
  17080. height: math.unit(1.6e-35, "meters")
  17081. },
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(30.48, "meters"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "Universal",
  17089. height: math.unit(8.8e26, "meters")
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17095. {
  17096. side: {
  17097. height: math.unit(8, "feet"),
  17098. weight: math.unit(6300, "lb"),
  17099. name: "Side",
  17100. image: {
  17101. source: "./media/characters/anima/side.svg",
  17102. bottom: 0.035
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(8, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(8, "feet"),
  17119. weight: math.unit(350, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/bianca/front.svg",
  17123. extra: 234 / 225,
  17124. bottom: 0.03
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(8, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(6, "feet"),
  17141. weight: math.unit(150, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/adinia/front.svg",
  17145. extra: 1845 / 1672,
  17146. bottom: 0.02
  17147. }
  17148. },
  17149. back: {
  17150. height: math.unit(6, "feet"),
  17151. weight: math.unit(150, "lb"),
  17152. name: "Back",
  17153. image: {
  17154. source: "./media/characters/adinia/back.svg",
  17155. extra: 1845 / 1672,
  17156. bottom: 0.002
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(11 + 5 / 12, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17170. {
  17171. front: {
  17172. height: math.unit(3, "meters"),
  17173. weight: math.unit(200, "kg"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/lykasa/front.svg",
  17177. extra: 1076 / 976,
  17178. bottom: 0.06
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(3, "meters")
  17186. },
  17187. {
  17188. name: "Kaiju",
  17189. height: math.unit(120, "meters"),
  17190. default: true
  17191. },
  17192. {
  17193. name: "Mega Kaiju",
  17194. height: math.unit(240, "km")
  17195. },
  17196. {
  17197. name: "Giga Kaiju",
  17198. height: math.unit(400, "megameters")
  17199. },
  17200. {
  17201. name: "Tera Kaiju",
  17202. height: math.unit(800, "gigameters")
  17203. },
  17204. {
  17205. name: "Kaiju Dragon Goddess",
  17206. height: math.unit(26, "zettaparsecs")
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17212. {
  17213. side: {
  17214. height: math.unit(283 / 124 * 6, "feet"),
  17215. weight: math.unit(35000, "lb"),
  17216. name: "Side",
  17217. image: {
  17218. source: "./media/characters/malfaren/side.svg",
  17219. extra: 2500 / 1010,
  17220. bottom: 0.01
  17221. }
  17222. },
  17223. front: {
  17224. height: math.unit(22.36, "feet"),
  17225. weight: math.unit(35000, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/malfaren/front.svg",
  17229. extra: 1631 / 1476,
  17230. bottom: 0.01
  17231. }
  17232. },
  17233. maw: {
  17234. height: math.unit(6.9, "feet"),
  17235. name: "Maw",
  17236. image: {
  17237. source: "./media/characters/malfaren/maw.svg"
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Big",
  17244. height: math.unit(283 / 162 * 6, "feet"),
  17245. },
  17246. {
  17247. name: "Bigger",
  17248. height: math.unit(283 / 124 * 6, "feet")
  17249. },
  17250. {
  17251. name: "Massive",
  17252. height: math.unit(283 / 92 * 6, "feet"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "👀💦",
  17257. height: math.unit(283 / 73 * 6, "feet"),
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(1.7, "m"),
  17266. weight: math.unit(70, "kg"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/kernel/front.svg",
  17270. extra: 222 / 210,
  17271. bottom: 0.007
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Nano",
  17278. height: math.unit(17, "micrometers")
  17279. },
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(1.7, "mm")
  17283. },
  17284. {
  17285. name: "Small",
  17286. height: math.unit(1.7, "cm")
  17287. },
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(1.7, "m"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(1.75, "meters"),
  17300. weight: math.unit(65, "kg"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/jayne-folest/front.svg",
  17304. extra: 2115 / 2007,
  17305. bottom: 0.02
  17306. }
  17307. },
  17308. back: {
  17309. height: math.unit(1.75, "meters"),
  17310. weight: math.unit(65, "kg"),
  17311. name: "Back",
  17312. image: {
  17313. source: "./media/characters/jayne-folest/back.svg",
  17314. extra: 2115 / 2007,
  17315. bottom: 0.005
  17316. }
  17317. },
  17318. frontClothed: {
  17319. height: math.unit(1.75, "meters"),
  17320. weight: math.unit(65, "kg"),
  17321. name: "Front (Clothed)",
  17322. image: {
  17323. source: "./media/characters/jayne-folest/front-clothed.svg",
  17324. extra: 2115 / 2007,
  17325. bottom: 0.035
  17326. }
  17327. },
  17328. hand: {
  17329. height: math.unit(1 / 1.260, "feet"),
  17330. name: "Hand",
  17331. image: {
  17332. source: "./media/characters/jayne-folest/hand.svg"
  17333. }
  17334. },
  17335. foot: {
  17336. height: math.unit(1 / 0.918, "feet"),
  17337. name: "Foot",
  17338. image: {
  17339. source: "./media/characters/jayne-folest/foot.svg"
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Micro",
  17346. height: math.unit(4, "cm")
  17347. },
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(1.75, "meters")
  17351. },
  17352. {
  17353. name: "Macro",
  17354. height: math.unit(47.5, "meters"),
  17355. default: true
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(180, "cm"),
  17364. weight: math.unit(70, "kg"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/algier/front.svg",
  17368. extra: 596 / 572,
  17369. bottom: 0.04
  17370. }
  17371. },
  17372. back: {
  17373. height: math.unit(180, "cm"),
  17374. weight: math.unit(70, "kg"),
  17375. name: "Back",
  17376. image: {
  17377. source: "./media/characters/algier/back.svg",
  17378. extra: 596 / 572,
  17379. bottom: 0.025
  17380. }
  17381. },
  17382. frontdressed: {
  17383. height: math.unit(180, "cm"),
  17384. weight: math.unit(150, "kg"),
  17385. name: "Front-dressed",
  17386. image: {
  17387. source: "./media/characters/algier/front-dressed.svg",
  17388. extra: 596 / 572,
  17389. bottom: 0.038
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Micro",
  17396. height: math.unit(5, "cm")
  17397. },
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(180, "cm"),
  17401. default: true
  17402. },
  17403. {
  17404. name: "Macro",
  17405. height: math.unit(64, "m")
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17411. {
  17412. upright: {
  17413. height: math.unit(7, "feet"),
  17414. weight: math.unit(300, "lb"),
  17415. name: "Upright",
  17416. image: {
  17417. source: "./media/characters/pretzel/upright.svg",
  17418. extra: 534 / 522,
  17419. bottom: 0.065
  17420. }
  17421. },
  17422. sprawling: {
  17423. height: math.unit(3.75, "feet"),
  17424. weight: math.unit(300, "lb"),
  17425. name: "Sprawling",
  17426. image: {
  17427. source: "./media/characters/pretzel/sprawling.svg",
  17428. extra: 314 / 281,
  17429. bottom: 0.1
  17430. }
  17431. },
  17432. tongue: {
  17433. height: math.unit(2, "feet"),
  17434. name: "Tongue",
  17435. image: {
  17436. source: "./media/characters/pretzel/tongue.svg"
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(7, "feet"),
  17444. default: true
  17445. },
  17446. {
  17447. name: "Oversized",
  17448. height: math.unit(15, "feet")
  17449. },
  17450. {
  17451. name: "Huge",
  17452. height: math.unit(30, "feet")
  17453. },
  17454. {
  17455. name: "Macro",
  17456. height: math.unit(250, "feet")
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17462. {
  17463. sideFront: {
  17464. height: math.unit(5 + 2 / 12, "feet"),
  17465. weight: math.unit(120, "lb"),
  17466. name: "Front Side",
  17467. image: {
  17468. source: "./media/characters/roxi/side-front.svg",
  17469. extra: 2924 / 2717,
  17470. bottom: 0.08
  17471. }
  17472. },
  17473. sideBack: {
  17474. height: math.unit(5 + 2 / 12, "feet"),
  17475. weight: math.unit(120, "lb"),
  17476. name: "Back Side",
  17477. image: {
  17478. source: "./media/characters/roxi/side-back.svg",
  17479. extra: 2904 / 2693,
  17480. bottom: 0.06
  17481. }
  17482. },
  17483. front: {
  17484. height: math.unit(5 + 2 / 12, "feet"),
  17485. weight: math.unit(120, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/roxi/front.svg",
  17489. extra: 2028 / 1907,
  17490. bottom: 0.01
  17491. }
  17492. },
  17493. frontAlt: {
  17494. height: math.unit(5 + 2 / 12, "feet"),
  17495. weight: math.unit(120, "lb"),
  17496. name: "Front (Alt)",
  17497. image: {
  17498. source: "./media/characters/roxi/front-alt.svg",
  17499. extra: 1828 / 1798,
  17500. bottom: 0.01
  17501. }
  17502. },
  17503. sitting: {
  17504. height: math.unit(2.8, "feet"),
  17505. weight: math.unit(120, "lb"),
  17506. name: "Sitting",
  17507. image: {
  17508. source: "./media/characters/roxi/sitting.svg",
  17509. extra: 2660 / 2462,
  17510. bottom: 0.1
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 2 / 12, "feet"),
  17518. default: true
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17524. {
  17525. side: {
  17526. height: math.unit(55, "feet"),
  17527. weight: math.unit(153, "tons"),
  17528. name: "Side",
  17529. image: {
  17530. source: "./media/characters/shadow/side.svg",
  17531. extra: 701 / 628,
  17532. bottom: 0.02
  17533. }
  17534. },
  17535. flying: {
  17536. height: math.unit(145, "feet"),
  17537. weight: math.unit(153, "tons"),
  17538. name: "Flying",
  17539. image: {
  17540. source: "./media/characters/shadow/flying.svg"
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(55, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(6, "feet"),
  17557. weight: math.unit(200, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/marcie/front.svg",
  17561. extra: 960 / 876,
  17562. bottom: 58 / 1017.87
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(1, "mile"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(7, "feet"),
  17579. weight: math.unit(200, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/kachina/front.svg",
  17583. extra: 1290.68 / 1119,
  17584. bottom: 36.5 / 1327.18
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(7, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17598. {
  17599. looking: {
  17600. height: math.unit(2, "meters"),
  17601. weight: math.unit(300, "kg"),
  17602. name: "Looking",
  17603. image: {
  17604. source: "./media/characters/kash/looking.svg",
  17605. extra: 474 / 344,
  17606. bottom: 0.03
  17607. }
  17608. },
  17609. side: {
  17610. height: math.unit(2, "meters"),
  17611. weight: math.unit(300, "kg"),
  17612. name: "Side",
  17613. image: {
  17614. source: "./media/characters/kash/side.svg",
  17615. extra: 302 / 251,
  17616. bottom: 0.03
  17617. }
  17618. },
  17619. front: {
  17620. height: math.unit(2, "meters"),
  17621. weight: math.unit(300, "kg"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/kash/front.svg",
  17625. extra: 495 / 360,
  17626. bottom: 0.015
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(2, "meters"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Big",
  17638. height: math.unit(3, "meters")
  17639. },
  17640. {
  17641. name: "Large",
  17642. height: math.unit(5, "meters")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17648. {
  17649. feeding: {
  17650. height: math.unit(6.7, "feet"),
  17651. weight: math.unit(350, "lb"),
  17652. name: "Feeding",
  17653. image: {
  17654. source: "./media/characters/lalim/feeding.svg",
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(6.7, "feet"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17668. {
  17669. front: {
  17670. height: math.unit(9.5, "feet"),
  17671. weight: math.unit(600, "lb"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/de'vout/front.svg",
  17675. extra: 1443 / 1328,
  17676. bottom: 0.025
  17677. }
  17678. },
  17679. back: {
  17680. height: math.unit(9.5, "feet"),
  17681. weight: math.unit(600, "lb"),
  17682. name: "Back",
  17683. image: {
  17684. source: "./media/characters/de'vout/back.svg",
  17685. extra: 1443 / 1328
  17686. }
  17687. },
  17688. frontDressed: {
  17689. height: math.unit(9.5, "feet"),
  17690. weight: math.unit(600, "lb"),
  17691. name: "Front (Dressed",
  17692. image: {
  17693. source: "./media/characters/de'vout/front-dressed.svg",
  17694. extra: 1443 / 1328,
  17695. bottom: 0.025
  17696. }
  17697. },
  17698. backDressed: {
  17699. height: math.unit(9.5, "feet"),
  17700. weight: math.unit(600, "lb"),
  17701. name: "Back (Dressed",
  17702. image: {
  17703. source: "./media/characters/de'vout/back-dressed.svg",
  17704. extra: 1443 / 1328
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(9.5, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(8, "feet"),
  17721. weight: math.unit(225, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/talana/front.svg",
  17725. extra: 1410 / 1300,
  17726. bottom: 0.015
  17727. }
  17728. },
  17729. frontDressed: {
  17730. height: math.unit(8, "feet"),
  17731. weight: math.unit(225, "lb"),
  17732. name: "Front (Dressed",
  17733. image: {
  17734. source: "./media/characters/talana/front-dressed.svg",
  17735. extra: 1410 / 1300,
  17736. bottom: 0.015
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(8, "feet"),
  17744. default: true
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17750. {
  17751. side: {
  17752. height: math.unit(7.2, "feet"),
  17753. weight: math.unit(150, "lb"),
  17754. name: "Side",
  17755. image: {
  17756. source: "./media/characters/xeauvok/side.svg",
  17757. extra: 1975 / 1523,
  17758. bottom: 0.07
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(7.2, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17772. {
  17773. side: {
  17774. height: math.unit(10, "feet"),
  17775. weight: math.unit(900, "kg"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/zara/side.svg",
  17779. extra: 504 / 498
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(10, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17793. {
  17794. side: {
  17795. height: math.unit(6, "feet"),
  17796. weight: math.unit(150, "lb"),
  17797. name: "Side",
  17798. image: {
  17799. source: "./media/characters/richard-dragon/side.svg",
  17800. extra: 845 / 340,
  17801. bottom: 0.017
  17802. }
  17803. },
  17804. maw: {
  17805. height: math.unit(2.97, "feet"),
  17806. name: "Maw",
  17807. image: {
  17808. source: "./media/characters/richard-dragon/maw.svg"
  17809. }
  17810. },
  17811. },
  17812. [
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(4, "feet"),
  17820. weight: math.unit(100, "lb"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/richard-smeargle/front.svg",
  17824. extra: 2952 / 2820,
  17825. bottom: 0.028
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(4, "feet"),
  17833. default: true
  17834. },
  17835. {
  17836. name: "Dynamax",
  17837. height: math.unit(20, "meters")
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17843. {
  17844. front: {
  17845. height: math.unit(6, "feet"),
  17846. weight: math.unit(110, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/klay/front.svg",
  17850. extra: 962 / 883,
  17851. bottom: 0.04
  17852. }
  17853. },
  17854. back: {
  17855. height: math.unit(6, "feet"),
  17856. weight: math.unit(110, "lb"),
  17857. name: "Back",
  17858. image: {
  17859. source: "./media/characters/klay/back.svg",
  17860. extra: 962 / 883
  17861. }
  17862. },
  17863. beans: {
  17864. height: math.unit(1.15, "feet"),
  17865. name: "Beans",
  17866. image: {
  17867. source: "./media/characters/klay/beans.svg"
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Micro",
  17874. height: math.unit(6, "inches")
  17875. },
  17876. {
  17877. name: "Mini",
  17878. height: math.unit(3, "feet")
  17879. },
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(6, "feet"),
  17883. default: true
  17884. },
  17885. {
  17886. name: "Big",
  17887. height: math.unit(25, "feet")
  17888. },
  17889. {
  17890. name: "Macro",
  17891. height: math.unit(100, "feet")
  17892. },
  17893. {
  17894. name: "Megamacro",
  17895. height: math.unit(400, "feet")
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17901. {
  17902. front: {
  17903. height: math.unit(6, "feet"),
  17904. weight: math.unit(160, "lb"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/marcus/front.svg",
  17908. extra: 734 / 676,
  17909. bottom: 0.03
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Little",
  17916. height: math.unit(6, "feet")
  17917. },
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(110, "feet"),
  17921. default: true
  17922. },
  17923. {
  17924. name: "Macro",
  17925. height: math.unit(250, "feet")
  17926. },
  17927. {
  17928. name: "Megamacro",
  17929. height: math.unit(1000, "feet")
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(7, "feet"),
  17938. weight: math.unit(275, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/claude-delroute/front.svg",
  17942. extra: 230 / 214,
  17943. bottom: 0.007
  17944. }
  17945. },
  17946. side: {
  17947. height: math.unit(7, "feet"),
  17948. weight: math.unit(275, "lb"),
  17949. name: "Side",
  17950. image: {
  17951. source: "./media/characters/claude-delroute/side.svg",
  17952. extra: 222 / 214,
  17953. bottom: 0.01
  17954. }
  17955. },
  17956. back: {
  17957. height: math.unit(7, "feet"),
  17958. weight: math.unit(275, "lb"),
  17959. name: "Back",
  17960. image: {
  17961. source: "./media/characters/claude-delroute/back.svg",
  17962. extra: 230 / 214,
  17963. bottom: 0.015
  17964. }
  17965. },
  17966. maw: {
  17967. height: math.unit(0.6407, "meters"),
  17968. name: "Maw",
  17969. image: {
  17970. source: "./media/characters/claude-delroute/maw.svg"
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(7, "feet"),
  17978. default: true
  17979. },
  17980. {
  17981. name: "Lorge",
  17982. height: math.unit(20, "feet")
  17983. },
  17984. ]
  17985. ))
  17986. characterMakers.push(() => makeCharacter(
  17987. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17988. {
  17989. front: {
  17990. height: math.unit(8 + 4 / 12, "feet"),
  17991. weight: math.unit(600, "lb"),
  17992. name: "Front",
  17993. image: {
  17994. source: "./media/characters/dragonien/front.svg",
  17995. extra: 100 / 94,
  17996. bottom: 3.3 / 103.3445
  17997. }
  17998. },
  17999. back: {
  18000. height: math.unit(8 + 4 / 12, "feet"),
  18001. weight: math.unit(600, "lb"),
  18002. name: "Back",
  18003. image: {
  18004. source: "./media/characters/dragonien/back.svg",
  18005. extra: 776 / 746,
  18006. bottom: 6.4 / 782.0616
  18007. }
  18008. },
  18009. foot: {
  18010. height: math.unit(1.54, "feet"),
  18011. name: "Foot",
  18012. image: {
  18013. source: "./media/characters/dragonien/foot.svg",
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(8 + 4 / 12, "feet"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Macro",
  18025. height: math.unit(200, "feet")
  18026. },
  18027. {
  18028. name: "Megamacro",
  18029. height: math.unit(1, "mile")
  18030. },
  18031. {
  18032. name: "Gigamacro",
  18033. height: math.unit(1000, "miles")
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(5 + 2 / 12, "feet"),
  18042. weight: math.unit(110, "lb"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/desta/front.svg",
  18046. extra: 767 / 726,
  18047. bottom: 11.7 / 779
  18048. }
  18049. },
  18050. back: {
  18051. height: math.unit(5 + 2 / 12, "feet"),
  18052. weight: math.unit(110, "lb"),
  18053. name: "Back",
  18054. image: {
  18055. source: "./media/characters/desta/back.svg",
  18056. extra: 777 / 728,
  18057. bottom: 6 / 784
  18058. }
  18059. },
  18060. frontAlt: {
  18061. height: math.unit(5 + 2 / 12, "feet"),
  18062. weight: math.unit(110, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/desta/front-alt.svg",
  18066. extra: 1482 / 1417
  18067. }
  18068. },
  18069. side: {
  18070. height: math.unit(5 + 2 / 12, "feet"),
  18071. weight: math.unit(110, "lb"),
  18072. name: "Side",
  18073. image: {
  18074. source: "./media/characters/desta/side.svg",
  18075. extra: 2579 / 2491,
  18076. bottom: 0.053
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Micro",
  18083. height: math.unit(6, "inches")
  18084. },
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(5 + 2 / 12, "feet"),
  18088. default: true
  18089. },
  18090. {
  18091. name: "Macro",
  18092. height: math.unit(62, "feet")
  18093. },
  18094. {
  18095. name: "Megamacro",
  18096. height: math.unit(1800, "feet")
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(10, "feet"),
  18105. weight: math.unit(700, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/storm-alystar/front.svg",
  18109. extra: 2112 / 1898,
  18110. bottom: 0.034
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Micro",
  18117. height: math.unit(3.5, "inches")
  18118. },
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(10, "feet"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Macro",
  18126. height: math.unit(400, "feet")
  18127. },
  18128. {
  18129. name: "Deific",
  18130. height: math.unit(60, "miles")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(2.35, "meters"),
  18139. weight: math.unit(119, "kg"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/ilia/front.svg",
  18143. extra: 1285 / 1255,
  18144. bottom: 0.06
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(2.35, "meters")
  18152. },
  18153. {
  18154. name: "Macro",
  18155. height: math.unit(140, "meters"),
  18156. default: true
  18157. },
  18158. {
  18159. name: "Megamacro",
  18160. height: math.unit(100, "miles")
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(6 + 5 / 12, "feet"),
  18169. weight: math.unit(190, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/kingdead/front.svg",
  18173. extra: 1228 / 1177
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Micro",
  18180. height: math.unit(7, "inches")
  18181. },
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(6 + 5 / 12, "feet")
  18185. },
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(150, "feet"),
  18189. default: true
  18190. },
  18191. {
  18192. name: "Megamacro",
  18193. height: math.unit(200, "miles")
  18194. },
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18199. {
  18200. front: {
  18201. height: math.unit(8, "feet"),
  18202. weight: math.unit(600, "lb"),
  18203. name: "Front",
  18204. image: {
  18205. source: "./media/characters/kyrehx/front.svg",
  18206. extra: 1195 / 1095,
  18207. bottom: 0.034
  18208. }
  18209. },
  18210. },
  18211. [
  18212. {
  18213. name: "Micro",
  18214. height: math.unit(2, "inches")
  18215. },
  18216. {
  18217. name: "Normal",
  18218. height: math.unit(8, "feet"),
  18219. default: true
  18220. },
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(255, "feet")
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18229. {
  18230. front: {
  18231. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18232. weight: math.unit(184, "lb"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/xang/front.svg",
  18236. extra: 845 / 755
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(0.935 * 146, "feet")
  18249. },
  18250. {
  18251. name: "Megamacro",
  18252. height: math.unit(0.935 * 3, "miles")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18258. {
  18259. frontDressed: {
  18260. height: math.unit(5 + 7 / 12, "feet"),
  18261. weight: math.unit(140, "lb"),
  18262. name: "Front (Dressed)",
  18263. image: {
  18264. source: "./media/characters/doc-weardno/front-dressed.svg",
  18265. extra: 263 / 234
  18266. }
  18267. },
  18268. backDressed: {
  18269. height: math.unit(5 + 7 / 12, "feet"),
  18270. weight: math.unit(140, "lb"),
  18271. name: "Back (Dressed)",
  18272. image: {
  18273. source: "./media/characters/doc-weardno/back-dressed.svg",
  18274. extra: 266 / 238
  18275. }
  18276. },
  18277. front: {
  18278. height: math.unit(5 + 7 / 12, "feet"),
  18279. weight: math.unit(140, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/doc-weardno/front.svg",
  18283. extra: 254 / 233
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Micro",
  18290. height: math.unit(3, "inches")
  18291. },
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(5 + 7 / 12, "feet"),
  18295. default: true
  18296. },
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(25, "feet")
  18300. },
  18301. {
  18302. name: "Megamacro",
  18303. height: math.unit(2, "miles")
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18309. {
  18310. front: {
  18311. height: math.unit(6 + 2 / 12, "feet"),
  18312. weight: math.unit(153, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/seth-whilst/front.svg",
  18316. bottom: 0.07
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Micro",
  18323. height: math.unit(5, "inches")
  18324. },
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(6 + 2 / 12, "feet"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18334. {
  18335. front: {
  18336. height: math.unit(3, "inches"),
  18337. weight: math.unit(8, "grams"),
  18338. name: "Front",
  18339. image: {
  18340. source: "./media/characters/pocket-jabari/front.svg",
  18341. extra: 1024 / 974,
  18342. bottom: 0.039
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Minimicro",
  18349. height: math.unit(8, "mm")
  18350. },
  18351. {
  18352. name: "Micro",
  18353. height: math.unit(3, "inches"),
  18354. default: true
  18355. },
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(3, "feet")
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18364. {
  18365. front: {
  18366. height: math.unit(15, "feet"),
  18367. weight: math.unit(3280, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/sapphy/front.svg",
  18371. extra: 671 / 577,
  18372. bottom: 0.085
  18373. }
  18374. },
  18375. back: {
  18376. height: math.unit(15, "feet"),
  18377. weight: math.unit(3280, "lb"),
  18378. name: "Back",
  18379. image: {
  18380. source: "./media/characters/sapphy/back.svg",
  18381. extra: 631 / 607,
  18382. bottom: 0.045
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(15, "feet")
  18390. },
  18391. {
  18392. name: "Casual Macro",
  18393. height: math.unit(120, "feet")
  18394. },
  18395. {
  18396. name: "Macro",
  18397. height: math.unit(2150, "feet"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Megamacro",
  18402. height: math.unit(8, "miles")
  18403. },
  18404. {
  18405. name: "Galaxy Mom",
  18406. height: math.unit(6, "megalightyears")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(6, "feet"),
  18415. weight: math.unit(170, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/kiro/front.svg",
  18419. extra: 1064 / 1012,
  18420. bottom: 0.052
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Micro",
  18427. height: math.unit(6, "inches")
  18428. },
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(6, "feet"),
  18432. default: true
  18433. },
  18434. {
  18435. name: "Macro",
  18436. height: math.unit(72, "feet")
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18442. {
  18443. front: {
  18444. height: math.unit(5 + 9 / 12, "feet"),
  18445. weight: math.unit(175, "lb"),
  18446. name: "Front",
  18447. image: {
  18448. source: "./media/characters/irishfox/front.svg",
  18449. extra: 1912 / 1680,
  18450. bottom: 0.02
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Nano",
  18457. height: math.unit(1, "mm")
  18458. },
  18459. {
  18460. name: "Micro",
  18461. height: math.unit(2, "inches")
  18462. },
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(5 + 9 / 12, "feet"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(45, "feet")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(6 + 1 / 12, "feet"),
  18479. weight: math.unit(75, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/aronai-sieyes/front.svg",
  18483. extra: 1556 / 1480,
  18484. bottom: 0.015
  18485. }
  18486. },
  18487. side: {
  18488. height: math.unit(6 + 1 / 12, "feet"),
  18489. weight: math.unit(75, "lb"),
  18490. name: "Side",
  18491. image: {
  18492. source: "./media/characters/aronai-sieyes/side.svg",
  18493. extra: 1433 / 1390,
  18494. bottom: 0.0393
  18495. }
  18496. },
  18497. back: {
  18498. height: math.unit(6 + 1 / 12, "feet"),
  18499. weight: math.unit(75, "lb"),
  18500. name: "Back",
  18501. image: {
  18502. source: "./media/characters/aronai-sieyes/back.svg",
  18503. extra: 1544 / 1494,
  18504. bottom: 0.02
  18505. }
  18506. },
  18507. frontClothed: {
  18508. height: math.unit(6 + 1 / 12, "feet"),
  18509. weight: math.unit(75, "lb"),
  18510. name: "Front (Clothed)",
  18511. image: {
  18512. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18513. extra: 1582 / 1527
  18514. }
  18515. },
  18516. feral: {
  18517. height: math.unit(18, "feet"),
  18518. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18519. name: "Feral",
  18520. image: {
  18521. source: "./media/characters/aronai-sieyes/feral.svg",
  18522. extra: 1530 / 1240,
  18523. bottom: 0.035
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Micro",
  18530. height: math.unit(2, "inches")
  18531. },
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(6 + 1 / 12, "feet"),
  18535. default: true
  18536. }
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(12, "feet"),
  18544. weight: math.unit(410, "kg"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/xuna/front.svg",
  18548. extra: 2184 / 1980
  18549. }
  18550. },
  18551. side: {
  18552. height: math.unit(12, "feet"),
  18553. weight: math.unit(410, "kg"),
  18554. name: "Side",
  18555. image: {
  18556. source: "./media/characters/xuna/side.svg",
  18557. extra: 2184 / 1980
  18558. }
  18559. },
  18560. back: {
  18561. height: math.unit(12, "feet"),
  18562. weight: math.unit(410, "kg"),
  18563. name: "Back",
  18564. image: {
  18565. source: "./media/characters/xuna/back.svg",
  18566. extra: 2184 / 1980
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Nano glow",
  18573. height: math.unit(10, "nm")
  18574. },
  18575. {
  18576. name: "Micro floof",
  18577. height: math.unit(0.3, "m")
  18578. },
  18579. {
  18580. name: "Huggable softy boi",
  18581. height: math.unit(3.6576, "m"),
  18582. default: true
  18583. },
  18584. {
  18585. name: "Admirable floof",
  18586. height: math.unit(80, "meters")
  18587. },
  18588. {
  18589. name: "Gentle macro",
  18590. height: math.unit(300, "meters")
  18591. },
  18592. {
  18593. name: "Very careful floof",
  18594. height: math.unit(3200, "meters")
  18595. },
  18596. {
  18597. name: "The mega floof",
  18598. height: math.unit(36000, "meters")
  18599. },
  18600. {
  18601. name: "Giga-fur-Wicker",
  18602. height: math.unit(4800000, "meters")
  18603. },
  18604. {
  18605. name: "Licky world",
  18606. height: math.unit(20000000, "meters")
  18607. },
  18608. {
  18609. name: "Floofy cyan sun",
  18610. height: math.unit(1500000000, "meters")
  18611. },
  18612. {
  18613. name: "Milky Wicker",
  18614. height: math.unit(1000000000000000000000, "meters")
  18615. },
  18616. {
  18617. name: "The observing Wicker",
  18618. height: math.unit(999999999999999999999999999, "meters")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(5 + 9 / 12, "feet"),
  18627. weight: math.unit(150, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/arokha-sieyes/front.svg",
  18631. extra: 1425 / 1284,
  18632. bottom: 0.05
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Normal",
  18639. height: math.unit(5 + 9 / 12, "feet")
  18640. },
  18641. {
  18642. name: "Macro",
  18643. height: math.unit(30, "meters"),
  18644. default: true
  18645. },
  18646. ]
  18647. ))
  18648. characterMakers.push(() => makeCharacter(
  18649. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18650. {
  18651. front: {
  18652. height: math.unit(6, "feet"),
  18653. weight: math.unit(180, "lb"),
  18654. name: "Front",
  18655. image: {
  18656. source: "./media/characters/arokh-sieyes/front.svg",
  18657. extra: 1830 / 1769,
  18658. bottom: 0.01
  18659. }
  18660. },
  18661. },
  18662. [
  18663. {
  18664. name: "Normal",
  18665. height: math.unit(6, "feet")
  18666. },
  18667. {
  18668. name: "Macro",
  18669. height: math.unit(30, "meters"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18676. {
  18677. side: {
  18678. height: math.unit(13 + 1 / 12, "feet"),
  18679. weight: math.unit(8.5, "tonnes"),
  18680. name: "Side",
  18681. image: {
  18682. source: "./media/characters/goldeneye/side.svg",
  18683. extra: 1182 / 778,
  18684. bottom: 0.067
  18685. }
  18686. },
  18687. paw: {
  18688. height: math.unit(3.4, "feet"),
  18689. name: "Paw",
  18690. image: {
  18691. source: "./media/characters/goldeneye/paw.svg"
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(13 + 1 / 12, "feet"),
  18699. default: true
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18705. {
  18706. front: {
  18707. height: math.unit(6 + 1 / 12, "feet"),
  18708. weight: math.unit(210, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/leonardo-lycheborne/front.svg",
  18712. extra: 390 / 365,
  18713. bottom: 0.032
  18714. }
  18715. },
  18716. side: {
  18717. height: math.unit(6 + 1 / 12, "feet"),
  18718. weight: math.unit(210, "lb"),
  18719. name: "Side",
  18720. image: {
  18721. source: "./media/characters/leonardo-lycheborne/side.svg",
  18722. extra: 390 / 365,
  18723. bottom: 0.005
  18724. }
  18725. },
  18726. back: {
  18727. height: math.unit(6 + 1 / 12, "feet"),
  18728. weight: math.unit(210, "lb"),
  18729. name: "Back",
  18730. image: {
  18731. source: "./media/characters/leonardo-lycheborne/back.svg",
  18732. extra: 392 / 366,
  18733. bottom: 0.01
  18734. }
  18735. },
  18736. hand: {
  18737. height: math.unit(1.08, "feet"),
  18738. name: "Hand",
  18739. image: {
  18740. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18741. }
  18742. },
  18743. foot: {
  18744. height: math.unit(1.32, "feet"),
  18745. name: "Foot",
  18746. image: {
  18747. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18748. }
  18749. },
  18750. were: {
  18751. height: math.unit(20, "feet"),
  18752. weight: math.unit(7800, "lb"),
  18753. name: "Were",
  18754. image: {
  18755. source: "./media/characters/leonardo-lycheborne/were.svg",
  18756. extra: 308 / 294,
  18757. bottom: 0.048
  18758. }
  18759. },
  18760. feral: {
  18761. height: math.unit(7.5, "feet"),
  18762. weight: math.unit(600, "lb"),
  18763. name: "Feral",
  18764. image: {
  18765. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18766. extra: 210 / 186,
  18767. bottom: 0.108
  18768. }
  18769. },
  18770. taur: {
  18771. height: math.unit(11, "feet"),
  18772. weight: math.unit(3300, "lb"),
  18773. name: "Taur",
  18774. image: {
  18775. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18776. extra: 320 / 303,
  18777. bottom: 0.025
  18778. }
  18779. },
  18780. barghest: {
  18781. height: math.unit(11, "feet"),
  18782. weight: math.unit(1300, "lb"),
  18783. name: "Barghest",
  18784. image: {
  18785. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18786. extra: 323 / 302,
  18787. bottom: 0.027
  18788. }
  18789. },
  18790. dick: {
  18791. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18792. name: "Dick",
  18793. image: {
  18794. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18795. }
  18796. },
  18797. dickWere: {
  18798. height: math.unit((20) / 3.8, "feet"),
  18799. name: "Dick (Were)",
  18800. image: {
  18801. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(6 + 1 / 12, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(10, "feet"),
  18818. weight: math.unit(350, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/jet/front.svg",
  18822. extra: 2050 / 1980,
  18823. bottom: 0.013
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(10, "feet"),
  18828. weight: math.unit(350, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/jet/back.svg",
  18832. extra: 2050 / 1980,
  18833. bottom: 0.013
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Micro",
  18840. height: math.unit(6, "inches")
  18841. },
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(10, "feet"),
  18845. default: true
  18846. },
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(100, "feet")
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(15, "feet"),
  18858. weight: math.unit(2800, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/tanarath/front.svg",
  18862. extra: 2392 / 2220,
  18863. bottom: 0.03
  18864. }
  18865. },
  18866. back: {
  18867. height: math.unit(15, "feet"),
  18868. weight: math.unit(2800, "lb"),
  18869. name: "Back",
  18870. image: {
  18871. source: "./media/characters/tanarath/back.svg",
  18872. extra: 2392 / 2220,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(15, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(7 + 1 / 12, "feet"),
  18890. weight: math.unit(175, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/patty-cattybatty/front.svg",
  18894. extra: 908 / 874,
  18895. bottom: 0.025
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Micro",
  18902. height: math.unit(1, "inch")
  18903. },
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(7 + 1 / 12, "feet")
  18907. },
  18908. {
  18909. name: "Mini Macro",
  18910. height: math.unit(155, "feet")
  18911. },
  18912. {
  18913. name: "Macro",
  18914. height: math.unit(1077, "feet")
  18915. },
  18916. {
  18917. name: "Mega Macro",
  18918. height: math.unit(47650, "feet"),
  18919. default: true
  18920. },
  18921. {
  18922. name: "Giga Macro",
  18923. height: math.unit(440, "miles")
  18924. },
  18925. {
  18926. name: "Tera Macro",
  18927. height: math.unit(8700, "miles")
  18928. },
  18929. {
  18930. name: "Planetary Macro",
  18931. height: math.unit(32700, "miles")
  18932. },
  18933. {
  18934. name: "Solar Macro",
  18935. height: math.unit(550000, "miles")
  18936. },
  18937. {
  18938. name: "Celestial Macro",
  18939. height: math.unit(2.5, "AU")
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(4 + 5 / 12, "feet"),
  18948. weight: math.unit(90, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/cappu/front.svg",
  18952. extra: 1247 / 1152,
  18953. bottom: 0.012
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(4 + 5 / 12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18967. {
  18968. frontDressed: {
  18969. height: math.unit(70, "cm"),
  18970. weight: math.unit(6, "kg"),
  18971. name: "Front (Dressed)",
  18972. image: {
  18973. source: "./media/characters/sebi/front-dressed.svg",
  18974. extra: 713.5 / 686.5,
  18975. bottom: 0.003
  18976. }
  18977. },
  18978. front: {
  18979. height: math.unit(70, "cm"),
  18980. weight: math.unit(5, "kg"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/sebi/front.svg",
  18984. extra: 713.5 / 686.5,
  18985. bottom: 0.003
  18986. }
  18987. }
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(70, "cm"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Macro",
  18997. height: math.unit(8, "meters")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(6, "feet"),
  19006. weight: math.unit(150, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/typhek/front.svg",
  19010. extra: 1948 / 1929,
  19011. bottom: 0.025
  19012. }
  19013. },
  19014. side: {
  19015. height: math.unit(6, "feet"),
  19016. weight: math.unit(150, "lb"),
  19017. name: "Side",
  19018. image: {
  19019. source: "./media/characters/typhek/side.svg",
  19020. extra: 2034 / 2010,
  19021. bottom: 0.003
  19022. }
  19023. },
  19024. back: {
  19025. height: math.unit(6, "feet"),
  19026. weight: math.unit(150, "lb"),
  19027. name: "Back",
  19028. image: {
  19029. source: "./media/characters/typhek/back.svg",
  19030. extra: 2005 / 1978,
  19031. bottom: 0.004
  19032. }
  19033. },
  19034. palm: {
  19035. height: math.unit(1.2, "feet"),
  19036. name: "Palm",
  19037. image: {
  19038. source: "./media/characters/typhek/palm.svg"
  19039. }
  19040. },
  19041. fist: {
  19042. height: math.unit(1.1, "feet"),
  19043. name: "Fist",
  19044. image: {
  19045. source: "./media/characters/typhek/fist.svg"
  19046. }
  19047. },
  19048. foot: {
  19049. height: math.unit(1.57, "feet"),
  19050. name: "Foot",
  19051. image: {
  19052. source: "./media/characters/typhek/foot.svg"
  19053. }
  19054. },
  19055. sole: {
  19056. height: math.unit(2.05, "feet"),
  19057. name: "Sole",
  19058. image: {
  19059. source: "./media/characters/typhek/sole.svg"
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Macro",
  19066. height: math.unit(40, "stories"),
  19067. default: true
  19068. },
  19069. {
  19070. name: "Megamacro",
  19071. height: math.unit(1, "mile")
  19072. },
  19073. {
  19074. name: "Gigamacro",
  19075. height: math.unit(4000, "solarradii")
  19076. },
  19077. {
  19078. name: "Universal",
  19079. height: math.unit(1.1, "universes")
  19080. }
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19085. {
  19086. side: {
  19087. height: math.unit(5 + 7 / 12, "feet"),
  19088. weight: math.unit(150, "lb"),
  19089. name: "Side",
  19090. image: {
  19091. source: "./media/characters/kassy/side.svg",
  19092. extra: 1280 / 1225,
  19093. bottom: 0.002
  19094. }
  19095. },
  19096. front: {
  19097. height: math.unit(5 + 7 / 12, "feet"),
  19098. weight: math.unit(150, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/kassy/front.svg",
  19102. extra: 1280 / 1225,
  19103. bottom: 0.025
  19104. }
  19105. },
  19106. back: {
  19107. height: math.unit(5 + 7 / 12, "feet"),
  19108. weight: math.unit(150, "lb"),
  19109. name: "Back",
  19110. image: {
  19111. source: "./media/characters/kassy/back.svg",
  19112. extra: 1280 / 1225,
  19113. bottom: 0.002
  19114. }
  19115. },
  19116. foot: {
  19117. height: math.unit(1.266, "feet"),
  19118. name: "Foot",
  19119. image: {
  19120. source: "./media/characters/kassy/foot.svg"
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(5 + 7 / 12, "feet")
  19128. },
  19129. {
  19130. name: "Macro",
  19131. height: math.unit(137, "feet"),
  19132. default: true
  19133. },
  19134. {
  19135. name: "Megamacro",
  19136. height: math.unit(1, "mile")
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6 + 1 / 12, "feet"),
  19145. weight: math.unit(200, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/neil/front.svg",
  19149. extra: 1326 / 1250,
  19150. bottom: 0.023
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(6 + 1 / 12, "feet"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Macro",
  19162. height: math.unit(200, "feet")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(5 + 9 / 12, "feet"),
  19171. weight: math.unit(190, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/atticus/front.svg",
  19175. extra: 2934 / 2785,
  19176. bottom: 0.025
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(5 + 9 / 12, "feet"),
  19184. default: true
  19185. },
  19186. {
  19187. name: "Macro",
  19188. height: math.unit(180, "feet")
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19194. {
  19195. side: {
  19196. height: math.unit(9, "feet"),
  19197. weight: math.unit(650, "lb"),
  19198. name: "Side",
  19199. image: {
  19200. source: "./media/characters/milo/side.svg",
  19201. extra: 2644 / 2310,
  19202. bottom: 0.032
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(9, "feet"),
  19210. default: true
  19211. },
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(300, "feet")
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19220. {
  19221. side: {
  19222. height: math.unit(8, "meters"),
  19223. weight: math.unit(90000, "kg"),
  19224. name: "Side",
  19225. image: {
  19226. source: "./media/characters/ijzer/side.svg",
  19227. extra: 2756 / 1600,
  19228. bottom: 0.01
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Small",
  19235. height: math.unit(3, "meters")
  19236. },
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(8, "meters"),
  19240. default: true
  19241. },
  19242. {
  19243. name: "Normal+",
  19244. height: math.unit(10, "meters")
  19245. },
  19246. {
  19247. name: "Bigger",
  19248. height: math.unit(24, "meters")
  19249. },
  19250. {
  19251. name: "Huge",
  19252. height: math.unit(80, "meters")
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6 + 2 / 12, "feet"),
  19261. weight: math.unit(153, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/luca-cervicum/front.svg",
  19265. extra: 370 / 327,
  19266. bottom: 0.015
  19267. }
  19268. },
  19269. back: {
  19270. height: math.unit(6 + 2 / 12, "feet"),
  19271. weight: math.unit(153, "lb"),
  19272. name: "Back",
  19273. image: {
  19274. source: "./media/characters/luca-cervicum/back.svg",
  19275. extra: 367 / 333,
  19276. bottom: 0.005
  19277. }
  19278. },
  19279. frontGear: {
  19280. height: math.unit(6 + 2 / 12, "feet"),
  19281. weight: math.unit(173, "lb"),
  19282. name: "Front (Gear)",
  19283. image: {
  19284. source: "./media/characters/luca-cervicum/front-gear.svg",
  19285. extra: 377 / 333,
  19286. bottom: 0.006
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(6 + 2 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(6 + 1 / 12, "feet"),
  19303. weight: math.unit(304, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/oliver/front.svg",
  19307. extra: 157 / 143,
  19308. bottom: 0.08
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6 + 1 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(5 + 7 / 12, "feet"),
  19325. weight: math.unit(140, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/shane/front.svg",
  19329. extra: 304 / 289,
  19330. bottom: 0.005
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Normal",
  19337. height: math.unit(5 + 7 / 12, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19344. {
  19345. front: {
  19346. height: math.unit(5 + 9 / 12, "feet"),
  19347. weight: math.unit(178, "lb"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/shin/front.svg",
  19351. extra: 159 / 151,
  19352. bottom: 0.015
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(5 + 9 / 12, "feet"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19366. {
  19367. front: {
  19368. height: math.unit(5 + 10 / 12, "feet"),
  19369. weight: math.unit(168, "lb"),
  19370. name: "Front",
  19371. image: {
  19372. source: "./media/characters/xerxes/front.svg",
  19373. extra: 282 / 260,
  19374. bottom: 0.045
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 10 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(6 + 7 / 12, "feet"),
  19391. weight: math.unit(208, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/chaska/front.svg",
  19395. extra: 332 / 319,
  19396. bottom: 0.015
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(6 + 7 / 12, "feet"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(5 + 8 / 12, "feet"),
  19413. weight: math.unit(208, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/enuk/front.svg",
  19417. extra: 437 / 406,
  19418. bottom: 0.02
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(5 + 8 / 12, "feet"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19432. {
  19433. front: {
  19434. height: math.unit(5 + 10 / 12, "feet"),
  19435. weight: math.unit(252, "lb"),
  19436. name: "Front",
  19437. image: {
  19438. source: "./media/characters/bruun/front.svg",
  19439. extra: 197 / 187,
  19440. bottom: 0.012
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(5 + 10 / 12, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(6 + 10 / 12, "feet"),
  19457. weight: math.unit(255, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/alexeev/front.svg",
  19461. extra: 213 / 200,
  19462. bottom: 0.05
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(6 + 10 / 12, "feet"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19476. {
  19477. front: {
  19478. height: math.unit(2 + 8 / 12, "feet"),
  19479. weight: math.unit(22, "lb"),
  19480. name: "Front",
  19481. image: {
  19482. source: "./media/characters/evelyn/front.svg",
  19483. extra: 208 / 180
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(2 + 8 / 12, "feet"),
  19491. default: true
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19497. {
  19498. front: {
  19499. height: math.unit(5 + 9 / 12, "feet"),
  19500. weight: math.unit(139, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/inca/front.svg",
  19504. extra: 294 / 291,
  19505. bottom: 0.03
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(5 + 9 / 12, "feet"),
  19513. default: true
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(5 + 1 / 12, "feet"),
  19522. weight: math.unit(84, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/magdalene/front.svg",
  19526. extra: 293 / 273
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(5 + 1 / 12, "feet"),
  19534. default: true
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19540. {
  19541. front: {
  19542. height: math.unit(6 + 3 / 12, "feet"),
  19543. weight: math.unit(185, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/mera/front.svg",
  19547. extra: 291 / 277,
  19548. bottom: 0.03
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(6 + 3 / 12, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6 + 7 / 12, "feet"),
  19565. weight: math.unit(160, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/ceres/front.svg",
  19569. extra: 1023 / 950,
  19570. bottom: 0.027
  19571. }
  19572. },
  19573. back: {
  19574. height: math.unit(6 + 7 / 12, "feet"),
  19575. weight: math.unit(160, "lb"),
  19576. name: "Back",
  19577. image: {
  19578. source: "./media/characters/ceres/back.svg",
  19579. extra: 1023 / 950
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Normal",
  19586. height: math.unit(6 + 7 / 12, "feet"),
  19587. default: true
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19593. {
  19594. front: {
  19595. height: math.unit(5 + 10 / 12, "feet"),
  19596. weight: math.unit(150, "lb"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/kris/front.svg",
  19600. extra: 885 / 803,
  19601. bottom: 0.03
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(5 + 10 / 12, "feet"),
  19609. default: true
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(7, "feet"),
  19618. weight: math.unit(120, "kg"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/taluthus/front.svg",
  19622. extra: 903 / 833,
  19623. bottom: 0.015
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(7, "feet"),
  19631. default: true
  19632. },
  19633. {
  19634. name: "Macro",
  19635. height: math.unit(300, "feet")
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19641. {
  19642. front: {
  19643. height: math.unit(5 + 9 / 12, "feet"),
  19644. weight: math.unit(145, "lb"),
  19645. name: "Front",
  19646. image: {
  19647. source: "./media/characters/dawn/front.svg",
  19648. extra: 2094 / 2016,
  19649. bottom: 0.025
  19650. }
  19651. },
  19652. back: {
  19653. height: math.unit(5 + 9 / 12, "feet"),
  19654. weight: math.unit(160, "lb"),
  19655. name: "Back",
  19656. image: {
  19657. source: "./media/characters/dawn/back.svg",
  19658. extra: 2112 / 2080,
  19659. bottom: 0.005
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(6 + 7 / 12, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19673. {
  19674. anthro: {
  19675. height: math.unit(8 + 3 / 12, "feet"),
  19676. weight: math.unit(450, "lb"),
  19677. name: "Anthro",
  19678. image: {
  19679. source: "./media/characters/arador/anthro.svg",
  19680. extra: 1835 / 1718,
  19681. bottom: 0.025
  19682. }
  19683. },
  19684. feral: {
  19685. height: math.unit(4, "feet"),
  19686. weight: math.unit(200, "lb"),
  19687. name: "Feral",
  19688. image: {
  19689. source: "./media/characters/arador/feral.svg",
  19690. extra: 1683 / 1514,
  19691. bottom: 0.07
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(8 + 3 / 12, "feet")
  19699. },
  19700. {
  19701. name: "Macro",
  19702. height: math.unit(82.5, "feet"),
  19703. default: true
  19704. },
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19709. {
  19710. front: {
  19711. height: math.unit(5 + 10 / 12, "feet"),
  19712. weight: math.unit(125, "lb"),
  19713. name: "Front",
  19714. image: {
  19715. source: "./media/characters/dharsi/front.svg",
  19716. extra: 716 / 630,
  19717. bottom: 0.035
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Nano",
  19724. height: math.unit(100, "nm")
  19725. },
  19726. {
  19727. name: "Micro",
  19728. height: math.unit(2, "inches")
  19729. },
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(5 + 10 / 12, "feet"),
  19733. default: true
  19734. },
  19735. {
  19736. name: "Macro",
  19737. height: math.unit(1000, "feet")
  19738. },
  19739. {
  19740. name: "Megamacro",
  19741. height: math.unit(10, "miles")
  19742. },
  19743. {
  19744. name: "Gigamacro",
  19745. height: math.unit(3000, "miles")
  19746. },
  19747. {
  19748. name: "Teramacro",
  19749. height: math.unit(500000, "miles")
  19750. },
  19751. {
  19752. name: "Teramacro+",
  19753. height: math.unit(30, "galaxies")
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19759. {
  19760. front: {
  19761. height: math.unit(6, "feet"),
  19762. weight: math.unit(150, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/deathy/front.svg",
  19766. extra: 1552 / 1463,
  19767. bottom: 0.025
  19768. }
  19769. },
  19770. side: {
  19771. height: math.unit(6, "feet"),
  19772. weight: math.unit(150, "lb"),
  19773. name: "Side",
  19774. image: {
  19775. source: "./media/characters/deathy/side.svg",
  19776. extra: 1604 / 1455,
  19777. bottom: 0.025
  19778. }
  19779. },
  19780. back: {
  19781. height: math.unit(6, "feet"),
  19782. weight: math.unit(150, "lb"),
  19783. name: "Back",
  19784. image: {
  19785. source: "./media/characters/deathy/back.svg",
  19786. extra: 1580 / 1463,
  19787. bottom: 0.005
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Micro",
  19794. height: math.unit(5, "millimeters")
  19795. },
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(6 + 5 / 12, "feet"),
  19799. default: true
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19805. {
  19806. front: {
  19807. height: math.unit(16, "feet"),
  19808. weight: math.unit(4000, "lb"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/juniper/front.svg",
  19812. bottom: 0.04
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(16, "feet"),
  19820. default: true
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(6, "feet"),
  19829. weight: math.unit(150, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/hipster/front.svg",
  19833. extra: 1312 / 1209,
  19834. bottom: 0.025
  19835. }
  19836. },
  19837. back: {
  19838. height: math.unit(6, "feet"),
  19839. weight: math.unit(150, "lb"),
  19840. name: "Back",
  19841. image: {
  19842. source: "./media/characters/hipster/back.svg",
  19843. extra: 1281 / 1196,
  19844. bottom: 0.01
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Micro",
  19851. height: math.unit(1, "mm")
  19852. },
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(4, "inches"),
  19856. default: true
  19857. },
  19858. {
  19859. name: "Macro",
  19860. height: math.unit(500, "feet")
  19861. },
  19862. {
  19863. name: "Megamacro",
  19864. height: math.unit(1000, "miles")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(6, "feet"),
  19873. weight: math.unit(150, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/tendirmuldr/front.svg",
  19877. extra: 1878 / 1772,
  19878. bottom: 0.015
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Megamacro",
  19885. height: math.unit(1500, "miles"),
  19886. default: true
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19892. {
  19893. front: {
  19894. height: math.unit(14, "feet"),
  19895. weight: math.unit(12000, "lb"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/mort/front.svg",
  19899. extra: 365 / 318,
  19900. bottom: 0.01
  19901. }
  19902. },
  19903. side: {
  19904. height: math.unit(14, "feet"),
  19905. weight: math.unit(12000, "lb"),
  19906. name: "Side",
  19907. image: {
  19908. source: "./media/characters/mort/side.svg",
  19909. extra: 365 / 318,
  19910. bottom: 0.052
  19911. },
  19912. default: true
  19913. },
  19914. back: {
  19915. height: math.unit(14, "feet"),
  19916. weight: math.unit(12000, "lb"),
  19917. name: "Back",
  19918. image: {
  19919. source: "./media/characters/mort/back.svg",
  19920. extra: 371 / 332,
  19921. bottom: 0.18
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(14, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19935. {
  19936. front: {
  19937. height: math.unit(8, "feet"),
  19938. weight: math.unit(1, "ton"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/lycoa/front.svg",
  19942. extra: 1875 / 1789,
  19943. bottom: 0.022
  19944. }
  19945. },
  19946. back: {
  19947. height: math.unit(8, "feet"),
  19948. weight: math.unit(1, "ton"),
  19949. name: "Back",
  19950. image: {
  19951. source: "./media/characters/lycoa/back.svg",
  19952. extra: 1835 / 1781,
  19953. bottom: 0.03
  19954. }
  19955. },
  19956. head: {
  19957. height: math.unit(2.1, "feet"),
  19958. name: "Head",
  19959. image: {
  19960. source: "./media/characters/lycoa/head.svg"
  19961. }
  19962. },
  19963. tailmaw: {
  19964. height: math.unit(1.9, "feet"),
  19965. name: "Tailmaw",
  19966. image: {
  19967. source: "./media/characters/lycoa/tailmaw.svg"
  19968. }
  19969. },
  19970. tentacles: {
  19971. height: math.unit(2.1, "feet"),
  19972. name: "Tentacles",
  19973. image: {
  19974. source: "./media/characters/lycoa/tentacles.svg"
  19975. }
  19976. },
  19977. dick: {
  19978. height: math.unit(1.73, "feet"),
  19979. name: "Dick",
  19980. image: {
  19981. source: "./media/characters/lycoa/dick.svg"
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(8, "feet"),
  19989. default: true
  19990. },
  19991. {
  19992. name: "Macro",
  19993. height: math.unit(30, "feet")
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19999. {
  20000. front: {
  20001. height: math.unit(4 + 2 / 12, "feet"),
  20002. weight: math.unit(70, "lb"),
  20003. name: "Front",
  20004. image: {
  20005. source: "./media/characters/naldara/front.svg",
  20006. extra: 841 / 720,
  20007. bottom: 0.04
  20008. }
  20009. },
  20010. naga: {
  20011. height: math.unit(23, "feet"),
  20012. weight: math.unit(15000, "kg"),
  20013. name: "Naga",
  20014. image: {
  20015. source: "./media/characters/naldara/naga.svg",
  20016. extra: 3290 / 2959,
  20017. bottom: 124 / 3432
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(4 + 2 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(13 + 7 / 12, "feet"),
  20034. weight: math.unit(1500, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/briar/front.svg",
  20038. extra: 626 / 596,
  20039. bottom: 0.08
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(13 + 7 / 12, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20053. {
  20054. side: {
  20055. height: math.unit(10, "feet"),
  20056. weight: math.unit(500, "lb"),
  20057. name: "Side",
  20058. image: {
  20059. source: "./media/characters/vanguard/side.svg",
  20060. extra: 502 / 425,
  20061. bottom: 0.087
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(10, "feet"),
  20069. default: true
  20070. },
  20071. ]
  20072. ))
  20073. characterMakers.push(() => makeCharacter(
  20074. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20075. {
  20076. front: {
  20077. height: math.unit(7.5, "feet"),
  20078. weight: math.unit(2, "lb"),
  20079. name: "Front",
  20080. image: {
  20081. source: "./media/characters/artemis/front.svg",
  20082. extra: 1192 / 1075,
  20083. bottom: 0.07
  20084. }
  20085. },
  20086. frontNsfw: {
  20087. height: math.unit(7.5, "feet"),
  20088. weight: math.unit(2, "lb"),
  20089. name: "Front (NSFW)",
  20090. image: {
  20091. source: "./media/characters/artemis/front-nsfw.svg",
  20092. extra: 1192 / 1075,
  20093. bottom: 0.07
  20094. }
  20095. },
  20096. frontNsfwer: {
  20097. height: math.unit(7.5, "feet"),
  20098. weight: math.unit(2, "lb"),
  20099. name: "Front (NSFW-er)",
  20100. image: {
  20101. source: "./media/characters/artemis/front-nsfwer.svg",
  20102. extra: 1192 / 1075,
  20103. bottom: 0.07
  20104. }
  20105. },
  20106. side: {
  20107. height: math.unit(7.5, "feet"),
  20108. weight: math.unit(2, "lb"),
  20109. name: "Side",
  20110. image: {
  20111. source: "./media/characters/artemis/side.svg",
  20112. extra: 1192 / 1075,
  20113. bottom: 0.07
  20114. }
  20115. },
  20116. sideNsfw: {
  20117. height: math.unit(7.5, "feet"),
  20118. weight: math.unit(2, "lb"),
  20119. name: "Side (NSFW)",
  20120. image: {
  20121. source: "./media/characters/artemis/side-nsfw.svg",
  20122. extra: 1192 / 1075,
  20123. bottom: 0.07
  20124. }
  20125. },
  20126. sideNsfwer: {
  20127. height: math.unit(7.5, "feet"),
  20128. weight: math.unit(2, "lb"),
  20129. name: "Side (NSFW-er)",
  20130. image: {
  20131. source: "./media/characters/artemis/side-nsfwer.svg",
  20132. extra: 1192 / 1075,
  20133. bottom: 0.07
  20134. }
  20135. },
  20136. maw: {
  20137. height: math.unit(1.1, "feet"),
  20138. name: "Maw",
  20139. image: {
  20140. source: "./media/characters/artemis/maw.svg"
  20141. }
  20142. },
  20143. stomach: {
  20144. height: math.unit(0.95, "feet"),
  20145. name: "Stomach",
  20146. image: {
  20147. source: "./media/characters/artemis/stomach.svg"
  20148. }
  20149. },
  20150. dickCanine: {
  20151. height: math.unit(1, "feet"),
  20152. name: "Dick (Canine)",
  20153. image: {
  20154. source: "./media/characters/artemis/dick-canine.svg"
  20155. }
  20156. },
  20157. dickEquine: {
  20158. height: math.unit(0.85, "feet"),
  20159. name: "Dick (Equine)",
  20160. image: {
  20161. source: "./media/characters/artemis/dick-equine.svg"
  20162. }
  20163. },
  20164. dickExotic: {
  20165. height: math.unit(0.85, "feet"),
  20166. name: "Dick (Exotic)",
  20167. image: {
  20168. source: "./media/characters/artemis/dick-exotic.svg"
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(7.5, "feet"),
  20176. default: true
  20177. },
  20178. {
  20179. name: "Enlarged",
  20180. height: math.unit(12, "feet")
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(5 + 3 / 12, "feet"),
  20189. weight: math.unit(160, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/kira/front.svg",
  20193. extra: 906 / 786,
  20194. bottom: 0.01
  20195. }
  20196. },
  20197. back: {
  20198. height: math.unit(5 + 3 / 12, "feet"),
  20199. weight: math.unit(160, "lb"),
  20200. name: "Back",
  20201. image: {
  20202. source: "./media/characters/kira/back.svg",
  20203. extra: 882 / 757,
  20204. bottom: 0.005
  20205. }
  20206. },
  20207. frontDressed: {
  20208. height: math.unit(5 + 3 / 12, "feet"),
  20209. weight: math.unit(160, "lb"),
  20210. name: "Front (Dressed)",
  20211. image: {
  20212. source: "./media/characters/kira/front-dressed.svg",
  20213. extra: 906 / 786,
  20214. bottom: 0.01
  20215. }
  20216. },
  20217. beans: {
  20218. height: math.unit(0.92, "feet"),
  20219. name: "Beans",
  20220. image: {
  20221. source: "./media/characters/kira/beans.svg"
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(5 + 3 / 12, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(5 + 4 / 12, "feet"),
  20238. weight: math.unit(145, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/scramble/front.svg",
  20242. extra: 763 / 727,
  20243. bottom: 0.05
  20244. }
  20245. },
  20246. back: {
  20247. height: math.unit(5 + 4 / 12, "feet"),
  20248. weight: math.unit(145, "lb"),
  20249. name: "Back",
  20250. image: {
  20251. source: "./media/characters/scramble/back.svg",
  20252. extra: 826 / 737,
  20253. bottom: 0.002
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(5 + 4 / 12, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20267. {
  20268. side: {
  20269. height: math.unit(6 + 2 / 12, "feet"),
  20270. weight: math.unit(190, "lb"),
  20271. name: "Side",
  20272. image: {
  20273. source: "./media/characters/biscuit/side.svg",
  20274. extra: 858 / 791,
  20275. bottom: 0.044
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(6 + 2 / 12, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 2 / 12, "feet"),
  20292. weight: math.unit(120, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/poffin/front.svg",
  20296. extra: 786 / 680,
  20297. bottom: 0.005
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(5 + 2 / 12, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(6 + 3 / 12, "feet"),
  20314. weight: math.unit(519, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/dhari/front.svg",
  20318. extra: 1048 / 946,
  20319. bottom: 0.015
  20320. }
  20321. },
  20322. back: {
  20323. height: math.unit(6 + 3 / 12, "feet"),
  20324. weight: math.unit(519, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/dhari/back.svg",
  20328. extra: 1048 / 931,
  20329. bottom: 0.005
  20330. }
  20331. },
  20332. frontDressed: {
  20333. height: math.unit(6 + 3 / 12, "feet"),
  20334. weight: math.unit(519, "lb"),
  20335. name: "Front (Dressed)",
  20336. image: {
  20337. source: "./media/characters/dhari/front-dressed.svg",
  20338. extra: 1713 / 1546,
  20339. bottom: 0.02
  20340. }
  20341. },
  20342. backDressed: {
  20343. height: math.unit(6 + 3 / 12, "feet"),
  20344. weight: math.unit(519, "lb"),
  20345. name: "Back (Dressed)",
  20346. image: {
  20347. source: "./media/characters/dhari/back-dressed.svg",
  20348. extra: 1699 / 1537,
  20349. bottom: 0.01
  20350. }
  20351. },
  20352. maw: {
  20353. height: math.unit(0.95, "feet"),
  20354. name: "Maw",
  20355. image: {
  20356. source: "./media/characters/dhari/maw.svg"
  20357. }
  20358. },
  20359. wereFront: {
  20360. height: math.unit(12 + 8 / 12, "feet"),
  20361. weight: math.unit(4000, "lb"),
  20362. name: "Front (Were)",
  20363. image: {
  20364. source: "./media/characters/dhari/were-front.svg",
  20365. extra: 1065 / 969,
  20366. bottom: 0.015
  20367. }
  20368. },
  20369. wereBack: {
  20370. height: math.unit(12 + 8 / 12, "feet"),
  20371. weight: math.unit(4000, "lb"),
  20372. name: "Back (Were)",
  20373. image: {
  20374. source: "./media/characters/dhari/were-back.svg",
  20375. extra: 1065 / 969,
  20376. bottom: 0.012
  20377. }
  20378. },
  20379. wereMaw: {
  20380. height: math.unit(0.625, "meters"),
  20381. name: "Maw (Were)",
  20382. image: {
  20383. source: "./media/characters/dhari/were-maw.svg"
  20384. }
  20385. },
  20386. },
  20387. [
  20388. {
  20389. name: "Normal",
  20390. height: math.unit(6 + 3 / 12, "feet"),
  20391. default: true
  20392. },
  20393. ]
  20394. ))
  20395. characterMakers.push(() => makeCharacter(
  20396. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20397. {
  20398. anthro: {
  20399. height: math.unit(5 + 7 / 12, "feet"),
  20400. weight: math.unit(175, "lb"),
  20401. name: "Anthro",
  20402. image: {
  20403. source: "./media/characters/rena-dyne/anthro.svg",
  20404. extra: 1849 / 1785,
  20405. bottom: 0.005
  20406. }
  20407. },
  20408. taur: {
  20409. height: math.unit(15 + 6 / 12, "feet"),
  20410. weight: math.unit(8000, "lb"),
  20411. name: "Taur",
  20412. image: {
  20413. source: "./media/characters/rena-dyne/taur.svg",
  20414. extra: 2315 / 2234,
  20415. bottom: 0.033
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(5 + 7 / 12, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(8, "feet"),
  20432. weight: math.unit(600, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/weremeep/front.svg",
  20436. extra: 967 / 862,
  20437. bottom: 0.01
  20438. }
  20439. },
  20440. },
  20441. [
  20442. {
  20443. name: "Normal",
  20444. height: math.unit(8, "feet"),
  20445. default: true
  20446. },
  20447. {
  20448. name: "Lorg",
  20449. height: math.unit(12, "feet")
  20450. },
  20451. {
  20452. name: "Oh Lawd She Comin'",
  20453. height: math.unit(20, "feet")
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20459. {
  20460. front: {
  20461. height: math.unit(4, "feet"),
  20462. weight: math.unit(90, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/reza/front.svg",
  20466. extra: 1183 / 1111,
  20467. bottom: 0.017
  20468. }
  20469. },
  20470. back: {
  20471. height: math.unit(4, "feet"),
  20472. weight: math.unit(90, "lb"),
  20473. name: "Back",
  20474. image: {
  20475. source: "./media/characters/reza/back.svg",
  20476. extra: 1183 / 1111,
  20477. bottom: 0.01
  20478. }
  20479. },
  20480. drake: {
  20481. height: math.unit(30, "feet"),
  20482. weight: math.unit(246960, "lb"),
  20483. name: "Drake",
  20484. image: {
  20485. source: "./media/characters/reza/drake.svg",
  20486. extra: 2350 / 2024,
  20487. bottom: 60.7 / 2403
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(4, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20501. {
  20502. side: {
  20503. height: math.unit(15, "feet"),
  20504. weight: math.unit(14, "tons"),
  20505. name: "Side",
  20506. image: {
  20507. source: "./media/characters/athea/side.svg",
  20508. extra: 960 / 540,
  20509. bottom: 0.003
  20510. }
  20511. },
  20512. sitting: {
  20513. height: math.unit(6 * 2.85, "feet"),
  20514. weight: math.unit(14, "tons"),
  20515. name: "Sitting",
  20516. image: {
  20517. source: "./media/characters/athea/sitting.svg",
  20518. extra: 621 / 581,
  20519. bottom: 0.075
  20520. }
  20521. },
  20522. maw: {
  20523. height: math.unit(7.59498031496063, "feet"),
  20524. name: "Maw",
  20525. image: {
  20526. source: "./media/characters/athea/maw.svg"
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Lap Cat",
  20533. height: math.unit(2.5, "feet")
  20534. },
  20535. {
  20536. name: "Minimacro",
  20537. height: math.unit(15, "feet"),
  20538. default: true
  20539. },
  20540. {
  20541. name: "Macro",
  20542. height: math.unit(120, "feet")
  20543. },
  20544. {
  20545. name: "Macro+",
  20546. height: math.unit(640, "feet")
  20547. },
  20548. {
  20549. name: "Colossus",
  20550. height: math.unit(2.2, "miles")
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(8 + 8 / 12, "feet"),
  20559. weight: math.unit(130, "kg"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/seroko/front.svg",
  20563. extra: 1385 / 1280,
  20564. bottom: 0.025
  20565. }
  20566. },
  20567. back: {
  20568. height: math.unit(8 + 8 / 12, "feet"),
  20569. weight: math.unit(130, "kg"),
  20570. name: "Back",
  20571. image: {
  20572. source: "./media/characters/seroko/back.svg",
  20573. extra: 1369 / 1238,
  20574. bottom: 0.018
  20575. }
  20576. },
  20577. frontDressed: {
  20578. height: math.unit(8 + 8 / 12, "feet"),
  20579. weight: math.unit(130, "kg"),
  20580. name: "Front (Dressed)",
  20581. image: {
  20582. source: "./media/characters/seroko/front-dressed.svg",
  20583. extra: 1366 / 1275,
  20584. bottom: 0.03
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(8 + 8 / 12, "feet"),
  20592. default: true
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(5.5, "feet"),
  20601. weight: math.unit(160, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/quatzi/front.svg",
  20605. extra: 2346 / 2242,
  20606. bottom: 0.015
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(5.5, "feet"),
  20614. default: true
  20615. },
  20616. {
  20617. name: "Big",
  20618. height: math.unit(7.7, "feet")
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(5 + 11 / 12, "feet"),
  20627. weight: math.unit(180, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/sen/front.svg",
  20631. extra: 1321 / 1254,
  20632. bottom: 0.015
  20633. }
  20634. },
  20635. side: {
  20636. height: math.unit(5 + 11 / 12, "feet"),
  20637. weight: math.unit(180, "lb"),
  20638. name: "Side",
  20639. image: {
  20640. source: "./media/characters/sen/side.svg",
  20641. extra: 1321 / 1254,
  20642. bottom: 0.007
  20643. }
  20644. },
  20645. back: {
  20646. height: math.unit(5 + 11 / 12, "feet"),
  20647. weight: math.unit(180, "lb"),
  20648. name: "Back",
  20649. image: {
  20650. source: "./media/characters/sen/back.svg",
  20651. extra: 1321 / 1254
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(5 + 11 / 12, "feet"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(166.6, "cm"),
  20668. weight: math.unit(66.6, "kg"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/fruity/front.svg",
  20672. extra: 1510 / 1386,
  20673. bottom: 0.04
  20674. }
  20675. },
  20676. back: {
  20677. height: math.unit(166.6, "cm"),
  20678. weight: math.unit(66.6, "lb"),
  20679. name: "Back",
  20680. image: {
  20681. source: "./media/characters/fruity/back.svg",
  20682. extra: 1563 / 1435,
  20683. bottom: 0.005
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(166.6, "cm"),
  20691. default: true
  20692. },
  20693. {
  20694. name: "Demonic",
  20695. height: math.unit(166.6, "feet")
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20701. {
  20702. side: {
  20703. height: math.unit(10, "feet"),
  20704. weight: math.unit(500, "lb"),
  20705. name: "Side",
  20706. image: {
  20707. source: "./media/characters/zost/side.svg",
  20708. extra: 966 / 880,
  20709. bottom: 0.075
  20710. }
  20711. },
  20712. mawFront: {
  20713. height: math.unit(1.08, "meters"),
  20714. name: "Maw (Front)",
  20715. image: {
  20716. source: "./media/characters/zost/maw-front.svg"
  20717. }
  20718. },
  20719. mawSide: {
  20720. height: math.unit(2.66, "feet"),
  20721. name: "Maw (Side)",
  20722. image: {
  20723. source: "./media/characters/zost/maw-side.svg"
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Normal",
  20730. height: math.unit(10, "feet"),
  20731. default: true
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20737. {
  20738. front: {
  20739. height: math.unit(5 + 4 / 12, "feet"),
  20740. weight: math.unit(120, "lb"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/luci/front.svg",
  20744. extra: 1985 / 1884,
  20745. bottom: 0.04
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(5 + 4 / 12, "feet"),
  20750. weight: math.unit(120, "lb"),
  20751. name: "Back",
  20752. image: {
  20753. source: "./media/characters/luci/back.svg",
  20754. extra: 1892 / 1791,
  20755. bottom: 0.002
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(5 + 4 / 12, "feet"),
  20763. default: true
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(1500, "feet"),
  20772. weight: math.unit(3.8e6, "tons"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/2th/front.svg",
  20776. extra: 3489 / 3350,
  20777. bottom: 0.1
  20778. }
  20779. },
  20780. foot: {
  20781. height: math.unit(461, "feet"),
  20782. name: "Foot",
  20783. image: {
  20784. source: "./media/characters/2th/foot.svg"
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "\"Micro\"",
  20791. height: math.unit(15 + 7 / 12, "feet")
  20792. },
  20793. {
  20794. name: "Normal",
  20795. height: math.unit(1500, "feet"),
  20796. default: true
  20797. },
  20798. {
  20799. name: "Macro",
  20800. height: math.unit(5000, "feet")
  20801. },
  20802. {
  20803. name: "Megamacro",
  20804. height: math.unit(15, "miles")
  20805. },
  20806. {
  20807. name: "Gigamacro",
  20808. height: math.unit(4000, "miles")
  20809. },
  20810. {
  20811. name: "Galactic",
  20812. height: math.unit(50, "AU")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(5 + 6 / 12, "feet"),
  20821. weight: math.unit(220, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/amethyst/front.svg",
  20825. extra: 2078 / 2040,
  20826. bottom: 0.045
  20827. }
  20828. },
  20829. back: {
  20830. height: math.unit(5 + 6 / 12, "feet"),
  20831. weight: math.unit(220, "lb"),
  20832. name: "Back",
  20833. image: {
  20834. source: "./media/characters/amethyst/back.svg",
  20835. extra: 2021 / 1989,
  20836. bottom: 0.02
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(5 + 6 / 12, "feet"),
  20844. default: true
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(4 + 11 / 12, "feet"),
  20853. weight: math.unit(120, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/yumi-akiyama/front.svg",
  20857. extra: 1327 / 1235,
  20858. bottom: 0.02
  20859. }
  20860. },
  20861. back: {
  20862. height: math.unit(4 + 11 / 12, "feet"),
  20863. weight: math.unit(120, "lb"),
  20864. name: "Back",
  20865. image: {
  20866. source: "./media/characters/yumi-akiyama/back.svg",
  20867. extra: 1287 / 1245,
  20868. bottom: 0.002
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Galactic",
  20875. height: math.unit(50, "galaxies"),
  20876. default: true
  20877. },
  20878. {
  20879. name: "Universal",
  20880. height: math.unit(100, "universes")
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20886. {
  20887. front: {
  20888. height: math.unit(8, "feet"),
  20889. weight: math.unit(500, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/rifter-yrmori/front.svg",
  20893. extra: 1180 / 1125,
  20894. bottom: 0.02
  20895. }
  20896. },
  20897. back: {
  20898. height: math.unit(8, "feet"),
  20899. weight: math.unit(500, "lb"),
  20900. name: "Back",
  20901. image: {
  20902. source: "./media/characters/rifter-yrmori/back.svg",
  20903. extra: 1190 / 1145,
  20904. bottom: 0.001
  20905. }
  20906. },
  20907. wings: {
  20908. height: math.unit(7.75, "feet"),
  20909. weight: math.unit(500, "lb"),
  20910. name: "Wings",
  20911. image: {
  20912. source: "./media/characters/rifter-yrmori/wings.svg",
  20913. extra: 1357 / 1285
  20914. }
  20915. },
  20916. maw: {
  20917. height: math.unit(0.8, "feet"),
  20918. name: "Maw",
  20919. image: {
  20920. source: "./media/characters/rifter-yrmori/maw.svg"
  20921. }
  20922. },
  20923. mawfront: {
  20924. height: math.unit(1.45, "feet"),
  20925. name: "Maw (Front)",
  20926. image: {
  20927. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Normal",
  20934. height: math.unit(8, "feet"),
  20935. default: true
  20936. },
  20937. {
  20938. name: "Macro",
  20939. height: math.unit(42, "meters")
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20945. {
  20946. were: {
  20947. height: math.unit(25 + 6 / 12, "feet"),
  20948. weight: math.unit(10000, "lb"),
  20949. name: "Were",
  20950. image: {
  20951. source: "./media/characters/tahajin/were.svg",
  20952. extra: 801 / 770,
  20953. bottom: 0.042
  20954. }
  20955. },
  20956. aquatic: {
  20957. height: math.unit(6 + 4 / 12, "feet"),
  20958. weight: math.unit(160, "lb"),
  20959. name: "Aquatic",
  20960. image: {
  20961. source: "./media/characters/tahajin/aquatic.svg",
  20962. extra: 572 / 542,
  20963. bottom: 0.04
  20964. }
  20965. },
  20966. chow: {
  20967. height: math.unit(8 + 11 / 12, "feet"),
  20968. weight: math.unit(450, "lb"),
  20969. name: "Chow",
  20970. image: {
  20971. source: "./media/characters/tahajin/chow.svg",
  20972. extra: 660 / 640,
  20973. bottom: 0.015
  20974. }
  20975. },
  20976. demiNaga: {
  20977. height: math.unit(6 + 8 / 12, "feet"),
  20978. weight: math.unit(300, "lb"),
  20979. name: "Demi Naga",
  20980. image: {
  20981. source: "./media/characters/tahajin/demi-naga.svg",
  20982. extra: 643 / 615,
  20983. bottom: 0.1
  20984. }
  20985. },
  20986. data: {
  20987. height: math.unit(5, "inches"),
  20988. weight: math.unit(0.1, "lb"),
  20989. name: "Data",
  20990. image: {
  20991. source: "./media/characters/tahajin/data.svg"
  20992. }
  20993. },
  20994. fluu: {
  20995. height: math.unit(5 + 7 / 12, "feet"),
  20996. weight: math.unit(140, "lb"),
  20997. name: "Fluu",
  20998. image: {
  20999. source: "./media/characters/tahajin/fluu.svg",
  21000. extra: 628 / 592,
  21001. bottom: 0.02
  21002. }
  21003. },
  21004. starWarrior: {
  21005. height: math.unit(4 + 5 / 12, "feet"),
  21006. weight: math.unit(50, "lb"),
  21007. name: "Star Warrior",
  21008. image: {
  21009. source: "./media/characters/tahajin/star-warrior.svg"
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(25 + 6 / 12, "feet"),
  21017. default: true
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(8, "feet"),
  21026. weight: math.unit(350, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/gabira/front.svg",
  21030. extra: 608 / 580,
  21031. bottom: 0.03
  21032. }
  21033. },
  21034. back: {
  21035. height: math.unit(8, "feet"),
  21036. weight: math.unit(350, "lb"),
  21037. name: "Back",
  21038. image: {
  21039. source: "./media/characters/gabira/back.svg",
  21040. extra: 608 / 580,
  21041. bottom: 0.03
  21042. }
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Normal",
  21048. height: math.unit(8, "feet"),
  21049. default: true
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21055. {
  21056. front: {
  21057. height: math.unit(5 + 3 / 12, "feet"),
  21058. weight: math.unit(137, "lb"),
  21059. name: "Front",
  21060. image: {
  21061. source: "./media/characters/sasha-katraine/front.svg",
  21062. bottom: 0.045
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Micro",
  21069. height: math.unit(5, "inches")
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(5 + 3 / 12, "feet"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21080. {
  21081. side: {
  21082. height: math.unit(4, "inches"),
  21083. weight: math.unit(200, "grams"),
  21084. name: "Side",
  21085. image: {
  21086. source: "./media/characters/der/side.svg",
  21087. extra: 719 / 400,
  21088. bottom: 30.6 / 749.9187
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Micro",
  21095. height: math.unit(4, "inches"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21102. {
  21103. side: {
  21104. height: math.unit(30, "meters"),
  21105. weight: math.unit(700, "tonnes"),
  21106. name: "Side",
  21107. image: {
  21108. source: "./media/characters/fixerdragon/side.svg",
  21109. extra: (1293.0514 - 116.03) / 1106.86,
  21110. bottom: 116.03 / 1293.0514
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Planck",
  21117. height: math.unit(1.6e-35, "meters")
  21118. },
  21119. {
  21120. name: "Micro",
  21121. height: math.unit(0.4, "meters")
  21122. },
  21123. {
  21124. name: "Normal",
  21125. height: math.unit(30, "meters"),
  21126. default: true
  21127. },
  21128. {
  21129. name: "Megamacro",
  21130. height: math.unit(1.2, "megameters")
  21131. },
  21132. {
  21133. name: "Teramacro",
  21134. height: math.unit(130, "terameters")
  21135. },
  21136. {
  21137. name: "Yottamacro",
  21138. height: math.unit(6200, "yottameters")
  21139. },
  21140. ]
  21141. ));
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(8, "feet"),
  21147. weight: math.unit(250, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/kite/front.svg",
  21151. extra: 2796 / 2659,
  21152. bottom: 0.002
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(8, "feet"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Macro",
  21164. height: math.unit(360, "feet")
  21165. },
  21166. {
  21167. name: "Megamacro",
  21168. height: math.unit(1500, "feet")
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(5 + 10 / 12, "feet"),
  21177. weight: math.unit(150, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/poojawa-vynar/front.svg",
  21181. extra: (1506.1547 - 55) / 1356.6,
  21182. bottom: 55 / 1506.1547
  21183. }
  21184. },
  21185. frontTailless: {
  21186. height: math.unit(5 + 10 / 12, "feet"),
  21187. weight: math.unit(150, "lb"),
  21188. name: "Front (Tailless)",
  21189. image: {
  21190. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21191. extra: (1506.1547 - 55) / 1356.6,
  21192. bottom: 55 / 1506.1547
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(5 + 10 / 12, "feet"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(293, "meters"),
  21209. weight: math.unit(70400, "tons"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/violette/front.svg",
  21213. extra: 1227 / 1180,
  21214. bottom: 0.005
  21215. }
  21216. },
  21217. back: {
  21218. height: math.unit(293, "meters"),
  21219. weight: math.unit(70400, "tons"),
  21220. name: "Back",
  21221. image: {
  21222. source: "./media/characters/violette/back.svg",
  21223. extra: 1227 / 1180,
  21224. bottom: 0.005
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Macro",
  21231. height: math.unit(293, "meters"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(1050, "feet"),
  21241. weight: math.unit(200000, "tons"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/alessandra/front.svg",
  21245. extra: 960 / 912,
  21246. bottom: 0.06
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(1050, "feet")
  21254. },
  21255. {
  21256. name: "Macro+",
  21257. height: math.unit(900, "meters"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(5, "feet"),
  21267. weight: math.unit(187, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/person/front.svg",
  21271. extra: 3087 / 2945,
  21272. bottom: 91 / 3181
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Micro",
  21279. height: math.unit(3, "inches")
  21280. },
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(5, "feet"),
  21284. default: true
  21285. },
  21286. {
  21287. name: "Macro",
  21288. height: math.unit(90, "feet")
  21289. },
  21290. {
  21291. name: "Max Size",
  21292. height: math.unit(280, "feet")
  21293. },
  21294. ]
  21295. ))
  21296. characterMakers.push(() => makeCharacter(
  21297. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21298. {
  21299. front: {
  21300. height: math.unit(4.5, "meters"),
  21301. weight: math.unit(3200, "lb"),
  21302. name: "Front",
  21303. image: {
  21304. source: "./media/characters/ty/front.svg",
  21305. extra: 1038 / 960,
  21306. bottom: 31.156 / 1068
  21307. }
  21308. },
  21309. back: {
  21310. height: math.unit(4.5, "meters"),
  21311. weight: math.unit(3200, "lb"),
  21312. name: "Back",
  21313. image: {
  21314. source: "./media/characters/ty/back.svg",
  21315. extra: 1044 / 966,
  21316. bottom: 7.48 / 1049
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(4.5, "meters"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21330. {
  21331. front: {
  21332. height: math.unit(5 + 4 / 12, "feet"),
  21333. weight: math.unit(115, "lb"),
  21334. name: "Front",
  21335. image: {
  21336. source: "./media/characters/rocky/front.svg",
  21337. extra: 1012 / 975,
  21338. bottom: 54 / 1066
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(5 + 4 / 12, "feet"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21352. {
  21353. upright: {
  21354. height: math.unit(6, "meters"),
  21355. weight: math.unit(4000, "kg"),
  21356. name: "Upright",
  21357. image: {
  21358. source: "./media/characters/ruin/upright.svg",
  21359. extra: 668 / 661,
  21360. bottom: 42 / 799.8396
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(6, "meters"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(5, "feet"),
  21377. weight: math.unit(106, "lb"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/robin/front.svg",
  21381. extra: 862 / 799,
  21382. bottom: 42.4 / 914.8856
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(5, "feet"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21396. {
  21397. side: {
  21398. height: math.unit(3, "feet"),
  21399. weight: math.unit(225, "lb"),
  21400. name: "Side",
  21401. image: {
  21402. source: "./media/characters/saian/side.svg",
  21403. extra: 566 / 356,
  21404. bottom: 79.7 / 643
  21405. }
  21406. },
  21407. maw: {
  21408. height: math.unit(2.85, "feet"),
  21409. name: "Maw",
  21410. image: {
  21411. source: "./media/characters/saian/maw.svg"
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(3, "feet"),
  21419. default: true
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21425. {
  21426. side: {
  21427. height: math.unit(8, "feet"),
  21428. weight: math.unit(300, "lb"),
  21429. name: "Side",
  21430. image: {
  21431. source: "./media/characters/equus-silvermane/side.svg",
  21432. extra: 2176 / 2050,
  21433. bottom: 65.7 / 2245
  21434. }
  21435. },
  21436. front: {
  21437. height: math.unit(8, "feet"),
  21438. weight: math.unit(300, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/equus-silvermane/front.svg",
  21442. extra: 4633 / 4400,
  21443. bottom: 71.3 / 4706.915
  21444. }
  21445. },
  21446. sideStepping: {
  21447. height: math.unit(8, "feet"),
  21448. weight: math.unit(300, "lb"),
  21449. name: "Side (Stepping)",
  21450. image: {
  21451. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21452. extra: 1968 / 1860,
  21453. bottom: 16.4 / 1989
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(8, "feet")
  21461. },
  21462. {
  21463. name: "Minimacro",
  21464. height: math.unit(75, "feet"),
  21465. default: true
  21466. },
  21467. {
  21468. name: "Macro",
  21469. height: math.unit(150, "feet")
  21470. },
  21471. {
  21472. name: "Macro+",
  21473. height: math.unit(1000, "feet")
  21474. },
  21475. {
  21476. name: "Megamacro",
  21477. height: math.unit(1, "mile")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21483. {
  21484. side: {
  21485. height: math.unit(20, "feet"),
  21486. weight: math.unit(30000, "kg"),
  21487. name: "Side",
  21488. image: {
  21489. source: "./media/characters/windar/side.svg",
  21490. extra: 1491 / 1248,
  21491. bottom: 82.56 / 1568
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(20, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21505. {
  21506. side: {
  21507. height: math.unit(15.66, "feet"),
  21508. weight: math.unit(150, "lb"),
  21509. name: "Side",
  21510. image: {
  21511. source: "./media/characters/melody/side.svg",
  21512. extra: 1097 / 944,
  21513. bottom: 11.8 / 1109
  21514. }
  21515. },
  21516. sideOutfit: {
  21517. height: math.unit(15.66, "feet"),
  21518. weight: math.unit(150, "lb"),
  21519. name: "Side (Outfit)",
  21520. image: {
  21521. source: "./media/characters/melody/side-outfit.svg",
  21522. extra: 1097 / 944,
  21523. bottom: 11.8 / 1109
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(15.66, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(8, "feet"),
  21540. weight: math.unit(325, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/windera/front.svg",
  21544. extra: 3180 / 2845,
  21545. bottom: 178 / 3365
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(8, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21559. {
  21560. front: {
  21561. height: math.unit(28.75, "feet"),
  21562. weight: math.unit(2000, "kg"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/sonear/front.svg",
  21566. extra: 1041.1 / 964.9,
  21567. bottom: 53.7 / 1096.6
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(28.75, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21581. {
  21582. side: {
  21583. height: math.unit(25.5, "feet"),
  21584. weight: math.unit(23000, "kg"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/kanara/side.svg"
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(25.5, "feet"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21601. {
  21602. side: {
  21603. height: math.unit(10, "feet"),
  21604. weight: math.unit(1000, "kg"),
  21605. name: "Side",
  21606. image: {
  21607. source: "./media/characters/ereus/side.svg",
  21608. extra: 1157 / 959,
  21609. bottom: 153 / 1312.5
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(10, "feet"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21623. {
  21624. side: {
  21625. height: math.unit(4.5, "feet"),
  21626. weight: math.unit(500, "lb"),
  21627. name: "Side",
  21628. image: {
  21629. source: "./media/characters/e-ter/side.svg",
  21630. extra: 1550 / 1248,
  21631. bottom: 146 / 1694
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Normal",
  21638. height: math.unit(4.5, "feet"),
  21639. default: true
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21645. {
  21646. side: {
  21647. height: math.unit(9.7, "feet"),
  21648. weight: math.unit(4000, "kg"),
  21649. name: "Side",
  21650. image: {
  21651. source: "./media/characters/yamie/side.svg"
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(9.7, "feet"),
  21659. default: true
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21665. {
  21666. front: {
  21667. height: math.unit(50, "feet"),
  21668. weight: math.unit(50000, "kg"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/anders/front.svg",
  21672. extra: 570 / 539,
  21673. bottom: 14.7 / 586.7
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Large",
  21680. height: math.unit(50, "feet")
  21681. },
  21682. {
  21683. name: "Macro",
  21684. height: math.unit(2000, "feet"),
  21685. default: true
  21686. },
  21687. {
  21688. name: "Megamacro",
  21689. height: math.unit(12, "miles")
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(7 + 2 / 12, "feet"),
  21698. weight: math.unit(300, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/reban/front.svg",
  21702. extra: 516 / 487,
  21703. bottom: 42.82 / 558.356
  21704. }
  21705. },
  21706. dick: {
  21707. height: math.unit(7 / 5, "feet"),
  21708. name: "Dick",
  21709. image: {
  21710. source: "./media/characters/reban/dick.svg"
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Natural Height",
  21717. height: math.unit(7 + 2 / 12, "feet")
  21718. },
  21719. {
  21720. name: "Macro",
  21721. height: math.unit(500, "feet"),
  21722. default: true
  21723. },
  21724. {
  21725. name: "Canon Height",
  21726. height: math.unit(50, "AU")
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21732. {
  21733. front: {
  21734. height: math.unit(6, "feet"),
  21735. weight: math.unit(150, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/terrance-keayes/front.svg",
  21739. extra: 1.005,
  21740. bottom: 151 / 1615
  21741. }
  21742. },
  21743. side: {
  21744. height: math.unit(6, "feet"),
  21745. weight: math.unit(150, "lb"),
  21746. name: "Side",
  21747. image: {
  21748. source: "./media/characters/terrance-keayes/side.svg",
  21749. extra: 1.005,
  21750. bottom: 129.4 / 1544
  21751. }
  21752. },
  21753. back: {
  21754. height: math.unit(6, "feet"),
  21755. weight: math.unit(150, "lb"),
  21756. name: "Back",
  21757. image: {
  21758. source: "./media/characters/terrance-keayes/back.svg",
  21759. extra: 1.005,
  21760. bottom: 58.4 / 1557.3
  21761. }
  21762. },
  21763. dick: {
  21764. height: math.unit(6 * 0.208, "feet"),
  21765. name: "Dick",
  21766. image: {
  21767. source: "./media/characters/terrance-keayes/dick.svg"
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Canon Height",
  21774. height: math.unit(35, "miles"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(6, "feet"),
  21784. weight: math.unit(150, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/ofelia/front.svg",
  21788. extra: 546 / 541,
  21789. bottom: 39 / 583
  21790. }
  21791. },
  21792. back: {
  21793. height: math.unit(6, "feet"),
  21794. weight: math.unit(150, "lb"),
  21795. name: "Back",
  21796. image: {
  21797. source: "./media/characters/ofelia/back.svg",
  21798. extra: 564 / 559.5,
  21799. bottom: 8.69 / 573.02
  21800. }
  21801. },
  21802. maw: {
  21803. height: math.unit(1, "feet"),
  21804. name: "Maw",
  21805. image: {
  21806. source: "./media/characters/ofelia/maw.svg"
  21807. }
  21808. },
  21809. foot: {
  21810. height: math.unit(1.949, "feet"),
  21811. name: "Foot",
  21812. image: {
  21813. source: "./media/characters/ofelia/foot.svg"
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Canon Height",
  21820. height: math.unit(2000, "miles"),
  21821. default: true
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21827. {
  21828. front: {
  21829. height: math.unit(6, "feet"),
  21830. weight: math.unit(150, "lb"),
  21831. name: "Front",
  21832. image: {
  21833. source: "./media/characters/samuel/front.svg",
  21834. extra: 265 / 258,
  21835. bottom: 2 / 266.1566
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Macro",
  21842. height: math.unit(100, "feet"),
  21843. default: true
  21844. },
  21845. {
  21846. name: "Full Size",
  21847. height: math.unit(1000, "miles")
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21853. {
  21854. front: {
  21855. height: math.unit(6, "feet"),
  21856. weight: math.unit(300, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/beishir-kiel/front.svg",
  21860. extra: 569 / 547,
  21861. bottom: 41.9 / 609
  21862. }
  21863. },
  21864. maw: {
  21865. height: math.unit(6 * 0.202, "feet"),
  21866. name: "Maw",
  21867. image: {
  21868. source: "./media/characters/beishir-kiel/maw.svg"
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(300, "feet"),
  21876. default: true
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(5 + 8 / 12, "feet"),
  21885. weight: math.unit(120, "lb"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/logan-grey/front.svg",
  21889. extra: 2539 / 2393,
  21890. bottom: 97.6 / 2636.37
  21891. }
  21892. },
  21893. frontAlt: {
  21894. height: math.unit(5 + 8 / 12, "feet"),
  21895. weight: math.unit(120, "lb"),
  21896. name: "Front (Alt)",
  21897. image: {
  21898. source: "./media/characters/logan-grey/front-alt.svg",
  21899. extra: 958 / 893,
  21900. bottom: 15 / 970.768
  21901. }
  21902. },
  21903. back: {
  21904. height: math.unit(5 + 8 / 12, "feet"),
  21905. weight: math.unit(120, "lb"),
  21906. name: "Back",
  21907. image: {
  21908. source: "./media/characters/logan-grey/back.svg",
  21909. extra: 958 / 893,
  21910. bottom: 2.1881 / 970.9788
  21911. }
  21912. },
  21913. dick: {
  21914. height: math.unit(1.437, "feet"),
  21915. name: "Dick",
  21916. image: {
  21917. source: "./media/characters/logan-grey/dick.svg"
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(5 + 8 / 12, "feet")
  21925. },
  21926. {
  21927. name: "The 500 Foot Femboy",
  21928. height: math.unit(500, "feet"),
  21929. default: true
  21930. },
  21931. {
  21932. name: "Megmacro",
  21933. height: math.unit(20, "miles")
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(8 + 2 / 12, "feet"),
  21942. weight: math.unit(275, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/draganta/front.svg",
  21946. extra: 1177 / 1135,
  21947. bottom: 33.46 / 1212.1
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(8 + 6 / 12, "feet"),
  21955. default: true
  21956. },
  21957. {
  21958. name: "Macro",
  21959. height: math.unit(150, "feet")
  21960. },
  21961. {
  21962. name: "Megamacro",
  21963. height: math.unit(1000, "miles")
  21964. },
  21965. ]
  21966. ))
  21967. characterMakers.push(() => makeCharacter(
  21968. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21969. {
  21970. front: {
  21971. height: math.unit(1.72, "m"),
  21972. weight: math.unit(80, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/voski/front.svg",
  21976. extra: 2076.22 / 2022.4,
  21977. bottom: 102.7 / 2177.3866
  21978. }
  21979. },
  21980. frontNsfw: {
  21981. height: math.unit(1.72, "m"),
  21982. weight: math.unit(80, "lb"),
  21983. name: "Front (NSFW)",
  21984. image: {
  21985. source: "./media/characters/voski/front-nsfw.svg",
  21986. extra: 2076.22 / 2022.4,
  21987. bottom: 102.7 / 2177.3866
  21988. }
  21989. },
  21990. back: {
  21991. height: math.unit(1.72, "m"),
  21992. weight: math.unit(80, "lb"),
  21993. name: "Back",
  21994. image: {
  21995. source: "./media/characters/voski/back.svg",
  21996. extra: 2104 / 2051,
  21997. bottom: 10.45 / 2113.63
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(1.72, "m")
  22005. },
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(55, "m"),
  22009. default: true
  22010. },
  22011. {
  22012. name: "Macro+",
  22013. height: math.unit(300, "m")
  22014. },
  22015. {
  22016. name: "Macro++",
  22017. height: math.unit(700, "m")
  22018. },
  22019. {
  22020. name: "Macro+++",
  22021. height: math.unit(4500, "m")
  22022. },
  22023. {
  22024. name: "Macro++++",
  22025. height: math.unit(45, "km")
  22026. },
  22027. {
  22028. name: "Macro+++++",
  22029. height: math.unit(1220, "km")
  22030. },
  22031. ]
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(2.3, "m"),
  22038. weight: math.unit(304, "kg"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/icowom-lee/front.svg",
  22042. extra: 985 / 955,
  22043. bottom: 25.4 / 1012
  22044. }
  22045. },
  22046. fronttentacles: {
  22047. height: math.unit(2.3, "m"),
  22048. weight: math.unit(304, "kg"),
  22049. name: "Front-tentacles",
  22050. image: {
  22051. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22052. extra: 985 / 955,
  22053. bottom: 25.4 / 1012
  22054. }
  22055. },
  22056. back: {
  22057. height: math.unit(2.3, "m"),
  22058. weight: math.unit(304, "kg"),
  22059. name: "Back",
  22060. image: {
  22061. source: "./media/characters/icowom-lee/back.svg",
  22062. extra: 975 / 954,
  22063. bottom: 9.5 / 985
  22064. }
  22065. },
  22066. backtentacles: {
  22067. height: math.unit(2.3, "m"),
  22068. weight: math.unit(304, "kg"),
  22069. name: "Back-tentacles",
  22070. image: {
  22071. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22072. extra: 975 / 954,
  22073. bottom: 9.5 / 985
  22074. }
  22075. },
  22076. frontDressed: {
  22077. height: math.unit(2.3, "m"),
  22078. weight: math.unit(304, "kg"),
  22079. name: "Front (Dressed)",
  22080. image: {
  22081. source: "./media/characters/icowom-lee/front-dressed.svg",
  22082. extra: 3076 / 2933,
  22083. bottom: 51.4 / 3125.1889
  22084. }
  22085. },
  22086. rump: {
  22087. height: math.unit(0.776, "meters"),
  22088. name: "Rump",
  22089. image: {
  22090. source: "./media/characters/icowom-lee/rump.svg"
  22091. }
  22092. },
  22093. genitals: {
  22094. height: math.unit(0.78, "meters"),
  22095. name: "Genitals",
  22096. image: {
  22097. source: "./media/characters/icowom-lee/genitals.svg"
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(2.3, "meters"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(94, "meters"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(22, "meters"),
  22119. weight: math.unit(21000, "kg"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/shock-diamond/front.svg",
  22123. extra: 2204 / 2053,
  22124. bottom: 65 / 2239.47
  22125. }
  22126. },
  22127. frontNude: {
  22128. height: math.unit(22, "meters"),
  22129. weight: math.unit(21000, "kg"),
  22130. name: "Front (Nude)",
  22131. image: {
  22132. source: "./media/characters/shock-diamond/front-nude.svg",
  22133. extra: 2514 / 2285,
  22134. bottom: 13 / 2527.56
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(3, "meters")
  22142. },
  22143. {
  22144. name: "Macro",
  22145. height: math.unit(22, "meters"),
  22146. default: true
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(5 + 4 / 12, "feet"),
  22155. weight: math.unit(120, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/rory/front.svg",
  22159. extra: 589 / 556,
  22160. bottom: 45.7 / 635.76
  22161. }
  22162. },
  22163. frontNude: {
  22164. height: math.unit(5 + 4 / 12, "feet"),
  22165. weight: math.unit(120, "lb"),
  22166. name: "Front (Nude)",
  22167. image: {
  22168. source: "./media/characters/rory/front-nude.svg",
  22169. extra: 589 / 556,
  22170. bottom: 45.7 / 635.76
  22171. }
  22172. },
  22173. side: {
  22174. height: math.unit(5 + 4 / 12, "feet"),
  22175. weight: math.unit(120, "lb"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/rory/side.svg",
  22179. extra: 597 / 564,
  22180. bottom: 55 / 653
  22181. }
  22182. },
  22183. back: {
  22184. height: math.unit(5 + 4 / 12, "feet"),
  22185. weight: math.unit(120, "lb"),
  22186. name: "Back",
  22187. image: {
  22188. source: "./media/characters/rory/back.svg",
  22189. extra: 620 / 585,
  22190. bottom: 8.86 / 630.43
  22191. }
  22192. },
  22193. dick: {
  22194. height: math.unit(0.86, "feet"),
  22195. name: "Dick",
  22196. image: {
  22197. source: "./media/characters/rory/dick.svg"
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(5 + 4 / 12, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(100, "feet")
  22210. },
  22211. {
  22212. name: "Macro+",
  22213. height: math.unit(140, "feet")
  22214. },
  22215. {
  22216. name: "Macro++",
  22217. height: math.unit(300, "feet")
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(5 + 9 / 12, "feet"),
  22226. weight: math.unit(190, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/sprisk/front.svg",
  22230. extra: 1225 / 1180,
  22231. bottom: 42.7 / 1266.4
  22232. }
  22233. },
  22234. frontNsfw: {
  22235. height: math.unit(5 + 9 / 12, "feet"),
  22236. weight: math.unit(190, "lb"),
  22237. name: "Front (NSFW)",
  22238. image: {
  22239. source: "./media/characters/sprisk/front-nsfw.svg",
  22240. extra: 1225 / 1180,
  22241. bottom: 42.7 / 1266.4
  22242. }
  22243. },
  22244. back: {
  22245. height: math.unit(5 + 9 / 12, "feet"),
  22246. weight: math.unit(190, "lb"),
  22247. name: "Back",
  22248. image: {
  22249. source: "./media/characters/sprisk/back.svg",
  22250. extra: 1247 / 1200,
  22251. bottom: 5.6 / 1253.04
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Tiny",
  22258. height: math.unit(2, "inches")
  22259. },
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5 + 9 / 12, "feet"),
  22263. default: true
  22264. },
  22265. {
  22266. name: "Mini Macro",
  22267. height: math.unit(18, "feet")
  22268. },
  22269. {
  22270. name: "Macro",
  22271. height: math.unit(100, "feet")
  22272. },
  22273. {
  22274. name: "MACRO",
  22275. height: math.unit(50, "miles")
  22276. },
  22277. {
  22278. name: "M A C R O",
  22279. height: math.unit(300, "miles")
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22285. {
  22286. side: {
  22287. height: math.unit(15.6, "meters"),
  22288. weight: math.unit(700000, "kg"),
  22289. name: "Side",
  22290. image: {
  22291. source: "./media/characters/bunsen/side.svg",
  22292. extra: 1644 / 358
  22293. }
  22294. },
  22295. foot: {
  22296. height: math.unit(1.611 * 1644 / 358, "meter"),
  22297. name: "Foot",
  22298. image: {
  22299. source: "./media/characters/bunsen/foot.svg"
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Small",
  22306. height: math.unit(10, "feet")
  22307. },
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(15.6, "meters"),
  22311. default: true
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(4 + 11 / 12, "feet"),
  22320. weight: math.unit(140, "lb"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/sesh/front.svg",
  22324. extra: 3420 / 3231,
  22325. bottom: 72 / 3949.5
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(4 + 11 / 12, "feet")
  22333. },
  22334. {
  22335. name: "Grown",
  22336. height: math.unit(15, "feet"),
  22337. default: true
  22338. },
  22339. {
  22340. name: "Macro",
  22341. height: math.unit(1500, "feet")
  22342. },
  22343. {
  22344. name: "Megamacro",
  22345. height: math.unit(30, "miles")
  22346. },
  22347. {
  22348. name: "Continental",
  22349. height: math.unit(3000, "miles")
  22350. },
  22351. {
  22352. name: "Gravity Mass",
  22353. height: math.unit(300000, "miles")
  22354. },
  22355. {
  22356. name: "Planet Buster",
  22357. height: math.unit(30000000, "miles")
  22358. },
  22359. {
  22360. name: "Big",
  22361. height: math.unit(3000000000, "miles")
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(9, "feet"),
  22370. weight: math.unit(350, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/pepper/front.svg",
  22374. extra: 1448 / 1312,
  22375. bottom: 9.4 / 1457.88
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(9, "feet"),
  22380. weight: math.unit(350, "lb"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/pepper/back.svg",
  22384. extra: 1423 / 1300,
  22385. bottom: 4.6 / 1429
  22386. }
  22387. },
  22388. maw: {
  22389. height: math.unit(0.932, "feet"),
  22390. name: "Maw",
  22391. image: {
  22392. source: "./media/characters/pepper/maw.svg"
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Normal",
  22399. height: math.unit(9, "feet"),
  22400. default: true
  22401. },
  22402. ]
  22403. ))
  22404. characterMakers.push(() => makeCharacter(
  22405. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22406. {
  22407. front: {
  22408. height: math.unit(6, "feet"),
  22409. weight: math.unit(150, "lb"),
  22410. name: "Front",
  22411. image: {
  22412. source: "./media/characters/maelstrom/front.svg",
  22413. extra: 2100 / 1883,
  22414. bottom: 94 / 2196.7
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Less Kaiju",
  22421. height: math.unit(200, "feet")
  22422. },
  22423. {
  22424. name: "Kaiju",
  22425. height: math.unit(400, "feet"),
  22426. default: true
  22427. },
  22428. {
  22429. name: "Kaiju-er",
  22430. height: math.unit(600, "feet")
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(6 + 5 / 12, "feet"),
  22439. weight: math.unit(180, "lb"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/lexir/front.svg",
  22443. extra: 180 / 172,
  22444. bottom: 12 / 192
  22445. }
  22446. },
  22447. back: {
  22448. height: math.unit(6 + 5 / 12, "feet"),
  22449. weight: math.unit(180, "lb"),
  22450. name: "Back",
  22451. image: {
  22452. source: "./media/characters/lexir/back.svg",
  22453. extra: 183.84 / 175.5,
  22454. bottom: 3.1 / 187
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Very Smal",
  22461. height: math.unit(1, "nm")
  22462. },
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(6 + 5 / 12, "feet"),
  22466. default: true
  22467. },
  22468. {
  22469. name: "Macro",
  22470. height: math.unit(1, "mile")
  22471. },
  22472. {
  22473. name: "Megamacro",
  22474. height: math.unit(50, "miles")
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22480. {
  22481. front: {
  22482. height: math.unit(1.5, "meters"),
  22483. weight: math.unit(100, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/maksio/front.svg",
  22487. extra: 1549 / 1531,
  22488. bottom: 123.7 / 1674.5429
  22489. }
  22490. },
  22491. back: {
  22492. height: math.unit(1.5, "meters"),
  22493. weight: math.unit(100, "lb"),
  22494. name: "Back",
  22495. image: {
  22496. source: "./media/characters/maksio/back.svg",
  22497. extra: 1541 / 1509,
  22498. bottom: 97 / 1639
  22499. }
  22500. },
  22501. hand: {
  22502. height: math.unit(0.621, "feet"),
  22503. name: "Hand",
  22504. image: {
  22505. source: "./media/characters/maksio/hand.svg"
  22506. }
  22507. },
  22508. foot: {
  22509. height: math.unit(1.611, "feet"),
  22510. name: "Foot",
  22511. image: {
  22512. source: "./media/characters/maksio/foot.svg"
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Shrunken",
  22519. height: math.unit(10, "cm")
  22520. },
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(150, "cm"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22530. {
  22531. front: {
  22532. height: math.unit(100, "feet"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/erza-bear/front.svg",
  22536. extra: 2449 / 2390,
  22537. bottom: 46 / 2494
  22538. }
  22539. },
  22540. back: {
  22541. height: math.unit(100, "feet"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/erza-bear/back.svg",
  22545. extra: 2489 / 2430,
  22546. bottom: 85.4 / 2480
  22547. }
  22548. },
  22549. tail: {
  22550. height: math.unit(42, "feet"),
  22551. name: "Tail",
  22552. image: {
  22553. source: "./media/characters/erza-bear/tail.svg"
  22554. }
  22555. },
  22556. tongue: {
  22557. height: math.unit(8, "feet"),
  22558. name: "Tongue",
  22559. image: {
  22560. source: "./media/characters/erza-bear/tongue.svg"
  22561. }
  22562. },
  22563. dick: {
  22564. height: math.unit(10.5, "feet"),
  22565. name: "Dick",
  22566. image: {
  22567. source: "./media/characters/erza-bear/dick.svg"
  22568. }
  22569. },
  22570. dickVertical: {
  22571. height: math.unit(16.9, "feet"),
  22572. name: "Dick (Vertical)",
  22573. image: {
  22574. source: "./media/characters/erza-bear/dick-vertical.svg"
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Macro",
  22581. height: math.unit(100, "feet"),
  22582. default: true
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22588. {
  22589. front: {
  22590. height: math.unit(172, "cm"),
  22591. weight: math.unit(73, "kg"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/violet-flor/front.svg",
  22595. extra: 1530 / 1442,
  22596. bottom: 61.9 / 1588.8
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(180, "cm"),
  22601. weight: math.unit(73, "kg"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/violet-flor/back.svg",
  22605. extra: 1692 / 1630,
  22606. bottom: 20 / 1712
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(172, "cm"),
  22614. default: true
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(6, "feet"),
  22623. weight: math.unit(220, "lb"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/lynn-rhea/front.svg",
  22627. extra: 310 / 273
  22628. }
  22629. },
  22630. back: {
  22631. height: math.unit(6, "feet"),
  22632. weight: math.unit(220, "lb"),
  22633. name: "Back",
  22634. image: {
  22635. source: "./media/characters/lynn-rhea/back.svg",
  22636. extra: 310 / 273
  22637. }
  22638. },
  22639. dicks: {
  22640. height: math.unit(0.9, "feet"),
  22641. name: "Dicks",
  22642. image: {
  22643. source: "./media/characters/lynn-rhea/dicks.svg"
  22644. }
  22645. },
  22646. slit: {
  22647. height: math.unit(0.4, "feet"),
  22648. name: "Slit",
  22649. image: {
  22650. source: "./media/characters/lynn-rhea/slit.svg"
  22651. }
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Micro",
  22657. height: math.unit(1, "inch")
  22658. },
  22659. {
  22660. name: "Macro",
  22661. height: math.unit(60, "feet"),
  22662. default: true
  22663. },
  22664. {
  22665. name: "Megamacro",
  22666. height: math.unit(2, "miles")
  22667. },
  22668. {
  22669. name: "Gigamacro",
  22670. height: math.unit(3, "earths")
  22671. },
  22672. {
  22673. name: "Galactic",
  22674. height: math.unit(0.8, "galaxies")
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22680. {
  22681. front: {
  22682. height: math.unit(1600, "feet"),
  22683. weight: math.unit(85758785169, "kg"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/valathos/front.svg",
  22687. extra: 1451 / 1339
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Macro",
  22694. height: math.unit(1600, "feet"),
  22695. default: true
  22696. },
  22697. ]
  22698. ))
  22699. characterMakers.push(() => makeCharacter(
  22700. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22701. {
  22702. front: {
  22703. height: math.unit(7 + 5 / 12, "feet"),
  22704. weight: math.unit(300, "lb"),
  22705. name: "Front",
  22706. image: {
  22707. source: "./media/characters/azula/front.svg",
  22708. extra: 3208 / 2880,
  22709. bottom: 80.2 / 3277
  22710. }
  22711. },
  22712. back: {
  22713. height: math.unit(7 + 5 / 12, "feet"),
  22714. weight: math.unit(300, "lb"),
  22715. name: "Back",
  22716. image: {
  22717. source: "./media/characters/azula/back.svg",
  22718. extra: 3169 / 2822,
  22719. bottom: 150.6 / 3321
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(7 + 5 / 12, "feet"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Big",
  22731. height: math.unit(20, "feet")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(5 + 1 / 12, "feet"),
  22740. weight: math.unit(110, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/rupert/front.svg",
  22744. extra: 1549 / 1495,
  22745. bottom: 54.2 / 1604.4
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Normal",
  22752. height: math.unit(5 + 1 / 12, "feet"),
  22753. default: true
  22754. },
  22755. ]
  22756. ))
  22757. characterMakers.push(() => makeCharacter(
  22758. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22759. {
  22760. front: {
  22761. height: math.unit(8 + 4 / 12, "feet"),
  22762. weight: math.unit(350, "lb"),
  22763. name: "Front",
  22764. image: {
  22765. source: "./media/characters/sheera-castellar/front.svg",
  22766. extra: 1957 / 1894,
  22767. bottom: 26.97 / 1975.017
  22768. }
  22769. },
  22770. side: {
  22771. height: math.unit(8 + 4 / 12, "feet"),
  22772. weight: math.unit(350, "lb"),
  22773. name: "Side",
  22774. image: {
  22775. source: "./media/characters/sheera-castellar/side.svg",
  22776. extra: 1957 / 1894
  22777. }
  22778. },
  22779. back: {
  22780. height: math.unit(8 + 4 / 12, "feet"),
  22781. weight: math.unit(350, "lb"),
  22782. name: "Back",
  22783. image: {
  22784. source: "./media/characters/sheera-castellar/back.svg",
  22785. extra: 1957 / 1894
  22786. }
  22787. },
  22788. angled: {
  22789. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22790. weight: math.unit(350, "lb"),
  22791. name: "Angled",
  22792. image: {
  22793. source: "./media/characters/sheera-castellar/angled.svg",
  22794. extra: 1807 / 1707,
  22795. bottom: 68 / 1875
  22796. }
  22797. },
  22798. genitals: {
  22799. height: math.unit(2.2, "feet"),
  22800. name: "Genitals",
  22801. image: {
  22802. source: "./media/characters/sheera-castellar/genitals.svg"
  22803. }
  22804. },
  22805. taur: {
  22806. height: math.unit(10 + 6/12, "feet"),
  22807. name: "Taur",
  22808. image: {
  22809. source: "./media/characters/sheera-castellar/taur.svg",
  22810. extra: 2017/1909,
  22811. bottom: 185/2202
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(8 + 4 / 12, "feet")
  22819. },
  22820. {
  22821. name: "Macro",
  22822. height: math.unit(150, "feet"),
  22823. default: true
  22824. },
  22825. {
  22826. name: "Macro+",
  22827. height: math.unit(800, "feet")
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(6, "feet"),
  22836. weight: math.unit(150, "lb"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/jaipur/front.svg",
  22840. extra: 3860 / 3731,
  22841. bottom: 287 / 4140
  22842. }
  22843. },
  22844. back: {
  22845. height: math.unit(6, "feet"),
  22846. weight: math.unit(150, "lb"),
  22847. name: "Back",
  22848. image: {
  22849. source: "./media/characters/jaipur/back.svg",
  22850. extra: 4060 / 3930,
  22851. bottom: 151 / 4200
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(1.85, "meters"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(150, "meters")
  22864. },
  22865. {
  22866. name: "Macro+",
  22867. height: math.unit(0.5, "miles")
  22868. },
  22869. {
  22870. name: "Macro++",
  22871. height: math.unit(2.5, "miles")
  22872. },
  22873. {
  22874. name: "Macro+++",
  22875. height: math.unit(12, "miles")
  22876. },
  22877. {
  22878. name: "Macro++++",
  22879. height: math.unit(120, "miles")
  22880. },
  22881. {
  22882. name: "Macro+++++",
  22883. height: math.unit(1200, "miles")
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(6, "feet"),
  22892. weight: math.unit(150, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/sheila-wolf/front.svg",
  22896. extra: 1931 / 1808,
  22897. bottom: 29.5 / 1960
  22898. }
  22899. },
  22900. dick: {
  22901. height: math.unit(1.464, "feet"),
  22902. name: "Dick",
  22903. image: {
  22904. source: "./media/characters/sheila-wolf/dick.svg"
  22905. }
  22906. },
  22907. muzzle: {
  22908. height: math.unit(0.513, "feet"),
  22909. name: "Muzzle",
  22910. image: {
  22911. source: "./media/characters/sheila-wolf/muzzle.svg"
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Macro",
  22918. height: math.unit(70, "feet"),
  22919. default: true
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22925. {
  22926. front: {
  22927. height: math.unit(32, "meters"),
  22928. weight: math.unit(300000, "kg"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/almor/front.svg",
  22932. extra: 1408 / 1322,
  22933. bottom: 94.6 / 1506.5
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Macro",
  22940. height: math.unit(32, "meters"),
  22941. default: true
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22947. {
  22948. front: {
  22949. height: math.unit(7, "feet"),
  22950. weight: math.unit(200, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/silver/front.svg",
  22954. extra: 472.1 / 450.5,
  22955. bottom: 26.5 / 499.424
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(7, "feet"),
  22963. default: true
  22964. },
  22965. {
  22966. name: "Macro",
  22967. height: math.unit(800, "feet")
  22968. },
  22969. {
  22970. name: "Megamacro",
  22971. height: math.unit(250, "miles")
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22977. {
  22978. front: {
  22979. height: math.unit(6, "feet"),
  22980. weight: math.unit(150, "lb"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/pliskin/front.svg",
  22984. extra: 1469 / 1359,
  22985. bottom: 70 / 1540
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Micro",
  22992. height: math.unit(3, "inches")
  22993. },
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(5 + 11 / 12, "feet"),
  22997. default: true
  22998. },
  22999. {
  23000. name: "Macro",
  23001. height: math.unit(120, "feet")
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23007. {
  23008. front: {
  23009. height: math.unit(6, "feet"),
  23010. weight: math.unit(150, "lb"),
  23011. name: "Front",
  23012. image: {
  23013. source: "./media/characters/sammy/front.svg",
  23014. extra: 1193 / 1089,
  23015. bottom: 30.5 / 1226
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Macro",
  23022. height: math.unit(1700, "feet"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Examacro",
  23027. height: math.unit(2.5e9, "lightyears")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(21, "meters"),
  23036. weight: math.unit(12, "tonnes"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/kuru/front.svg",
  23040. extra: 4301 / 3785,
  23041. bottom: 371.3 / 4691
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Macro",
  23048. height: math.unit(21, "meters"),
  23049. default: true
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(23, "meters"),
  23058. weight: math.unit(12.2, "tonnes"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/rakka/front.svg",
  23062. extra: 4670 / 4169,
  23063. bottom: 301 / 4968.7
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Macro",
  23070. height: math.unit(23, "meters"),
  23071. default: true
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(6, "feet"),
  23080. weight: math.unit(150, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/rhys-feline/front.svg",
  23084. extra: 2488 / 2308,
  23085. bottom: 35.67 / 2519.19
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Really Small",
  23092. height: math.unit(1, "nm")
  23093. },
  23094. {
  23095. name: "Micro",
  23096. height: math.unit(4, "inches")
  23097. },
  23098. {
  23099. name: "Normal",
  23100. height: math.unit(4 + 10 / 12, "feet"),
  23101. default: true
  23102. },
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(100, "feet")
  23106. },
  23107. {
  23108. name: "Megamacto",
  23109. height: math.unit(50, "miles")
  23110. },
  23111. ]
  23112. ))
  23113. characterMakers.push(() => makeCharacter(
  23114. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23115. {
  23116. side: {
  23117. height: math.unit(30, "feet"),
  23118. weight: math.unit(35000, "kg"),
  23119. name: "Side",
  23120. image: {
  23121. source: "./media/characters/alydar/side.svg",
  23122. extra: 234 / 222,
  23123. bottom: 6.5 / 241
  23124. }
  23125. },
  23126. front: {
  23127. height: math.unit(30, "feet"),
  23128. weight: math.unit(35000, "kg"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/alydar/front.svg",
  23132. extra: 223.37 / 210.2,
  23133. bottom: 22.3 / 246.76
  23134. }
  23135. },
  23136. top: {
  23137. height: math.unit(64.54, "feet"),
  23138. weight: math.unit(35000, "kg"),
  23139. name: "Top",
  23140. image: {
  23141. source: "./media/characters/alydar/top.svg"
  23142. }
  23143. },
  23144. anthro: {
  23145. height: math.unit(30, "feet"),
  23146. weight: math.unit(9000, "kg"),
  23147. name: "Anthro",
  23148. image: {
  23149. source: "./media/characters/alydar/anthro.svg",
  23150. extra: 432 / 421,
  23151. bottom: 7.18 / 440
  23152. }
  23153. },
  23154. maw: {
  23155. height: math.unit(11.693, "feet"),
  23156. name: "Maw",
  23157. image: {
  23158. source: "./media/characters/alydar/maw.svg"
  23159. }
  23160. },
  23161. head: {
  23162. height: math.unit(11.693, "feet"),
  23163. name: "Head",
  23164. image: {
  23165. source: "./media/characters/alydar/head.svg"
  23166. }
  23167. },
  23168. headAlt: {
  23169. height: math.unit(12.861, "feet"),
  23170. name: "Head (Alt)",
  23171. image: {
  23172. source: "./media/characters/alydar/head-alt.svg"
  23173. }
  23174. },
  23175. wing: {
  23176. height: math.unit(20.712, "feet"),
  23177. name: "Wing",
  23178. image: {
  23179. source: "./media/characters/alydar/wing.svg"
  23180. }
  23181. },
  23182. wingFeather: {
  23183. height: math.unit(9.662, "feet"),
  23184. name: "Wing Feather",
  23185. image: {
  23186. source: "./media/characters/alydar/wing-feather.svg"
  23187. }
  23188. },
  23189. countourFeather: {
  23190. height: math.unit(4.154, "feet"),
  23191. name: "Contour Feather",
  23192. image: {
  23193. source: "./media/characters/alydar/contour-feather.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Diplomatic",
  23200. height: math.unit(13, "feet"),
  23201. default: true
  23202. },
  23203. {
  23204. name: "Small",
  23205. height: math.unit(30, "feet")
  23206. },
  23207. {
  23208. name: "Normal",
  23209. height: math.unit(95, "feet"),
  23210. default: true
  23211. },
  23212. {
  23213. name: "Large",
  23214. height: math.unit(285, "feet")
  23215. },
  23216. {
  23217. name: "Incomprehensible",
  23218. height: math.unit(450, "megameters")
  23219. },
  23220. ]
  23221. ))
  23222. characterMakers.push(() => makeCharacter(
  23223. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23224. {
  23225. side: {
  23226. height: math.unit(11, "feet"),
  23227. weight: math.unit(1750, "kg"),
  23228. name: "Side",
  23229. image: {
  23230. source: "./media/characters/selicia/side.svg",
  23231. extra: 440 / 396,
  23232. bottom: 24.8 / 465.979
  23233. }
  23234. },
  23235. maw: {
  23236. height: math.unit(4.665, "feet"),
  23237. name: "Maw",
  23238. image: {
  23239. source: "./media/characters/selicia/maw.svg"
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(11, "feet"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23253. {
  23254. side: {
  23255. height: math.unit(2 + 6 / 12, "feet"),
  23256. weight: math.unit(30, "lb"),
  23257. name: "Side",
  23258. image: {
  23259. source: "./media/characters/layla/side.svg",
  23260. extra: 244 / 188,
  23261. bottom: 18.2 / 262.1
  23262. }
  23263. },
  23264. back: {
  23265. height: math.unit(2 + 6 / 12, "feet"),
  23266. weight: math.unit(30, "lb"),
  23267. name: "Back",
  23268. image: {
  23269. source: "./media/characters/layla/back.svg",
  23270. extra: 308 / 241.5,
  23271. bottom: 8.9 / 316.8
  23272. }
  23273. },
  23274. cumming: {
  23275. height: math.unit(2 + 6 / 12, "feet"),
  23276. weight: math.unit(30, "lb"),
  23277. name: "Cumming",
  23278. image: {
  23279. source: "./media/characters/layla/cumming.svg",
  23280. extra: 342 / 279,
  23281. bottom: 595 / 938
  23282. }
  23283. },
  23284. dickFlaccid: {
  23285. height: math.unit(2.595, "feet"),
  23286. name: "Flaccid Genitals",
  23287. image: {
  23288. source: "./media/characters/layla/dick-flaccid.svg"
  23289. }
  23290. },
  23291. dickErect: {
  23292. height: math.unit(2.359, "feet"),
  23293. name: "Erect Genitals",
  23294. image: {
  23295. source: "./media/characters/layla/dick-erect.svg"
  23296. }
  23297. },
  23298. dragon: {
  23299. height: math.unit(40, "feet"),
  23300. name: "Dragon",
  23301. image: {
  23302. source: "./media/characters/layla/dragon.svg",
  23303. extra: 610/535,
  23304. bottom: 367/977
  23305. }
  23306. },
  23307. taur: {
  23308. height: math.unit(30, "feet"),
  23309. name: "Taur",
  23310. image: {
  23311. source: "./media/characters/layla/taur.svg",
  23312. extra: 1268/1199,
  23313. bottom: 112/1380
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Micro",
  23320. height: math.unit(1, "inch")
  23321. },
  23322. {
  23323. name: "Small",
  23324. height: math.unit(1, "foot")
  23325. },
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(2 + 6 / 12, "feet"),
  23329. default: true
  23330. },
  23331. {
  23332. name: "Macro",
  23333. height: math.unit(200, "feet")
  23334. },
  23335. {
  23336. name: "Megamacro",
  23337. height: math.unit(1000, "miles")
  23338. },
  23339. {
  23340. name: "Planetary",
  23341. height: math.unit(8000, "miles")
  23342. },
  23343. {
  23344. name: "True Layla",
  23345. height: math.unit(200000 * 7, "multiverses")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23351. {
  23352. back: {
  23353. height: math.unit(10.5, "feet"),
  23354. weight: math.unit(800, "lb"),
  23355. name: "Back",
  23356. image: {
  23357. source: "./media/characters/knox/back.svg",
  23358. extra: 1486 / 1089,
  23359. bottom: 107 / 1601.4
  23360. }
  23361. },
  23362. side: {
  23363. height: math.unit(10.5, "feet"),
  23364. weight: math.unit(800, "lb"),
  23365. name: "Side",
  23366. image: {
  23367. source: "./media/characters/knox/side.svg",
  23368. extra: 244 / 218,
  23369. bottom: 14 / 260
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Compact",
  23376. height: math.unit(10.5, "feet"),
  23377. default: true
  23378. },
  23379. {
  23380. name: "Dynamax",
  23381. height: math.unit(210, "feet")
  23382. },
  23383. {
  23384. name: "Full Macro",
  23385. height: math.unit(850, "feet")
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(6, "feet"),
  23394. weight: math.unit(152, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/shin-pikachu/front.svg",
  23398. extra: 1854/1602,
  23399. bottom: 166/2020
  23400. }
  23401. },
  23402. hand: {
  23403. height: math.unit(1.055, "feet"),
  23404. name: "Hand",
  23405. image: {
  23406. source: "./media/characters/shin-pikachu/hand.svg"
  23407. }
  23408. },
  23409. foot: {
  23410. height: math.unit(1.1, "feet"),
  23411. name: "Foot",
  23412. image: {
  23413. source: "./media/characters/shin-pikachu/foot.svg"
  23414. }
  23415. },
  23416. collar: {
  23417. height: math.unit(0.386, "feet"),
  23418. name: "Collar",
  23419. image: {
  23420. source: "./media/characters/shin-pikachu/collar.svg"
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Smallest",
  23427. height: math.unit(0.5, "inches")
  23428. },
  23429. {
  23430. name: "Micro",
  23431. height: math.unit(6, "inches")
  23432. },
  23433. {
  23434. name: "Normal",
  23435. height: math.unit(6, "feet"),
  23436. default: true
  23437. },
  23438. {
  23439. name: "Macro",
  23440. height: math.unit(150, "feet")
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(28, "feet"),
  23449. weight: math.unit(10500, "lb"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/kayda/front.svg",
  23453. extra: 1536 / 1428,
  23454. bottom: 68.7 / 1603
  23455. }
  23456. },
  23457. back: {
  23458. height: math.unit(28, "feet"),
  23459. weight: math.unit(10500, "lb"),
  23460. name: "Back",
  23461. image: {
  23462. source: "./media/characters/kayda/back.svg",
  23463. extra: 1557 / 1464,
  23464. bottom: 39.5 / 1597.49
  23465. }
  23466. },
  23467. dick: {
  23468. height: math.unit(3.858, "feet"),
  23469. name: "Dick",
  23470. image: {
  23471. source: "./media/characters/kayda/dick.svg"
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(28, "feet"),
  23479. default: true
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(10 + 11 / 12, "feet"),
  23488. weight: math.unit(1400, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/brian/front.svg",
  23492. extra: 737 / 692,
  23493. bottom: 55.4 / 785
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Normal",
  23500. height: math.unit(10 + 11 / 12, "feet"),
  23501. default: true
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23507. {
  23508. front: {
  23509. height: math.unit(5 + 8 / 12, "feet"),
  23510. weight: math.unit(140, "lb"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/khemri/front.svg",
  23514. extra: 4780 / 4059,
  23515. bottom: 80.1 / 4859.25
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Micro",
  23522. height: math.unit(6, "inches")
  23523. },
  23524. {
  23525. name: "Normal",
  23526. height: math.unit(5 + 8 / 12, "feet"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23533. {
  23534. front: {
  23535. height: math.unit(13, "feet"),
  23536. weight: math.unit(1700, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/felix-braveheart/front.svg",
  23540. extra: 1222 / 1157,
  23541. bottom: 53.2 / 1280
  23542. }
  23543. },
  23544. back: {
  23545. height: math.unit(13, "feet"),
  23546. weight: math.unit(1700, "lb"),
  23547. name: "Back",
  23548. image: {
  23549. source: "./media/characters/felix-braveheart/back.svg",
  23550. extra: 1277 / 1203,
  23551. bottom: 50.2 / 1327
  23552. }
  23553. },
  23554. feral: {
  23555. height: math.unit(6, "feet"),
  23556. weight: math.unit(400, "lb"),
  23557. name: "Feral",
  23558. image: {
  23559. source: "./media/characters/felix-braveheart/feral.svg",
  23560. extra: 682 / 625,
  23561. bottom: 6.9 / 688
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Normal",
  23568. height: math.unit(13, "feet"),
  23569. default: true
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23575. {
  23576. side: {
  23577. height: math.unit(5 + 11 / 12, "feet"),
  23578. weight: math.unit(1400, "lb"),
  23579. name: "Side",
  23580. image: {
  23581. source: "./media/characters/shadow-blade/side.svg",
  23582. extra: 1726 / 1267,
  23583. bottom: 58.4 / 1785
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(5 + 11 / 12, "feet"),
  23591. default: true
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(1 + 6 / 12, "feet"),
  23600. weight: math.unit(25, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/karla-halldor/front.svg",
  23604. extra: 1459 / 1383,
  23605. bottom: 12 / 1472
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Normal",
  23612. height: math.unit(1 + 6 / 12, "feet"),
  23613. default: true
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(6 + 2 / 12, "feet"),
  23622. weight: math.unit(160, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/ariam/front.svg",
  23626. extra: 714 / 617,
  23627. bottom: 23.4 / 737,
  23628. }
  23629. },
  23630. squatting: {
  23631. height: math.unit(4.1, "feet"),
  23632. weight: math.unit(160, "lb"),
  23633. name: "Squatting",
  23634. image: {
  23635. source: "./media/characters/ariam/squatting.svg",
  23636. extra: 2617 / 2112,
  23637. bottom: 61.2 / 2681,
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(6 + 2 / 12, "feet"),
  23645. default: true
  23646. },
  23647. {
  23648. name: "Normal+",
  23649. height: math.unit(4, "meters")
  23650. },
  23651. {
  23652. name: "Macro",
  23653. height: math.unit(50, "meters")
  23654. },
  23655. {
  23656. name: "Macro+",
  23657. height: math.unit(100, "meters")
  23658. },
  23659. {
  23660. name: "Megamacro",
  23661. height: math.unit(20, "km")
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23667. {
  23668. front: {
  23669. height: math.unit(1.67, "meters"),
  23670. weight: math.unit(140, "lb"),
  23671. name: "Front",
  23672. image: {
  23673. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23674. extra: 438 / 410,
  23675. bottom: 0.75 / 439
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Shrunken",
  23682. height: math.unit(7.6, "cm")
  23683. },
  23684. {
  23685. name: "Human Scale",
  23686. height: math.unit(1.67, "meters")
  23687. },
  23688. {
  23689. name: "Wolxi Scale",
  23690. height: math.unit(36.7, "meters"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(1.73, "meters"),
  23700. weight: math.unit(240, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/izue-two-mothers/front.svg",
  23704. extra: 469 / 437,
  23705. bottom: 1.24 / 470.6
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Shrunken",
  23712. height: math.unit(7.86, "cm")
  23713. },
  23714. {
  23715. name: "Human Scale",
  23716. height: math.unit(1.73, "meters")
  23717. },
  23718. {
  23719. name: "Wolxi Scale",
  23720. height: math.unit(38, "meters"),
  23721. default: true
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23727. {
  23728. front: {
  23729. height: math.unit(1.55, "meters"),
  23730. weight: math.unit(120, "lb"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/teeku-love-shack/front.svg",
  23734. extra: 387 / 362,
  23735. bottom: 1.51 / 388
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Shrunken",
  23742. height: math.unit(7, "cm")
  23743. },
  23744. {
  23745. name: "Human Scale",
  23746. height: math.unit(1.55, "meters")
  23747. },
  23748. {
  23749. name: "Wolxi Scale",
  23750. height: math.unit(34.1, "meters"),
  23751. default: true
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(1.83, "meters"),
  23760. weight: math.unit(135, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/dejma-the-red/front.svg",
  23764. extra: 480 / 458,
  23765. bottom: 1.8 / 482
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Shrunken",
  23772. height: math.unit(8.3, "cm")
  23773. },
  23774. {
  23775. name: "Human Scale",
  23776. height: math.unit(1.83, "meters")
  23777. },
  23778. {
  23779. name: "Wolxi Scale",
  23780. height: math.unit(40, "meters"),
  23781. default: true
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23787. {
  23788. front: {
  23789. height: math.unit(1.78, "meters"),
  23790. weight: math.unit(65, "kg"),
  23791. name: "Front",
  23792. image: {
  23793. source: "./media/characters/aki/front.svg",
  23794. extra: 452 / 415
  23795. }
  23796. },
  23797. frontNsfw: {
  23798. height: math.unit(1.78, "meters"),
  23799. weight: math.unit(65, "kg"),
  23800. name: "Front (NSFW)",
  23801. image: {
  23802. source: "./media/characters/aki/front-nsfw.svg",
  23803. extra: 452 / 415
  23804. }
  23805. },
  23806. back: {
  23807. height: math.unit(1.78, "meters"),
  23808. weight: math.unit(65, "kg"),
  23809. name: "Back",
  23810. image: {
  23811. source: "./media/characters/aki/back.svg",
  23812. extra: 452 / 415
  23813. }
  23814. },
  23815. rump: {
  23816. height: math.unit(2.05, "feet"),
  23817. name: "Rump",
  23818. image: {
  23819. source: "./media/characters/aki/rump.svg"
  23820. }
  23821. },
  23822. dick: {
  23823. height: math.unit(0.95, "feet"),
  23824. name: "Dick",
  23825. image: {
  23826. source: "./media/characters/aki/dick.svg"
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Micro",
  23833. height: math.unit(15, "cm")
  23834. },
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(178, "cm"),
  23838. default: true
  23839. },
  23840. {
  23841. name: "Macro",
  23842. height: math.unit(214, "m")
  23843. },
  23844. {
  23845. name: "Macro+",
  23846. height: math.unit(534, "m")
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(5 + 5 / 12, "feet"),
  23855. weight: math.unit(120, "lb"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/ari/front.svg",
  23859. extra: 714.5 / 682,
  23860. bottom: 8 / 722.5
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Normal",
  23867. height: math.unit(5 + 5 / 12, "feet")
  23868. },
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(100, "feet"),
  23872. default: true
  23873. },
  23874. {
  23875. name: "Megamacro",
  23876. height: math.unit(100, "miles")
  23877. },
  23878. {
  23879. name: "Gigamacro",
  23880. height: math.unit(80000, "miles")
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23886. {
  23887. side: {
  23888. height: math.unit(9, "feet"),
  23889. weight: math.unit(400, "kg"),
  23890. name: "Side",
  23891. image: {
  23892. source: "./media/characters/bolt/side.svg",
  23893. extra: 1126 / 896,
  23894. bottom: 60 / 1187.3,
  23895. }
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Micro",
  23901. height: math.unit(5, "inches")
  23902. },
  23903. {
  23904. name: "Normal",
  23905. height: math.unit(9, "feet"),
  23906. default: true
  23907. },
  23908. {
  23909. name: "Macro",
  23910. height: math.unit(700, "feet")
  23911. },
  23912. {
  23913. name: "Max Size",
  23914. height: math.unit(1.52e22, "yottameters")
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23920. {
  23921. front: {
  23922. height: math.unit(4.53, "meters"),
  23923. weight: math.unit(3, "tons"),
  23924. name: "Front",
  23925. image: {
  23926. source: "./media/characters/draekon-sylviar/front.svg",
  23927. extra: 1228 / 1068,
  23928. bottom: 41 / 1270
  23929. }
  23930. },
  23931. tail: {
  23932. height: math.unit(1.772, "meter"),
  23933. name: "Tail",
  23934. image: {
  23935. source: "./media/characters/draekon-sylviar/tail.svg"
  23936. }
  23937. },
  23938. head: {
  23939. height: math.unit(1.331, "meter"),
  23940. name: "Head",
  23941. image: {
  23942. source: "./media/characters/draekon-sylviar/head.svg"
  23943. }
  23944. },
  23945. hand: {
  23946. height: math.unit(0.564, "meter"),
  23947. name: "Hand",
  23948. image: {
  23949. source: "./media/characters/draekon-sylviar/hand.svg"
  23950. }
  23951. },
  23952. foot: {
  23953. height: math.unit(0.621, "meter"),
  23954. name: "Foot",
  23955. image: {
  23956. source: "./media/characters/draekon-sylviar/foot.svg",
  23957. bottom: 32 / 324
  23958. }
  23959. },
  23960. dick: {
  23961. height: math.unit(61, "cm"),
  23962. name: "Dick",
  23963. image: {
  23964. source: "./media/characters/draekon-sylviar/dick.svg"
  23965. }
  23966. },
  23967. dickseparated: {
  23968. height: math.unit(61, "cm"),
  23969. name: "Dick-separated",
  23970. image: {
  23971. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Small",
  23978. height: math.unit(4.53 / 2, "meters"),
  23979. default: true
  23980. },
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(4.53, "meters"),
  23984. default: true
  23985. },
  23986. {
  23987. name: "Large",
  23988. height: math.unit(4.53 * 2, "meters"),
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(6 + 2 / 12, "feet"),
  23997. weight: math.unit(180, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/brawler/front.svg",
  24001. extra: 3301 / 3027,
  24002. bottom: 138 / 3439
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(6 + 2 / 12, "feet"),
  24010. default: true
  24011. },
  24012. ]
  24013. ))
  24014. characterMakers.push(() => makeCharacter(
  24015. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24016. {
  24017. front: {
  24018. height: math.unit(11, "feet"),
  24019. weight: math.unit(1000, "lb"),
  24020. name: "Front",
  24021. image: {
  24022. source: "./media/characters/alex/front.svg",
  24023. bottom: 44.5 / 620
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Micro",
  24030. height: math.unit(5, "inches")
  24031. },
  24032. {
  24033. name: "Normal",
  24034. height: math.unit(11, "feet"),
  24035. default: true
  24036. },
  24037. {
  24038. name: "Macro",
  24039. height: math.unit(9.5e9, "feet")
  24040. },
  24041. {
  24042. name: "Max Size",
  24043. height: math.unit(1.4e283, "yottameters")
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24049. {
  24050. female: {
  24051. height: math.unit(29.9, "m"),
  24052. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24053. name: "Female",
  24054. image: {
  24055. source: "./media/characters/zenari/female.svg",
  24056. extra: 3281.6 / 3217,
  24057. bottom: 72.2 / 3353
  24058. }
  24059. },
  24060. male: {
  24061. height: math.unit(27.7, "m"),
  24062. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24063. name: "Male",
  24064. image: {
  24065. source: "./media/characters/zenari/male.svg",
  24066. extra: 3008 / 2991,
  24067. bottom: 54.6 / 3069
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(29.7, "meters"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24081. {
  24082. female: {
  24083. height: math.unit(23.8, "m"),
  24084. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24085. name: "Female",
  24086. image: {
  24087. source: "./media/characters/mactarian/female.svg",
  24088. extra: 2662 / 2569,
  24089. bottom: 73 / 2736
  24090. }
  24091. },
  24092. male: {
  24093. height: math.unit(23.8, "m"),
  24094. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24095. name: "Male",
  24096. image: {
  24097. source: "./media/characters/mactarian/male.svg",
  24098. extra: 2673 / 2600,
  24099. bottom: 76 / 2750
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Macro",
  24106. height: math.unit(23.8, "meters"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24113. {
  24114. female: {
  24115. height: math.unit(19.3, "m"),
  24116. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24117. name: "Female",
  24118. image: {
  24119. source: "./media/characters/umok/female.svg",
  24120. extra: 2186 / 2078,
  24121. bottom: 87 / 2277
  24122. }
  24123. },
  24124. male: {
  24125. height: math.unit(19.5, "m"),
  24126. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24127. name: "Male",
  24128. image: {
  24129. source: "./media/characters/umok/male.svg",
  24130. extra: 2233 / 2140,
  24131. bottom: 24.4 / 2258
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(19.3, "meters"),
  24139. default: true
  24140. },
  24141. ]
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24145. {
  24146. female: {
  24147. height: math.unit(26.15, "m"),
  24148. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24149. name: "Female",
  24150. image: {
  24151. source: "./media/characters/joraxian/female.svg",
  24152. extra: 2912 / 2824,
  24153. bottom: 36 / 2956
  24154. }
  24155. },
  24156. male: {
  24157. height: math.unit(25.4, "m"),
  24158. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24159. name: "Male",
  24160. image: {
  24161. source: "./media/characters/joraxian/male.svg",
  24162. extra: 2877 / 2721,
  24163. bottom: 82 / 2967
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(26.15, "meters"),
  24171. default: true
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24177. {
  24178. female: {
  24179. height: math.unit(21.6, "m"),
  24180. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24181. name: "Female",
  24182. image: {
  24183. source: "./media/characters/sthara/female.svg",
  24184. extra: 2516 / 2347,
  24185. bottom: 21.5 / 2537
  24186. }
  24187. },
  24188. male: {
  24189. height: math.unit(24, "m"),
  24190. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24191. name: "Male",
  24192. image: {
  24193. source: "./media/characters/sthara/male.svg",
  24194. extra: 2732 / 2607,
  24195. bottom: 23 / 2732
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(21.6, "meters"),
  24203. default: true
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24209. {
  24210. front: {
  24211. height: math.unit(6 + 4 / 12, "feet"),
  24212. weight: math.unit(175, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/luka-bryzant/front.svg",
  24216. extra: 311 / 289,
  24217. bottom: 4 / 315
  24218. }
  24219. },
  24220. back: {
  24221. height: math.unit(6 + 4 / 12, "feet"),
  24222. weight: math.unit(175, "lb"),
  24223. name: "Back",
  24224. image: {
  24225. source: "./media/characters/luka-bryzant/back.svg",
  24226. extra: 311 / 289,
  24227. bottom: 3.8 / 313.7
  24228. }
  24229. },
  24230. },
  24231. [
  24232. {
  24233. name: "Micro",
  24234. height: math.unit(10, "inches")
  24235. },
  24236. {
  24237. name: "Normal",
  24238. height: math.unit(6 + 4 / 12, "feet"),
  24239. default: true
  24240. },
  24241. {
  24242. name: "Large",
  24243. height: math.unit(12, "feet")
  24244. },
  24245. ]
  24246. ))
  24247. characterMakers.push(() => makeCharacter(
  24248. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24249. {
  24250. front: {
  24251. height: math.unit(5 + 7 / 12, "feet"),
  24252. weight: math.unit(185, "lb"),
  24253. name: "Front",
  24254. image: {
  24255. source: "./media/characters/aman-aquila/front.svg",
  24256. extra: 1013 / 976,
  24257. bottom: 45.6 / 1057
  24258. }
  24259. },
  24260. side: {
  24261. height: math.unit(5 + 7 / 12, "feet"),
  24262. weight: math.unit(185, "lb"),
  24263. name: "Side",
  24264. image: {
  24265. source: "./media/characters/aman-aquila/side.svg",
  24266. extra: 1054 / 1011,
  24267. bottom: 15 / 1070
  24268. }
  24269. },
  24270. back: {
  24271. height: math.unit(5 + 7 / 12, "feet"),
  24272. weight: math.unit(185, "lb"),
  24273. name: "Back",
  24274. image: {
  24275. source: "./media/characters/aman-aquila/back.svg",
  24276. extra: 1026 / 970,
  24277. bottom: 12 / 1039
  24278. }
  24279. },
  24280. head: {
  24281. height: math.unit(1.211, "feet"),
  24282. name: "Head",
  24283. image: {
  24284. source: "./media/characters/aman-aquila/head.svg",
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Minimicro",
  24291. height: math.unit(0.057, "inches")
  24292. },
  24293. {
  24294. name: "Micro",
  24295. height: math.unit(7, "inches")
  24296. },
  24297. {
  24298. name: "Mini",
  24299. height: math.unit(3 + 7 / 12, "feet")
  24300. },
  24301. {
  24302. name: "Normal",
  24303. height: math.unit(5 + 7 / 12, "feet"),
  24304. default: true
  24305. },
  24306. {
  24307. name: "Macro",
  24308. height: math.unit(157 + 7 / 12, "feet")
  24309. },
  24310. {
  24311. name: "Megamacro",
  24312. height: math.unit(1557 + 7 / 12, "feet")
  24313. },
  24314. {
  24315. name: "Gigamacro",
  24316. height: math.unit(15557 + 7 / 12, "feet")
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(3 + 2 / 12, "inches"),
  24325. weight: math.unit(0.3, "ounces"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/hiphae/front.svg",
  24329. extra: 1931 / 1683,
  24330. bottom: 24 / 1955
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(3 + 1 / 2, "inches"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(5 + 10 / 12, "feet"),
  24347. weight: math.unit(165, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/nicky/front.svg",
  24351. extra: 3144 / 2886,
  24352. bottom: 45.6 / 3192
  24353. }
  24354. },
  24355. back: {
  24356. height: math.unit(5 + 10 / 12, "feet"),
  24357. weight: math.unit(165, "lb"),
  24358. name: "Back",
  24359. image: {
  24360. source: "./media/characters/nicky/back.svg",
  24361. extra: 3055 / 2804,
  24362. bottom: 28.4 / 3087
  24363. }
  24364. },
  24365. frontclothed: {
  24366. height: math.unit(5 + 10 / 12, "feet"),
  24367. weight: math.unit(165, "lb"),
  24368. name: "Front-clothed",
  24369. image: {
  24370. source: "./media/characters/nicky/front-clothed.svg",
  24371. extra: 3184.9 / 2926.9,
  24372. bottom: 86.5 / 3239.9
  24373. }
  24374. },
  24375. foot: {
  24376. height: math.unit(1.16, "feet"),
  24377. name: "Foot",
  24378. image: {
  24379. source: "./media/characters/nicky/foot.svg"
  24380. }
  24381. },
  24382. feet: {
  24383. height: math.unit(1.34, "feet"),
  24384. name: "Feet",
  24385. image: {
  24386. source: "./media/characters/nicky/feet.svg"
  24387. }
  24388. },
  24389. maw: {
  24390. height: math.unit(0.9, "feet"),
  24391. name: "Maw",
  24392. image: {
  24393. source: "./media/characters/nicky/maw.svg"
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(5 + 10 / 12, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(60, "feet")
  24406. },
  24407. {
  24408. name: "Megamacro",
  24409. height: math.unit(1, "mile")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24415. {
  24416. side: {
  24417. height: math.unit(10, "feet"),
  24418. weight: math.unit(600, "lb"),
  24419. name: "Side",
  24420. image: {
  24421. source: "./media/characters/blair/side.svg",
  24422. bottom: 16.6 / 475,
  24423. extra: 458 / 431
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Micro",
  24430. height: math.unit(8, "inches")
  24431. },
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(10, "feet"),
  24435. default: true
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(180, "feet")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(5 + 4 / 12, "feet"),
  24448. weight: math.unit(125, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/fisher/front.svg",
  24452. extra: 444 / 390,
  24453. bottom: 2 / 444.8
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Micro",
  24460. height: math.unit(4, "inches")
  24461. },
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(5 + 4 / 12, "feet"),
  24465. default: true
  24466. },
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(100, "feet")
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(6.71, "feet"),
  24478. weight: math.unit(200, "lb"),
  24479. capacity: math.unit(1000000, "people"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/gliss/front.svg",
  24483. extra: 2347 / 2231,
  24484. bottom: 113 / 2462
  24485. }
  24486. },
  24487. hammerspaceSize: {
  24488. height: math.unit(6.71 * 717, "feet"),
  24489. weight: math.unit(200, "lb"),
  24490. capacity: math.unit(1000000, "people"),
  24491. name: "Hammerspace Size",
  24492. image: {
  24493. source: "./media/characters/gliss/front.svg",
  24494. extra: 2347 / 2231,
  24495. bottom: 113 / 2462
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(6.71, "feet"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24509. {
  24510. side: {
  24511. height: math.unit(1.44, "m"),
  24512. weight: math.unit(80, "kg"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/dune-anderson/side.svg",
  24516. bottom: 49 / 1426
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Wolf-sized",
  24523. height: math.unit(1.44, "meters")
  24524. },
  24525. {
  24526. name: "Normal",
  24527. height: math.unit(5.05, "meters"),
  24528. default: true
  24529. },
  24530. {
  24531. name: "Big",
  24532. height: math.unit(14.4, "meters")
  24533. },
  24534. {
  24535. name: "Huge",
  24536. height: math.unit(144, "meters")
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24542. {
  24543. front: {
  24544. height: math.unit(7, "feet"),
  24545. weight: math.unit(425, "lb"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/hind/front.svg",
  24549. extra: 2091 / 1860,
  24550. bottom: 129 / 2220
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(7, "feet"),
  24555. weight: math.unit(425, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/hind/back.svg",
  24559. extra: 2091 / 1860,
  24560. bottom: 24.6 / 2309
  24561. }
  24562. },
  24563. tail: {
  24564. height: math.unit(2.8, "feet"),
  24565. name: "Tail",
  24566. image: {
  24567. source: "./media/characters/hind/tail.svg"
  24568. }
  24569. },
  24570. head: {
  24571. height: math.unit(2.55, "feet"),
  24572. name: "Head",
  24573. image: {
  24574. source: "./media/characters/hind/head.svg"
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "XS",
  24581. height: math.unit(0.7, "feet")
  24582. },
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(7, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "XL",
  24590. height: math.unit(70, "feet")
  24591. },
  24592. ]
  24593. ))
  24594. characterMakers.push(() => makeCharacter(
  24595. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24596. {
  24597. front: {
  24598. height: math.unit(6, "feet"),
  24599. weight: math.unit(150, "lb"),
  24600. name: "Front",
  24601. image: {
  24602. source: "./media/characters/dylan-skaven/front.svg",
  24603. extra: 2318 / 2063,
  24604. bottom: 93.4 / 2410
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Nano",
  24611. height: math.unit(1, "mm")
  24612. },
  24613. {
  24614. name: "Micro",
  24615. height: math.unit(1, "cm")
  24616. },
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(2.1, "meters"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(7 + 5 / 12, "feet"),
  24629. weight: math.unit(357, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/solex-draconov/front.svg",
  24633. extra: 1993 / 1865,
  24634. bottom: 117 / 2111
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Natural Height",
  24641. height: math.unit(7 + 5 / 12, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Macro",
  24646. height: math.unit(350, "feet")
  24647. },
  24648. {
  24649. name: "Macro+",
  24650. height: math.unit(1000, "feet")
  24651. },
  24652. {
  24653. name: "Megamacro",
  24654. height: math.unit(20, "km")
  24655. },
  24656. {
  24657. name: "Megamacro+",
  24658. height: math.unit(1000, "km")
  24659. },
  24660. {
  24661. name: "Gigamacro",
  24662. height: math.unit(2.5, "Gm")
  24663. },
  24664. {
  24665. name: "Teramacro",
  24666. height: math.unit(15, "Tm")
  24667. },
  24668. {
  24669. name: "Galactic",
  24670. height: math.unit(30, "Zm")
  24671. },
  24672. {
  24673. name: "Universal",
  24674. height: math.unit(21000, "Ym")
  24675. },
  24676. {
  24677. name: "Omniversal",
  24678. height: math.unit(9.861e50, "Ym")
  24679. },
  24680. {
  24681. name: "Existential",
  24682. height: math.unit(1e300, "meters")
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24688. {
  24689. side: {
  24690. height: math.unit(25, "feet"),
  24691. weight: math.unit(90000, "lb"),
  24692. name: "Side",
  24693. image: {
  24694. source: "./media/characters/mandarax/side.svg",
  24695. extra: 614 / 332,
  24696. bottom: 55 / 630
  24697. }
  24698. },
  24699. head: {
  24700. height: math.unit(11.4, "feet"),
  24701. name: "Head",
  24702. image: {
  24703. source: "./media/characters/mandarax/head.svg"
  24704. }
  24705. },
  24706. belly: {
  24707. height: math.unit(33, "feet"),
  24708. name: "Belly",
  24709. capacity: math.unit(500, "people"),
  24710. image: {
  24711. source: "./media/characters/mandarax/belly.svg"
  24712. }
  24713. },
  24714. dick: {
  24715. height: math.unit(8.46, "feet"),
  24716. name: "Dick",
  24717. image: {
  24718. source: "./media/characters/mandarax/dick.svg"
  24719. }
  24720. },
  24721. top: {
  24722. height: math.unit(28, "meters"),
  24723. name: "Top",
  24724. image: {
  24725. source: "./media/characters/mandarax/top.svg"
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(25, "feet"),
  24733. default: true
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(5, "feet"),
  24742. weight: math.unit(90, "lb"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/pixil/front.svg",
  24746. extra: 2000 / 1618,
  24747. bottom: 12.3 / 2011
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Normal",
  24754. height: math.unit(5, "feet"),
  24755. default: true
  24756. },
  24757. {
  24758. name: "Megamacro",
  24759. height: math.unit(10, "miles"),
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24765. {
  24766. front: {
  24767. height: math.unit(7 + 2 / 12, "feet"),
  24768. weight: math.unit(200, "lb"),
  24769. name: "Front",
  24770. image: {
  24771. source: "./media/characters/angel/front.svg",
  24772. extra: 1830 / 1737,
  24773. bottom: 22.6 / 1854,
  24774. }
  24775. },
  24776. },
  24777. [
  24778. {
  24779. name: "Normal",
  24780. height: math.unit(7 + 2 / 12, "feet"),
  24781. default: true
  24782. },
  24783. {
  24784. name: "Macro",
  24785. height: math.unit(1000, "feet")
  24786. },
  24787. {
  24788. name: "Megamacro",
  24789. height: math.unit(2, "miles")
  24790. },
  24791. {
  24792. name: "Gigamacro",
  24793. height: math.unit(20, "earths")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(5, "feet"),
  24802. weight: math.unit(180, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/mekana/front.svg",
  24806. extra: 1671 / 1605,
  24807. bottom: 3.5 / 1691
  24808. }
  24809. },
  24810. side: {
  24811. height: math.unit(5, "feet"),
  24812. weight: math.unit(180, "lb"),
  24813. name: "Side",
  24814. image: {
  24815. source: "./media/characters/mekana/side.svg",
  24816. extra: 1671 / 1605,
  24817. bottom: 3.5 / 1691
  24818. }
  24819. },
  24820. back: {
  24821. height: math.unit(5, "feet"),
  24822. weight: math.unit(180, "lb"),
  24823. name: "Back",
  24824. image: {
  24825. source: "./media/characters/mekana/back.svg",
  24826. extra: 1671 / 1605,
  24827. bottom: 3.5 / 1691
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(5, "feet"),
  24835. default: true
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24841. {
  24842. front: {
  24843. height: math.unit(4 + 6 / 12, "feet"),
  24844. weight: math.unit(80, "lb"),
  24845. name: "Front",
  24846. image: {
  24847. source: "./media/characters/pixie/front.svg",
  24848. extra: 1924 / 1825,
  24849. bottom: 22.4 / 1946
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(4 + 6 / 12, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(40, "feet")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(2.1, "meters"),
  24870. weight: math.unit(200, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/the-lascivious/front.svg",
  24874. extra: 1 / 0.893,
  24875. bottom: 3.5 / 573.7
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Human Scale",
  24882. height: math.unit(2.1, "meters")
  24883. },
  24884. {
  24885. name: "Wolxi Scale",
  24886. height: math.unit(46.2, "m"),
  24887. default: true
  24888. },
  24889. {
  24890. name: "Boinker of Buildings",
  24891. height: math.unit(10, "km")
  24892. },
  24893. {
  24894. name: "Shagger of Skyscrapers",
  24895. height: math.unit(40, "km")
  24896. },
  24897. {
  24898. name: "Banger of Boroughs",
  24899. height: math.unit(4000, "km")
  24900. },
  24901. {
  24902. name: "Screwer of States",
  24903. height: math.unit(100000, "km")
  24904. },
  24905. {
  24906. name: "Pounder of Planets",
  24907. height: math.unit(2000000, "km")
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(6, "feet"),
  24916. weight: math.unit(150, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/aj/front.svg",
  24920. extra: 2039 / 1562,
  24921. bottom: 40 / 2079
  24922. }
  24923. },
  24924. },
  24925. [
  24926. {
  24927. name: "Normal",
  24928. height: math.unit(11 + 6 / 12, "feet"),
  24929. default: true
  24930. },
  24931. {
  24932. name: "Megamacro",
  24933. height: math.unit(60, "megameters")
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24939. {
  24940. side: {
  24941. height: math.unit(31 + 8 / 12, "feet"),
  24942. weight: math.unit(75000, "kg"),
  24943. name: "Side",
  24944. image: {
  24945. source: "./media/characters/koros/side.svg",
  24946. extra: 1442 / 1297,
  24947. bottom: 122.7 / 1562
  24948. }
  24949. },
  24950. dicksKingsCrown: {
  24951. height: math.unit(6, "feet"),
  24952. name: "Dicks (King's Crown)",
  24953. image: {
  24954. source: "./media/characters/koros/dicks-kings-crown.svg"
  24955. }
  24956. },
  24957. dicksTailSet: {
  24958. height: math.unit(3, "feet"),
  24959. name: "Dicks (Tail Set)",
  24960. image: {
  24961. source: "./media/characters/koros/dicks-tail-set.svg"
  24962. }
  24963. },
  24964. dickCumming: {
  24965. height: math.unit(7.98, "feet"),
  24966. name: "Dick (Cumming)",
  24967. image: {
  24968. source: "./media/characters/koros/dick-cumming.svg"
  24969. }
  24970. },
  24971. dicksBack: {
  24972. height: math.unit(5.9, "feet"),
  24973. name: "Dicks (Back)",
  24974. image: {
  24975. source: "./media/characters/koros/dicks-back.svg"
  24976. }
  24977. },
  24978. dicksFront: {
  24979. height: math.unit(3.72, "feet"),
  24980. name: "Dicks (Front)",
  24981. image: {
  24982. source: "./media/characters/koros/dicks-front.svg"
  24983. }
  24984. },
  24985. dicksPeeking: {
  24986. height: math.unit(3.0, "feet"),
  24987. name: "Dicks (Peeking)",
  24988. image: {
  24989. source: "./media/characters/koros/dicks-peeking.svg"
  24990. }
  24991. },
  24992. eye: {
  24993. height: math.unit(1.7, "feet"),
  24994. name: "Eye",
  24995. image: {
  24996. source: "./media/characters/koros/eye.svg"
  24997. }
  24998. },
  24999. headFront: {
  25000. height: math.unit(11.69, "feet"),
  25001. name: "Head (Front)",
  25002. image: {
  25003. source: "./media/characters/koros/head-front.svg"
  25004. }
  25005. },
  25006. headSide: {
  25007. height: math.unit(14, "feet"),
  25008. name: "Head (Side)",
  25009. image: {
  25010. source: "./media/characters/koros/head-side.svg"
  25011. }
  25012. },
  25013. leg: {
  25014. height: math.unit(17, "feet"),
  25015. name: "Leg",
  25016. image: {
  25017. source: "./media/characters/koros/leg.svg"
  25018. }
  25019. },
  25020. mawSide: {
  25021. height: math.unit(12.8, "feet"),
  25022. name: "Maw (Side)",
  25023. image: {
  25024. source: "./media/characters/koros/maw-side.svg"
  25025. }
  25026. },
  25027. mawSpitting: {
  25028. height: math.unit(17, "feet"),
  25029. name: "Maw (Spitting)",
  25030. image: {
  25031. source: "./media/characters/koros/maw-spitting.svg"
  25032. }
  25033. },
  25034. slit: {
  25035. height: math.unit(2.8, "feet"),
  25036. name: "Slit",
  25037. image: {
  25038. source: "./media/characters/koros/slit.svg"
  25039. }
  25040. },
  25041. stomach: {
  25042. height: math.unit(6.8, "feet"),
  25043. capacity: math.unit(20, "people"),
  25044. name: "Stomach",
  25045. image: {
  25046. source: "./media/characters/koros/stomach.svg"
  25047. }
  25048. },
  25049. wingspanBottom: {
  25050. height: math.unit(114, "feet"),
  25051. name: "Wingspan (Bottom)",
  25052. image: {
  25053. source: "./media/characters/koros/wingspan-bottom.svg"
  25054. }
  25055. },
  25056. wingspanTop: {
  25057. height: math.unit(104, "feet"),
  25058. name: "Wingspan (Top)",
  25059. image: {
  25060. source: "./media/characters/koros/wingspan-top.svg"
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Normal",
  25067. height: math.unit(31 + 8 / 12, "feet"),
  25068. default: true
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(18 + 5 / 12, "feet"),
  25077. weight: math.unit(3750, "kg"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/vexx/front.svg",
  25081. extra: 426 / 396,
  25082. bottom: 31.5 / 458
  25083. }
  25084. },
  25085. maw: {
  25086. height: math.unit(6, "feet"),
  25087. name: "Maw",
  25088. image: {
  25089. source: "./media/characters/vexx/maw.svg"
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(18 + 5 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(17 + 6 / 12, "feet"),
  25106. weight: math.unit(150, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/baadra/front.svg",
  25110. extra: 3137 / 2890,
  25111. bottom: 168.4 / 3305
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(17 + 6 / 12, "feet"),
  25116. weight: math.unit(150, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/baadra/back.svg",
  25120. extra: 3142 / 2890,
  25121. bottom: 220 / 3371
  25122. }
  25123. },
  25124. head: {
  25125. height: math.unit(5.45, "feet"),
  25126. name: "Head",
  25127. image: {
  25128. source: "./media/characters/baadra/head.svg"
  25129. }
  25130. },
  25131. headAngry: {
  25132. height: math.unit(4.95, "feet"),
  25133. name: "Head (Angry)",
  25134. image: {
  25135. source: "./media/characters/baadra/head-angry.svg"
  25136. }
  25137. },
  25138. headOpen: {
  25139. height: math.unit(6, "feet"),
  25140. name: "Head (Open)",
  25141. image: {
  25142. source: "./media/characters/baadra/head-open.svg"
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(17 + 6 / 12, "feet"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(7 + 3 / 12, "feet"),
  25159. weight: math.unit(180, "lb"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/juri/front.svg",
  25163. extra: 1401 / 1237,
  25164. bottom: 18.5 / 1418
  25165. }
  25166. },
  25167. side: {
  25168. height: math.unit(7 + 3 / 12, "feet"),
  25169. weight: math.unit(180, "lb"),
  25170. name: "Side",
  25171. image: {
  25172. source: "./media/characters/juri/side.svg",
  25173. extra: 1424 / 1242,
  25174. bottom: 18.5 / 1447
  25175. }
  25176. },
  25177. sitting: {
  25178. height: math.unit(6, "feet"),
  25179. weight: math.unit(180, "lb"),
  25180. name: "Sitting",
  25181. image: {
  25182. source: "./media/characters/juri/sitting.svg",
  25183. extra: 1270 / 1143,
  25184. bottom: 100 / 1343
  25185. }
  25186. },
  25187. back: {
  25188. height: math.unit(7 + 3 / 12, "feet"),
  25189. weight: math.unit(180, "lb"),
  25190. name: "Back",
  25191. image: {
  25192. source: "./media/characters/juri/back.svg",
  25193. extra: 1377 / 1240,
  25194. bottom: 23.7 / 1405
  25195. }
  25196. },
  25197. maw: {
  25198. height: math.unit(2.8, "feet"),
  25199. name: "Maw",
  25200. image: {
  25201. source: "./media/characters/juri/maw.svg"
  25202. }
  25203. },
  25204. stomach: {
  25205. height: math.unit(0.89, "feet"),
  25206. capacity: math.unit(4, "liters"),
  25207. name: "Stomach",
  25208. image: {
  25209. source: "./media/characters/juri/stomach.svg"
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(7 + 3 / 12, "feet"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25223. {
  25224. fox: {
  25225. height: math.unit(5 + 6 / 12, "feet"),
  25226. weight: math.unit(140, "lb"),
  25227. name: "Fox",
  25228. image: {
  25229. source: "./media/characters/maxene-sita/fox.svg",
  25230. extra: 146 / 138,
  25231. bottom: 2.1 / 148.19
  25232. }
  25233. },
  25234. foxLaying: {
  25235. height: math.unit(1.70, "feet"),
  25236. weight: math.unit(140, "lb"),
  25237. name: "Fox (Laying)",
  25238. image: {
  25239. source: "./media/characters/maxene-sita/fox-laying.svg",
  25240. extra: 910 / 572,
  25241. bottom: 71 / 981
  25242. }
  25243. },
  25244. kitsune: {
  25245. height: math.unit(10, "feet"),
  25246. weight: math.unit(800, "lb"),
  25247. name: "Kitsune",
  25248. image: {
  25249. source: "./media/characters/maxene-sita/kitsune.svg",
  25250. extra: 185 / 176,
  25251. bottom: 4.7 / 189.9
  25252. }
  25253. },
  25254. hellhound: {
  25255. height: math.unit(10, "feet"),
  25256. weight: math.unit(700, "lb"),
  25257. name: "Hellhound",
  25258. image: {
  25259. source: "./media/characters/maxene-sita/hellhound.svg",
  25260. extra: 1600 / 1545,
  25261. bottom: 81 / 1681
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(5 + 6 / 12, "feet"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25275. {
  25276. front: {
  25277. height: math.unit(3 + 4 / 12, "feet"),
  25278. weight: math.unit(70, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/maia/front.svg",
  25282. extra: 227 / 219.5,
  25283. bottom: 40 / 267
  25284. }
  25285. },
  25286. back: {
  25287. height: math.unit(3 + 4 / 12, "feet"),
  25288. weight: math.unit(70, "lb"),
  25289. name: "Back",
  25290. image: {
  25291. source: "./media/characters/maia/back.svg",
  25292. extra: 237 / 225
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Normal",
  25299. height: math.unit(3 + 4 / 12, "feet"),
  25300. default: true
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(5 + 10 / 12, "feet"),
  25309. weight: math.unit(197, "lb"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/jabaro/front.svg",
  25313. extra: 225 / 216,
  25314. bottom: 5.06 / 230
  25315. }
  25316. },
  25317. back: {
  25318. height: math.unit(5 + 10 / 12, "feet"),
  25319. weight: math.unit(197, "lb"),
  25320. name: "Back",
  25321. image: {
  25322. source: "./media/characters/jabaro/back.svg",
  25323. extra: 225 / 219,
  25324. bottom: 1.9 / 227
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(5 + 10 / 12, "feet"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(5 + 8 / 12, "feet"),
  25341. weight: math.unit(139, "lb"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/risa/front.svg",
  25345. extra: 270 / 260,
  25346. bottom: 11.2 / 282
  25347. }
  25348. },
  25349. back: {
  25350. height: math.unit(5 + 8 / 12, "feet"),
  25351. weight: math.unit(139, "lb"),
  25352. name: "Back",
  25353. image: {
  25354. source: "./media/characters/risa/back.svg",
  25355. extra: 264 / 255,
  25356. bottom: 4 / 268
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(5 + 8 / 12, "feet"),
  25364. default: true
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(2 + 11 / 12, "feet"),
  25373. weight: math.unit(30, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/weatley/front.svg",
  25377. bottom: 10.7 / 414,
  25378. extra: 403.5 / 362
  25379. }
  25380. },
  25381. back: {
  25382. height: math.unit(2 + 11 / 12, "feet"),
  25383. weight: math.unit(30, "lb"),
  25384. name: "Back",
  25385. image: {
  25386. source: "./media/characters/weatley/back.svg",
  25387. bottom: 10.7 / 414,
  25388. extra: 403.5 / 362
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Normal",
  25395. height: math.unit(2 + 11 / 12, "feet"),
  25396. default: true
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(5 + 2 / 12, "feet"),
  25405. weight: math.unit(50, "kg"),
  25406. name: "Front",
  25407. image: {
  25408. source: "./media/characters/mercury-crescent/front.svg",
  25409. extra: 1088 / 1033,
  25410. bottom: 18.9 / 1109
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(5 + 2 / 12, "feet"),
  25418. default: true
  25419. },
  25420. ]
  25421. ))
  25422. characterMakers.push(() => makeCharacter(
  25423. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25424. {
  25425. front: {
  25426. height: math.unit(2, "feet"),
  25427. weight: math.unit(15, "kg"),
  25428. name: "Front",
  25429. image: {
  25430. source: "./media/characters/diamond-jones/front.svg",
  25431. extra: 727/723,
  25432. bottom: 46/773
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Normal",
  25439. height: math.unit(2, "feet"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25446. {
  25447. front: {
  25448. height: math.unit(3, "feet"),
  25449. weight: math.unit(30, "kg"),
  25450. name: "Front",
  25451. image: {
  25452. source: "./media/characters/sweet-bit/front.svg",
  25453. extra: 675 / 567,
  25454. bottom: 27.7 / 703
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(3, "feet"),
  25462. default: true
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25468. {
  25469. side: {
  25470. height: math.unit(9.178, "feet"),
  25471. weight: math.unit(500, "lb"),
  25472. name: "Side",
  25473. image: {
  25474. source: "./media/characters/umbrazen/side.svg",
  25475. extra: 1730 / 1473,
  25476. bottom: 34.6 / 1765
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(9.178, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(10, "feet"),
  25493. weight: math.unit(750, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/arlist/front.svg",
  25497. extra: 961 / 778,
  25498. bottom: 6.2 / 986
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Normal",
  25505. height: math.unit(10, "feet"),
  25506. default: true
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(5 + 1 / 12, "feet"),
  25515. weight: math.unit(110, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/aradel/front.svg",
  25519. extra: 324 / 303,
  25520. bottom: 3.6 / 329.4
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(5 + 1 / 12, "feet"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(3 + 8 / 12, "feet"),
  25537. weight: math.unit(50, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/serryn/front.svg",
  25541. extra: 1792 / 1656,
  25542. bottom: 43.5 / 1840
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Normal",
  25549. height: math.unit(3 + 8 / 12, "feet"),
  25550. default: true
  25551. },
  25552. ]
  25553. ))
  25554. characterMakers.push(() => makeCharacter(
  25555. { name: "Xavier Thyme" },
  25556. {
  25557. front: {
  25558. height: math.unit(7 + 10 / 12, "feet"),
  25559. weight: math.unit(255, "lb"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/xavier-thyme/front.svg",
  25563. extra: 3733 / 3642,
  25564. bottom: 131 / 3869
  25565. }
  25566. },
  25567. frontRaven: {
  25568. height: math.unit(7 + 10 / 12, "feet"),
  25569. weight: math.unit(255, "lb"),
  25570. name: "Front (Raven)",
  25571. image: {
  25572. source: "./media/characters/xavier-thyme/front-raven.svg",
  25573. extra: 4385 / 3642,
  25574. bottom: 131 / 4517
  25575. }
  25576. },
  25577. },
  25578. [
  25579. {
  25580. name: "Normal",
  25581. height: math.unit(7 + 10 / 12, "feet"),
  25582. default: true
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(1.6, "m"),
  25591. weight: math.unit(50, "kg"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/kiki/front.svg",
  25595. extra: 4682 / 3610,
  25596. bottom: 115 / 4777
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(1.6, "meters"),
  25604. default: true
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(50, "m"),
  25613. weight: math.unit(500, "tonnes"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/ryoko/front.svg",
  25617. extra: 4632 / 3926,
  25618. bottom: 193 / 4823
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(50, "meters"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(30, "m"),
  25635. weight: math.unit(22, "tonnes"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/elio/front.svg",
  25639. extra: 4582 / 3720,
  25640. bottom: 236 / 4828
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(30, "meters"),
  25648. default: true
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(6 + 3 / 12, "feet"),
  25657. weight: math.unit(120, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/azura/front.svg",
  25661. extra: 1149 / 1135,
  25662. bottom: 45 / 1194
  25663. }
  25664. },
  25665. frontClothed: {
  25666. height: math.unit(6 + 3 / 12, "feet"),
  25667. weight: math.unit(120, "lb"),
  25668. name: "Front (Clothed)",
  25669. image: {
  25670. source: "./media/characters/azura/front-clothed.svg",
  25671. extra: 1149 / 1135,
  25672. bottom: 45 / 1194
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(6 + 3 / 12, "feet"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Macro",
  25684. height: math.unit(20 + 6 / 12, "feet")
  25685. },
  25686. {
  25687. name: "Megamacro",
  25688. height: math.unit(12, "miles")
  25689. },
  25690. {
  25691. name: "Gigamacro",
  25692. height: math.unit(10000, "miles")
  25693. },
  25694. {
  25695. name: "Teramacro",
  25696. height: math.unit(900000, "miles")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(12, "feet"),
  25705. weight: math.unit(1, "ton"),
  25706. capacity: math.unit(660000, "gallons"),
  25707. name: "Front",
  25708. image: {
  25709. source: "./media/characters/zeus/front.svg",
  25710. extra: 5005 / 4717,
  25711. bottom: 363 / 5388
  25712. }
  25713. },
  25714. },
  25715. [
  25716. {
  25717. name: "Normal",
  25718. height: math.unit(12, "feet")
  25719. },
  25720. {
  25721. name: "Preferred Size",
  25722. height: math.unit(0.5, "miles"),
  25723. default: true
  25724. },
  25725. {
  25726. name: "Giga Horse",
  25727. height: math.unit(300, "miles")
  25728. },
  25729. {
  25730. name: "Riding Planets",
  25731. height: math.unit(30, "megameters")
  25732. },
  25733. {
  25734. name: "Cosmic Giant",
  25735. height: math.unit(3, "zettameters")
  25736. },
  25737. {
  25738. name: "Breeding God",
  25739. height: math.unit(9.92e22, "yottameters")
  25740. },
  25741. ]
  25742. ))
  25743. characterMakers.push(() => makeCharacter(
  25744. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25745. {
  25746. side: {
  25747. height: math.unit(9, "feet"),
  25748. weight: math.unit(1500, "kg"),
  25749. name: "Side",
  25750. image: {
  25751. source: "./media/characters/fang/side.svg",
  25752. extra: 924 / 866,
  25753. bottom: 47.5 / 972.3
  25754. }
  25755. },
  25756. },
  25757. [
  25758. {
  25759. name: "Normal",
  25760. height: math.unit(9, "feet"),
  25761. default: true
  25762. },
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(75 + 6 / 12, "feet")
  25766. },
  25767. {
  25768. name: "Teramacro",
  25769. height: math.unit(50000, "miles")
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25775. {
  25776. front: {
  25777. height: math.unit(10, "feet"),
  25778. weight: math.unit(2, "tons"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/rekhit/front.svg",
  25782. extra: 2796 / 2590,
  25783. bottom: 225 / 3022
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Normal",
  25790. height: math.unit(10, "feet"),
  25791. default: true
  25792. },
  25793. {
  25794. name: "Macro",
  25795. height: math.unit(500, "feet")
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Dahlia Verrick" },
  25801. {
  25802. front: {
  25803. height: math.unit(7 + 6.451 / 12, "feet"),
  25804. weight: math.unit(310, "lb"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/dahlia-verrick/front.svg",
  25808. extra: 1488 / 1365,
  25809. bottom: 6.2 / 1495
  25810. }
  25811. },
  25812. back: {
  25813. height: math.unit(7 + 6.451 / 12, "feet"),
  25814. weight: math.unit(310, "lb"),
  25815. name: "Back",
  25816. image: {
  25817. source: "./media/characters/dahlia-verrick/back.svg",
  25818. extra: 1472 / 1351,
  25819. bottom: 5.28 / 1477
  25820. }
  25821. },
  25822. frontBusiness: {
  25823. height: math.unit(7 + 6.451 / 12, "feet"),
  25824. weight: math.unit(200, "lb"),
  25825. name: "Front (Business)",
  25826. image: {
  25827. source: "./media/characters/dahlia-verrick/front-business.svg",
  25828. extra: 1478 / 1381,
  25829. bottom: 5.5 / 1484
  25830. }
  25831. },
  25832. frontCasual: {
  25833. height: math.unit(7 + 6.451 / 12, "feet"),
  25834. weight: math.unit(200, "lb"),
  25835. name: "Front (Casual)",
  25836. image: {
  25837. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25838. extra: 1478 / 1381,
  25839. bottom: 5.5 / 1484
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Travel-Sized",
  25846. height: math.unit(7.45, "inches")
  25847. },
  25848. {
  25849. name: "Normal",
  25850. height: math.unit(7 + 6.451 / 12, "feet"),
  25851. default: true
  25852. },
  25853. {
  25854. name: "Hitting the Town",
  25855. height: math.unit(37 + 8 / 12, "feet")
  25856. },
  25857. {
  25858. name: "Stomp in the Suburbs",
  25859. height: math.unit(964 + 9.728 / 12, "feet")
  25860. },
  25861. {
  25862. name: "Sit on the City",
  25863. height: math.unit(61747 + 10.592 / 12, "feet")
  25864. },
  25865. {
  25866. name: "Glomp the Globe",
  25867. height: math.unit(252919327 + 4.832 / 12, "feet")
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(6 + 4 / 12, "feet"),
  25876. weight: math.unit(320, "lb"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/balina-mahigan/front.svg",
  25880. extra: 447 / 428,
  25881. bottom: 18 / 466
  25882. }
  25883. },
  25884. back: {
  25885. height: math.unit(6 + 4 / 12, "feet"),
  25886. weight: math.unit(320, "lb"),
  25887. name: "Back",
  25888. image: {
  25889. source: "./media/characters/balina-mahigan/back.svg",
  25890. extra: 445 / 428,
  25891. bottom: 4.07 / 448
  25892. }
  25893. },
  25894. arm: {
  25895. height: math.unit(1.88, "feet"),
  25896. name: "Arm",
  25897. image: {
  25898. source: "./media/characters/balina-mahigan/arm.svg"
  25899. }
  25900. },
  25901. backPort: {
  25902. height: math.unit(0.685, "feet"),
  25903. name: "Back Port",
  25904. image: {
  25905. source: "./media/characters/balina-mahigan/back-port.svg"
  25906. }
  25907. },
  25908. hoofpaw: {
  25909. height: math.unit(1.41, "feet"),
  25910. name: "Hoofpaw",
  25911. image: {
  25912. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25913. }
  25914. },
  25915. leftHandBack: {
  25916. height: math.unit(0.938, "feet"),
  25917. name: "Left Hand (Back)",
  25918. image: {
  25919. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25920. }
  25921. },
  25922. leftHandFront: {
  25923. height: math.unit(0.938, "feet"),
  25924. name: "Left Hand (Front)",
  25925. image: {
  25926. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25927. }
  25928. },
  25929. rightHandBack: {
  25930. height: math.unit(0.95, "feet"),
  25931. name: "Right Hand (Back)",
  25932. image: {
  25933. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25934. }
  25935. },
  25936. rightHandFront: {
  25937. height: math.unit(0.95, "feet"),
  25938. name: "Right Hand (Front)",
  25939. image: {
  25940. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(6 + 4 / 12, "feet"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25954. {
  25955. front: {
  25956. height: math.unit(6, "feet"),
  25957. weight: math.unit(320, "lb"),
  25958. name: "Front",
  25959. image: {
  25960. source: "./media/characters/balina-mejeri/front.svg",
  25961. extra: 517 / 488,
  25962. bottom: 44.2 / 561
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(6 + 4 / 12, "feet")
  25970. },
  25971. {
  25972. name: "Business",
  25973. height: math.unit(155, "feet"),
  25974. default: true
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25980. {
  25981. kneeling: {
  25982. height: math.unit(6 + 4 / 12, "feet"),
  25983. weight: math.unit(300 * 20, "lb"),
  25984. name: "Kneeling",
  25985. image: {
  25986. source: "./media/characters/balbarian/kneeling.svg",
  25987. extra: 922 / 862,
  25988. bottom: 42.4 / 965
  25989. }
  25990. },
  25991. },
  25992. [
  25993. {
  25994. name: "Normal",
  25995. height: math.unit(6 + 4 / 12, "feet")
  25996. },
  25997. {
  25998. name: "Treasured",
  25999. height: math.unit(18 + 9 / 12, "feet"),
  26000. default: true
  26001. },
  26002. {
  26003. name: "Macro",
  26004. height: math.unit(900, "feet")
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26010. {
  26011. front: {
  26012. height: math.unit(6 + 4 / 12, "feet"),
  26013. weight: math.unit(325, "lb"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/balina-amarini/front.svg",
  26017. extra: 415 / 403,
  26018. bottom: 19 / 433.4
  26019. }
  26020. },
  26021. back: {
  26022. height: math.unit(6 + 4 / 12, "feet"),
  26023. weight: math.unit(325, "lb"),
  26024. name: "Back",
  26025. image: {
  26026. source: "./media/characters/balina-amarini/back.svg",
  26027. extra: 415 / 403,
  26028. bottom: 13.5 / 432
  26029. }
  26030. },
  26031. overdrive: {
  26032. height: math.unit(6 + 4 / 12, "feet"),
  26033. weight: math.unit(400, "lb"),
  26034. name: "Overdrive",
  26035. image: {
  26036. source: "./media/characters/balina-amarini/overdrive.svg",
  26037. extra: 269 / 259,
  26038. bottom: 12 / 282
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Boom",
  26045. height: math.unit(9 + 10 / 12, "feet"),
  26046. default: true
  26047. },
  26048. {
  26049. name: "Macro",
  26050. height: math.unit(280, "feet")
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26056. {
  26057. goddess: {
  26058. height: math.unit(600, "feet"),
  26059. weight: math.unit(2000000, "tons"),
  26060. name: "Goddess",
  26061. image: {
  26062. source: "./media/characters/lady-kubwa/goddess.svg",
  26063. extra: 1240.5 / 1223,
  26064. bottom: 22 / 1263
  26065. }
  26066. },
  26067. goddesser: {
  26068. height: math.unit(900, "feet"),
  26069. weight: math.unit(20000000, "lb"),
  26070. name: "Goddess-er",
  26071. image: {
  26072. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26073. extra: 899 / 888,
  26074. bottom: 12.6 / 912
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Macro",
  26081. height: math.unit(600, "feet"),
  26082. default: true
  26083. },
  26084. {
  26085. name: "Megamacro",
  26086. height: math.unit(250, "miles")
  26087. },
  26088. ]
  26089. ))
  26090. characterMakers.push(() => makeCharacter(
  26091. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26092. {
  26093. front: {
  26094. height: math.unit(7 + 7 / 12, "feet"),
  26095. weight: math.unit(250, "lb"),
  26096. name: "Front",
  26097. image: {
  26098. source: "./media/characters/tala-grovehorn/front.svg",
  26099. extra: 2636 / 2525,
  26100. bottom: 147 / 2781
  26101. }
  26102. },
  26103. back: {
  26104. height: math.unit(7 + 7 / 12, "feet"),
  26105. weight: math.unit(250, "lb"),
  26106. name: "Back",
  26107. image: {
  26108. source: "./media/characters/tala-grovehorn/back.svg",
  26109. extra: 2635 / 2539,
  26110. bottom: 100 / 2732.8
  26111. }
  26112. },
  26113. mouth: {
  26114. height: math.unit(1.15, "feet"),
  26115. name: "Mouth",
  26116. image: {
  26117. source: "./media/characters/tala-grovehorn/mouth.svg"
  26118. }
  26119. },
  26120. dick: {
  26121. height: math.unit(2.36, "feet"),
  26122. name: "Dick",
  26123. image: {
  26124. source: "./media/characters/tala-grovehorn/dick.svg"
  26125. }
  26126. },
  26127. slit: {
  26128. height: math.unit(0.61, "feet"),
  26129. name: "Slit",
  26130. image: {
  26131. source: "./media/characters/tala-grovehorn/slit.svg"
  26132. }
  26133. },
  26134. },
  26135. [
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26140. {
  26141. front: {
  26142. height: math.unit(7 + 7 / 12, "feet"),
  26143. weight: math.unit(225, "lb"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/epona/front.svg",
  26147. extra: 2445 / 2290,
  26148. bottom: 251 / 2696
  26149. }
  26150. },
  26151. back: {
  26152. height: math.unit(7 + 7 / 12, "feet"),
  26153. weight: math.unit(225, "lb"),
  26154. name: "Back",
  26155. image: {
  26156. source: "./media/characters/epona/back.svg",
  26157. extra: 2546 / 2408,
  26158. bottom: 44 / 2589
  26159. }
  26160. },
  26161. genitals: {
  26162. height: math.unit(1.5, "feet"),
  26163. name: "Genitals",
  26164. image: {
  26165. source: "./media/characters/epona/genitals.svg"
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(7 + 7 / 12, "feet"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(7, "feet"),
  26182. weight: math.unit(518, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/avia-bloodbourn/front.svg",
  26186. extra: 1466 / 1350,
  26187. bottom: 65 / 1527
  26188. }
  26189. },
  26190. },
  26191. [
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(9.35, "feet"),
  26199. weight: math.unit(600, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/amera/front.svg",
  26203. extra: 891 / 818,
  26204. bottom: 30 / 922.7
  26205. }
  26206. },
  26207. back: {
  26208. height: math.unit(9.35, "feet"),
  26209. weight: math.unit(600, "lb"),
  26210. name: "Back",
  26211. image: {
  26212. source: "./media/characters/amera/back.svg",
  26213. extra: 876 / 824,
  26214. bottom: 6.8 / 884
  26215. }
  26216. },
  26217. dick: {
  26218. height: math.unit(2.14, "feet"),
  26219. name: "Dick",
  26220. image: {
  26221. source: "./media/characters/amera/dick.svg"
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(9.35, "feet"),
  26229. default: true
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26235. {
  26236. kneeling: {
  26237. height: math.unit(3 + 4 / 12, "feet"),
  26238. weight: math.unit(90, "lb"),
  26239. name: "Kneeling",
  26240. image: {
  26241. source: "./media/characters/rosewen/kneeling.svg",
  26242. extra: 1835 / 1571,
  26243. bottom: 27.7 / 1862
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(3 + 4 / 12, "feet"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(5 + 10 / 12, "feet"),
  26260. weight: math.unit(200, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/sabah/front.svg",
  26264. extra: 849 / 763,
  26265. bottom: 33.9 / 881
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(5 + 10 / 12, "feet"),
  26273. default: true
  26274. },
  26275. ]
  26276. ))
  26277. characterMakers.push(() => makeCharacter(
  26278. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26279. {
  26280. front: {
  26281. height: math.unit(3 + 5 / 12, "feet"),
  26282. weight: math.unit(40, "kg"),
  26283. name: "Front",
  26284. image: {
  26285. source: "./media/characters/purple-flame/front.svg",
  26286. extra: 1577 / 1412,
  26287. bottom: 97 / 1694
  26288. }
  26289. },
  26290. frontDressed: {
  26291. height: math.unit(3 + 5 / 12, "feet"),
  26292. weight: math.unit(40, "kg"),
  26293. name: "Front (Dressed)",
  26294. image: {
  26295. source: "./media/characters/purple-flame/front-dressed.svg",
  26296. extra: 1577 / 1412,
  26297. bottom: 97 / 1694
  26298. }
  26299. },
  26300. headphones: {
  26301. height: math.unit(0.85, "feet"),
  26302. name: "Headphones",
  26303. image: {
  26304. source: "./media/characters/purple-flame/headphones.svg"
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Really Small",
  26311. height: math.unit(5, "cm")
  26312. },
  26313. {
  26314. name: "Micro",
  26315. height: math.unit(1 + 5 / 12, "feet")
  26316. },
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(3 + 5 / 12, "feet"),
  26320. default: true
  26321. },
  26322. {
  26323. name: "Minimacro",
  26324. height: math.unit(125, "feet")
  26325. },
  26326. {
  26327. name: "Macro",
  26328. height: math.unit(0.5, "miles")
  26329. },
  26330. {
  26331. name: "Megamacro",
  26332. height: math.unit(50, "miles")
  26333. },
  26334. {
  26335. name: "Gigantic",
  26336. height: math.unit(750, "miles")
  26337. },
  26338. {
  26339. name: "Planetary",
  26340. height: math.unit(15000, "miles")
  26341. },
  26342. ]
  26343. ))
  26344. characterMakers.push(() => makeCharacter(
  26345. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26346. {
  26347. front: {
  26348. height: math.unit(14, "feet"),
  26349. weight: math.unit(959, "lb"),
  26350. name: "Front",
  26351. image: {
  26352. source: "./media/characters/arsenal/front.svg",
  26353. extra: 2357 / 2157,
  26354. bottom: 93 / 2458
  26355. }
  26356. },
  26357. },
  26358. [
  26359. {
  26360. name: "Normal",
  26361. height: math.unit(14, "feet"),
  26362. default: true
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(6, "feet"),
  26371. weight: math.unit(150, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/adira/front.svg",
  26375. extra: 1078 / 1029,
  26376. bottom: 87 / 1166
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Micro",
  26383. height: math.unit(4, "inches"),
  26384. default: true
  26385. },
  26386. {
  26387. name: "Macro",
  26388. height: math.unit(50, "feet")
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(16, "feet"),
  26397. weight: math.unit(1000, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/grim/front.svg",
  26401. extra: 622 / 614,
  26402. bottom: 18.1 / 642
  26403. }
  26404. },
  26405. back: {
  26406. height: math.unit(16, "feet"),
  26407. weight: math.unit(1000, "lb"),
  26408. name: "Back",
  26409. image: {
  26410. source: "./media/characters/grim/back.svg",
  26411. extra: 610.6 / 602,
  26412. bottom: 40.8 / 652
  26413. }
  26414. },
  26415. hunched: {
  26416. height: math.unit(9.75, "feet"),
  26417. weight: math.unit(1000, "lb"),
  26418. name: "Hunched",
  26419. image: {
  26420. source: "./media/characters/grim/hunched.svg",
  26421. extra: 304 / 297,
  26422. bottom: 35.4 / 394
  26423. }
  26424. },
  26425. },
  26426. [
  26427. {
  26428. name: "Normal",
  26429. height: math.unit(16, "feet"),
  26430. default: true
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(2.3, "meters"),
  26439. weight: math.unit(300, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/sinja/front-sfw.svg",
  26443. extra: 1393 / 1294,
  26444. bottom: 70 / 1463
  26445. }
  26446. },
  26447. frontNsfw: {
  26448. height: math.unit(2.3, "meters"),
  26449. weight: math.unit(300, "lb"),
  26450. name: "Front (NSFW)",
  26451. image: {
  26452. source: "./media/characters/sinja/front-nsfw.svg",
  26453. extra: 1393 / 1294,
  26454. bottom: 70 / 1463
  26455. }
  26456. },
  26457. back: {
  26458. height: math.unit(2.3, "meters"),
  26459. weight: math.unit(300, "lb"),
  26460. name: "Back",
  26461. image: {
  26462. source: "./media/characters/sinja/back.svg",
  26463. extra: 1393 / 1294,
  26464. bottom: 70 / 1463
  26465. }
  26466. },
  26467. head: {
  26468. height: math.unit(1.771, "feet"),
  26469. name: "Head",
  26470. image: {
  26471. source: "./media/characters/sinja/head.svg"
  26472. }
  26473. },
  26474. slit: {
  26475. height: math.unit(0.8, "feet"),
  26476. name: "Slit",
  26477. image: {
  26478. source: "./media/characters/sinja/slit.svg"
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Normal",
  26485. height: math.unit(2.3, "meters")
  26486. },
  26487. {
  26488. name: "Macro",
  26489. height: math.unit(91, "meters"),
  26490. default: true
  26491. },
  26492. {
  26493. name: "Megamacro",
  26494. height: math.unit(91440, "meters")
  26495. },
  26496. {
  26497. name: "Gigamacro",
  26498. height: math.unit(60960000, "meters")
  26499. },
  26500. {
  26501. name: "Teramacro",
  26502. height: math.unit(9144000000, "meters")
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(1.7, "meters"),
  26511. weight: math.unit(130, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/kyu/front.svg",
  26515. extra: 415 / 395,
  26516. bottom: 5 / 420
  26517. }
  26518. },
  26519. head: {
  26520. height: math.unit(1.75, "feet"),
  26521. name: "Head",
  26522. image: {
  26523. source: "./media/characters/kyu/head.svg"
  26524. }
  26525. },
  26526. foot: {
  26527. height: math.unit(0.81, "feet"),
  26528. name: "Foot",
  26529. image: {
  26530. source: "./media/characters/kyu/foot.svg"
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Normal",
  26537. height: math.unit(1.7, "meters")
  26538. },
  26539. {
  26540. name: "Macro",
  26541. height: math.unit(131, "feet"),
  26542. default: true
  26543. },
  26544. {
  26545. name: "Megamacro",
  26546. height: math.unit(91440, "meters")
  26547. },
  26548. {
  26549. name: "Gigamacro",
  26550. height: math.unit(60960000, "meters")
  26551. },
  26552. {
  26553. name: "Teramacro",
  26554. height: math.unit(9144000000, "meters")
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(7 + 1 / 12, "feet"),
  26563. weight: math.unit(250, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/joey/front.svg",
  26567. extra: 1791 / 1537,
  26568. bottom: 28 / 1816
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Micro",
  26575. height: math.unit(3, "inches")
  26576. },
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(7 + 1 / 12, "feet"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(165, "cm"),
  26589. weight: math.unit(140, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/sam-evans/front.svg",
  26593. extra: 3417 / 3230,
  26594. bottom: 41.3 / 3417
  26595. }
  26596. },
  26597. frontSixTails: {
  26598. height: math.unit(165, "cm"),
  26599. weight: math.unit(140, "lb"),
  26600. name: "Front-six-tails",
  26601. image: {
  26602. source: "./media/characters/sam-evans/front-six-tails.svg",
  26603. extra: 3417 / 3230,
  26604. bottom: 41.3 / 3417
  26605. }
  26606. },
  26607. back: {
  26608. height: math.unit(165, "cm"),
  26609. weight: math.unit(140, "lb"),
  26610. name: "Back",
  26611. image: {
  26612. source: "./media/characters/sam-evans/back.svg",
  26613. extra: 3227 / 3032,
  26614. bottom: 6.8 / 3234
  26615. }
  26616. },
  26617. face: {
  26618. height: math.unit(0.68, "feet"),
  26619. name: "Face",
  26620. image: {
  26621. source: "./media/characters/sam-evans/face.svg"
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(165, "cm"),
  26629. default: true
  26630. },
  26631. {
  26632. name: "Macro",
  26633. height: math.unit(100, "meters")
  26634. },
  26635. {
  26636. name: "Macro+",
  26637. height: math.unit(800, "meters")
  26638. },
  26639. {
  26640. name: "Macro++",
  26641. height: math.unit(3, "km")
  26642. },
  26643. {
  26644. name: "Macro+++",
  26645. height: math.unit(30, "km")
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(10, "feet"),
  26654. weight: math.unit(750, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/juliet-a/front.svg",
  26658. extra: 1766 / 1720,
  26659. bottom: 43 / 1809
  26660. }
  26661. },
  26662. back: {
  26663. height: math.unit(10, "feet"),
  26664. weight: math.unit(750, "lb"),
  26665. name: "Back",
  26666. image: {
  26667. source: "./media/characters/juliet-a/back.svg",
  26668. extra: 1781 / 1734,
  26669. bottom: 35 / 1810,
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(10, "feet"),
  26677. default: true
  26678. },
  26679. {
  26680. name: "Dragon Form",
  26681. height: math.unit(250, "feet")
  26682. },
  26683. {
  26684. name: "Macro",
  26685. height: math.unit(1000, "feet")
  26686. },
  26687. {
  26688. name: "Megamacro",
  26689. height: math.unit(10000, "feet")
  26690. }
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26695. {
  26696. regular: {
  26697. height: math.unit(7 + 3 / 12, "feet"),
  26698. weight: math.unit(260, "lb"),
  26699. name: "Regular",
  26700. image: {
  26701. source: "./media/characters/wild/regular.svg",
  26702. extra: 97.45 / 92,
  26703. bottom: 6.8 / 104.3
  26704. }
  26705. },
  26706. biggums: {
  26707. height: math.unit(8 + 6 / 12, "feet"),
  26708. weight: math.unit(425, "lb"),
  26709. name: "Biggums",
  26710. image: {
  26711. source: "./media/characters/wild/biggums.svg",
  26712. extra: 97.45 / 92,
  26713. bottom: 7.5 / 132.34
  26714. }
  26715. },
  26716. mawRegular: {
  26717. height: math.unit(1.24, "feet"),
  26718. name: "Maw (Regular)",
  26719. image: {
  26720. source: "./media/characters/wild/maw.svg"
  26721. }
  26722. },
  26723. mawBiggums: {
  26724. height: math.unit(1.47, "feet"),
  26725. name: "Maw (Biggums)",
  26726. image: {
  26727. source: "./media/characters/wild/maw.svg"
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(7 + 3 / 12, "feet"),
  26735. default: true
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26741. {
  26742. front: {
  26743. height: math.unit(2.5, "meters"),
  26744. weight: math.unit(200, "kg"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/vidar/front.svg",
  26748. extra: 2994 / 2795,
  26749. bottom: 56 / 3061
  26750. }
  26751. },
  26752. back: {
  26753. height: math.unit(2.5, "meters"),
  26754. weight: math.unit(200, "kg"),
  26755. name: "Back",
  26756. image: {
  26757. source: "./media/characters/vidar/back.svg",
  26758. extra: 3131 / 2928,
  26759. bottom: 13.5 / 3141.5
  26760. }
  26761. },
  26762. feral: {
  26763. height: math.unit(2.5, "meters"),
  26764. weight: math.unit(2000, "kg"),
  26765. name: "Feral",
  26766. image: {
  26767. source: "./media/characters/vidar/feral.svg",
  26768. extra: 2790 / 1765,
  26769. bottom: 6 / 2796
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(2.5, "meters"),
  26777. default: true
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(100, "meters")
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26787. {
  26788. front: {
  26789. height: math.unit(5 + 9 / 12, "feet"),
  26790. weight: math.unit(120, "lb"),
  26791. name: "Front",
  26792. image: {
  26793. source: "./media/characters/ash/front.svg",
  26794. extra: 2189 / 1961,
  26795. bottom: 5.2 / 2194
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Normal",
  26802. height: math.unit(5 + 9 / 12, "feet"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(9, "feet"),
  26812. weight: math.unit(10000, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/gygabite/front.svg",
  26816. bottom: 31.7 / 537.8,
  26817. extra: 505 / 370
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(9, "feet"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(12, "feet"),
  26834. weight: math.unit(35000, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/p0tat0/front.svg",
  26838. extra: 1065 / 921,
  26839. bottom: 55.7 / 1121.25
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26853. {
  26854. side: {
  26855. height: math.unit(6.5, "feet"),
  26856. weight: math.unit(800, "lb"),
  26857. name: "Side",
  26858. image: {
  26859. source: "./media/characters/dusk/side.svg",
  26860. extra: 615 / 373,
  26861. bottom: 53 / 664
  26862. }
  26863. },
  26864. sitting: {
  26865. height: math.unit(7, "feet"),
  26866. weight: math.unit(800, "lb"),
  26867. name: "Sitting",
  26868. image: {
  26869. source: "./media/characters/dusk/sitting.svg",
  26870. extra: 753 / 425,
  26871. bottom: 33 / 774
  26872. }
  26873. },
  26874. head: {
  26875. height: math.unit(6.1, "feet"),
  26876. name: "Head",
  26877. image: {
  26878. source: "./media/characters/dusk/head.svg"
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Normal",
  26885. height: math.unit(7, "feet"),
  26886. default: true
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(15, "feet"),
  26895. weight: math.unit(7000, "lb"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/jay-direwolf/front.svg",
  26899. extra: 1810 / 1732,
  26900. bottom: 66 / 1892
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(15, "feet"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(4 + 9 / 12, "feet"),
  26917. weight: math.unit(130, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/anchovie/front.svg",
  26921. extra: 382 / 350,
  26922. bottom: 25 / 409
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(4 + 9 / 12, "feet"),
  26927. weight: math.unit(130, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/anchovie/back.svg",
  26931. extra: 385 / 352,
  26932. bottom: 16.6 / 402
  26933. }
  26934. },
  26935. frontDressed: {
  26936. height: math.unit(4 + 9 / 12, "feet"),
  26937. weight: math.unit(130, "lb"),
  26938. name: "Front (Dressed)",
  26939. image: {
  26940. source: "./media/characters/anchovie/front-dressed.svg",
  26941. extra: 382 / 350,
  26942. bottom: 25 / 409
  26943. }
  26944. },
  26945. backDressed: {
  26946. height: math.unit(4 + 9 / 12, "feet"),
  26947. weight: math.unit(130, "lb"),
  26948. name: "Back (Dressed)",
  26949. image: {
  26950. source: "./media/characters/anchovie/back-dressed.svg",
  26951. extra: 385 / 352,
  26952. bottom: 16.6 / 402
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Micro",
  26959. height: math.unit(6.4, "inches")
  26960. },
  26961. {
  26962. name: "Normal",
  26963. height: math.unit(4 + 9 / 12, "feet"),
  26964. default: true
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26970. {
  26971. front: {
  26972. height: math.unit(2, "meters"),
  26973. weight: math.unit(180, "lb"),
  26974. name: "Front",
  26975. image: {
  26976. source: "./media/characters/acidrenamon/front.svg",
  26977. extra: 987 / 890,
  26978. bottom: 22.8 / 1009
  26979. }
  26980. },
  26981. back: {
  26982. height: math.unit(2, "meters"),
  26983. weight: math.unit(180, "lb"),
  26984. name: "Back",
  26985. image: {
  26986. source: "./media/characters/acidrenamon/back.svg",
  26987. extra: 983 / 891,
  26988. bottom: 8.4 / 992
  26989. }
  26990. },
  26991. head: {
  26992. height: math.unit(1.92, "feet"),
  26993. name: "Head",
  26994. image: {
  26995. source: "./media/characters/acidrenamon/head.svg"
  26996. }
  26997. },
  26998. rump: {
  26999. height: math.unit(1.72, "feet"),
  27000. name: "Rump",
  27001. image: {
  27002. source: "./media/characters/acidrenamon/rump.svg"
  27003. }
  27004. },
  27005. tail: {
  27006. height: math.unit(4.2, "feet"),
  27007. name: "Tail",
  27008. image: {
  27009. source: "./media/characters/acidrenamon/tail.svg"
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(2, "meters"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Minimacro",
  27021. height: math.unit(7, "meters")
  27022. },
  27023. {
  27024. name: "Macro",
  27025. height: math.unit(200, "meters")
  27026. },
  27027. {
  27028. name: "Gigamacro",
  27029. height: math.unit(0.2, "earths")
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(6, "feet"),
  27038. weight: math.unit(150, "lb"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/kenzie-lee/front.svg",
  27042. extra: 1525 / 1465,
  27043. bottom: 45 / 1570
  27044. }
  27045. },
  27046. side: {
  27047. height: math.unit(6, "feet"),
  27048. weight: math.unit(150, "lb"),
  27049. name: "Side",
  27050. image: {
  27051. source: "./media/characters/kenzie-lee/side.svg",
  27052. extra: 5505 / 5383,
  27053. bottom: 60 / 5573
  27054. }
  27055. },
  27056. paw: {
  27057. height: math.unit(0.57, "feet"),
  27058. name: "Paw",
  27059. image: {
  27060. source: "./media/characters/kenzie-lee/paw.svg"
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Normal",
  27067. height: math.unit(152, "feet"),
  27068. default: true
  27069. },
  27070. {
  27071. name: "Megamacro",
  27072. height: math.unit(7, "miles")
  27073. },
  27074. {
  27075. name: "Gigamacro",
  27076. height: math.unit(8000, "miles")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27082. {
  27083. side: {
  27084. height: math.unit(6, "feet"),
  27085. weight: math.unit(150, "lb"),
  27086. name: "Side",
  27087. image: {
  27088. source: "./media/characters/withers/side.svg",
  27089. extra: 1830 / 1728,
  27090. bottom: 96 / 1927
  27091. }
  27092. },
  27093. front: {
  27094. height: math.unit(6, "feet"),
  27095. weight: math.unit(150, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/withers/front.svg",
  27099. extra: 1514 / 1438,
  27100. bottom: 118 / 1632
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Macro",
  27107. height: math.unit(168, "feet"),
  27108. default: true
  27109. },
  27110. {
  27111. name: "Megamacro",
  27112. height: math.unit(15, "miles")
  27113. }
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27118. {
  27119. front: {
  27120. height: math.unit(6 + 7 / 12, "feet"),
  27121. weight: math.unit(250, "lb"),
  27122. name: "Front",
  27123. image: {
  27124. source: "./media/characters/nemoskii/front.svg",
  27125. extra: 2270 / 1734,
  27126. bottom: 86 / 2354
  27127. }
  27128. },
  27129. back: {
  27130. height: math.unit(6 + 7 / 12, "feet"),
  27131. weight: math.unit(250, "lb"),
  27132. name: "Back",
  27133. image: {
  27134. source: "./media/characters/nemoskii/back.svg",
  27135. extra: 1845 / 1788,
  27136. bottom: 10.5 / 1852
  27137. }
  27138. },
  27139. head: {
  27140. height: math.unit(1.31, "feet"),
  27141. name: "Head",
  27142. image: {
  27143. source: "./media/characters/nemoskii/head.svg"
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Micro",
  27150. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27151. },
  27152. {
  27153. name: "Normal",
  27154. height: math.unit(6 + 7 / 12, "feet"),
  27155. default: true
  27156. },
  27157. {
  27158. name: "Macro",
  27159. height: math.unit((6 + 7 / 12) * 150, "feet")
  27160. },
  27161. {
  27162. name: "Macro+",
  27163. height: math.unit((6 + 7 / 12) * 500, "feet")
  27164. },
  27165. {
  27166. name: "Megamacro",
  27167. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(1, "mile"),
  27176. weight: math.unit(265261.9, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/shui/front.svg",
  27180. extra: 1633 / 1564,
  27181. bottom: 91.5 / 1726
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Macro",
  27188. height: math.unit(1, "mile"),
  27189. default: true
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(12 + 6 / 12, "feet"),
  27198. weight: math.unit(1342, "lb"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/arokh-takakura/front.svg",
  27202. extra: 1089 / 1043,
  27203. bottom: 77.4 / 1176.7
  27204. }
  27205. },
  27206. back: {
  27207. height: math.unit(12 + 6 / 12, "feet"),
  27208. weight: math.unit(1342, "lb"),
  27209. name: "Back",
  27210. image: {
  27211. source: "./media/characters/arokh-takakura/back.svg",
  27212. extra: 1046 / 1019,
  27213. bottom: 102 / 1150
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Big",
  27220. height: math.unit(12 + 6 / 12, "feet"),
  27221. default: true
  27222. },
  27223. ]
  27224. ))
  27225. characterMakers.push(() => makeCharacter(
  27226. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27227. {
  27228. front: {
  27229. height: math.unit(5 + 6 / 12, "feet"),
  27230. weight: math.unit(150, "lb"),
  27231. name: "Front",
  27232. image: {
  27233. source: "./media/characters/theo/front.svg",
  27234. extra: 1184 / 1131,
  27235. bottom: 7.4 / 1191
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Micro",
  27242. height: math.unit(5, "inches")
  27243. },
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(5 + 6 / 12, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(5 + 9 / 12, "feet"),
  27256. weight: math.unit(130, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/cecelia-swift/front.svg",
  27260. extra: 502 / 484,
  27261. bottom: 23 / 523
  27262. }
  27263. },
  27264. back: {
  27265. height: math.unit(5 + 9 / 12, "feet"),
  27266. weight: math.unit(130, "lb"),
  27267. name: "Back",
  27268. image: {
  27269. source: "./media/characters/cecelia-swift/back.svg",
  27270. extra: 499 / 485,
  27271. bottom: 12 / 511
  27272. }
  27273. },
  27274. head: {
  27275. height: math.unit(0.90, "feet"),
  27276. name: "Head",
  27277. image: {
  27278. source: "./media/characters/cecelia-swift/head.svg"
  27279. }
  27280. },
  27281. rump: {
  27282. height: math.unit(1.75, "feet"),
  27283. name: "Rump",
  27284. image: {
  27285. source: "./media/characters/cecelia-swift/rump.svg"
  27286. }
  27287. },
  27288. },
  27289. [
  27290. {
  27291. name: "Normal",
  27292. height: math.unit(5 + 9 / 12, "feet"),
  27293. default: true
  27294. },
  27295. {
  27296. name: "Big",
  27297. height: math.unit(50, "feet")
  27298. },
  27299. {
  27300. name: "Macro",
  27301. height: math.unit(100, "feet")
  27302. },
  27303. {
  27304. name: "Macro+",
  27305. height: math.unit(500, "feet")
  27306. },
  27307. {
  27308. name: "Macro++",
  27309. height: math.unit(1000, "feet")
  27310. },
  27311. ]
  27312. ))
  27313. characterMakers.push(() => makeCharacter(
  27314. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27315. {
  27316. front: {
  27317. height: math.unit(6, "feet"),
  27318. weight: math.unit(150, "lb"),
  27319. name: "Front",
  27320. image: {
  27321. source: "./media/characters/kaunan/front.svg",
  27322. extra: 2890 / 2523,
  27323. bottom: 49 / 2939
  27324. }
  27325. },
  27326. },
  27327. [
  27328. {
  27329. name: "Macro",
  27330. height: math.unit(150, "feet"),
  27331. default: true
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(175, "cm"),
  27340. weight: math.unit(60, "kg"),
  27341. name: "Front",
  27342. image: {
  27343. source: "./media/characters/fei/front.svg",
  27344. extra: 2581 / 2400,
  27345. bottom: 82.2 / 2663
  27346. }
  27347. },
  27348. },
  27349. [
  27350. {
  27351. name: "Mortal",
  27352. height: math.unit(175, "cm")
  27353. },
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(3500, "m"),
  27357. default: true
  27358. },
  27359. {
  27360. name: "Stroll",
  27361. height: math.unit(17.5, "km")
  27362. },
  27363. {
  27364. name: "Showoff",
  27365. height: math.unit(175, "km")
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27371. {
  27372. front: {
  27373. height: math.unit(7, "feet"),
  27374. weight: math.unit(1000, "kg"),
  27375. name: "Front",
  27376. image: {
  27377. source: "./media/characters/edrax/front.svg",
  27378. extra: 2838 / 2550,
  27379. bottom: 130 / 2968
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Small",
  27386. height: math.unit(7, "feet")
  27387. },
  27388. {
  27389. name: "Normal",
  27390. height: math.unit(1500, "meters")
  27391. },
  27392. {
  27393. name: "Mega",
  27394. height: math.unit(12000000, "km"),
  27395. default: true
  27396. },
  27397. {
  27398. name: "Megamacro",
  27399. height: math.unit(10600000, "lightyears")
  27400. },
  27401. {
  27402. name: "Hypermacro",
  27403. height: math.unit(256, "yottameters")
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27409. {
  27410. front: {
  27411. height: math.unit(10, "feet"),
  27412. weight: math.unit(750, "lb"),
  27413. name: "Front",
  27414. image: {
  27415. source: "./media/characters/clove/front.svg",
  27416. extra: 2031 / 1860,
  27417. bottom: 47.8 / 2080
  27418. }
  27419. },
  27420. back: {
  27421. height: math.unit(10, "feet"),
  27422. weight: math.unit(750, "lb"),
  27423. name: "Back",
  27424. image: {
  27425. source: "./media/characters/clove/back.svg",
  27426. extra: 2025 / 1859,
  27427. bottom: 46 / 2071
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(10, "feet"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(4, "feet"),
  27444. weight: math.unit(50, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/alex-rabbit/front.svg",
  27448. extra: 507 / 458,
  27449. bottom: 18.5 / 527
  27450. }
  27451. },
  27452. back: {
  27453. height: math.unit(4, "feet"),
  27454. weight: math.unit(50, "lb"),
  27455. name: "Back",
  27456. image: {
  27457. source: "./media/characters/alex-rabbit/back.svg",
  27458. extra: 502 / 460,
  27459. bottom: 18.9 / 521
  27460. }
  27461. },
  27462. },
  27463. [
  27464. {
  27465. name: "Normal",
  27466. height: math.unit(4, "feet"),
  27467. default: true
  27468. },
  27469. ]
  27470. ))
  27471. characterMakers.push(() => makeCharacter(
  27472. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27473. {
  27474. front: {
  27475. height: math.unit(1 + 3 / 12, "feet"),
  27476. weight: math.unit(80, "lb"),
  27477. name: "Front",
  27478. image: {
  27479. source: "./media/characters/zander-rose/front.svg",
  27480. extra: 916 / 797,
  27481. bottom: 17 / 933
  27482. }
  27483. },
  27484. back: {
  27485. height: math.unit(1 + 3 / 12, "feet"),
  27486. weight: math.unit(80, "lb"),
  27487. name: "Back",
  27488. image: {
  27489. source: "./media/characters/zander-rose/back.svg",
  27490. extra: 903 / 779,
  27491. bottom: 31 / 934
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(1 + 3 / 12, "feet"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27505. {
  27506. anthro: {
  27507. height: math.unit(6, "feet"),
  27508. weight: math.unit(150, "lb"),
  27509. name: "Anthro",
  27510. image: {
  27511. source: "./media/characters/razz/anthro.svg",
  27512. extra: 1437 / 1343,
  27513. bottom: 48 / 1485
  27514. }
  27515. },
  27516. feral: {
  27517. height: math.unit(6, "feet"),
  27518. weight: math.unit(150, "lb"),
  27519. name: "Feral",
  27520. image: {
  27521. source: "./media/characters/razz/feral.svg",
  27522. extra: 2569 / 1385,
  27523. bottom: 95 / 2664
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(6, "feet"),
  27531. default: true
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(9 + 4 / 12, "feet"),
  27540. weight: math.unit(500, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/morrigan/front.svg",
  27544. extra: 2707 / 2579,
  27545. bottom: 156 / 2863
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(9 + 4 / 12, "feet"),
  27553. default: true
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27559. {
  27560. front: {
  27561. height: math.unit(5, "stories"),
  27562. weight: math.unit(4000, "lb"),
  27563. name: "Front",
  27564. image: {
  27565. source: "./media/characters/jenene/front.svg",
  27566. extra: 1780 / 1710,
  27567. bottom: 57 / 1837
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(5, "stories"),
  27575. default: true
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27581. {
  27582. front: {
  27583. height: math.unit(6, "feet"),
  27584. weight: math.unit(150, "lb"),
  27585. name: "Front",
  27586. image: {
  27587. source: "./media/characters/vix-archaser/front.svg",
  27588. extra: 2767 / 2562,
  27589. bottom: 36 / 2803
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Micro",
  27596. height: math.unit(1, "foot")
  27597. },
  27598. {
  27599. name: "Normal",
  27600. height: math.unit(6 + 5 / 12, "feet")
  27601. },
  27602. {
  27603. name: "Minimacro",
  27604. height: math.unit(500, "feet")
  27605. },
  27606. {
  27607. name: "Macro",
  27608. height: math.unit(4, "miles")
  27609. },
  27610. {
  27611. name: "Megamacro",
  27612. height: math.unit(250, "miles"),
  27613. default: true
  27614. },
  27615. {
  27616. name: "Gigamacro",
  27617. height: math.unit(1, "universe")
  27618. },
  27619. {
  27620. name: "Endgame",
  27621. height: math.unit(100, "multiverses")
  27622. }
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27627. {
  27628. taurSfw: {
  27629. height: math.unit(10, "meters"),
  27630. weight: math.unit(17500, "kg"),
  27631. name: "Taur",
  27632. image: {
  27633. source: "./media/characters/faey/taur-sfw.svg",
  27634. extra: 1200 / 968,
  27635. bottom: 41 / 1241
  27636. }
  27637. },
  27638. chestmaw: {
  27639. height: math.unit(2.01, "meters"),
  27640. name: "Chestmaw",
  27641. image: {
  27642. source: "./media/characters/faey/chestmaw.svg"
  27643. }
  27644. },
  27645. foot: {
  27646. height: math.unit(2.43, "meters"),
  27647. name: "Foot",
  27648. image: {
  27649. source: "./media/characters/faey/foot.svg"
  27650. }
  27651. },
  27652. jaws: {
  27653. height: math.unit(1.66, "meters"),
  27654. name: "Jaws",
  27655. image: {
  27656. source: "./media/characters/faey/jaws.svg"
  27657. }
  27658. },
  27659. tongues: {
  27660. height: math.unit(2.01, "meters"),
  27661. name: "Tongues",
  27662. image: {
  27663. source: "./media/characters/faey/tongues.svg"
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Small",
  27670. height: math.unit(10, "meters"),
  27671. default: true
  27672. },
  27673. {
  27674. name: "Big",
  27675. height: math.unit(500000, "km")
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27681. {
  27682. front: {
  27683. height: math.unit(7, "feet"),
  27684. weight: math.unit(275, "lb"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/roku/front.svg",
  27688. extra: 903 / 878,
  27689. bottom: 37 / 940
  27690. }
  27691. },
  27692. },
  27693. [
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(7, "feet"),
  27697. default: true
  27698. },
  27699. {
  27700. name: "Macro",
  27701. height: math.unit(500, "feet")
  27702. },
  27703. {
  27704. name: "Megamacro",
  27705. height: math.unit(200, "miles")
  27706. },
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(6 + 2 / 12, "feet"),
  27714. weight: math.unit(150, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/lira/front.svg",
  27718. extra: 1727 / 1605,
  27719. bottom: 26 / 1753
  27720. }
  27721. },
  27722. back: {
  27723. height: math.unit(6 + 2 / 12, "feet"),
  27724. weight: math.unit(150, "lb"),
  27725. name: "Back",
  27726. image: {
  27727. source: "./media/characters/lira/back.svg",
  27728. extra: 1713/1621,
  27729. bottom: 20/1733
  27730. }
  27731. },
  27732. hand: {
  27733. height: math.unit(0.75, "feet"),
  27734. name: "Hand",
  27735. image: {
  27736. source: "./media/characters/lira/hand.svg"
  27737. }
  27738. },
  27739. maw: {
  27740. height: math.unit(0.65, "feet"),
  27741. name: "Maw",
  27742. image: {
  27743. source: "./media/characters/lira/maw.svg"
  27744. }
  27745. },
  27746. pawDigi: {
  27747. height: math.unit(1.6, "feet"),
  27748. name: "Paw Digi",
  27749. image: {
  27750. source: "./media/characters/lira/paw-digi.svg"
  27751. }
  27752. },
  27753. pawPlanti: {
  27754. height: math.unit(1.4, "feet"),
  27755. name: "Paw Planti",
  27756. image: {
  27757. source: "./media/characters/lira/paw-planti.svg"
  27758. }
  27759. },
  27760. },
  27761. [
  27762. {
  27763. name: "Normal",
  27764. height: math.unit(6 + 2 / 12, "feet"),
  27765. default: true
  27766. },
  27767. {
  27768. name: "Macro",
  27769. height: math.unit(100, "feet")
  27770. },
  27771. {
  27772. name: "Macro²",
  27773. height: math.unit(1600, "feet")
  27774. },
  27775. {
  27776. name: "Planetary",
  27777. height: math.unit(20, "earths")
  27778. },
  27779. ]
  27780. ))
  27781. characterMakers.push(() => makeCharacter(
  27782. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27783. {
  27784. front: {
  27785. height: math.unit(6, "feet"),
  27786. weight: math.unit(150, "lb"),
  27787. name: "Front",
  27788. image: {
  27789. source: "./media/characters/hadjet/front.svg",
  27790. extra: 1480 / 1346,
  27791. bottom: 26 / 1506
  27792. }
  27793. },
  27794. frontNsfw: {
  27795. height: math.unit(6, "feet"),
  27796. weight: math.unit(150, "lb"),
  27797. name: "Front (NSFW)",
  27798. image: {
  27799. source: "./media/characters/hadjet/front-nsfw.svg",
  27800. extra: 1440 / 1358,
  27801. bottom: 52 / 1492
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(10, "stories"),
  27809. default: true
  27810. },
  27811. {
  27812. name: "Megamacro",
  27813. height: math.unit(1.5, "miles")
  27814. },
  27815. {
  27816. name: "Megamacro+",
  27817. height: math.unit(5, "miles")
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27823. {
  27824. side: {
  27825. height: math.unit(106, "feet"),
  27826. weight: math.unit(500, "tonnes"),
  27827. name: "Side",
  27828. image: {
  27829. source: "./media/characters/kodran/side.svg",
  27830. extra: 553 / 480,
  27831. bottom: 33 / 586
  27832. }
  27833. },
  27834. front: {
  27835. height: math.unit(132, "feet"),
  27836. weight: math.unit(500, "tonnes"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/kodran/front.svg",
  27840. extra: 667 / 643,
  27841. bottom: 42 / 709
  27842. }
  27843. },
  27844. flying: {
  27845. height: math.unit(350, "feet"),
  27846. weight: math.unit(500, "tonnes"),
  27847. name: "Flying",
  27848. image: {
  27849. source: "./media/characters/kodran/flying.svg"
  27850. }
  27851. },
  27852. foot: {
  27853. height: math.unit(33, "feet"),
  27854. name: "Foot",
  27855. image: {
  27856. source: "./media/characters/kodran/foot.svg"
  27857. }
  27858. },
  27859. footFront: {
  27860. height: math.unit(19, "feet"),
  27861. name: "Foot (Front)",
  27862. image: {
  27863. source: "./media/characters/kodran/foot-front.svg",
  27864. extra: 261 / 261,
  27865. bottom: 91 / 352
  27866. }
  27867. },
  27868. headFront: {
  27869. height: math.unit(53, "feet"),
  27870. name: "Head (Front)",
  27871. image: {
  27872. source: "./media/characters/kodran/head-front.svg"
  27873. }
  27874. },
  27875. headSide: {
  27876. height: math.unit(65, "feet"),
  27877. name: "Head (Side)",
  27878. image: {
  27879. source: "./media/characters/kodran/head-side.svg"
  27880. }
  27881. },
  27882. throat: {
  27883. height: math.unit(79, "feet"),
  27884. name: "Throat",
  27885. image: {
  27886. source: "./media/characters/kodran/throat.svg"
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Large",
  27893. height: math.unit(106, "feet"),
  27894. default: true
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27900. {
  27901. side: {
  27902. height: math.unit(11, "feet"),
  27903. weight: math.unit(150, "lb"),
  27904. name: "Side",
  27905. image: {
  27906. source: "./media/characters/pyxaron/side.svg",
  27907. extra: 305 / 195,
  27908. bottom: 17 / 322
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(11, "feet"),
  27916. default: true
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27922. {
  27923. front: {
  27924. height: math.unit(6, "feet"),
  27925. weight: math.unit(150, "lb"),
  27926. name: "Front",
  27927. image: {
  27928. source: "./media/characters/meep/front.svg",
  27929. extra: 88 / 80,
  27930. bottom: 6 / 94
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Fun Sized",
  27937. height: math.unit(2, "inches"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Friend Sized",
  27942. height: math.unit(8, "inches")
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(15, "feet"),
  27951. weight: math.unit(2500, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/holly-rabbit/front.svg",
  27955. extra: 1433 / 1233,
  27956. bottom: 125 / 1558
  27957. }
  27958. },
  27959. dick: {
  27960. height: math.unit(4.6, "feet"),
  27961. name: "Dick",
  27962. image: {
  27963. source: "./media/characters/holly-rabbit/dick.svg"
  27964. }
  27965. },
  27966. },
  27967. [
  27968. {
  27969. name: "Normal",
  27970. height: math.unit(15, "feet"),
  27971. default: true
  27972. },
  27973. {
  27974. name: "Macro",
  27975. height: math.unit(250, "feet")
  27976. },
  27977. {
  27978. name: "Macro+",
  27979. height: math.unit(2500, "feet")
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(3.02, "meters"),
  27988. weight: math.unit(500, "kg"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/drena/front.svg",
  27992. extra: 282 / 243,
  27993. bottom: 8 / 290
  27994. }
  27995. },
  27996. side: {
  27997. height: math.unit(3.02, "meters"),
  27998. weight: math.unit(500, "kg"),
  27999. name: "Side",
  28000. image: {
  28001. source: "./media/characters/drena/side.svg",
  28002. extra: 280 / 245,
  28003. bottom: 10 / 290
  28004. }
  28005. },
  28006. back: {
  28007. height: math.unit(3.02, "meters"),
  28008. weight: math.unit(500, "kg"),
  28009. name: "Back",
  28010. image: {
  28011. source: "./media/characters/drena/back.svg",
  28012. extra: 278 / 243,
  28013. bottom: 2 / 280
  28014. }
  28015. },
  28016. foot: {
  28017. height: math.unit(0.75, "meters"),
  28018. name: "Foot",
  28019. image: {
  28020. source: "./media/characters/drena/foot.svg"
  28021. }
  28022. },
  28023. maw: {
  28024. height: math.unit(0.82, "meters"),
  28025. name: "Maw",
  28026. image: {
  28027. source: "./media/characters/drena/maw.svg"
  28028. }
  28029. },
  28030. rump: {
  28031. height: math.unit(0.93, "meters"),
  28032. name: "Rump",
  28033. image: {
  28034. source: "./media/characters/drena/rump.svg"
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(3.02, "meters"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(6 + 4 / 12, "feet"),
  28051. weight: math.unit(250, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/remmyzilla/front.svg",
  28055. extra: 4033 / 3588,
  28056. bottom: 123 / 4156
  28057. }
  28058. },
  28059. back: {
  28060. height: math.unit(6 + 4 / 12, "feet"),
  28061. weight: math.unit(250, "lb"),
  28062. name: "Back",
  28063. image: {
  28064. source: "./media/characters/remmyzilla/back.svg",
  28065. extra: 2687 / 2555,
  28066. bottom: 48 / 2735
  28067. }
  28068. },
  28069. frontFancy: {
  28070. height: math.unit(6 + 4 / 12, "feet"),
  28071. weight: math.unit(250, "lb"),
  28072. name: "Front (Fancy)",
  28073. image: {
  28074. source: "./media/characters/remmyzilla/front-fancy.svg",
  28075. extra: 4119 / 3419,
  28076. bottom: 237 / 4356
  28077. }
  28078. },
  28079. paw: {
  28080. height: math.unit(1.73, "feet"),
  28081. name: "Paw",
  28082. image: {
  28083. source: "./media/characters/remmyzilla/paw.svg"
  28084. }
  28085. },
  28086. maw: {
  28087. height: math.unit(1.73, "feet"),
  28088. name: "Maw",
  28089. image: {
  28090. source: "./media/characters/remmyzilla/maw.svg"
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(6 + 4 / 12, "feet")
  28098. },
  28099. {
  28100. name: "Minimacro",
  28101. height: math.unit(12 + 8 / 12, "feet")
  28102. },
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(640, "feet"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Megamacro",
  28110. height: math.unit(6400, "feet")
  28111. },
  28112. {
  28113. name: "Gigamacro",
  28114. height: math.unit(64000, "miles")
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(2.5, "meters"),
  28123. weight: math.unit(300, "lb"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/lawrence/front.svg",
  28127. extra: 357 / 335,
  28128. bottom: 30 / 387
  28129. }
  28130. },
  28131. back: {
  28132. height: math.unit(2.5, "meters"),
  28133. weight: math.unit(300, "lb"),
  28134. name: "Back",
  28135. image: {
  28136. source: "./media/characters/lawrence/back.svg",
  28137. extra: 357 / 338,
  28138. bottom: 16 / 373
  28139. }
  28140. },
  28141. head: {
  28142. height: math.unit(0.9, "meter"),
  28143. name: "Head",
  28144. image: {
  28145. source: "./media/characters/lawrence/head.svg"
  28146. }
  28147. },
  28148. maw: {
  28149. height: math.unit(0.7, "meter"),
  28150. name: "Maw",
  28151. image: {
  28152. source: "./media/characters/lawrence/maw.svg"
  28153. }
  28154. },
  28155. footBottom: {
  28156. height: math.unit(0.5, "meter"),
  28157. name: "Foot (Bottom)",
  28158. image: {
  28159. source: "./media/characters/lawrence/foot-bottom.svg"
  28160. }
  28161. },
  28162. footTop: {
  28163. height: math.unit(0.5, "meter"),
  28164. name: "Foot (Top)",
  28165. image: {
  28166. source: "./media/characters/lawrence/foot-top.svg"
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(2.5, "meters"),
  28174. default: true
  28175. },
  28176. {
  28177. name: "Macro",
  28178. height: math.unit(95, "meters")
  28179. },
  28180. {
  28181. name: "Megamacro",
  28182. height: math.unit(150, "km")
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28188. {
  28189. front: {
  28190. height: math.unit(4.2, "meters"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/sydney/front.svg",
  28194. extra: 1323 / 1277,
  28195. bottom: 111 / 1434
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(4.2, "meters"),
  28203. default: true
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28209. {
  28210. back: {
  28211. height: math.unit(201, "feet"),
  28212. name: "Back",
  28213. image: {
  28214. source: "./media/characters/jessica/back.svg",
  28215. extra: 273 / 259,
  28216. bottom: 7 / 280
  28217. }
  28218. },
  28219. },
  28220. [
  28221. {
  28222. name: "Normal",
  28223. height: math.unit(201, "feet"),
  28224. default: true
  28225. },
  28226. {
  28227. name: "Megamacro",
  28228. height: math.unit(8, "miles")
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28234. {
  28235. side: {
  28236. height: math.unit(320, "cm"),
  28237. name: "Side",
  28238. image: {
  28239. source: "./media/characters/victoria/side.svg",
  28240. extra: 778 / 346,
  28241. bottom: 56 / 834
  28242. }
  28243. },
  28244. maw: {
  28245. height: math.unit(5.9, "feet"),
  28246. name: "Maw",
  28247. image: {
  28248. source: "./media/characters/victoria/maw.svg"
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(320, "cm"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28262. {
  28263. front: {
  28264. height: math.unit(5 + 6 / 12, "feet"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/cat/front.svg",
  28268. extra: 1374 / 1257,
  28269. bottom: 59 / 1433
  28270. }
  28271. },
  28272. back: {
  28273. height: math.unit(5 + 6 / 12, "feet"),
  28274. name: "Back",
  28275. image: {
  28276. source: "./media/characters/cat/back.svg",
  28277. extra: 1337 / 1226,
  28278. bottom: 34 / 1371
  28279. }
  28280. },
  28281. taur: {
  28282. height: math.unit(7, "feet"),
  28283. name: "Taur",
  28284. image: {
  28285. source: "./media/characters/cat/taur.svg",
  28286. extra: 1345 / 1231,
  28287. bottom: 66 / 1411
  28288. }
  28289. },
  28290. lucario: {
  28291. height: math.unit(4, "feet"),
  28292. name: "Lucario",
  28293. image: {
  28294. source: "./media/characters/cat/lucario.svg",
  28295. extra: 1470 / 1318,
  28296. bottom: 65 / 1535
  28297. }
  28298. },
  28299. megaLucario: {
  28300. height: math.unit(4, "feet"),
  28301. name: "Mega Lucario",
  28302. image: {
  28303. source: "./media/characters/cat/mega-lucario.svg",
  28304. extra: 1515 / 1319,
  28305. bottom: 63 / 1578
  28306. }
  28307. },
  28308. nickit: {
  28309. height: math.unit(2, "feet"),
  28310. name: "Nickit",
  28311. image: {
  28312. source: "./media/characters/cat/nickit.svg",
  28313. extra: 1980 / 1585,
  28314. bottom: 102 / 2082
  28315. }
  28316. },
  28317. lopunnyFront: {
  28318. height: math.unit(5, "feet"),
  28319. name: "Lopunny (Front)",
  28320. image: {
  28321. source: "./media/characters/cat/lopunny-front.svg",
  28322. extra: 1782 / 1469,
  28323. bottom: 38 / 1820
  28324. }
  28325. },
  28326. lopunnyBack: {
  28327. height: math.unit(5, "feet"),
  28328. name: "Lopunny (Back)",
  28329. image: {
  28330. source: "./media/characters/cat/lopunny-back.svg",
  28331. extra: 1660 / 1490,
  28332. bottom: 25 / 1685
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Really small",
  28339. height: math.unit(1, "nm")
  28340. },
  28341. {
  28342. name: "Micro",
  28343. height: math.unit(5, "inches")
  28344. },
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(5 + 6 / 12, "feet"),
  28348. default: true
  28349. },
  28350. {
  28351. name: "Macro",
  28352. height: math.unit(50, "feet")
  28353. },
  28354. {
  28355. name: "Macro+",
  28356. height: math.unit(150, "feet")
  28357. },
  28358. {
  28359. name: "Megamacro",
  28360. height: math.unit(100, "miles")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(63.4, "meters"),
  28369. weight: math.unit(3.28349e+6, "kilograms"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/kirina-violet/front.svg",
  28373. extra: 2812 / 2725,
  28374. bottom: 0 / 2812
  28375. }
  28376. },
  28377. back: {
  28378. height: math.unit(63.4, "meters"),
  28379. weight: math.unit(3.28349e+6, "kilograms"),
  28380. name: "Back",
  28381. image: {
  28382. source: "./media/characters/kirina-violet/back.svg",
  28383. extra: 2812 / 2725,
  28384. bottom: 0 / 2812
  28385. }
  28386. },
  28387. mouth: {
  28388. height: math.unit(4.35, "meters"),
  28389. name: "Mouth",
  28390. image: {
  28391. source: "./media/characters/kirina-violet/mouth.svg"
  28392. }
  28393. },
  28394. paw: {
  28395. height: math.unit(5.6, "meters"),
  28396. name: "Paw",
  28397. image: {
  28398. source: "./media/characters/kirina-violet/paw.svg"
  28399. }
  28400. },
  28401. tail: {
  28402. height: math.unit(18, "meters"),
  28403. name: "Tail",
  28404. image: {
  28405. source: "./media/characters/kirina-violet/tail.svg"
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Macro",
  28412. height: math.unit(63.4, "meters"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28419. {
  28420. front: {
  28421. height: math.unit(75, "feet"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/cat-gigachu/front.svg",
  28425. extra: 1239/1027,
  28426. bottom: 32/1271
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(75, "feet"),
  28431. name: "Back",
  28432. image: {
  28433. source: "./media/characters/cat-gigachu/back.svg",
  28434. extra: 1229/1030,
  28435. bottom: 9/1238
  28436. }
  28437. },
  28438. },
  28439. [
  28440. {
  28441. name: "Dynamax",
  28442. height: math.unit(75, "feet"),
  28443. default: true
  28444. },
  28445. ]
  28446. ))
  28447. characterMakers.push(() => makeCharacter(
  28448. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28449. {
  28450. front: {
  28451. height: math.unit(6, "feet"),
  28452. weight: math.unit(150, "lb"),
  28453. name: "Front",
  28454. image: {
  28455. source: "./media/characters/sfaiyan/front.svg",
  28456. extra: 999 / 978,
  28457. bottom: 5 / 1004
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(1.82, "meters")
  28465. },
  28466. {
  28467. name: "Giant",
  28468. height: math.unit(2.27, "km"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(179, "cm"),
  28478. weight: math.unit(100, "kg"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/raunehkeli/front.svg",
  28482. extra: 1934 / 1926,
  28483. bottom: 0 / 1934
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(179, "cm")
  28491. },
  28492. {
  28493. name: "Maximum",
  28494. height: math.unit(575, "meters"),
  28495. default: true
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28501. {
  28502. front: {
  28503. height: math.unit(6, "feet"),
  28504. weight: math.unit(150, "lb"),
  28505. name: "Front",
  28506. image: {
  28507. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28508. extra: 2625 / 2518,
  28509. bottom: 60 / 2685
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(6 + 2 / 12, "feet")
  28517. },
  28518. {
  28519. name: "Macro",
  28520. height: math.unit(1180, "feet"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(5 + 6 / 12, "feet"),
  28530. weight: math.unit(108, "lb"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/lilith-zott/front.svg",
  28534. extra: 2510 / 2238,
  28535. bottom: 100 / 2610
  28536. }
  28537. },
  28538. frontDressed: {
  28539. height: math.unit(5 + 6 / 12, "feet"),
  28540. weight: math.unit(108, "lb"),
  28541. name: "Front (Dressed)",
  28542. image: {
  28543. source: "./media/characters/lilith-zott/front-dressed.svg",
  28544. extra: 2510 / 2238,
  28545. bottom: 100 / 2610
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Normal",
  28552. height: math.unit(5 + 6 / 12, "feet")
  28553. },
  28554. {
  28555. name: "Macro",
  28556. height: math.unit(1030, "feet"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(6, "feet"),
  28566. weight: math.unit(150, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28570. extra: 2567 / 2435,
  28571. bottom: 39 / 2606
  28572. }
  28573. },
  28574. frontSuper: {
  28575. height: math.unit(6, "feet"),
  28576. name: "Front (Super)",
  28577. image: {
  28578. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28579. extra: 2567 / 2435,
  28580. bottom: 39 / 2606
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Normal",
  28587. height: math.unit(5 + 10 / 12, "feet")
  28588. },
  28589. {
  28590. name: "Macro",
  28591. height: math.unit(1100, "feet"),
  28592. default: true
  28593. },
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28598. {
  28599. front: {
  28600. height: math.unit(100, "miles"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/sona/front.svg",
  28604. extra: 2433 / 2201,
  28605. bottom: 53 / 2486
  28606. }
  28607. },
  28608. foot: {
  28609. height: math.unit(16.1, "miles"),
  28610. name: "Foot",
  28611. image: {
  28612. source: "./media/characters/sona/foot.svg"
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(100, "miles"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(6, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/bailey/front.svg",
  28633. extra: 1778 / 1724,
  28634. bottom: 30 / 1808
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Micro",
  28641. height: math.unit(4, "inches")
  28642. },
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(5 + 5 / 12, "feet"),
  28646. default: true
  28647. },
  28648. {
  28649. name: "Macro",
  28650. height: math.unit(250, "feet")
  28651. },
  28652. {
  28653. name: "Megamacro",
  28654. height: math.unit(100, "miles")
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(5 + 2 / 12, "feet"),
  28663. weight: math.unit(120, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/snaps/front.svg",
  28667. extra: 2370 / 2177,
  28668. bottom: 48 / 2418
  28669. }
  28670. },
  28671. back: {
  28672. height: math.unit(5 + 2 / 12, "feet"),
  28673. weight: math.unit(120, "lb"),
  28674. name: "Back",
  28675. image: {
  28676. source: "./media/characters/snaps/back.svg",
  28677. extra: 2408 / 2258,
  28678. bottom: 15 / 2423
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Micro",
  28685. height: math.unit(9, "inches")
  28686. },
  28687. {
  28688. name: "Normal",
  28689. height: math.unit(5 + 2 / 12, "feet"),
  28690. default: true
  28691. },
  28692. {
  28693. name: "Mini Macro",
  28694. height: math.unit(10, "feet")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(1.8, "meters"),
  28703. weight: math.unit(85, "kg"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/azteck/front.svg",
  28707. extra: 2815 / 2625,
  28708. bottom: 89 / 2904
  28709. }
  28710. },
  28711. back: {
  28712. height: math.unit(1.8, "meters"),
  28713. weight: math.unit(85, "kg"),
  28714. name: "Back",
  28715. image: {
  28716. source: "./media/characters/azteck/back.svg",
  28717. extra: 2856 / 2648,
  28718. bottom: 85 / 2941
  28719. }
  28720. },
  28721. frontDressed: {
  28722. height: math.unit(1.8, "meters"),
  28723. weight: math.unit(85, "kg"),
  28724. name: "Front (Dressed)",
  28725. image: {
  28726. source: "./media/characters/azteck/front-dressed.svg",
  28727. extra: 2147 / 2003,
  28728. bottom: 68 / 2215
  28729. }
  28730. },
  28731. head: {
  28732. height: math.unit(0.47, "meters"),
  28733. weight: math.unit(85, "kg"),
  28734. name: "Head",
  28735. image: {
  28736. source: "./media/characters/azteck/head.svg"
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Bite sized",
  28743. height: math.unit(16, "cm")
  28744. },
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(1.8, "meters"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(6, "feet"),
  28757. weight: math.unit(150, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/pidge/front.svg",
  28761. extra: 620 / 588,
  28762. bottom: 9 / 629
  28763. }
  28764. },
  28765. back: {
  28766. height: math.unit(6, "feet"),
  28767. weight: math.unit(150, "lb"),
  28768. name: "Back",
  28769. image: {
  28770. source: "./media/characters/pidge/back.svg",
  28771. extra: 620 / 588,
  28772. bottom: 9 / 629
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Macro",
  28779. height: math.unit(1, "mile"),
  28780. default: true
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(6, "feet"),
  28789. weight: math.unit(150, "lb"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/en/front.svg",
  28793. extra: 1697 / 1563,
  28794. bottom: 103 / 1800
  28795. }
  28796. },
  28797. back: {
  28798. height: math.unit(6, "feet"),
  28799. weight: math.unit(150, "lb"),
  28800. name: "Back",
  28801. image: {
  28802. source: "./media/characters/en/back.svg",
  28803. extra: 1700 / 1570,
  28804. bottom: 51 / 1751
  28805. }
  28806. },
  28807. frontDressed: {
  28808. height: math.unit(6, "feet"),
  28809. weight: math.unit(150, "lb"),
  28810. name: "Front (Dressed)",
  28811. image: {
  28812. source: "./media/characters/en/front-dressed.svg",
  28813. extra: 1697 / 1563,
  28814. bottom: 103 / 1800
  28815. }
  28816. },
  28817. backDressed: {
  28818. height: math.unit(6, "feet"),
  28819. weight: math.unit(150, "lb"),
  28820. name: "Back (Dressed)",
  28821. image: {
  28822. source: "./media/characters/en/back-dressed.svg",
  28823. extra: 1700 / 1570,
  28824. bottom: 51 / 1751
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Macro",
  28831. height: math.unit(210, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(6, "feet"),
  28841. weight: math.unit(150, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/haze-orris/front.svg",
  28845. extra: 3975 / 3525,
  28846. bottom: 137 / 4112
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Micro",
  28853. height: math.unit(150, "mm"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Casselene Yaro", species: ["fox"], 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/casselene-yaro/front.svg",
  28867. extra: 4721 / 4541,
  28868. bottom: 82 / 4803
  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/casselene-yaro/back.svg",
  28877. extra: 4569 / 4377,
  28878. bottom: 69 / 4638
  28879. }
  28880. },
  28881. frontDressed: {
  28882. height: math.unit(6, "feet"),
  28883. weight: math.unit(150, "lb"),
  28884. name: "Front-dressed",
  28885. image: {
  28886. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28887. extra: 4721 / 4541,
  28888. bottom: 82 / 4803
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Macro",
  28895. height: math.unit(190, "feet"),
  28896. default: true
  28897. },
  28898. ]
  28899. ))
  28900. characterMakers.push(() => makeCharacter(
  28901. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28902. {
  28903. front: {
  28904. height: math.unit(6, "feet"),
  28905. weight: math.unit(150, "lb"),
  28906. name: "Front",
  28907. image: {
  28908. source: "./media/characters/myra-rue-delore/front.svg",
  28909. extra: 1340 / 1308,
  28910. bottom: 67 / 1407
  28911. }
  28912. },
  28913. back: {
  28914. height: math.unit(6, "feet"),
  28915. weight: math.unit(150, "lb"),
  28916. name: "Back",
  28917. image: {
  28918. source: "./media/characters/myra-rue-delore/back.svg",
  28919. extra: 1341 / 1310,
  28920. bottom: 40 / 1381
  28921. }
  28922. },
  28923. frontDressed: {
  28924. height: math.unit(6, "feet"),
  28925. weight: math.unit(150, "lb"),
  28926. name: "Front (Dressed)",
  28927. image: {
  28928. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28929. extra: 1340 / 1308,
  28930. bottom: 67 / 1407
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Macro",
  28937. height: math.unit(150, "feet"),
  28938. default: true
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(10, "feet"),
  28947. weight: math.unit(15015, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/fem!plat/front.svg",
  28951. extra: 2799 / 2604,
  28952. bottom: 149 / 2948
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Normal",
  28959. height: math.unit(10, "feet"),
  28960. default: true
  28961. },
  28962. {
  28963. name: "Macro",
  28964. height: math.unit(100, "feet")
  28965. },
  28966. {
  28967. name: "Megamacro",
  28968. height: math.unit(1000, "feet")
  28969. },
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(15 + 5 / 12, "feet"),
  28977. weight: math.unit(4600, "lb"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/neapolitan-ananassa/front.svg",
  28981. extra: 2903 / 2736,
  28982. bottom: 0 / 2903
  28983. }
  28984. },
  28985. side: {
  28986. height: math.unit(15 + 5 / 12, "feet"),
  28987. weight: math.unit(4600, "lb"),
  28988. name: "Side",
  28989. image: {
  28990. source: "./media/characters/neapolitan-ananassa/side.svg",
  28991. extra: 2925 / 2719,
  28992. bottom: 0 / 2925
  28993. }
  28994. },
  28995. back: {
  28996. height: math.unit(15 + 5 / 12, "feet"),
  28997. weight: math.unit(4600, "lb"),
  28998. name: "Back",
  28999. image: {
  29000. source: "./media/characters/neapolitan-ananassa/back.svg",
  29001. extra: 2903 / 2736,
  29002. bottom: 0 / 2903
  29003. }
  29004. },
  29005. },
  29006. [
  29007. {
  29008. name: "Normal",
  29009. height: math.unit(15 + 5 / 12, "feet"),
  29010. default: true
  29011. },
  29012. {
  29013. name: "Post-Millenium",
  29014. height: math.unit(35 + 5 / 12, "feet")
  29015. },
  29016. {
  29017. name: "Post-Era",
  29018. height: math.unit(450 + 5 / 12, "feet")
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(300, "meters"),
  29027. weight: math.unit(125000, "tonnes"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/pazuzu/front.svg",
  29031. extra: 877 / 794,
  29032. bottom: 47 / 924
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Macro",
  29039. height: math.unit(300, "meters"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29046. {
  29047. side: {
  29048. height: math.unit(10 + 7 / 12, "feet"),
  29049. weight: math.unit(2.5, "tons"),
  29050. name: "Side",
  29051. image: {
  29052. source: "./media/characters/aasha/side.svg",
  29053. extra: 1345 / 1245,
  29054. bottom: 111 / 1456
  29055. }
  29056. },
  29057. back: {
  29058. height: math.unit(10 + 7 / 12, "feet"),
  29059. weight: math.unit(2.5, "tons"),
  29060. name: "Back",
  29061. image: {
  29062. source: "./media/characters/aasha/back.svg",
  29063. extra: 1133 / 1057,
  29064. bottom: 257 / 1390
  29065. }
  29066. },
  29067. },
  29068. [
  29069. {
  29070. name: "Normal",
  29071. height: math.unit(10 + 7 / 12, "feet"),
  29072. default: true
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(6 + 3 / 12, "feet"),
  29081. name: "Front",
  29082. image: {
  29083. source: "./media/characters/nevan/front.svg",
  29084. extra: 704 / 704,
  29085. bottom: 28 / 732
  29086. }
  29087. },
  29088. back: {
  29089. height: math.unit(6 + 3 / 12, "feet"),
  29090. name: "Back",
  29091. image: {
  29092. source: "./media/characters/nevan/back.svg",
  29093. extra: 714 / 714,
  29094. bottom: 21 / 735
  29095. }
  29096. },
  29097. frontFlaccid: {
  29098. height: math.unit(6 + 3 / 12, "feet"),
  29099. name: "Front (Flaccid)",
  29100. image: {
  29101. source: "./media/characters/nevan/front-flaccid.svg",
  29102. extra: 704 / 704,
  29103. bottom: 28 / 732
  29104. }
  29105. },
  29106. frontErect: {
  29107. height: math.unit(6 + 3 / 12, "feet"),
  29108. name: "Front (Erect)",
  29109. image: {
  29110. source: "./media/characters/nevan/front-erect.svg",
  29111. extra: 704 / 704,
  29112. bottom: 28 / 732
  29113. }
  29114. },
  29115. backFlaccid: {
  29116. height: math.unit(6 + 3 / 12, "feet"),
  29117. name: "Back (Flaccid)",
  29118. image: {
  29119. source: "./media/characters/nevan/back-flaccid.svg",
  29120. extra: 714 / 714,
  29121. bottom: 21 / 735
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(6 + 3 / 12, "feet"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(4, "feet"),
  29138. name: "Front",
  29139. image: {
  29140. source: "./media/characters/arhan/front.svg",
  29141. extra: 3368 / 3133,
  29142. bottom: 0 / 3368
  29143. }
  29144. },
  29145. side: {
  29146. height: math.unit(4, "feet"),
  29147. name: "Side",
  29148. image: {
  29149. source: "./media/characters/arhan/side.svg",
  29150. extra: 3347 / 3105,
  29151. bottom: 0 / 3347
  29152. }
  29153. },
  29154. tongue: {
  29155. height: math.unit(1.42, "feet"),
  29156. name: "Tongue",
  29157. image: {
  29158. source: "./media/characters/arhan/tongue.svg"
  29159. }
  29160. },
  29161. head: {
  29162. height: math.unit(0.85, "feet"),
  29163. name: "Head",
  29164. image: {
  29165. source: "./media/characters/arhan/head.svg"
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(4, "feet"),
  29173. default: true
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29179. {
  29180. front: {
  29181. height: math.unit(5 + 7.5 / 12, "feet"),
  29182. weight: math.unit(120, "lb"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/digi-duncan/front.svg",
  29186. extra: 330 / 326,
  29187. bottom: 16 / 346
  29188. }
  29189. },
  29190. side: {
  29191. height: math.unit(5 + 7.5 / 12, "feet"),
  29192. weight: math.unit(120, "lb"),
  29193. name: "Side",
  29194. image: {
  29195. source: "./media/characters/digi-duncan/side.svg",
  29196. extra: 341 / 337,
  29197. bottom: 1 / 342
  29198. }
  29199. },
  29200. back: {
  29201. height: math.unit(5 + 7.5 / 12, "feet"),
  29202. weight: math.unit(120, "lb"),
  29203. name: "Back",
  29204. image: {
  29205. source: "./media/characters/digi-duncan/back.svg",
  29206. extra: 330 / 326,
  29207. bottom: 12 / 342
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Speck",
  29214. height: math.unit(0.25, "mm")
  29215. },
  29216. {
  29217. name: "Micro",
  29218. height: math.unit(5, "mm")
  29219. },
  29220. {
  29221. name: "Tiny",
  29222. height: math.unit(0.5, "inches"),
  29223. default: true
  29224. },
  29225. {
  29226. name: "Human",
  29227. height: math.unit(5 + 7.5 / 12, "feet")
  29228. },
  29229. {
  29230. name: "Minigiant",
  29231. height: math.unit(8 + 5.25, "feet")
  29232. },
  29233. {
  29234. name: "Giant",
  29235. height: math.unit(2000, "feet")
  29236. },
  29237. {
  29238. name: "Mega",
  29239. height: math.unit(371.1, "miles")
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(2, "meters"),
  29248. weight: math.unit(350, "kg"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29252. extra: 898 / 838,
  29253. bottom: 9 / 907
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Micro",
  29260. height: math.unit(8, "meters")
  29261. },
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(50, "meters"),
  29265. default: true
  29266. },
  29267. {
  29268. name: "Macro",
  29269. height: math.unit(500, "meters")
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(6 + 6 / 12, "feet"),
  29278. name: "Front",
  29279. image: {
  29280. source: "./media/characters/khardesh/front.svg",
  29281. extra: 888 / 797,
  29282. bottom: 25 / 913
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(6 + 6 / 12, "feet"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Normal+",
  29294. height: math.unit(4, "meters")
  29295. },
  29296. {
  29297. name: "Macro",
  29298. height: math.unit(50, "meters")
  29299. },
  29300. {
  29301. name: "Macro+",
  29302. height: math.unit(100, "meters")
  29303. },
  29304. {
  29305. name: "Megamacro",
  29306. height: math.unit(20, "km")
  29307. },
  29308. ]
  29309. ))
  29310. characterMakers.push(() => makeCharacter(
  29311. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29312. {
  29313. front: {
  29314. height: math.unit(6, "feet"),
  29315. weight: math.unit(150, "lb"),
  29316. name: "Front",
  29317. image: {
  29318. source: "./media/characters/kosho/front.svg",
  29319. extra: 1847 / 1847,
  29320. bottom: 86 / 1933
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Second-stage micro",
  29327. height: math.unit(0.5, "inches")
  29328. },
  29329. {
  29330. name: "First-stage micro",
  29331. height: math.unit(6, "inches")
  29332. },
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(6, "feet"),
  29336. default: true
  29337. },
  29338. {
  29339. name: "First-stage macro",
  29340. height: math.unit(72, "feet")
  29341. },
  29342. {
  29343. name: "Second-stage macro",
  29344. height: math.unit(864, "feet")
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29350. {
  29351. normal: {
  29352. height: math.unit(4 + 6 / 12, "feet"),
  29353. name: "Normal",
  29354. image: {
  29355. source: "./media/characters/hydra/normal.svg",
  29356. extra: 2833 / 2634,
  29357. bottom: 68 / 2901
  29358. }
  29359. },
  29360. smol: {
  29361. height: math.unit(0.705, "inches"),
  29362. name: "Smol",
  29363. image: {
  29364. source: "./media/characters/hydra/smol.svg",
  29365. extra: 2715 / 2540,
  29366. bottom: 0 / 2715
  29367. }
  29368. },
  29369. },
  29370. [
  29371. {
  29372. name: "Normal",
  29373. height: math.unit(4 + 6 / 12, "feet"),
  29374. default: true
  29375. }
  29376. ]
  29377. ))
  29378. characterMakers.push(() => makeCharacter(
  29379. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29380. {
  29381. front: {
  29382. height: math.unit(0.6, "cm"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/daz/front.svg",
  29386. extra: 1682 / 1164,
  29387. bottom: 42 / 1724
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Normal",
  29394. height: math.unit(0.6, "cm"),
  29395. default: true
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29401. {
  29402. front: {
  29403. height: math.unit(6, "feet"),
  29404. weight: math.unit(235, "lb"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/theo-pangolin/front.svg",
  29408. extra: 1996 / 1969,
  29409. bottom: 115 / 2111
  29410. }
  29411. },
  29412. back: {
  29413. height: math.unit(6, "feet"),
  29414. weight: math.unit(235, "lb"),
  29415. name: "Back",
  29416. image: {
  29417. source: "./media/characters/theo-pangolin/back.svg",
  29418. extra: 1979 / 1979,
  29419. bottom: 40 / 2019
  29420. }
  29421. },
  29422. feral: {
  29423. height: math.unit(2, "feet"),
  29424. weight: math.unit(30, "lb"),
  29425. name: "Feral",
  29426. image: {
  29427. source: "./media/characters/theo-pangolin/feral.svg",
  29428. extra: 803 / 791,
  29429. bottom: 181 / 984
  29430. }
  29431. },
  29432. footFive: {
  29433. height: math.unit(1.43, "feet"),
  29434. name: "Foot (Five Toes)",
  29435. image: {
  29436. source: "./media/characters/theo-pangolin/foot-five.svg"
  29437. }
  29438. },
  29439. footFour: {
  29440. height: math.unit(1.43, "feet"),
  29441. name: "Foot (Four Toes)",
  29442. image: {
  29443. source: "./media/characters/theo-pangolin/foot-four.svg"
  29444. }
  29445. },
  29446. handFour: {
  29447. height: math.unit(0.81, "feet"),
  29448. name: "Hand (Four Fingers)",
  29449. image: {
  29450. source: "./media/characters/theo-pangolin/hand-four.svg"
  29451. }
  29452. },
  29453. handThree: {
  29454. height: math.unit(0.81, "feet"),
  29455. name: "Hand (Three Fingers)",
  29456. image: {
  29457. source: "./media/characters/theo-pangolin/hand-three.svg"
  29458. }
  29459. },
  29460. headFront: {
  29461. height: math.unit(1.37, "feet"),
  29462. name: "Head (Front)",
  29463. image: {
  29464. source: "./media/characters/theo-pangolin/head-front.svg"
  29465. }
  29466. },
  29467. headSide: {
  29468. height: math.unit(1.43, "feet"),
  29469. name: "Head (Side)",
  29470. image: {
  29471. source: "./media/characters/theo-pangolin/head-side.svg"
  29472. }
  29473. },
  29474. tongue: {
  29475. height: math.unit(2.29, "feet"),
  29476. name: "Tongue",
  29477. image: {
  29478. source: "./media/characters/theo-pangolin/tongue.svg"
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(6, "feet")
  29486. },
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(400, "feet"),
  29490. default: true
  29491. },
  29492. ]
  29493. ))
  29494. characterMakers.push(() => makeCharacter(
  29495. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29496. {
  29497. front: {
  29498. height: math.unit(6, "inches"),
  29499. weight: math.unit(0.036, "kg"),
  29500. name: "Front",
  29501. image: {
  29502. source: "./media/characters/renée/front.svg",
  29503. extra: 900 / 886,
  29504. bottom: 8 / 908
  29505. }
  29506. },
  29507. },
  29508. [
  29509. {
  29510. name: "Nano",
  29511. height: math.unit(1, "nm")
  29512. },
  29513. {
  29514. name: "Micro",
  29515. height: math.unit(1, "mm")
  29516. },
  29517. {
  29518. name: "Normal",
  29519. height: math.unit(6, "inches")
  29520. },
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(2000, "feet"),
  29524. default: true
  29525. },
  29526. {
  29527. name: "Megamacro",
  29528. height: math.unit(2, "km")
  29529. },
  29530. {
  29531. name: "Gigamacro",
  29532. height: math.unit(2000, "km")
  29533. },
  29534. {
  29535. name: "Teramacro",
  29536. height: math.unit(250000, "km")
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(4, "meters"),
  29545. weight: math.unit(150, "kg"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/caledvwlch/front.svg",
  29549. extra: 1760 / 1551,
  29550. bottom: 28 / 1788
  29551. }
  29552. },
  29553. side: {
  29554. height: math.unit(4, "meters"),
  29555. weight: math.unit(150, "kg"),
  29556. name: "Side",
  29557. image: {
  29558. source: "./media/characters/caledvwlch/side.svg",
  29559. extra: 1605 / 1536,
  29560. bottom: 31 / 1636
  29561. }
  29562. },
  29563. back: {
  29564. height: math.unit(4, "meters"),
  29565. weight: math.unit(150, "kg"),
  29566. name: "Back",
  29567. image: {
  29568. source: "./media/characters/caledvwlch/back.svg",
  29569. extra: 1635 / 1565,
  29570. bottom: 27 / 1662
  29571. }
  29572. },
  29573. },
  29574. [
  29575. {
  29576. name: "\"Incognito\"",
  29577. height: math.unit(4, "meters")
  29578. },
  29579. {
  29580. name: "Small rampage",
  29581. height: math.unit(600, "meters")
  29582. },
  29583. {
  29584. name: "Mega",
  29585. height: math.unit(30, "km")
  29586. },
  29587. {
  29588. name: "Home-size",
  29589. height: math.unit(50, "km"),
  29590. default: true
  29591. },
  29592. {
  29593. name: "Giga",
  29594. height: math.unit(300, "km")
  29595. },
  29596. {
  29597. name: "Lounging",
  29598. height: math.unit(11000, "km")
  29599. },
  29600. {
  29601. name: "Planet snacking",
  29602. height: math.unit(2000000, "km")
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(215, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/sapphire-svell/front.svg",
  29615. extra: 495 / 455,
  29616. bottom: 20 / 515
  29617. }
  29618. },
  29619. back: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(216, "lb"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/sapphire-svell/back.svg",
  29625. extra: 497 / 477,
  29626. bottom: 7 / 504
  29627. }
  29628. },
  29629. maw: {
  29630. height: math.unit(1.57, "feet"),
  29631. name: "Maw",
  29632. image: {
  29633. source: "./media/characters/sapphire-svell/maw.svg"
  29634. }
  29635. },
  29636. foot: {
  29637. height: math.unit(1.07, "feet"),
  29638. name: "Foot",
  29639. image: {
  29640. source: "./media/characters/sapphire-svell/foot.svg"
  29641. }
  29642. },
  29643. toering: {
  29644. height: math.unit(1.7, "inch"),
  29645. name: "Toering",
  29646. image: {
  29647. source: "./media/characters/sapphire-svell/toering.svg"
  29648. }
  29649. },
  29650. },
  29651. [
  29652. {
  29653. name: "Normal",
  29654. height: math.unit(300, "feet"),
  29655. default: true
  29656. },
  29657. {
  29658. name: "Augmented",
  29659. height: math.unit(1250, "feet")
  29660. },
  29661. {
  29662. name: "Unleashed",
  29663. height: math.unit(3000, "feet")
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29669. {
  29670. side: {
  29671. height: math.unit(2 + 3 / 12, "feet"),
  29672. weight: math.unit(110, "lb"),
  29673. name: "Side",
  29674. image: {
  29675. source: "./media/characters/glitch-flux/side.svg",
  29676. extra: 997 / 805,
  29677. bottom: 20 / 1017
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(2 + 3 / 12, "feet"),
  29685. default: true
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(4, "meters"),
  29694. name: "Front",
  29695. image: {
  29696. source: "./media/characters/mid/front.svg",
  29697. extra: 507 / 476,
  29698. bottom: 17 / 524
  29699. }
  29700. },
  29701. back: {
  29702. height: math.unit(4, "meters"),
  29703. name: "Back",
  29704. image: {
  29705. source: "./media/characters/mid/back.svg",
  29706. extra: 519 / 487,
  29707. bottom: 7 / 526
  29708. }
  29709. },
  29710. stuck: {
  29711. height: math.unit(2.2, "meters"),
  29712. name: "Stuck",
  29713. image: {
  29714. source: "./media/characters/mid/stuck.svg",
  29715. extra: 1951 / 1869,
  29716. bottom: 88 / 2039
  29717. }
  29718. }
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(4, "meters"),
  29724. default: true
  29725. },
  29726. {
  29727. name: "Big",
  29728. height: math.unit(10, "meters")
  29729. },
  29730. {
  29731. name: "Macro",
  29732. height: math.unit(800, "meters")
  29733. },
  29734. {
  29735. name: "Megamacro",
  29736. height: math.unit(100, "km")
  29737. },
  29738. {
  29739. name: "Overgrown",
  29740. height: math.unit(1, "parsec")
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29746. {
  29747. front: {
  29748. height: math.unit(2.5, "meters"),
  29749. weight: math.unit(225, "kg"),
  29750. name: "Front",
  29751. image: {
  29752. source: "./media/characters/iris/front.svg",
  29753. extra: 3348 / 3251,
  29754. bottom: 205 / 3553
  29755. }
  29756. },
  29757. maw: {
  29758. height: math.unit(0.56, "meter"),
  29759. name: "Maw",
  29760. image: {
  29761. source: "./media/characters/iris/maw.svg"
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Mewter cat",
  29768. height: math.unit(1.2, "meters")
  29769. },
  29770. {
  29771. name: "Minimacro",
  29772. height: math.unit(2.5, "meters"),
  29773. default: true
  29774. },
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(180, "meters")
  29778. },
  29779. {
  29780. name: "Megamacro",
  29781. height: math.unit(2746, "meters")
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(6, "feet"),
  29790. weight: math.unit(135, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/axel/front.svg",
  29794. extra: 908 / 908,
  29795. bottom: 58 / 966
  29796. }
  29797. },
  29798. side: {
  29799. height: math.unit(6, "feet"),
  29800. weight: math.unit(135, "lb"),
  29801. name: "Side",
  29802. image: {
  29803. source: "./media/characters/axel/side.svg",
  29804. extra: 958 / 958,
  29805. bottom: 11 / 969
  29806. }
  29807. },
  29808. back: {
  29809. height: math.unit(6, "feet"),
  29810. weight: math.unit(135, "lb"),
  29811. name: "Back",
  29812. image: {
  29813. source: "./media/characters/axel/back.svg",
  29814. extra: 887 / 887,
  29815. bottom: 34 / 921
  29816. }
  29817. },
  29818. head: {
  29819. height: math.unit(1.07, "feet"),
  29820. name: "Head",
  29821. image: {
  29822. source: "./media/characters/axel/head.svg"
  29823. }
  29824. },
  29825. beak: {
  29826. height: math.unit(1.4, "feet"),
  29827. name: "Beak",
  29828. image: {
  29829. source: "./media/characters/axel/beak.svg"
  29830. }
  29831. },
  29832. beakSide: {
  29833. height: math.unit(1.4, "feet"),
  29834. name: "Beak Side",
  29835. image: {
  29836. source: "./media/characters/axel/beak-side.svg"
  29837. }
  29838. },
  29839. sheath: {
  29840. height: math.unit(0.5, "feet"),
  29841. name: "Sheath",
  29842. image: {
  29843. source: "./media/characters/axel/sheath.svg"
  29844. }
  29845. },
  29846. dick: {
  29847. height: math.unit(0.98, "feet"),
  29848. name: "Dick",
  29849. image: {
  29850. source: "./media/characters/axel/dick.svg"
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Macro",
  29857. height: math.unit(68, "meters"),
  29858. default: true
  29859. },
  29860. ]
  29861. ))
  29862. characterMakers.push(() => makeCharacter(
  29863. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29864. {
  29865. front: {
  29866. height: math.unit(3.5, "meters"),
  29867. weight: math.unit(1200, "kg"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/joanna/front.svg",
  29871. extra: 1596 / 1488,
  29872. bottom: 29 / 1625
  29873. }
  29874. },
  29875. back: {
  29876. height: math.unit(3.5, "meters"),
  29877. weight: math.unit(1200, "kg"),
  29878. name: "Back",
  29879. image: {
  29880. source: "./media/characters/joanna/back.svg",
  29881. extra: 1594 / 1495,
  29882. bottom: 26 / 1620
  29883. }
  29884. },
  29885. frontShorts: {
  29886. height: math.unit(3.5, "meters"),
  29887. weight: math.unit(1200, "kg"),
  29888. name: "Front (Shorts)",
  29889. image: {
  29890. source: "./media/characters/joanna/front-shorts.svg",
  29891. extra: 1596 / 1488,
  29892. bottom: 29 / 1625
  29893. }
  29894. },
  29895. frontBiker: {
  29896. height: math.unit(3.5, "meters"),
  29897. weight: math.unit(1200, "kg"),
  29898. name: "Front (Biker)",
  29899. image: {
  29900. source: "./media/characters/joanna/front-biker.svg",
  29901. extra: 1596 / 1488,
  29902. bottom: 29 / 1625
  29903. }
  29904. },
  29905. backBiker: {
  29906. height: math.unit(3.5, "meters"),
  29907. weight: math.unit(1200, "kg"),
  29908. name: "Back (Biker)",
  29909. image: {
  29910. source: "./media/characters/joanna/back-biker.svg",
  29911. extra: 1594 / 1495,
  29912. bottom: 88 / 1682
  29913. }
  29914. },
  29915. bikeLeft: {
  29916. height: math.unit(2.4, "meters"),
  29917. weight: math.unit(1600, "kg"),
  29918. name: "Bike (Left)",
  29919. image: {
  29920. source: "./media/characters/joanna/bike-left.svg",
  29921. extra: 720 / 720,
  29922. bottom: 8 / 728
  29923. }
  29924. },
  29925. bikeRight: {
  29926. height: math.unit(2.4, "meters"),
  29927. weight: math.unit(1600, "kg"),
  29928. name: "Bike (Right)",
  29929. image: {
  29930. source: "./media/characters/joanna/bike-right.svg",
  29931. extra: 720 / 720,
  29932. bottom: 8 / 728
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Incognito",
  29939. height: math.unit(3.5, "meters")
  29940. },
  29941. {
  29942. name: "Casual Big",
  29943. height: math.unit(200, "meters")
  29944. },
  29945. {
  29946. name: "Macro",
  29947. height: math.unit(600, "meters")
  29948. },
  29949. {
  29950. name: "Original",
  29951. height: math.unit(20, "km"),
  29952. default: true
  29953. },
  29954. {
  29955. name: "Giga",
  29956. height: math.unit(400, "km")
  29957. },
  29958. {
  29959. name: "Lounging",
  29960. height: math.unit(1500, "km")
  29961. },
  29962. {
  29963. name: "Planetary",
  29964. height: math.unit(200000, "km")
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(6, "feet"),
  29973. weight: math.unit(150, "lb"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/hugo-sigil/front.svg",
  29977. extra: 522 / 500,
  29978. bottom: 2 / 524
  29979. }
  29980. },
  29981. back: {
  29982. height: math.unit(6, "feet"),
  29983. weight: math.unit(150, "lb"),
  29984. name: "Back",
  29985. image: {
  29986. source: "./media/characters/hugo-sigil/back.svg",
  29987. extra: 519 / 495,
  29988. bottom: 5 / 524
  29989. }
  29990. },
  29991. maw: {
  29992. height: math.unit(1.4, "feet"),
  29993. weight: math.unit(150, "lb"),
  29994. name: "Maw",
  29995. image: {
  29996. source: "./media/characters/hugo-sigil/maw.svg"
  29997. }
  29998. },
  29999. feet: {
  30000. height: math.unit(1.56, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Feet",
  30003. image: {
  30004. source: "./media/characters/hugo-sigil/feet.svg",
  30005. extra: 177 / 177,
  30006. bottom: 12 / 189
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6, "feet")
  30014. },
  30015. {
  30016. name: "Macro",
  30017. height: math.unit(200, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(6, "feet"),
  30027. weight: math.unit(150, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/peri/front.svg",
  30031. extra: 2354 / 2233,
  30032. bottom: 49 / 2403
  30033. }
  30034. },
  30035. },
  30036. [
  30037. {
  30038. name: "Really Small",
  30039. height: math.unit(1, "nm")
  30040. },
  30041. {
  30042. name: "Micro",
  30043. height: math.unit(4, "inches")
  30044. },
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(7, "inches"),
  30048. default: true
  30049. },
  30050. {
  30051. name: "Macro",
  30052. height: math.unit(400, "feet")
  30053. },
  30054. {
  30055. name: "Megamacro",
  30056. height: math.unit(100, "miles")
  30057. },
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30062. {
  30063. frontSlim: {
  30064. height: math.unit(7, "feet"),
  30065. name: "Front (Slim)",
  30066. image: {
  30067. source: "./media/characters/issilora/front-slim.svg",
  30068. extra: 529 / 449,
  30069. bottom: 53 / 582
  30070. }
  30071. },
  30072. sideSlim: {
  30073. height: math.unit(7, "feet"),
  30074. name: "Side (Slim)",
  30075. image: {
  30076. source: "./media/characters/issilora/side-slim.svg",
  30077. extra: 570 / 480,
  30078. bottom: 30 / 600
  30079. }
  30080. },
  30081. backSlim: {
  30082. height: math.unit(7, "feet"),
  30083. name: "Back (Slim)",
  30084. image: {
  30085. source: "./media/characters/issilora/back-slim.svg",
  30086. extra: 537 / 455,
  30087. bottom: 46 / 583
  30088. }
  30089. },
  30090. frontBuff: {
  30091. height: math.unit(7, "feet"),
  30092. name: "Front (Buff)",
  30093. image: {
  30094. source: "./media/characters/issilora/front-buff.svg",
  30095. extra: 2310 / 2035,
  30096. bottom: 335 / 2645
  30097. }
  30098. },
  30099. head: {
  30100. height: math.unit(1.94, "feet"),
  30101. name: "Head",
  30102. image: {
  30103. source: "./media/characters/issilora/head.svg"
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Minimum",
  30110. height: math.unit(7, "feet")
  30111. },
  30112. {
  30113. name: "Comfortable",
  30114. height: math.unit(17, "feet")
  30115. },
  30116. {
  30117. name: "Fun Size",
  30118. height: math.unit(47, "feet")
  30119. },
  30120. {
  30121. name: "Natural Macro",
  30122. height: math.unit(137, "feet"),
  30123. default: true
  30124. },
  30125. {
  30126. name: "Maximum Kaiju",
  30127. height: math.unit(397, "feet")
  30128. },
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30133. {
  30134. front: {
  30135. height: math.unit(50 + 9/12, "feet"),
  30136. weight: math.unit(32.8, "tons"),
  30137. name: "Front",
  30138. image: {
  30139. source: "./media/characters/irb'iiritaahn/front.svg",
  30140. extra: 1878/1826,
  30141. bottom: 326/2204
  30142. }
  30143. },
  30144. back: {
  30145. height: math.unit(50 + 9/12, "feet"),
  30146. weight: math.unit(32.8, "tons"),
  30147. name: "Back",
  30148. image: {
  30149. source: "./media/characters/irb'iiritaahn/back.svg",
  30150. extra: 2052/2018,
  30151. bottom: 152/2204
  30152. }
  30153. },
  30154. head: {
  30155. height: math.unit(12.86, "feet"),
  30156. name: "Head",
  30157. image: {
  30158. source: "./media/characters/irb'iiritaahn/head.svg"
  30159. }
  30160. },
  30161. maw: {
  30162. height: math.unit(9.66, "feet"),
  30163. name: "Maw",
  30164. image: {
  30165. source: "./media/characters/irb'iiritaahn/maw.svg"
  30166. }
  30167. },
  30168. frontDick: {
  30169. height: math.unit(8.78461, "feet"),
  30170. name: "Front Dick",
  30171. image: {
  30172. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30173. }
  30174. },
  30175. rearDick: {
  30176. height: math.unit(8.78461, "feet"),
  30177. name: "Rear Dick",
  30178. image: {
  30179. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30180. }
  30181. },
  30182. rearDickUnfolded: {
  30183. height: math.unit(8.78, "feet"),
  30184. name: "Rear Dick (Unfolded)",
  30185. image: {
  30186. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30187. }
  30188. },
  30189. wings: {
  30190. height: math.unit(43, "feet"),
  30191. name: "Wings",
  30192. image: {
  30193. source: "./media/characters/irb'iiritaahn/wings.svg"
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Macro",
  30200. height: math.unit(50 + 9/12, "feet"),
  30201. default: true
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(205, "cm"),
  30210. weight: math.unit(102, "kg"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/irbisgreif/front.svg",
  30214. extra: 785/706,
  30215. bottom: 13/798
  30216. }
  30217. },
  30218. back: {
  30219. height: math.unit(205, "cm"),
  30220. weight: math.unit(102, "kg"),
  30221. name: "Back",
  30222. image: {
  30223. source: "./media/characters/irbisgreif/back.svg",
  30224. extra: 713/701,
  30225. bottom: 26/739
  30226. }
  30227. },
  30228. frontDressed: {
  30229. height: math.unit(216, "cm"),
  30230. weight: math.unit(102, "kg"),
  30231. name: "Front-dressed",
  30232. image: {
  30233. source: "./media/characters/irbisgreif/front-dressed.svg",
  30234. extra: 902/776,
  30235. bottom: 14/916
  30236. }
  30237. },
  30238. sideDressed: {
  30239. height: math.unit(195, "cm"),
  30240. weight: math.unit(102, "kg"),
  30241. name: "Side-dressed",
  30242. image: {
  30243. source: "./media/characters/irbisgreif/side-dressed.svg",
  30244. extra: 788/688,
  30245. bottom: 21/809
  30246. }
  30247. },
  30248. backDressed: {
  30249. height: math.unit(216, "cm"),
  30250. weight: math.unit(102, "kg"),
  30251. name: "Back-dressed",
  30252. image: {
  30253. source: "./media/characters/irbisgreif/back-dressed.svg",
  30254. extra: 901/783,
  30255. bottom: 10/911
  30256. }
  30257. },
  30258. dick: {
  30259. height: math.unit(0.49, "feet"),
  30260. name: "Dick",
  30261. image: {
  30262. source: "./media/characters/irbisgreif/dick.svg"
  30263. }
  30264. },
  30265. wingTop: {
  30266. height: math.unit(1.93 , "feet"),
  30267. name: "Wing-top",
  30268. image: {
  30269. source: "./media/characters/irbisgreif/wing-top.svg"
  30270. }
  30271. },
  30272. wingBottom: {
  30273. height: math.unit(1.93 , "feet"),
  30274. name: "Wing-bottom",
  30275. image: {
  30276. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(216, "cm"),
  30284. default: true
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(6, "feet"),
  30293. weight: math.unit(150, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/pride/front.svg",
  30297. extra: 1299/1230,
  30298. bottom: 18/1317
  30299. }
  30300. },
  30301. },
  30302. [
  30303. {
  30304. name: "Normal",
  30305. height: math.unit(7, "feet")
  30306. },
  30307. {
  30308. name: "Mini-macro",
  30309. height: math.unit(11, "feet")
  30310. },
  30311. {
  30312. name: "Macro",
  30313. height: math.unit(15, "meters"),
  30314. default: true
  30315. },
  30316. {
  30317. name: "Macro+",
  30318. height: math.unit(40, "meters")
  30319. },
  30320. ]
  30321. ))
  30322. characterMakers.push(() => makeCharacter(
  30323. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30324. {
  30325. front: {
  30326. height: math.unit(4 + 2 / 12, "feet"),
  30327. weight: math.unit(95, "lb"),
  30328. name: "Front",
  30329. image: {
  30330. source: "./media/characters/vaelophis-nyx/front.svg",
  30331. extra: 2532/2330,
  30332. bottom: 0/2532
  30333. }
  30334. },
  30335. back: {
  30336. height: math.unit(4 + 2 / 12, "feet"),
  30337. weight: math.unit(95, "lb"),
  30338. name: "Back",
  30339. image: {
  30340. source: "./media/characters/vaelophis-nyx/back.svg",
  30341. extra: 2484/2361,
  30342. bottom: 0/2484
  30343. }
  30344. },
  30345. feralSide: {
  30346. height: math.unit(2 + 1/12, "feet"),
  30347. weight: math.unit(20, "lb"),
  30348. name: "Feral (Side)",
  30349. image: {
  30350. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30351. extra: 1721/1581,
  30352. bottom: 70/1791
  30353. }
  30354. },
  30355. feralLazing: {
  30356. height: math.unit(1.08, "feet"),
  30357. weight: math.unit(20, "lb"),
  30358. name: "Feral (Lazing)",
  30359. image: {
  30360. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30361. extra: 822/822,
  30362. bottom: 248/1070
  30363. }
  30364. },
  30365. ear: {
  30366. height: math.unit(0.416, "feet"),
  30367. name: "Ear",
  30368. image: {
  30369. source: "./media/characters/vaelophis-nyx/ear.svg"
  30370. }
  30371. },
  30372. eye: {
  30373. height: math.unit(0.0748, "feet"),
  30374. name: "Eye",
  30375. image: {
  30376. source: "./media/characters/vaelophis-nyx/eye.svg"
  30377. }
  30378. },
  30379. mouth: {
  30380. height: math.unit(0.378, "feet"),
  30381. name: "Mouth",
  30382. image: {
  30383. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30384. }
  30385. },
  30386. spade: {
  30387. height: math.unit(0.55, "feet"),
  30388. name: "Spade",
  30389. image: {
  30390. source: "./media/characters/vaelophis-nyx/spade.svg"
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "Normal",
  30397. height: math.unit(4 + 2/12, "feet"),
  30398. default: true
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30404. {
  30405. front: {
  30406. height: math.unit(7, "feet"),
  30407. weight: math.unit(231, "lb"),
  30408. name: "Front",
  30409. image: {
  30410. source: "./media/characters/flux/front.svg",
  30411. extra: 919/871,
  30412. bottom: 0/919
  30413. }
  30414. },
  30415. back: {
  30416. height: math.unit(7, "feet"),
  30417. weight: math.unit(231, "lb"),
  30418. name: "Back",
  30419. image: {
  30420. source: "./media/characters/flux/back.svg",
  30421. extra: 1040/992,
  30422. bottom: 0/1040
  30423. }
  30424. },
  30425. frontDressed: {
  30426. height: math.unit(7, "feet"),
  30427. weight: math.unit(231, "lb"),
  30428. name: "Front (Dressed)",
  30429. image: {
  30430. source: "./media/characters/flux/front-dressed.svg",
  30431. extra: 919/871,
  30432. bottom: 0/919
  30433. }
  30434. },
  30435. feralSide: {
  30436. height: math.unit(5, "feet"),
  30437. weight: math.unit(150, "lb"),
  30438. name: "Feral (Side)",
  30439. image: {
  30440. source: "./media/characters/flux/feral-side.svg",
  30441. extra: 598/528,
  30442. bottom: 28/626
  30443. }
  30444. },
  30445. head: {
  30446. height: math.unit(1.585, "feet"),
  30447. name: "Head",
  30448. image: {
  30449. source: "./media/characters/flux/head.svg"
  30450. }
  30451. },
  30452. headSide: {
  30453. height: math.unit(1.74, "feet"),
  30454. name: "Head (Side)",
  30455. image: {
  30456. source: "./media/characters/flux/head-side.svg"
  30457. }
  30458. },
  30459. headSideFire: {
  30460. height: math.unit(1.76, "feet"),
  30461. name: "Head (Side, Fire)",
  30462. image: {
  30463. source: "./media/characters/flux/head-side-fire.svg"
  30464. }
  30465. },
  30466. },
  30467. [
  30468. {
  30469. name: "Normal",
  30470. height: math.unit(7, "feet"),
  30471. default: true
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(9, "feet"),
  30480. weight: math.unit(1012, "lb"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/ulfra-lupae/front.svg",
  30484. extra: 1083/1011,
  30485. bottom: 67/1150
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Micro",
  30492. height: math.unit(6, "inches")
  30493. },
  30494. {
  30495. name: "Socializing",
  30496. height: math.unit(6 + 5/12, "feet")
  30497. },
  30498. {
  30499. name: "Normal",
  30500. height: math.unit(9, "feet"),
  30501. default: true
  30502. },
  30503. {
  30504. name: "Macro",
  30505. height: math.unit(150, "feet")
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(5 + 2/12, "feet"),
  30514. weight: math.unit(120, "lb"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/timber/front.svg",
  30518. extra: 2814/2705,
  30519. bottom: 181/2995
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Normal",
  30526. height: math.unit(5 + 2/12, "feet"),
  30527. default: true
  30528. },
  30529. ]
  30530. ))
  30531. characterMakers.push(() => makeCharacter(
  30532. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30533. {
  30534. front: {
  30535. height: math.unit(5 + 7/12, "feet"),
  30536. weight: math.unit(220, "lb"),
  30537. name: "Front",
  30538. image: {
  30539. source: "./media/characters/nicki/front.svg",
  30540. extra: 453/419,
  30541. bottom: 7/460
  30542. }
  30543. },
  30544. frontAlt: {
  30545. height: math.unit(5 + 7/12, "feet"),
  30546. weight: math.unit(220, "lb"),
  30547. name: "Front-alt",
  30548. image: {
  30549. source: "./media/characters/nicki/front-alt.svg",
  30550. extra: 435/411,
  30551. bottom: 12/447
  30552. }
  30553. },
  30554. back: {
  30555. height: math.unit(5 + 7/12, "feet"),
  30556. weight: math.unit(220, "lb"),
  30557. name: "Back",
  30558. image: {
  30559. source: "./media/characters/nicki/back.svg",
  30560. extra: 440/413,
  30561. bottom: 19/459
  30562. }
  30563. },
  30564. taur: {
  30565. height: math.unit(7 + 6/12, "feet"),
  30566. weight: math.unit(700, "lb"),
  30567. name: "Taur",
  30568. image: {
  30569. source: "./media/characters/nicki/taur.svg",
  30570. extra: 975/773,
  30571. bottom: 0/975
  30572. }
  30573. },
  30574. frontNsfw: {
  30575. height: math.unit(5 + 7/12, "feet"),
  30576. weight: math.unit(220, "lb"),
  30577. name: "Front (NSFW)",
  30578. image: {
  30579. source: "./media/characters/nicki/front-nsfw.svg",
  30580. extra: 453/419,
  30581. bottom: 7/460
  30582. }
  30583. },
  30584. frontNsfwAlt: {
  30585. height: math.unit(5 + 7/12, "feet"),
  30586. weight: math.unit(220, "lb"),
  30587. name: "Front (Alt, NSFW)",
  30588. image: {
  30589. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30590. extra: 435/411,
  30591. bottom: 12/447
  30592. }
  30593. },
  30594. backNsfw: {
  30595. height: math.unit(5 + 7/12, "feet"),
  30596. weight: math.unit(220, "lb"),
  30597. name: "Back (NSFW)",
  30598. image: {
  30599. source: "./media/characters/nicki/back-nsfw.svg",
  30600. extra: 440/413,
  30601. bottom: 19/459
  30602. }
  30603. },
  30604. head: {
  30605. height: math.unit(2.1, "feet"),
  30606. name: "Head",
  30607. image: {
  30608. source: "./media/characters/nicki/head.svg"
  30609. }
  30610. },
  30611. paw: {
  30612. height: math.unit(1.88, "feet"),
  30613. name: "Paw",
  30614. image: {
  30615. source: "./media/characters/nicki/paw.svg"
  30616. }
  30617. },
  30618. },
  30619. [
  30620. {
  30621. name: "Normal",
  30622. height: math.unit(5 + 7/12, "feet"),
  30623. default: true
  30624. },
  30625. ]
  30626. ))
  30627. characterMakers.push(() => makeCharacter(
  30628. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30629. {
  30630. front: {
  30631. height: math.unit(7 + 10/12, "feet"),
  30632. weight: math.unit(3.5, "tons"),
  30633. name: "Front",
  30634. image: {
  30635. source: "./media/characters/lee/front.svg",
  30636. extra: 1773/1615,
  30637. bottom: 86/1859
  30638. }
  30639. },
  30640. hand: {
  30641. height: math.unit(1.78, "feet"),
  30642. name: "Hand",
  30643. image: {
  30644. source: "./media/characters/lee/hand.svg"
  30645. }
  30646. },
  30647. maw: {
  30648. height: math.unit(1.18, "feet"),
  30649. name: "Maw",
  30650. image: {
  30651. source: "./media/characters/lee/maw.svg"
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(7 + 10/12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30665. {
  30666. front: {
  30667. height: math.unit(9, "feet"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/guti/front.svg",
  30671. extra: 4551/4355,
  30672. bottom: 123/4674
  30673. }
  30674. },
  30675. tongue: {
  30676. height: math.unit(1, "feet"),
  30677. name: "Tongue",
  30678. image: {
  30679. source: "./media/characters/guti/tongue.svg"
  30680. }
  30681. },
  30682. paw: {
  30683. height: math.unit(1.18, "feet"),
  30684. name: "Paw",
  30685. image: {
  30686. source: "./media/characters/guti/paw.svg"
  30687. }
  30688. },
  30689. },
  30690. [
  30691. {
  30692. name: "Normal",
  30693. height: math.unit(9, "feet"),
  30694. default: true
  30695. },
  30696. ]
  30697. ))
  30698. characterMakers.push(() => makeCharacter(
  30699. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30700. {
  30701. side: {
  30702. height: math.unit(5, "meters"),
  30703. name: "Side",
  30704. image: {
  30705. source: "./media/characters/vesper/side.svg",
  30706. extra: 1605/1518,
  30707. bottom: 0/1605
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Small",
  30714. height: math.unit(5, "meters")
  30715. },
  30716. {
  30717. name: "Sage",
  30718. height: math.unit(100, "meters"),
  30719. default: true
  30720. },
  30721. {
  30722. name: "Fun Size",
  30723. height: math.unit(600, "meters")
  30724. },
  30725. {
  30726. name: "Goddess",
  30727. height: math.unit(20000, "km")
  30728. },
  30729. {
  30730. name: "Maximum",
  30731. height: math.unit(5, "galaxies")
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(6 + 3/12, "feet"),
  30740. weight: math.unit(190, "lb"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/gawain/front.svg",
  30744. extra: 2222/2139,
  30745. bottom: 90/2312
  30746. }
  30747. },
  30748. back: {
  30749. height: math.unit(6 + 3/12, "feet"),
  30750. weight: math.unit(190, "lb"),
  30751. name: "Back",
  30752. image: {
  30753. source: "./media/characters/gawain/back.svg",
  30754. extra: 2199/2111,
  30755. bottom: 73/2272
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Normal",
  30762. height: math.unit(6 + 3/12, "feet"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30769. {
  30770. side: {
  30771. height: math.unit(3.5, "meters"),
  30772. weight: math.unit(16000, "lb"),
  30773. name: "Side",
  30774. image: {
  30775. source: "./media/characters/dascalti/side.svg",
  30776. extra: 392/273,
  30777. bottom: 47/439
  30778. }
  30779. },
  30780. breath: {
  30781. height: math.unit(7.4, "feet"),
  30782. name: "Breath",
  30783. image: {
  30784. source: "./media/characters/dascalti/breath.svg"
  30785. }
  30786. },
  30787. fed: {
  30788. height: math.unit(3.6, "meters"),
  30789. weight: math.unit(16000, "lb"),
  30790. name: "Fed",
  30791. image: {
  30792. source: "./media/characters/dascalti/fed.svg",
  30793. extra: 1419/820,
  30794. bottom: 95/1514
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(3.5, "meters"),
  30802. default: true
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30808. {
  30809. front: {
  30810. height: math.unit(3 + 5/12, "feet"),
  30811. name: "Front",
  30812. image: {
  30813. source: "./media/characters/mauve/front.svg",
  30814. extra: 1126/1033,
  30815. bottom: 65/1191
  30816. }
  30817. },
  30818. side: {
  30819. height: math.unit(3 + 5/12, "feet"),
  30820. name: "Side",
  30821. image: {
  30822. source: "./media/characters/mauve/side.svg",
  30823. extra: 1089/1001,
  30824. bottom: 29/1118
  30825. }
  30826. },
  30827. back: {
  30828. height: math.unit(3 + 5/12, "feet"),
  30829. name: "Back",
  30830. image: {
  30831. source: "./media/characters/mauve/back.svg",
  30832. extra: 1173/1053,
  30833. bottom: 109/1282
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(3 + 5/12, "feet"),
  30841. default: true
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30847. {
  30848. front: {
  30849. height: math.unit(6 + 3/12, "feet"),
  30850. weight: math.unit(430, "lb"),
  30851. name: "Front",
  30852. image: {
  30853. source: "./media/characters/carlos/front.svg",
  30854. extra: 1964/1913,
  30855. bottom: 70/2034
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(6 + 3/12, "feet"),
  30863. default: true
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30869. {
  30870. back: {
  30871. height: math.unit(5 + 10/12, "feet"),
  30872. weight: math.unit(200, "lb"),
  30873. name: "Back",
  30874. image: {
  30875. source: "./media/characters/jax/back.svg",
  30876. extra: 764/739,
  30877. bottom: 25/789
  30878. }
  30879. },
  30880. },
  30881. [
  30882. {
  30883. name: "Normal",
  30884. height: math.unit(5 + 10/12, "feet"),
  30885. default: true
  30886. },
  30887. ]
  30888. ))
  30889. characterMakers.push(() => makeCharacter(
  30890. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30891. {
  30892. front: {
  30893. height: math.unit(8, "feet"),
  30894. weight: math.unit(250, "lb"),
  30895. name: "Front",
  30896. image: {
  30897. source: "./media/characters/eikthynir/front.svg",
  30898. extra: 1332/1166,
  30899. bottom: 82/1414
  30900. }
  30901. },
  30902. back: {
  30903. height: math.unit(8, "feet"),
  30904. weight: math.unit(250, "lb"),
  30905. name: "Back",
  30906. image: {
  30907. source: "./media/characters/eikthynir/back.svg",
  30908. extra: 1342/1190,
  30909. bottom: 19/1361
  30910. }
  30911. },
  30912. dick: {
  30913. height: math.unit(2.35, "feet"),
  30914. name: "Dick",
  30915. image: {
  30916. source: "./media/characters/eikthynir/dick.svg"
  30917. }
  30918. },
  30919. },
  30920. [
  30921. {
  30922. name: "Normal",
  30923. height: math.unit(8, "feet"),
  30924. default: true
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30930. {
  30931. front: {
  30932. height: math.unit(99, "meters"),
  30933. weight: math.unit(13000, "tons"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/zlmos/front.svg",
  30937. extra: 2202/1992,
  30938. bottom: 315/2517
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Macro",
  30945. height: math.unit(99, "meters"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30952. {
  30953. front: {
  30954. height: math.unit(6 + 5/12, "feet"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/purri/front.svg",
  30958. extra: 1698/1610,
  30959. bottom: 32/1730
  30960. }
  30961. },
  30962. frontAlt: {
  30963. height: math.unit(6 + 5/12, "feet"),
  30964. name: "Front (Alt)",
  30965. image: {
  30966. source: "./media/characters/purri/front-alt.svg",
  30967. extra: 450/420,
  30968. bottom: 26/476
  30969. }
  30970. },
  30971. boots: {
  30972. height: math.unit(5.5, "feet"),
  30973. name: "Boots",
  30974. image: {
  30975. source: "./media/characters/purri/boots.svg",
  30976. extra: 905/853,
  30977. bottom: 18/923
  30978. }
  30979. },
  30980. lying: {
  30981. height: math.unit(2, "feet"),
  30982. name: "Lying",
  30983. image: {
  30984. source: "./media/characters/purri/lying.svg",
  30985. extra: 940/843,
  30986. bottom: 146/1086
  30987. }
  30988. },
  30989. devious: {
  30990. height: math.unit(1.77, "feet"),
  30991. name: "Devious",
  30992. image: {
  30993. source: "./media/characters/purri/devious.svg",
  30994. extra: 1440/1155,
  30995. bottom: 147/1587
  30996. }
  30997. },
  30998. bean: {
  30999. height: math.unit(1.94, "feet"),
  31000. name: "Bean",
  31001. image: {
  31002. source: "./media/characters/purri/bean.svg"
  31003. }
  31004. },
  31005. },
  31006. [
  31007. {
  31008. name: "Micro",
  31009. height: math.unit(1, "mm")
  31010. },
  31011. {
  31012. name: "Normal",
  31013. height: math.unit(6 + 5/12, "feet"),
  31014. default: true
  31015. },
  31016. {
  31017. name: "Macro :3c",
  31018. height: math.unit(2, "miles")
  31019. },
  31020. ]
  31021. ))
  31022. characterMakers.push(() => makeCharacter(
  31023. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31024. {
  31025. front: {
  31026. height: math.unit(6 + 2/12, "feet"),
  31027. weight: math.unit(250, "lb"),
  31028. name: "Front",
  31029. image: {
  31030. source: "./media/characters/moonlight/front.svg",
  31031. extra: 1044/908,
  31032. bottom: 56/1100
  31033. }
  31034. },
  31035. feral: {
  31036. height: math.unit(3 + 1/12, "feet"),
  31037. weight: math.unit(50, "kg"),
  31038. name: "Feral",
  31039. image: {
  31040. source: "./media/characters/moonlight/feral.svg",
  31041. extra: 3705/2791,
  31042. bottom: 145/3850
  31043. }
  31044. },
  31045. paw: {
  31046. height: math.unit(1, "feet"),
  31047. name: "Paw",
  31048. image: {
  31049. source: "./media/characters/moonlight/paw.svg"
  31050. }
  31051. },
  31052. paws: {
  31053. height: math.unit(0.98, "feet"),
  31054. name: "Paws",
  31055. image: {
  31056. source: "./media/characters/moonlight/paws.svg",
  31057. extra: 939/939,
  31058. bottom: 50/989
  31059. }
  31060. },
  31061. mouth: {
  31062. height: math.unit(0.48, "feet"),
  31063. name: "Mouth",
  31064. image: {
  31065. source: "./media/characters/moonlight/mouth.svg"
  31066. }
  31067. },
  31068. dick: {
  31069. height: math.unit(1.46, "feet"),
  31070. name: "Dick",
  31071. image: {
  31072. source: "./media/characters/moonlight/dick.svg"
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Normal",
  31079. height: math.unit(6 + 2/12, "feet"),
  31080. default: true
  31081. },
  31082. {
  31083. name: "Macro",
  31084. height: math.unit(300, "feet")
  31085. },
  31086. {
  31087. name: "Macro+",
  31088. height: math.unit(1, "mile")
  31089. },
  31090. {
  31091. name: "Mt. Moon",
  31092. height: math.unit(5, "miles")
  31093. },
  31094. {
  31095. name: "Megamacro",
  31096. height: math.unit(15, "miles")
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31102. {
  31103. back: {
  31104. height: math.unit(6, "feet"),
  31105. weight: math.unit(150, "lb"),
  31106. name: "Back",
  31107. image: {
  31108. source: "./media/characters/sylen/back.svg",
  31109. extra: 1335/1273,
  31110. bottom: 107/1442
  31111. }
  31112. },
  31113. },
  31114. [
  31115. {
  31116. name: "Normal",
  31117. height: math.unit(5 + 5/12, "feet")
  31118. },
  31119. {
  31120. name: "Megamacro",
  31121. height: math.unit(3, "miles"),
  31122. default: true
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(6, "feet"),
  31131. weight: math.unit(190, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/huttser/front.svg",
  31135. extra: 1152/1058,
  31136. bottom: 23/1175
  31137. }
  31138. },
  31139. side: {
  31140. height: math.unit(6, "feet"),
  31141. weight: math.unit(190, "lb"),
  31142. name: "Side",
  31143. image: {
  31144. source: "./media/characters/huttser/side.svg",
  31145. extra: 1174/1065,
  31146. bottom: 18/1192
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(6, "feet"),
  31151. weight: math.unit(190, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/huttser/back.svg",
  31155. extra: 1158/1056,
  31156. bottom: 12/1170
  31157. }
  31158. },
  31159. },
  31160. [
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31165. {
  31166. side: {
  31167. height: math.unit(12 + 9/12, "feet"),
  31168. weight: math.unit(15000, "lb"),
  31169. name: "Side",
  31170. image: {
  31171. source: "./media/characters/faan/side.svg",
  31172. extra: 2747/2697,
  31173. bottom: 0/2747
  31174. }
  31175. },
  31176. front: {
  31177. height: math.unit(12 + 9/12, "feet"),
  31178. weight: math.unit(15000, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/faan/front.svg",
  31182. extra: 607/571,
  31183. bottom: 24/631
  31184. }
  31185. },
  31186. head: {
  31187. height: math.unit(2.85, "feet"),
  31188. name: "Head",
  31189. image: {
  31190. source: "./media/characters/faan/head.svg"
  31191. }
  31192. },
  31193. headAlt: {
  31194. height: math.unit(3.13, "feet"),
  31195. name: "Head-alt",
  31196. image: {
  31197. source: "./media/characters/faan/head-alt.svg"
  31198. }
  31199. },
  31200. },
  31201. [
  31202. {
  31203. name: "Normal",
  31204. height: math.unit(12 + 9/12, "feet"),
  31205. default: true
  31206. },
  31207. ]
  31208. ))
  31209. characterMakers.push(() => makeCharacter(
  31210. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31211. {
  31212. front: {
  31213. height: math.unit(6, "feet"),
  31214. weight: math.unit(300, "lb"),
  31215. name: "Front",
  31216. image: {
  31217. source: "./media/characters/tanio/front.svg",
  31218. extra: 711/673,
  31219. bottom: 25/736
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(6, "feet"),
  31227. default: true
  31228. },
  31229. ]
  31230. ))
  31231. characterMakers.push(() => makeCharacter(
  31232. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31233. {
  31234. front: {
  31235. height: math.unit(3, "inches"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/noboru/front.svg",
  31239. extra: 1039/932,
  31240. bottom: 18/1057
  31241. }
  31242. },
  31243. },
  31244. [
  31245. {
  31246. name: "Micro",
  31247. height: math.unit(3, "inches"),
  31248. default: true
  31249. },
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31254. {
  31255. front: {
  31256. height: math.unit(1.85, "meters"),
  31257. weight: math.unit(80, "kg"),
  31258. name: "Front",
  31259. image: {
  31260. source: "./media/characters/daniel-barrett/front.svg",
  31261. extra: 355/337,
  31262. bottom: 9/364
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Pico",
  31269. height: math.unit(0.0433, "mm")
  31270. },
  31271. {
  31272. name: "Nano",
  31273. height: math.unit(1.5, "mm")
  31274. },
  31275. {
  31276. name: "Micro",
  31277. height: math.unit(5.3, "cm"),
  31278. default: true
  31279. },
  31280. {
  31281. name: "Normal",
  31282. height: math.unit(1.85, "meters")
  31283. },
  31284. {
  31285. name: "Macro",
  31286. height: math.unit(64.7, "meters")
  31287. },
  31288. {
  31289. name: "Megamacro",
  31290. height: math.unit(2.26, "km")
  31291. },
  31292. {
  31293. name: "Gigamacro",
  31294. height: math.unit(79, "km")
  31295. },
  31296. {
  31297. name: "Teramacro",
  31298. height: math.unit(2765, "km")
  31299. },
  31300. {
  31301. name: "Petamacro",
  31302. height: math.unit(96678, "km")
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(30, "meters"),
  31311. weight: math.unit(400, "tons"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/zeel/front.svg",
  31315. extra: 2599/2599,
  31316. bottom: 226/2825
  31317. }
  31318. },
  31319. },
  31320. [
  31321. {
  31322. name: "Macro",
  31323. height: math.unit(30, "meters"),
  31324. default: true
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(6 + 7/12, "feet"),
  31333. weight: math.unit(210, "lb"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/tarn/front.svg",
  31337. extra: 3517/3220,
  31338. bottom: 91/3608
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(6 + 7/12, "feet"),
  31343. weight: math.unit(210, "lb"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/tarn/back.svg",
  31347. extra: 3566/3241,
  31348. bottom: 34/3600
  31349. }
  31350. },
  31351. dick: {
  31352. height: math.unit(1.65, "feet"),
  31353. name: "Dick",
  31354. image: {
  31355. source: "./media/characters/tarn/dick.svg"
  31356. }
  31357. },
  31358. paw: {
  31359. height: math.unit(1.80, "feet"),
  31360. name: "Paw",
  31361. image: {
  31362. source: "./media/characters/tarn/paw.svg"
  31363. }
  31364. },
  31365. tongue: {
  31366. height: math.unit(0.97, "feet"),
  31367. name: "Tongue",
  31368. image: {
  31369. source: "./media/characters/tarn/tongue.svg"
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Micro",
  31376. height: math.unit(4, "inches")
  31377. },
  31378. {
  31379. name: "Normal",
  31380. height: math.unit(6 + 7/12, "feet"),
  31381. default: true
  31382. },
  31383. {
  31384. name: "Macro",
  31385. height: math.unit(300, "feet")
  31386. },
  31387. ]
  31388. ))
  31389. characterMakers.push(() => makeCharacter(
  31390. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31391. {
  31392. front: {
  31393. height: math.unit(5 + 7/12, "feet"),
  31394. weight: math.unit(80, "kg"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31398. extra: 3023/2865,
  31399. bottom: 33/3056
  31400. }
  31401. },
  31402. back: {
  31403. height: math.unit(5 + 7/12, "feet"),
  31404. weight: math.unit(80, "kg"),
  31405. name: "Back",
  31406. image: {
  31407. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31408. extra: 3020/2886,
  31409. bottom: 30/3050
  31410. }
  31411. },
  31412. dick: {
  31413. height: math.unit(0.98, "feet"),
  31414. name: "Dick",
  31415. image: {
  31416. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31417. }
  31418. },
  31419. anatomy: {
  31420. height: math.unit(2.86, "feet"),
  31421. name: "Anatomy",
  31422. image: {
  31423. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Really Small",
  31430. height: math.unit(2, "inches")
  31431. },
  31432. {
  31433. name: "Micro",
  31434. height: math.unit(5.583, "inches")
  31435. },
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(5 + 7/12, "feet"),
  31439. default: true
  31440. },
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(67, "feet")
  31444. },
  31445. {
  31446. name: "Megamacro",
  31447. height: math.unit(134, "feet")
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(9, "feet"),
  31456. weight: math.unit(120, "lb"),
  31457. name: "Front",
  31458. image: {
  31459. source: "./media/characters/sally/front.svg",
  31460. extra: 1506/1349,
  31461. bottom: 66/1572
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Normal",
  31468. height: math.unit(9, "feet"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(8, "feet"),
  31478. weight: math.unit(900, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/owen/front.svg",
  31482. extra: 1761/1657,
  31483. bottom: 74/1835
  31484. }
  31485. },
  31486. side: {
  31487. height: math.unit(8, "feet"),
  31488. weight: math.unit(900, "lb"),
  31489. name: "Side",
  31490. image: {
  31491. source: "./media/characters/owen/side.svg",
  31492. extra: 1797/1734,
  31493. bottom: 30/1827
  31494. }
  31495. },
  31496. back: {
  31497. height: math.unit(8, "feet"),
  31498. weight: math.unit(900, "lb"),
  31499. name: "Back",
  31500. image: {
  31501. source: "./media/characters/owen/back.svg",
  31502. extra: 1796/1706,
  31503. bottom: 59/1855
  31504. }
  31505. },
  31506. maw: {
  31507. height: math.unit(1.76, "feet"),
  31508. name: "Maw",
  31509. image: {
  31510. source: "./media/characters/owen/maw.svg"
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(8, "feet"),
  31518. default: true
  31519. },
  31520. ]
  31521. ))
  31522. characterMakers.push(() => makeCharacter(
  31523. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31524. {
  31525. front: {
  31526. height: math.unit(4, "feet"),
  31527. weight: math.unit(400, "lb"),
  31528. name: "Front",
  31529. image: {
  31530. source: "./media/characters/ryth/front.svg",
  31531. extra: 876/691,
  31532. bottom: 25/901
  31533. }
  31534. },
  31535. goia: {
  31536. height: math.unit(12, "feet"),
  31537. weight: math.unit(10800, "lb"),
  31538. name: "Goia",
  31539. image: {
  31540. source: "./media/characters/ryth/goia.svg",
  31541. extra: 3450/3198,
  31542. bottom: 61/3511
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Normal",
  31549. height: math.unit(4, "feet"),
  31550. default: true
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(7, "feet"),
  31559. weight: math.unit(180, "lb"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/necrolance/front.svg",
  31563. extra: 1062/947,
  31564. bottom: 41/1103
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(7, "feet"),
  31569. weight: math.unit(180, "lb"),
  31570. name: "Back",
  31571. image: {
  31572. source: "./media/characters/necrolance/back.svg",
  31573. extra: 1045/984,
  31574. bottom: 14/1059
  31575. }
  31576. },
  31577. wing: {
  31578. height: math.unit(2.67, "feet"),
  31579. name: "Wing",
  31580. image: {
  31581. source: "./media/characters/necrolance/wing.svg"
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(7, "feet"),
  31589. default: true
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31595. {
  31596. front: {
  31597. height: math.unit(76, "meters"),
  31598. weight: math.unit(30000, "tons"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/tyler/front.svg",
  31602. extra: 1640/1640,
  31603. bottom: 114/1754
  31604. }
  31605. },
  31606. },
  31607. [
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(76, "meters"),
  31611. default: true
  31612. },
  31613. ]
  31614. ))
  31615. characterMakers.push(() => makeCharacter(
  31616. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31617. {
  31618. front: {
  31619. height: math.unit(4 + 11/12, "feet"),
  31620. weight: math.unit(132, "lb"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/icey/front.svg",
  31624. extra: 2750/2550,
  31625. bottom: 33/2783
  31626. }
  31627. },
  31628. back: {
  31629. height: math.unit(4 + 11/12, "feet"),
  31630. weight: math.unit(132, "lb"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/icey/back.svg",
  31634. extra: 2624/2481,
  31635. bottom: 35/2659
  31636. }
  31637. },
  31638. },
  31639. [
  31640. {
  31641. name: "Normal",
  31642. height: math.unit(4 + 11/12, "feet"),
  31643. default: true
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31649. {
  31650. front: {
  31651. height: math.unit(100, "feet"),
  31652. weight: math.unit(0, "lb"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/smile/front.svg",
  31656. extra: 2983/2912,
  31657. bottom: 162/3145
  31658. }
  31659. },
  31660. back: {
  31661. height: math.unit(100, "feet"),
  31662. weight: math.unit(0, "lb"),
  31663. name: "Back",
  31664. image: {
  31665. source: "./media/characters/smile/back.svg",
  31666. extra: 3143/3031,
  31667. bottom: 91/3234
  31668. }
  31669. },
  31670. head: {
  31671. height: math.unit(26.3, "feet"),
  31672. weight: math.unit(0, "lb"),
  31673. name: "Head",
  31674. image: {
  31675. source: "./media/characters/smile/head.svg"
  31676. }
  31677. },
  31678. collar: {
  31679. height: math.unit(5.3, "feet"),
  31680. weight: math.unit(0, "lb"),
  31681. name: "Collar",
  31682. image: {
  31683. source: "./media/characters/smile/collar.svg"
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Macro",
  31690. height: math.unit(100, "feet"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31697. {
  31698. dragon: {
  31699. height: math.unit(26, "feet"),
  31700. weight: math.unit(36, "tons"),
  31701. name: "Dragon",
  31702. image: {
  31703. source: "./media/characters/arimphae/dragon.svg",
  31704. extra: 1574/983,
  31705. bottom: 357/1931
  31706. }
  31707. },
  31708. drake: {
  31709. height: math.unit(9, "feet"),
  31710. weight: math.unit(1.5, "tons"),
  31711. name: "Drake",
  31712. image: {
  31713. source: "./media/characters/arimphae/drake.svg",
  31714. extra: 1120/925,
  31715. bottom: 435/1555
  31716. }
  31717. },
  31718. },
  31719. [
  31720. {
  31721. name: "Small",
  31722. height: math.unit(26*5/9, "feet")
  31723. },
  31724. {
  31725. name: "Normal",
  31726. height: math.unit(26, "feet"),
  31727. default: true
  31728. },
  31729. ]
  31730. ))
  31731. characterMakers.push(() => makeCharacter(
  31732. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31733. {
  31734. front: {
  31735. height: math.unit(8 + 9/12, "feet"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/xander/front.svg",
  31739. extra: 848/673,
  31740. bottom: 62/910
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(8 + 9/12, "feet"),
  31748. default: true
  31749. },
  31750. {
  31751. name: "Gaze Grabber",
  31752. height: math.unit(13 + 8/12, "feet")
  31753. },
  31754. {
  31755. name: "Jaw Dropper",
  31756. height: math.unit(27, "feet")
  31757. },
  31758. {
  31759. name: "Show Stopper",
  31760. height: math.unit(136, "feet")
  31761. },
  31762. {
  31763. name: "Superstar",
  31764. height: math.unit(1.9e6, "miles")
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31770. {
  31771. side: {
  31772. height: math.unit(2100, "feet"),
  31773. name: "Side",
  31774. image: {
  31775. source: "./media/characters/osiris/side.svg",
  31776. extra: 1105/939,
  31777. bottom: 167/1272
  31778. }
  31779. },
  31780. },
  31781. [
  31782. {
  31783. name: "Macro",
  31784. height: math.unit(2100, "feet"),
  31785. default: true
  31786. },
  31787. ]
  31788. ))
  31789. characterMakers.push(() => makeCharacter(
  31790. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31791. {
  31792. front: {
  31793. height: math.unit(6 + 8/12, "feet"),
  31794. weight: math.unit(225, "lb"),
  31795. name: "Front",
  31796. image: {
  31797. source: "./media/characters/rhys-londe/front.svg",
  31798. extra: 2258/2141,
  31799. bottom: 188/2446
  31800. }
  31801. },
  31802. back: {
  31803. height: math.unit(6 + 8/12, "feet"),
  31804. weight: math.unit(225, "lb"),
  31805. name: "Back",
  31806. image: {
  31807. source: "./media/characters/rhys-londe/back.svg",
  31808. extra: 2237/2137,
  31809. bottom: 63/2300
  31810. }
  31811. },
  31812. frontNsfw: {
  31813. height: math.unit(6 + 8/12, "feet"),
  31814. weight: math.unit(225, "lb"),
  31815. name: "Front (NSFW)",
  31816. image: {
  31817. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31818. extra: 2258/2141,
  31819. bottom: 188/2446
  31820. }
  31821. },
  31822. backNsfw: {
  31823. height: math.unit(6 + 8/12, "feet"),
  31824. weight: math.unit(225, "lb"),
  31825. name: "Back (NSFW)",
  31826. image: {
  31827. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31828. extra: 2237/2137,
  31829. bottom: 63/2300
  31830. }
  31831. },
  31832. dick: {
  31833. height: math.unit(30, "inches"),
  31834. name: "Dick",
  31835. image: {
  31836. source: "./media/characters/rhys-londe/dick.svg"
  31837. }
  31838. },
  31839. maw: {
  31840. height: math.unit(1.6, "feet"),
  31841. name: "Maw",
  31842. image: {
  31843. source: "./media/characters/rhys-londe/maw.svg"
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Normal",
  31850. height: math.unit(6 + 8/12, "feet"),
  31851. default: true
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31857. {
  31858. front: {
  31859. height: math.unit(3 + 10/12, "feet"),
  31860. weight: math.unit(90, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/taivas-ensim/front.svg",
  31864. extra: 1327/1216,
  31865. bottom: 96/1423
  31866. }
  31867. },
  31868. back: {
  31869. height: math.unit(3 + 10/12, "feet"),
  31870. weight: math.unit(90, "lb"),
  31871. name: "Back",
  31872. image: {
  31873. source: "./media/characters/taivas-ensim/back.svg",
  31874. extra: 1355/1247,
  31875. bottom: 11/1366
  31876. }
  31877. },
  31878. frontNsfw: {
  31879. height: math.unit(3 + 10/12, "feet"),
  31880. weight: math.unit(90, "lb"),
  31881. name: "Front (NSFW)",
  31882. image: {
  31883. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31884. extra: 1327/1216,
  31885. bottom: 96/1423
  31886. }
  31887. },
  31888. backNsfw: {
  31889. height: math.unit(3 + 10/12, "feet"),
  31890. weight: math.unit(90, "lb"),
  31891. name: "Back (NSFW)",
  31892. image: {
  31893. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31894. extra: 1355/1247,
  31895. bottom: 11/1366
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(3 + 10/12, "feet"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(9 + 6/12, "feet"),
  31912. weight: math.unit(940, "lb"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/byliss/front.svg",
  31916. extra: 1327/1290,
  31917. bottom: 82/1409
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(9 + 6/12, "feet"),
  31922. weight: math.unit(940, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/byliss/back.svg",
  31926. extra: 1376/1349,
  31927. bottom: 9/1385
  31928. }
  31929. },
  31930. frontNsfw: {
  31931. height: math.unit(9 + 6/12, "feet"),
  31932. weight: math.unit(940, "lb"),
  31933. name: "Front (NSFW)",
  31934. image: {
  31935. source: "./media/characters/byliss/front-nsfw.svg",
  31936. extra: 1327/1290,
  31937. bottom: 82/1409
  31938. }
  31939. },
  31940. backNsfw: {
  31941. height: math.unit(9 + 6/12, "feet"),
  31942. weight: math.unit(940, "lb"),
  31943. name: "Back (NSFW)",
  31944. image: {
  31945. source: "./media/characters/byliss/back-nsfw.svg",
  31946. extra: 1376/1349,
  31947. bottom: 9/1385
  31948. }
  31949. },
  31950. },
  31951. [
  31952. {
  31953. name: "Normal",
  31954. height: math.unit(9 + 6/12, "feet"),
  31955. default: true
  31956. },
  31957. ]
  31958. ))
  31959. characterMakers.push(() => makeCharacter(
  31960. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31961. {
  31962. front: {
  31963. height: math.unit(5 + 2/12, "feet"),
  31964. weight: math.unit(200, "lb"),
  31965. name: "Front",
  31966. image: {
  31967. source: "./media/characters/noraly/front.svg",
  31968. extra: 4985/4773,
  31969. bottom: 150/5135
  31970. }
  31971. },
  31972. full: {
  31973. height: math.unit(5 + 2/12, "feet"),
  31974. weight: math.unit(164, "lb"),
  31975. name: "Full",
  31976. image: {
  31977. source: "./media/characters/noraly/full.svg",
  31978. extra: 1114/1059,
  31979. bottom: 35/1149
  31980. }
  31981. },
  31982. fuller: {
  31983. height: math.unit(5 + 2/12, "feet"),
  31984. weight: math.unit(230, "lb"),
  31985. name: "Fuller",
  31986. image: {
  31987. source: "./media/characters/noraly/fuller.svg",
  31988. extra: 1114/1059,
  31989. bottom: 35/1149
  31990. }
  31991. },
  31992. fullest: {
  31993. height: math.unit(5 + 2/12, "feet"),
  31994. weight: math.unit(300, "lb"),
  31995. name: "Fullest",
  31996. image: {
  31997. source: "./media/characters/noraly/fullest.svg",
  31998. extra: 1114/1059,
  31999. bottom: 35/1149
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(5 + 2/12, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32013. {
  32014. front: {
  32015. height: math.unit(5 + 2/12, "feet"),
  32016. weight: math.unit(210, "lb"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/pera/front.svg",
  32020. extra: 1560/1531,
  32021. bottom: 165/1725
  32022. }
  32023. },
  32024. back: {
  32025. height: math.unit(5 + 2/12, "feet"),
  32026. weight: math.unit(210, "lb"),
  32027. name: "Back",
  32028. image: {
  32029. source: "./media/characters/pera/back.svg",
  32030. extra: 1523/1493,
  32031. bottom: 152/1675
  32032. }
  32033. },
  32034. dick: {
  32035. height: math.unit(2.4, "feet"),
  32036. name: "Dick",
  32037. image: {
  32038. source: "./media/characters/pera/dick.svg"
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Normal",
  32045. height: math.unit(5 + 2/12, "feet"),
  32046. default: true
  32047. },
  32048. ]
  32049. ))
  32050. characterMakers.push(() => makeCharacter(
  32051. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32052. {
  32053. front: {
  32054. height: math.unit(12, "feet"),
  32055. weight: math.unit(3200, "lb"),
  32056. name: "Front",
  32057. image: {
  32058. source: "./media/characters/julian/front.svg",
  32059. extra: 2962/2701,
  32060. bottom: 184/3146
  32061. }
  32062. },
  32063. maw: {
  32064. height: math.unit(5.35, "feet"),
  32065. name: "Maw",
  32066. image: {
  32067. source: "./media/characters/julian/maw.svg"
  32068. }
  32069. },
  32070. paw: {
  32071. height: math.unit(3.07, "feet"),
  32072. name: "Paw",
  32073. image: {
  32074. source: "./media/characters/julian/paw.svg"
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Default",
  32081. height: math.unit(12, "feet"),
  32082. default: true
  32083. },
  32084. {
  32085. name: "Big",
  32086. height: math.unit(50, "feet")
  32087. },
  32088. {
  32089. name: "Really Big",
  32090. height: math.unit(1, "mile")
  32091. },
  32092. {
  32093. name: "Extremely Big",
  32094. height: math.unit(100, "miles")
  32095. },
  32096. {
  32097. name: "Planet Hugger",
  32098. height: math.unit(200, "megameters")
  32099. },
  32100. {
  32101. name: "Unreasonably Big",
  32102. height: math.unit(1e300, "meters")
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32108. {
  32109. solgooleo: {
  32110. height: math.unit(4, "meters"),
  32111. weight: math.unit(6000*1.5, "kg"),
  32112. volume: math.unit(6000, "liters"),
  32113. name: "Solgooleo",
  32114. image: {
  32115. source: "./media/characters/pi/solgooleo.svg",
  32116. extra: 388/331,
  32117. bottom: 29/417
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "Normal",
  32124. height: math.unit(4, "meters"),
  32125. default: true
  32126. },
  32127. ]
  32128. ))
  32129. characterMakers.push(() => makeCharacter(
  32130. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32131. {
  32132. front: {
  32133. height: math.unit(8 + 2/12, "feet"),
  32134. weight: math.unit(4, "tons"),
  32135. name: "Front",
  32136. image: {
  32137. source: "./media/characters/shaun/front.svg",
  32138. extra: 1550/1505,
  32139. bottom: 353/1903
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Lorg",
  32146. height: math.unit(8 + 2/12, "feet"),
  32147. default: true
  32148. },
  32149. ]
  32150. ))
  32151. characterMakers.push(() => makeCharacter(
  32152. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32153. {
  32154. front: {
  32155. height: math.unit(7, "feet"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/sini/front.svg",
  32159. extra: 726/678,
  32160. bottom: 35/761
  32161. }
  32162. },
  32163. back: {
  32164. height: math.unit(7, "feet"),
  32165. name: "Back",
  32166. image: {
  32167. source: "./media/characters/sini/back.svg",
  32168. extra: 743/701,
  32169. bottom: 12/755
  32170. }
  32171. },
  32172. mawAnthro: {
  32173. height: math.unit(2.14, "feet"),
  32174. name: "Maw (Anthro)",
  32175. image: {
  32176. source: "./media/characters/sini/maw-anthro.svg"
  32177. }
  32178. },
  32179. dick: {
  32180. height: math.unit(1.45, "feet"),
  32181. name: "Dick (Anthro)",
  32182. image: {
  32183. source: "./media/characters/sini/dick-anthro.svg"
  32184. }
  32185. },
  32186. feral: {
  32187. height: math.unit(13, "feet"),
  32188. name: "Feral",
  32189. image: {
  32190. source: "./media/characters/sini/feral.svg",
  32191. extra: 814/605,
  32192. bottom: 11/825
  32193. }
  32194. },
  32195. mawFeral: {
  32196. height: math.unit(4.6, "feet"),
  32197. name: "Maw-feral",
  32198. image: {
  32199. source: "./media/characters/sini/maw-feral.svg"
  32200. }
  32201. },
  32202. footFeral: {
  32203. height: math.unit(4.2, "feet"),
  32204. name: "Foot-feral",
  32205. image: {
  32206. source: "./media/characters/sini/foot-feral.svg"
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(7, "feet"),
  32214. default: true
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32220. {
  32221. side: {
  32222. height: math.unit(13, "meters"),
  32223. weight: math.unit(9072, "kg"),
  32224. name: "Side",
  32225. image: {
  32226. source: "./media/characters/raylldo/side.svg",
  32227. extra: 403/344,
  32228. bottom: 42/445
  32229. }
  32230. },
  32231. leaping: {
  32232. height: math.unit(12.3, "meters"),
  32233. weight: math.unit(9072, "kg"),
  32234. name: "Leaping",
  32235. image: {
  32236. source: "./media/characters/raylldo/leaping.svg",
  32237. extra: 470/249,
  32238. bottom: 13/483
  32239. }
  32240. },
  32241. flying: {
  32242. height: math.unit(18, "meters"),
  32243. weight: math.unit(9072, "kg"),
  32244. name: "Flying",
  32245. image: {
  32246. source: "./media/characters/raylldo/flying.svg"
  32247. }
  32248. },
  32249. head: {
  32250. height: math.unit(5.85, "meters"),
  32251. name: "Head",
  32252. image: {
  32253. source: "./media/characters/raylldo/head.svg"
  32254. }
  32255. },
  32256. maw: {
  32257. height: math.unit(5.32, "meters"),
  32258. name: "Maw",
  32259. image: {
  32260. source: "./media/characters/raylldo/maw.svg"
  32261. }
  32262. },
  32263. eye: {
  32264. height: math.unit(0.54, "meters"),
  32265. name: "Eye",
  32266. image: {
  32267. source: "./media/characters/raylldo/eye.svg"
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(13, "meters"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32281. {
  32282. anthroFront: {
  32283. height: math.unit(9, "feet"),
  32284. weight: math.unit(600, "lb"),
  32285. name: "Anthro (Front)",
  32286. image: {
  32287. source: "./media/characters/glint/anthro-front.svg",
  32288. extra: 1097/1018,
  32289. bottom: 28/1125
  32290. }
  32291. },
  32292. anthroBack: {
  32293. height: math.unit(9, "feet"),
  32294. weight: math.unit(600, "lb"),
  32295. name: "Anthro (Back)",
  32296. image: {
  32297. source: "./media/characters/glint/anthro-back.svg",
  32298. extra: 1154/997,
  32299. bottom: 36/1190
  32300. }
  32301. },
  32302. feral: {
  32303. height: math.unit(11, "feet"),
  32304. weight: math.unit(50000, "lb"),
  32305. name: "Feral",
  32306. image: {
  32307. source: "./media/characters/glint/feral.svg",
  32308. extra: 3035/1585,
  32309. bottom: 1169/4204
  32310. }
  32311. },
  32312. dickAnthro: {
  32313. height: math.unit(0.7, "meters"),
  32314. name: "Dick (Anthro)",
  32315. image: {
  32316. source: "./media/characters/glint/dick-anthro.svg"
  32317. }
  32318. },
  32319. dickFeral: {
  32320. height: math.unit(2.65, "meters"),
  32321. name: "Dick (Feral)",
  32322. image: {
  32323. source: "./media/characters/glint/dick-feral.svg"
  32324. }
  32325. },
  32326. slitHidden: {
  32327. height: math.unit(5.85, "meters"),
  32328. name: "Slit (Hidden)",
  32329. image: {
  32330. source: "./media/characters/glint/slit-hidden.svg"
  32331. }
  32332. },
  32333. slitErect: {
  32334. height: math.unit(5.85, "meters"),
  32335. name: "Slit (Erect)",
  32336. image: {
  32337. source: "./media/characters/glint/slit-erect.svg"
  32338. }
  32339. },
  32340. mawAnthro: {
  32341. height: math.unit(0.63, "meters"),
  32342. name: "Maw (Anthro)",
  32343. image: {
  32344. source: "./media/characters/glint/maw.svg"
  32345. }
  32346. },
  32347. mawFeral: {
  32348. height: math.unit(2.89, "meters"),
  32349. name: "Maw (Feral)",
  32350. image: {
  32351. source: "./media/characters/glint/maw.svg"
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Normal",
  32358. height: math.unit(9, "feet"),
  32359. default: true
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32365. {
  32366. side: {
  32367. height: math.unit(15, "feet"),
  32368. weight: math.unit(5000, "kg"),
  32369. name: "Side",
  32370. image: {
  32371. source: "./media/characters/kairne/side.svg",
  32372. extra: 979/811,
  32373. bottom: 13/992
  32374. }
  32375. },
  32376. front: {
  32377. height: math.unit(15, "feet"),
  32378. weight: math.unit(5000, "kg"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/kairne/front.svg",
  32382. extra: 908/814,
  32383. bottom: 26/934
  32384. }
  32385. },
  32386. sideNsfw: {
  32387. height: math.unit(15, "feet"),
  32388. weight: math.unit(5000, "kg"),
  32389. name: "Side (NSFW)",
  32390. image: {
  32391. source: "./media/characters/kairne/side-nsfw.svg",
  32392. extra: 979/811,
  32393. bottom: 13/992
  32394. }
  32395. },
  32396. frontNsfw: {
  32397. height: math.unit(15, "feet"),
  32398. weight: math.unit(5000, "kg"),
  32399. name: "Front (NSFW)",
  32400. image: {
  32401. source: "./media/characters/kairne/front-nsfw.svg",
  32402. extra: 908/814,
  32403. bottom: 26/934
  32404. }
  32405. },
  32406. dickCaged: {
  32407. height: math.unit(0.65, "meters"),
  32408. name: "Dick-caged",
  32409. image: {
  32410. source: "./media/characters/kairne/dick-caged.svg"
  32411. }
  32412. },
  32413. dick: {
  32414. height: math.unit(0.79, "meters"),
  32415. name: "Dick",
  32416. image: {
  32417. source: "./media/characters/kairne/dick.svg"
  32418. }
  32419. },
  32420. genitals: {
  32421. height: math.unit(1.29, "meters"),
  32422. name: "Genitals",
  32423. image: {
  32424. source: "./media/characters/kairne/genitals.svg"
  32425. }
  32426. },
  32427. maw: {
  32428. height: math.unit(1.73, "meters"),
  32429. name: "Maw",
  32430. image: {
  32431. source: "./media/characters/kairne/maw.svg"
  32432. }
  32433. },
  32434. },
  32435. [
  32436. {
  32437. name: "Normal",
  32438. height: math.unit(15, "feet"),
  32439. default: true
  32440. },
  32441. ]
  32442. ))
  32443. characterMakers.push(() => makeCharacter(
  32444. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32445. {
  32446. front: {
  32447. height: math.unit(5 + 8/12, "feet"),
  32448. weight: math.unit(139, "lb"),
  32449. name: "Front",
  32450. image: {
  32451. source: "./media/characters/biscuit-jackal/front.svg",
  32452. extra: 2106/1961,
  32453. bottom: 58/2164
  32454. }
  32455. },
  32456. back: {
  32457. height: math.unit(5 + 8/12, "feet"),
  32458. weight: math.unit(139, "lb"),
  32459. name: "Back",
  32460. image: {
  32461. source: "./media/characters/biscuit-jackal/back.svg",
  32462. extra: 2132/1976,
  32463. bottom: 57/2189
  32464. }
  32465. },
  32466. werejackal: {
  32467. height: math.unit(6 + 3/12, "feet"),
  32468. weight: math.unit(188, "lb"),
  32469. name: "Werejackal",
  32470. image: {
  32471. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32472. extra: 2373/2178,
  32473. bottom: 53/2426
  32474. }
  32475. },
  32476. },
  32477. [
  32478. {
  32479. name: "Normal",
  32480. height: math.unit(5 + 8/12, "feet"),
  32481. default: true
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32487. {
  32488. front: {
  32489. height: math.unit(140, "cm"),
  32490. weight: math.unit(45, "kg"),
  32491. name: "Front",
  32492. image: {
  32493. source: "./media/characters/tayra-white/front.svg",
  32494. extra: 2229/2192,
  32495. bottom: 75/2304
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(140, "cm"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32509. {
  32510. front: {
  32511. height: math.unit(4 + 5/12, "feet"),
  32512. name: "Front",
  32513. image: {
  32514. source: "./media/characters/scoop/front.svg",
  32515. extra: 1257/1136,
  32516. bottom: 69/1326
  32517. }
  32518. },
  32519. back: {
  32520. height: math.unit(4 + 5/12, "feet"),
  32521. name: "Back",
  32522. image: {
  32523. source: "./media/characters/scoop/back.svg",
  32524. extra: 1321/1152,
  32525. bottom: 32/1353
  32526. }
  32527. },
  32528. maw: {
  32529. height: math.unit(0.68, "feet"),
  32530. name: "Maw",
  32531. image: {
  32532. source: "./media/characters/scoop/maw.svg"
  32533. }
  32534. },
  32535. },
  32536. [
  32537. {
  32538. name: "Really Small",
  32539. height: math.unit(1, "mm")
  32540. },
  32541. {
  32542. name: "Micro",
  32543. height: math.unit(1, "inch")
  32544. },
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(4 + 5/12, "feet"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Macro",
  32552. height: math.unit(200, "feet")
  32553. },
  32554. {
  32555. name: "Megamacro",
  32556. height: math.unit(3240, "feet")
  32557. },
  32558. {
  32559. name: "Teramacro",
  32560. height: math.unit(2500, "miles")
  32561. },
  32562. ]
  32563. ))
  32564. characterMakers.push(() => makeCharacter(
  32565. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32566. {
  32567. front: {
  32568. height: math.unit(15 + 7/12, "feet"),
  32569. name: "Front",
  32570. image: {
  32571. source: "./media/characters/saphinara/front.svg",
  32572. extra: 604/546,
  32573. bottom: 19/623
  32574. }
  32575. },
  32576. side: {
  32577. height: math.unit(15 + 7/12, "feet"),
  32578. name: "Side",
  32579. image: {
  32580. source: "./media/characters/saphinara/side.svg",
  32581. extra: 605/547,
  32582. bottom: 6/611
  32583. }
  32584. },
  32585. back: {
  32586. height: math.unit(15 + 7/12, "feet"),
  32587. name: "Back",
  32588. image: {
  32589. source: "./media/characters/saphinara/back.svg",
  32590. extra: 591/531,
  32591. bottom: 13/604
  32592. }
  32593. },
  32594. frontTail: {
  32595. height: math.unit(15 + 7/12, "feet"),
  32596. name: "Front (Full Tail)",
  32597. image: {
  32598. source: "./media/characters/saphinara/front-tail.svg",
  32599. extra: 748/547,
  32600. bottom: 66/814
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Normal",
  32607. height: math.unit(15 + 7/12, "feet"),
  32608. default: true
  32609. },
  32610. {
  32611. name: "Angry",
  32612. height: math.unit(30 + 6/12, "feet")
  32613. },
  32614. {
  32615. name: "Enraged",
  32616. height: math.unit(102 + 1/12, "feet")
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32622. {
  32623. front: {
  32624. height: math.unit(6 + 8/12, "feet"),
  32625. weight: math.unit(300, "lb"),
  32626. name: "Front",
  32627. image: {
  32628. source: "./media/characters/jrain/front.svg",
  32629. extra: 3039/2865,
  32630. bottom: 399/3438
  32631. }
  32632. },
  32633. back: {
  32634. height: math.unit(6 + 8/12, "feet"),
  32635. weight: math.unit(300, "lb"),
  32636. name: "Back",
  32637. image: {
  32638. source: "./media/characters/jrain/back.svg",
  32639. extra: 3089/2938,
  32640. bottom: 172/3261
  32641. }
  32642. },
  32643. head: {
  32644. height: math.unit(2.14, "feet"),
  32645. name: "Head",
  32646. image: {
  32647. source: "./media/characters/jrain/head.svg"
  32648. }
  32649. },
  32650. maw: {
  32651. height: math.unit(1.77, "feet"),
  32652. name: "Maw",
  32653. image: {
  32654. source: "./media/characters/jrain/maw.svg"
  32655. }
  32656. },
  32657. leftHand: {
  32658. height: math.unit(1.1, "feet"),
  32659. name: "Left Hand",
  32660. image: {
  32661. source: "./media/characters/jrain/left-hand.svg"
  32662. }
  32663. },
  32664. rightHand: {
  32665. height: math.unit(1.1, "feet"),
  32666. name: "Right Hand",
  32667. image: {
  32668. source: "./media/characters/jrain/right-hand.svg"
  32669. }
  32670. },
  32671. eye: {
  32672. height: math.unit(0.35, "feet"),
  32673. name: "Eye",
  32674. image: {
  32675. source: "./media/characters/jrain/eye.svg"
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(6 + 8/12, "feet"),
  32683. default: true
  32684. },
  32685. {
  32686. name: "Casually Large",
  32687. height: math.unit(25, "feet")
  32688. },
  32689. {
  32690. name: "Giant",
  32691. height: math.unit(100, "feet")
  32692. },
  32693. {
  32694. name: "Kaiju",
  32695. height: math.unit(300, "feet")
  32696. },
  32697. ]
  32698. ))
  32699. characterMakers.push(() => makeCharacter(
  32700. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32701. {
  32702. dragon: {
  32703. height: math.unit(5, "meters"),
  32704. name: "Dragon",
  32705. image: {
  32706. source: "./media/characters/sabrina/dragon.svg",
  32707. extra: 3670 / 2365,
  32708. bottom: 333 / 4003
  32709. }
  32710. },
  32711. gryphon: {
  32712. height: math.unit(3, "meters"),
  32713. name: "Gryphon",
  32714. image: {
  32715. source: "./media/characters/sabrina/gryphon.svg",
  32716. extra: 1576 / 945,
  32717. bottom: 71 / 1647
  32718. }
  32719. },
  32720. snake: {
  32721. height: math.unit(12, "meters"),
  32722. name: "Snake",
  32723. image: {
  32724. source: "./media/characters/sabrina/snake.svg",
  32725. extra: 1758 / 1320,
  32726. bottom: 186 / 1944
  32727. }
  32728. },
  32729. collar: {
  32730. height: math.unit(1.86, "meters"),
  32731. name: "Collar",
  32732. image: {
  32733. source: "./media/characters/sabrina/collar.svg"
  32734. }
  32735. },
  32736. eye: {
  32737. height: math.unit(0.53, "meters"),
  32738. name: "Eye",
  32739. image: {
  32740. source: "./media/characters/sabrina/eye.svg"
  32741. }
  32742. },
  32743. foot: {
  32744. height: math.unit(1.86, "meters"),
  32745. name: "Foot",
  32746. image: {
  32747. source: "./media/characters/sabrina/foot.svg"
  32748. }
  32749. },
  32750. hand: {
  32751. height: math.unit(1.32, "meters"),
  32752. name: "Hand",
  32753. image: {
  32754. source: "./media/characters/sabrina/hand.svg"
  32755. }
  32756. },
  32757. head: {
  32758. height: math.unit(2.44, "meters"),
  32759. name: "Head",
  32760. image: {
  32761. source: "./media/characters/sabrina/head.svg"
  32762. }
  32763. },
  32764. headAngry: {
  32765. height: math.unit(2.44, "meters"),
  32766. name: "Head (Angry))",
  32767. image: {
  32768. source: "./media/characters/sabrina/head-angry.svg"
  32769. }
  32770. },
  32771. maw: {
  32772. height: math.unit(1.65, "meters"),
  32773. name: "Maw",
  32774. image: {
  32775. source: "./media/characters/sabrina/maw.svg"
  32776. }
  32777. },
  32778. spikes: {
  32779. height: math.unit(1.69, "meters"),
  32780. name: "Spikes",
  32781. image: {
  32782. source: "./media/characters/sabrina/spikes.svg"
  32783. }
  32784. },
  32785. stomach: {
  32786. height: math.unit(1.15, "meters"),
  32787. name: "Stomach",
  32788. image: {
  32789. source: "./media/characters/sabrina/stomach.svg"
  32790. }
  32791. },
  32792. tongue: {
  32793. height: math.unit(1.27, "meters"),
  32794. name: "Tongue",
  32795. image: {
  32796. source: "./media/characters/sabrina/tongue.svg"
  32797. }
  32798. },
  32799. wingDorsal: {
  32800. height: math.unit(4.85, "meters"),
  32801. name: "Wing (Dorsal)",
  32802. image: {
  32803. source: "./media/characters/sabrina/wing-dorsal.svg"
  32804. }
  32805. },
  32806. wingVentral: {
  32807. height: math.unit(4.85, "meters"),
  32808. name: "Wing (Ventral)",
  32809. image: {
  32810. source: "./media/characters/sabrina/wing-ventral.svg"
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Normal",
  32817. height: math.unit(5, "meters"),
  32818. default: true
  32819. },
  32820. ]
  32821. ))
  32822. characterMakers.push(() => makeCharacter(
  32823. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32824. {
  32825. frontMaid: {
  32826. height: math.unit(5 + 5/12, "feet"),
  32827. weight: math.unit(130, "lb"),
  32828. name: "Front (Maid)",
  32829. image: {
  32830. source: "./media/characters/midnight-tales/front-maid.svg",
  32831. extra: 489/454,
  32832. bottom: 61/550
  32833. }
  32834. },
  32835. frontFormal: {
  32836. height: math.unit(5 + 5/12, "feet"),
  32837. weight: math.unit(130, "lb"),
  32838. name: "Front (Formal)",
  32839. image: {
  32840. source: "./media/characters/midnight-tales/front-formal.svg",
  32841. extra: 489/454,
  32842. bottom: 61/550
  32843. }
  32844. },
  32845. back: {
  32846. height: math.unit(5 + 5/12, "feet"),
  32847. weight: math.unit(130, "lb"),
  32848. name: "Back",
  32849. image: {
  32850. source: "./media/characters/midnight-tales/back.svg",
  32851. extra: 498/456,
  32852. bottom: 33/531
  32853. }
  32854. },
  32855. frontBeast: {
  32856. height: math.unit(40, "feet"),
  32857. weight: math.unit(64000, "lb"),
  32858. name: "Front (Beast)",
  32859. image: {
  32860. source: "./media/characters/midnight-tales/front-beast.svg",
  32861. extra: 927/860,
  32862. bottom: 53/980
  32863. }
  32864. },
  32865. backBeast: {
  32866. height: math.unit(40, "feet"),
  32867. weight: math.unit(64000, "lb"),
  32868. name: "Back (Beast)",
  32869. image: {
  32870. source: "./media/characters/midnight-tales/back-beast.svg",
  32871. extra: 929/855,
  32872. bottom: 16/945
  32873. }
  32874. },
  32875. footBeast: {
  32876. height: math.unit(6.7, "feet"),
  32877. name: "Foot (Beast)",
  32878. image: {
  32879. source: "./media/characters/midnight-tales/foot-beast.svg"
  32880. }
  32881. },
  32882. headBeast: {
  32883. height: math.unit(8, "feet"),
  32884. name: "Head (Beast)",
  32885. image: {
  32886. source: "./media/characters/midnight-tales/head-beast.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Normal",
  32893. height: math.unit(5 + 5 / 12, "feet"),
  32894. default: true
  32895. },
  32896. {
  32897. name: "Macro",
  32898. height: math.unit(25, "feet")
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(5 + 10/12, "feet"),
  32907. name: "Front",
  32908. image: {
  32909. source: "./media/characters/argon/front.svg",
  32910. extra: 2009/1935,
  32911. bottom: 118/2127
  32912. }
  32913. },
  32914. back: {
  32915. height: math.unit(5 + 10/12, "feet"),
  32916. name: "Back",
  32917. image: {
  32918. source: "./media/characters/argon/back.svg",
  32919. extra: 2047/1992,
  32920. bottom: 20/2067
  32921. }
  32922. },
  32923. frontDressed: {
  32924. height: math.unit(5 + 10/12, "feet"),
  32925. name: "Front (Dressed)",
  32926. image: {
  32927. source: "./media/characters/argon/front-dressed.svg",
  32928. extra: 2009/1935,
  32929. bottom: 118/2127
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(5 + 10/12, "feet"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(8 + 6/12, "feet"),
  32946. weight: math.unit(1150, "lb"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/kichi/front.svg",
  32950. extra: 1267/1164,
  32951. bottom: 61/1328
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(8 + 6/12, "feet"),
  32956. weight: math.unit(1150, "lb"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/kichi/back.svg",
  32960. extra: 1273/1166,
  32961. bottom: 33/1306
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(8 + 6/12, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32975. {
  32976. front: {
  32977. height: math.unit(6, "feet"),
  32978. weight: math.unit(210, "lb"),
  32979. name: "Front",
  32980. image: {
  32981. source: "./media/characters/manetel-greyscale/front.svg",
  32982. extra: 350/312,
  32983. bottom: 8/358
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Micro",
  32990. height: math.unit(2, "inches")
  32991. },
  32992. {
  32993. name: "Normal",
  32994. height: math.unit(6, "feet"),
  32995. default: true
  32996. },
  32997. {
  32998. name: "Minimacro",
  32999. height: math.unit(17, "feet")
  33000. },
  33001. {
  33002. name: "Macro",
  33003. height: math.unit(117, "feet")
  33004. },
  33005. ]
  33006. ))
  33007. characterMakers.push(() => makeCharacter(
  33008. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33009. {
  33010. side: {
  33011. height: math.unit(5 + 1/12, "feet"),
  33012. weight: math.unit(418, "lb"),
  33013. name: "Side",
  33014. image: {
  33015. source: "./media/characters/softpurr/side.svg",
  33016. extra: 1993/1945,
  33017. bottom: 134/2127
  33018. }
  33019. },
  33020. front: {
  33021. height: math.unit(5 + 1/12, "feet"),
  33022. weight: math.unit(418, "lb"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/softpurr/front.svg",
  33026. extra: 1950/1856,
  33027. bottom: 174/2124
  33028. }
  33029. },
  33030. paw: {
  33031. height: math.unit(1, "feet"),
  33032. name: "Paw",
  33033. image: {
  33034. source: "./media/characters/softpurr/paw.svg"
  33035. }
  33036. },
  33037. },
  33038. [
  33039. {
  33040. name: "Normal",
  33041. height: math.unit(5 + 1/12, "feet"),
  33042. default: true
  33043. },
  33044. ]
  33045. ))
  33046. characterMakers.push(() => makeCharacter(
  33047. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33048. {
  33049. front: {
  33050. height: math.unit(260, "meters"),
  33051. name: "Front",
  33052. image: {
  33053. source: "./media/characters/anahita/front.svg",
  33054. extra: 665/635,
  33055. bottom: 89/754
  33056. }
  33057. },
  33058. },
  33059. [
  33060. {
  33061. name: "Macro",
  33062. height: math.unit(260, "meters"),
  33063. default: true
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(4 + 10/12, "feet"),
  33072. weight: math.unit(160, "lb"),
  33073. name: "Front",
  33074. image: {
  33075. source: "./media/characters/chip-mouse/front.svg",
  33076. extra: 3528/3408,
  33077. bottom: 0/3528
  33078. }
  33079. },
  33080. frontNsfw: {
  33081. height: math.unit(4 + 10/12, "feet"),
  33082. weight: math.unit(160, "lb"),
  33083. name: "Front (NSFW)",
  33084. image: {
  33085. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33086. extra: 3528/3408,
  33087. bottom: 0/3528
  33088. }
  33089. },
  33090. },
  33091. [
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(4 + 10/12, "feet"),
  33095. default: true
  33096. },
  33097. ]
  33098. ))
  33099. characterMakers.push(() => makeCharacter(
  33100. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33101. {
  33102. side: {
  33103. height: math.unit(10, "feet"),
  33104. weight: math.unit(14000, "lb"),
  33105. name: "Side",
  33106. image: {
  33107. source: "./media/characters/kremm/side.svg",
  33108. extra: 1390/1053,
  33109. bottom: 90/1480
  33110. }
  33111. },
  33112. gut: {
  33113. height: math.unit(5.8, "feet"),
  33114. name: "Gut",
  33115. image: {
  33116. source: "./media/characters/kremm/gut.svg"
  33117. }
  33118. },
  33119. ass: {
  33120. height: math.unit(6.1, "feet"),
  33121. name: "Ass",
  33122. image: {
  33123. source: "./media/characters/kremm/ass.svg"
  33124. }
  33125. },
  33126. jaws: {
  33127. height: math.unit(2.2, "feet"),
  33128. name: "Jaws",
  33129. image: {
  33130. source: "./media/characters/kremm/jaws.svg"
  33131. }
  33132. },
  33133. dick: {
  33134. height: math.unit(4.26, "feet"),
  33135. name: "Dick",
  33136. image: {
  33137. source: "./media/characters/kremm/dick.svg"
  33138. }
  33139. },
  33140. },
  33141. [
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(10, "feet"),
  33145. default: true
  33146. },
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33151. {
  33152. front: {
  33153. height: math.unit(30, "stories"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/kai/front.svg",
  33157. extra: 1892/1718,
  33158. bottom: 162/2054
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Macro",
  33165. height: math.unit(30, "stories"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(6 + 4/12, "feet"),
  33175. weight: math.unit(145, "lb"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/sykes/front.svg",
  33179. extra: 1321 / 1187,
  33180. bottom: 66 / 1387
  33181. }
  33182. },
  33183. back: {
  33184. height: math.unit(6 + 4/12, "feet"),
  33185. weight: math.unit(145, "lb"),
  33186. name: "Back",
  33187. image: {
  33188. source: "./media/characters/sykes/back.svg",
  33189. extra: 1326/1181,
  33190. bottom: 31/1357
  33191. }
  33192. },
  33193. handBack: {
  33194. height: math.unit(0.9, "feet"),
  33195. name: "Hand (Back)",
  33196. image: {
  33197. source: "./media/characters/sykes/hand-back.svg"
  33198. }
  33199. },
  33200. handFront: {
  33201. height: math.unit(0.839, "feet"),
  33202. name: "Hand (Front)",
  33203. image: {
  33204. source: "./media/characters/sykes/hand-front.svg"
  33205. }
  33206. },
  33207. leftFoot: {
  33208. height: math.unit(1.2, "feet"),
  33209. name: "Foot (Left)",
  33210. image: {
  33211. source: "./media/characters/sykes/foot-left.svg"
  33212. }
  33213. },
  33214. rightFoot: {
  33215. height: math.unit(1.2, "feet"),
  33216. name: "Foot (Right)",
  33217. image: {
  33218. source: "./media/characters/sykes/foot-right.svg"
  33219. }
  33220. },
  33221. maw: {
  33222. height: math.unit(1.93, "feet"),
  33223. name: "Maw",
  33224. image: {
  33225. source: "./media/characters/sykes/maw.svg"
  33226. }
  33227. },
  33228. teeth: {
  33229. height: math.unit(0.51, "feet"),
  33230. name: "Teeth",
  33231. image: {
  33232. source: "./media/characters/sykes/teeth.svg"
  33233. }
  33234. },
  33235. tongue: {
  33236. height: math.unit(2.13, "feet"),
  33237. name: "Tongue",
  33238. image: {
  33239. source: "./media/characters/sykes/tongue.svg"
  33240. }
  33241. },
  33242. uvula: {
  33243. height: math.unit(0.16, "feet"),
  33244. name: "Uvula",
  33245. image: {
  33246. source: "./media/characters/sykes/uvula.svg"
  33247. }
  33248. },
  33249. collar: {
  33250. height: math.unit(0.287, "feet"),
  33251. name: "Collar",
  33252. image: {
  33253. source: "./media/characters/sykes/collar.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Shrunken",
  33260. height: math.unit(5, "inches")
  33261. },
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(6 + 4 / 12, "feet"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Big",
  33269. height: math.unit(15, "feet")
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33275. {
  33276. front: {
  33277. height: math.unit(5 + 8/12, "feet"),
  33278. weight: math.unit(190, "lb"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/oven-otter/front.svg",
  33282. extra: 1809/1740,
  33283. bottom: 181/1990
  33284. }
  33285. },
  33286. back: {
  33287. height: math.unit(5 + 8/12, "feet"),
  33288. weight: math.unit(190, "lb"),
  33289. name: "Back",
  33290. image: {
  33291. source: "./media/characters/oven-otter/back.svg",
  33292. extra: 1709/1635,
  33293. bottom: 118/1827
  33294. }
  33295. },
  33296. hand: {
  33297. height: math.unit(1.07, "feet"),
  33298. name: "Hand",
  33299. image: {
  33300. source: "./media/characters/oven-otter/hand.svg"
  33301. }
  33302. },
  33303. beans: {
  33304. height: math.unit(1.74, "feet"),
  33305. name: "Beans",
  33306. image: {
  33307. source: "./media/characters/oven-otter/beans.svg"
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Micro",
  33314. height: math.unit(0.5, "inches")
  33315. },
  33316. {
  33317. name: "Normal",
  33318. height: math.unit(5 + 8/12, "feet"),
  33319. default: true
  33320. },
  33321. {
  33322. name: "Macro",
  33323. height: math.unit(250, "feet")
  33324. },
  33325. {
  33326. name: "Really High",
  33327. height: math.unit(420, "feet")
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(5, "meters"),
  33336. weight: math.unit(292000000000000, "kg"),
  33337. name: "Front",
  33338. image: {
  33339. source: "./media/characters/devourer/front.svg",
  33340. extra: 1800/1733,
  33341. bottom: 211/2011
  33342. }
  33343. },
  33344. maw: {
  33345. height: math.unit(1.1, "meter"),
  33346. name: "Maw",
  33347. image: {
  33348. source: "./media/characters/devourer/maw.svg"
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Small",
  33355. height: math.unit(3, "meters")
  33356. },
  33357. {
  33358. name: "Large",
  33359. height: math.unit(5, "meters"),
  33360. default: true
  33361. },
  33362. ]
  33363. ))
  33364. characterMakers.push(() => makeCharacter(
  33365. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33366. {
  33367. front: {
  33368. height: math.unit(6, "feet"),
  33369. weight: math.unit(400, "lb"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/ellarby/front.svg",
  33373. extra: 1909/1763,
  33374. bottom: 80/1989
  33375. }
  33376. },
  33377. back: {
  33378. height: math.unit(6, "feet"),
  33379. weight: math.unit(400, "lb"),
  33380. name: "Back",
  33381. image: {
  33382. source: "./media/characters/ellarby/back.svg",
  33383. extra: 1914/1784,
  33384. bottom: 172/2086
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Mischief",
  33391. height: math.unit(18, "inches")
  33392. },
  33393. {
  33394. name: "Trouble",
  33395. height: math.unit(12, "feet")
  33396. },
  33397. {
  33398. name: "Havoc",
  33399. height: math.unit(200, "feet"),
  33400. default: true
  33401. },
  33402. {
  33403. name: "Pandemonium",
  33404. height: math.unit(1, "mile")
  33405. },
  33406. {
  33407. name: "Catastrophe",
  33408. height: math.unit(100, "miles")
  33409. },
  33410. ]
  33411. ))
  33412. characterMakers.push(() => makeCharacter(
  33413. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33414. {
  33415. front: {
  33416. height: math.unit(4.7, "meters"),
  33417. weight: math.unit(6500, "kg"),
  33418. name: "Front",
  33419. image: {
  33420. source: "./media/characters/vex/front.svg",
  33421. extra: 1288/1140,
  33422. bottom: 100/1388
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(4.7, "meters"),
  33430. default: true
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33436. {
  33437. normal: {
  33438. height: math.unit(6, "feet"),
  33439. weight: math.unit(350, "lb"),
  33440. name: "Normal",
  33441. image: {
  33442. source: "./media/characters/teshy/normal.svg",
  33443. extra: 1795/1735,
  33444. bottom: 16/1811
  33445. }
  33446. },
  33447. monsterFront: {
  33448. height: math.unit(12, "feet"),
  33449. weight: math.unit(4700, "lb"),
  33450. name: "Monster (Front)",
  33451. image: {
  33452. source: "./media/characters/teshy/monster-front.svg",
  33453. extra: 2042/2034,
  33454. bottom: 128/2170
  33455. }
  33456. },
  33457. monsterSide: {
  33458. height: math.unit(12, "feet"),
  33459. weight: math.unit(4700, "lb"),
  33460. name: "Monster (Side)",
  33461. image: {
  33462. source: "./media/characters/teshy/monster-side.svg",
  33463. extra: 2067/2056,
  33464. bottom: 70/2137
  33465. }
  33466. },
  33467. monsterBack: {
  33468. height: math.unit(12, "feet"),
  33469. weight: math.unit(4700, "lb"),
  33470. name: "Monster (Back)",
  33471. image: {
  33472. source: "./media/characters/teshy/monster-back.svg",
  33473. extra: 1921/1914,
  33474. bottom: 171/2092
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(6, "feet"),
  33482. default: true
  33483. },
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(6, "feet"),
  33491. name: "Front",
  33492. image: {
  33493. source: "./media/characters/ramey/front.svg",
  33494. extra: 790/787,
  33495. bottom: 27/817
  33496. }
  33497. },
  33498. },
  33499. [
  33500. {
  33501. name: "Normal",
  33502. height: math.unit(6, "feet"),
  33503. default: true
  33504. },
  33505. ]
  33506. ))
  33507. characterMakers.push(() => makeCharacter(
  33508. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33509. {
  33510. front: {
  33511. height: math.unit(5 + 5/12, "feet"),
  33512. weight: math.unit(120, "lb"),
  33513. name: "Front",
  33514. image: {
  33515. source: "./media/characters/phirae/front.svg",
  33516. extra: 2491/2436,
  33517. bottom: 38/2529
  33518. }
  33519. },
  33520. },
  33521. [
  33522. {
  33523. name: "Normal",
  33524. height: math.unit(5 + 5/12, "feet"),
  33525. default: true
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33531. {
  33532. front: {
  33533. height: math.unit(6, "feet"),
  33534. weight: math.unit(150, "lb"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/stagglas/front.svg",
  33538. extra: 962/882,
  33539. bottom: 53/1015
  33540. }
  33541. },
  33542. },
  33543. [
  33544. {
  33545. name: "Normal",
  33546. height: math.unit(5 + 3/12, "feet"),
  33547. default: true
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(5 + 4/12, "feet"),
  33556. weight: math.unit(145, "lb"),
  33557. name: "Front",
  33558. image: {
  33559. source: "./media/characters/starra/front.svg",
  33560. extra: 1790/1691,
  33561. bottom: 91/1881
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(5 + 4/12, "feet"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(2.2, "meters"),
  33578. name: "Front",
  33579. image: {
  33580. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33581. extra: 1194/1005,
  33582. bottom: 25/1219
  33583. }
  33584. },
  33585. },
  33586. [
  33587. {
  33588. name: "Normal",
  33589. height: math.unit(2.2, "meters"),
  33590. default: true
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33596. {
  33597. side: {
  33598. height: math.unit(8 + 2/12, "feet"),
  33599. weight: math.unit(1240, "lb"),
  33600. name: "Side",
  33601. image: {
  33602. source: "./media/characters/mika-valentine/side.svg",
  33603. extra: 2670/2501,
  33604. bottom: 250/2920
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Normal",
  33611. height: math.unit(8 + 2/12, "feet"),
  33612. default: true
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33618. {
  33619. front: {
  33620. height: math.unit(7 + 2/12, "feet"),
  33621. name: "Front",
  33622. image: {
  33623. source: "./media/characters/xoltol/front.svg",
  33624. extra: 2212/2124,
  33625. bottom: 84/2296
  33626. }
  33627. },
  33628. side: {
  33629. height: math.unit(7 + 2/12, "feet"),
  33630. name: "Side",
  33631. image: {
  33632. source: "./media/characters/xoltol/side.svg",
  33633. extra: 2273/2197,
  33634. bottom: 26/2299
  33635. }
  33636. },
  33637. hand: {
  33638. height: math.unit(2.5, "feet"),
  33639. name: "Hand",
  33640. image: {
  33641. source: "./media/characters/xoltol/hand.svg"
  33642. }
  33643. },
  33644. },
  33645. [
  33646. {
  33647. name: "Small-ish",
  33648. height: math.unit(5 + 11/12, "feet")
  33649. },
  33650. {
  33651. name: "Normal",
  33652. height: math.unit(7 + 2/12, "feet")
  33653. },
  33654. {
  33655. name: "\"Macro\"",
  33656. height: math.unit(14 + 9/12, "feet"),
  33657. default: true
  33658. },
  33659. {
  33660. name: "Alternate Height",
  33661. height: math.unit(20, "feet")
  33662. },
  33663. {
  33664. name: "Actually Macro",
  33665. height: math.unit(100, "feet")
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33671. {
  33672. front: {
  33673. height: math.unit(5 + 2/12, "feet"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/kotetsu-redwood/front.svg",
  33677. extra: 1053/942,
  33678. bottom: 60/1113
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(5 + 2/12, "feet"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(2.4, "meters"),
  33695. weight: math.unit(125, "kg"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/lilith/front.svg",
  33699. extra: 1590/1513,
  33700. bottom: 203/1793
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Humanoid",
  33707. height: math.unit(2.4, "meters")
  33708. },
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(6, "meters"),
  33712. default: true
  33713. },
  33714. {
  33715. name: "Largest",
  33716. height: math.unit(55, "meters")
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(8 + 4/12, "feet"),
  33725. weight: math.unit(535, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/beh'kah-bolger/front.svg",
  33729. extra: 1660/1603,
  33730. bottom: 37/1697
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Normal",
  33737. height: math.unit(8 + 4/12, "feet"),
  33738. default: true
  33739. },
  33740. {
  33741. name: "Kaiju",
  33742. height: math.unit(250, "feet")
  33743. },
  33744. {
  33745. name: "Still Growing",
  33746. height: math.unit(10, "miles")
  33747. },
  33748. {
  33749. name: "Continental",
  33750. height: math.unit(5000, "miles")
  33751. },
  33752. {
  33753. name: "Final Form",
  33754. height: math.unit(2500000, "miles")
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33760. {
  33761. front: {
  33762. height: math.unit(7 + 2/12, "feet"),
  33763. weight: math.unit(230, "kg"),
  33764. name: "Front",
  33765. image: {
  33766. source: "./media/characters/tatyana-milewska/front.svg",
  33767. extra: 1199/1150,
  33768. bottom: 86/1285
  33769. }
  33770. },
  33771. },
  33772. [
  33773. {
  33774. name: "Normal",
  33775. height: math.unit(7 + 2/12, "feet"),
  33776. default: true
  33777. },
  33778. {
  33779. name: "Big",
  33780. height: math.unit(12, "feet")
  33781. },
  33782. {
  33783. name: "Minimacro",
  33784. height: math.unit(20, "feet")
  33785. },
  33786. {
  33787. name: "Macro",
  33788. height: math.unit(120, "feet")
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(7 + 8/12, "feet"),
  33797. weight: math.unit(152, "kg"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/helen-arri/front.svg",
  33801. extra: 440/423,
  33802. bottom: 14/454
  33803. }
  33804. },
  33805. back: {
  33806. height: math.unit(7 + 8/12, "feet"),
  33807. weight: math.unit(152, "kg"),
  33808. name: "Back",
  33809. image: {
  33810. source: "./media/characters/helen-arri/back.svg",
  33811. extra: 443/426,
  33812. bottom: 8/451
  33813. }
  33814. },
  33815. },
  33816. [
  33817. {
  33818. name: "Normal",
  33819. height: math.unit(7 + 8/12, "feet"),
  33820. default: true
  33821. },
  33822. {
  33823. name: "Big",
  33824. height: math.unit(14, "feet")
  33825. },
  33826. {
  33827. name: "Minimacro",
  33828. height: math.unit(24, "feet")
  33829. },
  33830. {
  33831. name: "Macro",
  33832. height: math.unit(140, "feet")
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(6, "meters"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/ehanu-rehu/front.svg",
  33844. extra: 1800/1800,
  33845. bottom: 59/1859
  33846. }
  33847. },
  33848. },
  33849. [
  33850. {
  33851. name: "Normal",
  33852. height: math.unit(6, "meters"),
  33853. default: true
  33854. },
  33855. ]
  33856. ))
  33857. characterMakers.push(() => makeCharacter(
  33858. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33859. {
  33860. front: {
  33861. height: math.unit(7 + 3/12, "feet"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/renholder/front.svg",
  33865. extra: 3096/2960,
  33866. bottom: 250/3346
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal Bat",
  33873. height: math.unit(7 + 3/12, "feet"),
  33874. default: true
  33875. },
  33876. {
  33877. name: "Slightly Tall Bat",
  33878. height: math.unit(100, "feet")
  33879. },
  33880. {
  33881. name: "Big Bat",
  33882. height: math.unit(1000, "feet")
  33883. },
  33884. {
  33885. name: "City-Sized Bat",
  33886. height: math.unit(200000, "feet")
  33887. },
  33888. {
  33889. name: "Bigger Bat",
  33890. height: math.unit(10000, "miles")
  33891. },
  33892. {
  33893. name: "Solar Sized Bat",
  33894. height: math.unit(100, "AU")
  33895. },
  33896. {
  33897. name: "Galactic Bat",
  33898. height: math.unit(200000, "lightyears")
  33899. },
  33900. {
  33901. name: "Universally Known Bat",
  33902. height: math.unit(1, "universe")
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(6 + 11/12, "feet"),
  33911. weight: math.unit(250, "lb"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/cookiecat/front.svg",
  33915. extra: 893/827,
  33916. bottom: 14/907
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Micro",
  33923. height: math.unit(3, "inches")
  33924. },
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(6 + 11/12, "feet"),
  33928. default: true
  33929. },
  33930. {
  33931. name: "Macro",
  33932. height: math.unit(100, "feet")
  33933. },
  33934. {
  33935. name: "Macro+",
  33936. height: math.unit(404, "feet")
  33937. },
  33938. {
  33939. name: "Megamacro",
  33940. height: math.unit(165, "miles")
  33941. },
  33942. {
  33943. name: "Planetary",
  33944. height: math.unit(4600, "miles")
  33945. },
  33946. ]
  33947. ))
  33948. characterMakers.push(() => makeCharacter(
  33949. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33950. {
  33951. front: {
  33952. height: math.unit(10 + 3/12, "feet"),
  33953. weight: math.unit(1500, "lb"),
  33954. name: "Front",
  33955. image: {
  33956. source: "./media/characters/tux-kusanagi/front.svg",
  33957. extra: 944/840,
  33958. bottom: 39/983
  33959. }
  33960. },
  33961. back: {
  33962. height: math.unit(10 + 3/12, "feet"),
  33963. weight: math.unit(1500, "lb"),
  33964. name: "Back",
  33965. image: {
  33966. source: "./media/characters/tux-kusanagi/back.svg",
  33967. extra: 941/842,
  33968. bottom: 28/969
  33969. }
  33970. },
  33971. rump: {
  33972. height: math.unit(5.25, "feet"),
  33973. name: "Rump",
  33974. image: {
  33975. source: "./media/characters/tux-kusanagi/rump.svg"
  33976. }
  33977. },
  33978. beak: {
  33979. height: math.unit(1.54, "feet"),
  33980. name: "Beak",
  33981. image: {
  33982. source: "./media/characters/tux-kusanagi/beak.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(10 + 3/12, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(58, "feet"),
  33999. weight: math.unit(200, "tons"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/uzarmazari/front.svg",
  34003. extra: 1575/1455,
  34004. bottom: 152/1727
  34005. }
  34006. },
  34007. back: {
  34008. height: math.unit(58, "feet"),
  34009. weight: math.unit(200, "tons"),
  34010. name: "Back",
  34011. image: {
  34012. source: "./media/characters/uzarmazari/back.svg",
  34013. extra: 1585/1510,
  34014. bottom: 157/1742
  34015. }
  34016. },
  34017. head: {
  34018. height: math.unit(26, "feet"),
  34019. name: "Head",
  34020. image: {
  34021. source: "./media/characters/uzarmazari/head.svg"
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Normal",
  34028. height: math.unit(58, "feet"),
  34029. default: true
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34035. {
  34036. side: {
  34037. height: math.unit(15, "feet"),
  34038. name: "Side",
  34039. image: {
  34040. source: "./media/characters/akitu/side.svg",
  34041. extra: 1421/1321,
  34042. bottom: 157/1578
  34043. }
  34044. },
  34045. front: {
  34046. height: math.unit(15, "feet"),
  34047. name: "Front",
  34048. image: {
  34049. source: "./media/characters/akitu/front.svg",
  34050. extra: 1435/1326,
  34051. bottom: 232/1667
  34052. }
  34053. },
  34054. },
  34055. [
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(15, "feet"),
  34059. default: true
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34065. {
  34066. front: {
  34067. height: math.unit(10 + 8/12, "feet"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/azalie-croixland/front.svg",
  34071. extra: 1972/1856,
  34072. bottom: 31/2003
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Original Height",
  34079. height: math.unit(5 + 4/12, "feet")
  34080. },
  34081. {
  34082. name: "Normal Height",
  34083. height: math.unit(10 + 8/12, "feet"),
  34084. default: true
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34090. {
  34091. side: {
  34092. height: math.unit(7 + 1/12, "feet"),
  34093. weight: math.unit(245, "lb"),
  34094. name: "Side",
  34095. image: {
  34096. source: "./media/characters/kavus-kazian/side.svg",
  34097. extra: 349/342,
  34098. bottom: 15/364
  34099. }
  34100. },
  34101. },
  34102. [
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(7 + 1/12, "feet"),
  34106. default: true
  34107. },
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34112. {
  34113. normal: {
  34114. height: math.unit(5 + 11/12, "feet"),
  34115. name: "Normal",
  34116. image: {
  34117. source: "./media/characters/moonlight-rose/normal.svg",
  34118. extra: 1979/1835,
  34119. bottom: 14/1993
  34120. }
  34121. },
  34122. demon: {
  34123. height: math.unit(5, "km"),
  34124. name: "Demon",
  34125. image: {
  34126. source: "./media/characters/moonlight-rose/demon.svg",
  34127. extra: 986/916,
  34128. bottom: 28/1014
  34129. }
  34130. },
  34131. },
  34132. [
  34133. {
  34134. name: "\"Natural\" height",
  34135. height: math.unit(5 + 11/12, "feet")
  34136. },
  34137. {
  34138. name: "Comfortable Size",
  34139. height: math.unit(40, "meters")
  34140. },
  34141. {
  34142. name: "Common Size",
  34143. height: math.unit(50, "km"),
  34144. default: true
  34145. },
  34146. {
  34147. name: "Demonic",
  34148. height: math.unit(1.24415e+21, "meters")
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(16, "feet"),
  34157. weight: math.unit(610, "kg"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/huckle/front.svg",
  34161. extra: 1731/1625,
  34162. bottom: 33/1764
  34163. }
  34164. },
  34165. back: {
  34166. height: math.unit(16, "feet"),
  34167. weight: math.unit(610, "kg"),
  34168. name: "Back",
  34169. image: {
  34170. source: "./media/characters/huckle/back.svg",
  34171. extra: 1738/1651,
  34172. bottom: 37/1775
  34173. }
  34174. },
  34175. laughing: {
  34176. height: math.unit(3.75, "feet"),
  34177. name: "Laughing",
  34178. image: {
  34179. source: "./media/characters/huckle/laughing.svg"
  34180. }
  34181. },
  34182. angry: {
  34183. height: math.unit(4.15, "feet"),
  34184. name: "Angry",
  34185. image: {
  34186. source: "./media/characters/huckle/angry.svg"
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(16, "feet"),
  34194. default: true
  34195. },
  34196. {
  34197. name: "Mini Macro",
  34198. height: math.unit(463, "feet")
  34199. },
  34200. {
  34201. name: "Macro",
  34202. height: math.unit(1680, "meters")
  34203. },
  34204. {
  34205. name: "Mega Macro",
  34206. height: math.unit(175, "km")
  34207. },
  34208. {
  34209. name: "Terra Macro",
  34210. height: math.unit(32, "gigameters")
  34211. },
  34212. {
  34213. name: "Multiverse+",
  34214. height: math.unit(2.56e23, "yottameters")
  34215. },
  34216. ]
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34220. {
  34221. front: {
  34222. height: math.unit(6 + 9/12, "feet"),
  34223. weight: math.unit(280, "lb"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/candy/front.svg",
  34227. extra: 234/217,
  34228. bottom: 11/245
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Really Small",
  34235. height: math.unit(0.1, "nm")
  34236. },
  34237. {
  34238. name: "Micro",
  34239. height: math.unit(2, "inches")
  34240. },
  34241. {
  34242. name: "Normal",
  34243. height: math.unit(6 + 9/12, "feet"),
  34244. default: true
  34245. },
  34246. {
  34247. name: "Small Macro",
  34248. height: math.unit(69, "feet")
  34249. },
  34250. {
  34251. name: "Macro",
  34252. height: math.unit(160, "feet")
  34253. },
  34254. {
  34255. name: "Megamacro",
  34256. height: math.unit(22000, "miles")
  34257. },
  34258. {
  34259. name: "Gigamacro",
  34260. height: math.unit(50000, "miles")
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34266. {
  34267. front: {
  34268. height: math.unit(4, "feet"),
  34269. weight: math.unit(90, "lb"),
  34270. name: "Front",
  34271. image: {
  34272. source: "./media/characters/joey-mcdonald/front.svg",
  34273. extra: 1059/852,
  34274. bottom: 33/1092
  34275. }
  34276. },
  34277. back: {
  34278. height: math.unit(4, "feet"),
  34279. weight: math.unit(90, "lb"),
  34280. name: "Back",
  34281. image: {
  34282. source: "./media/characters/joey-mcdonald/back.svg",
  34283. extra: 1077/879,
  34284. bottom: 5/1082
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Normal",
  34291. height: math.unit(4, "feet"),
  34292. default: true
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(12 + 6/12, "feet"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/kass-lockheed/front.svg",
  34304. extra: 354/343,
  34305. bottom: 9/363
  34306. }
  34307. },
  34308. back: {
  34309. height: math.unit(12 + 6/12, "feet"),
  34310. name: "Back",
  34311. image: {
  34312. source: "./media/characters/kass-lockheed/back.svg",
  34313. extra: 364/352,
  34314. bottom: 3/367
  34315. }
  34316. },
  34317. dick: {
  34318. height: math.unit(3.12, "feet"),
  34319. name: "Dick",
  34320. image: {
  34321. source: "./media/characters/kass-lockheed/dick.svg"
  34322. }
  34323. },
  34324. head: {
  34325. height: math.unit(2.6, "feet"),
  34326. name: "Head",
  34327. image: {
  34328. source: "./media/characters/kass-lockheed/head.svg"
  34329. }
  34330. },
  34331. bleh: {
  34332. height: math.unit(2.85, "feet"),
  34333. name: "Bleh",
  34334. image: {
  34335. source: "./media/characters/kass-lockheed/bleh.svg"
  34336. }
  34337. },
  34338. smug: {
  34339. height: math.unit(2.85, "feet"),
  34340. name: "Smug",
  34341. image: {
  34342. source: "./media/characters/kass-lockheed/smug.svg"
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(12 + 6/12, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34356. {
  34357. front: {
  34358. height: math.unit(6 + 2/12, "feet"),
  34359. name: "Front",
  34360. image: {
  34361. source: "./media/characters/taylor/front.svg",
  34362. extra: 639/495,
  34363. bottom: 12/651
  34364. }
  34365. },
  34366. },
  34367. [
  34368. {
  34369. name: "Normal",
  34370. height: math.unit(6 + 2/12, "feet"),
  34371. default: true
  34372. },
  34373. {
  34374. name: "Big",
  34375. height: math.unit(15, "feet")
  34376. },
  34377. {
  34378. name: "Lorg",
  34379. height: math.unit(80, "feet")
  34380. },
  34381. {
  34382. name: "Too Lorg",
  34383. height: math.unit(120, "feet")
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34389. {
  34390. front: {
  34391. height: math.unit(15, "feet"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/kaizer/front.svg",
  34395. extra: 1612/1436,
  34396. bottom: 43/1655
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(15, "feet"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(2, "feet"),
  34413. weight: math.unit(30, "lb"),
  34414. name: "Front",
  34415. image: {
  34416. source: "./media/characters/sandy/front.svg",
  34417. extra: 1439/1307,
  34418. bottom: 194/1633
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(2, "feet"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34432. {
  34433. front: {
  34434. height: math.unit(3, "feet"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/mellvi/front.svg",
  34438. extra: 1831/1630,
  34439. bottom: 58/1889
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(3, "feet"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(5 + 11/12, "feet"),
  34456. weight: math.unit(200, "lb"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/shirou/front.svg",
  34460. extra: 2491/2383,
  34461. bottom: 189/2680
  34462. }
  34463. },
  34464. back: {
  34465. height: math.unit(5 + 11/12, "feet"),
  34466. weight: math.unit(200, "lb"),
  34467. name: "Back",
  34468. image: {
  34469. source: "./media/characters/shirou/back.svg",
  34470. extra: 2554/2450,
  34471. bottom: 76/2630
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(5 + 11/12, "feet"),
  34479. default: true
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34485. {
  34486. front: {
  34487. height: math.unit(6 + 3/12, "feet"),
  34488. weight: math.unit(177, "lb"),
  34489. name: "Front",
  34490. image: {
  34491. source: "./media/characters/noryu/front.svg",
  34492. extra: 973/885,
  34493. bottom: 10/983
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(6 + 3/12, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(5 + 6/12, "feet"),
  34510. weight: math.unit(170, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/mevolas-rubenido/front.svg",
  34514. extra: 2109/1901,
  34515. bottom: 96/2205
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(5 + 6/12, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(100, "feet"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/dee/front.svg",
  34535. extra: 2153/2036,
  34536. bottom: 59/2212
  34537. }
  34538. },
  34539. back: {
  34540. height: math.unit(100, "feet"),
  34541. name: "Back",
  34542. image: {
  34543. source: "./media/characters/dee/back.svg",
  34544. extra: 2183/2058,
  34545. bottom: 75/2258
  34546. }
  34547. },
  34548. foot: {
  34549. height: math.unit(19.43, "feet"),
  34550. name: "Foot",
  34551. image: {
  34552. source: "./media/characters/dee/foot.svg"
  34553. }
  34554. },
  34555. hoof: {
  34556. height: math.unit(20.6, "feet"),
  34557. name: "Hoof",
  34558. image: {
  34559. source: "./media/characters/dee/hoof.svg"
  34560. }
  34561. },
  34562. },
  34563. [
  34564. {
  34565. name: "Macro",
  34566. height: math.unit(100, "feet"),
  34567. default: true
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34573. {
  34574. front: {
  34575. height: math.unit(5 + 6/12, "feet"),
  34576. name: "Front",
  34577. image: {
  34578. source: "./media/characters/teh/front.svg",
  34579. extra: 1002/847,
  34580. bottom: 62/1064
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Normal",
  34587. height: math.unit(5 + 6/12, "feet"),
  34588. default: true
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34594. {
  34595. side: {
  34596. height: math.unit(6 + 1/12, "feet"),
  34597. weight: math.unit(204, "lb"),
  34598. name: "Side",
  34599. image: {
  34600. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34601. extra: 974/775,
  34602. bottom: 169/1143
  34603. }
  34604. },
  34605. sitting: {
  34606. height: math.unit(6 + 2/12, "feet"),
  34607. weight: math.unit(204, "lb"),
  34608. name: "Sitting",
  34609. image: {
  34610. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34611. extra: 1175/964,
  34612. bottom: 378/1553
  34613. }
  34614. },
  34615. },
  34616. [
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(6 + 1/12, "feet"),
  34620. default: true
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34626. {
  34627. front: {
  34628. height: math.unit(6, "inches"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/tululi/front.svg",
  34632. extra: 1997/1876,
  34633. bottom: 20/2017
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Normal",
  34640. height: math.unit(6, "inches"),
  34641. default: true
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(4 + 1/12, "feet"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/star/front.svg",
  34653. extra: 1493/1189,
  34654. bottom: 48/1541
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(4 + 1/12, "feet"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(6 + 3/12, "feet"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/comet/front.svg",
  34674. extra: 1681/1462,
  34675. bottom: 26/1707
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(6 + 3/12, "feet"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(950, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/vortex/front.svg",
  34695. extra: 1497/1434,
  34696. bottom: 56/1553
  34697. }
  34698. },
  34699. maw: {
  34700. height: math.unit(285, "feet"),
  34701. name: "Maw",
  34702. image: {
  34703. source: "./media/characters/vortex/maw.svg"
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Macro",
  34710. height: math.unit(950, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(600, "feet"),
  34720. weight: math.unit(0.02, "grams"),
  34721. name: "Front",
  34722. image: {
  34723. source: "./media/characters/doodle/front.svg",
  34724. extra: 1578/1413,
  34725. bottom: 37/1615
  34726. }
  34727. },
  34728. },
  34729. [
  34730. {
  34731. name: "Macro",
  34732. height: math.unit(600, "feet"),
  34733. default: true
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34739. {
  34740. front: {
  34741. height: math.unit(6 + 6/12, "feet"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/jai/front.svg",
  34745. extra: 1645/1534,
  34746. bottom: 115/1760
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Normal",
  34753. height: math.unit(6 + 6/12, "feet"),
  34754. default: true
  34755. },
  34756. ]
  34757. ))
  34758. characterMakers.push(() => makeCharacter(
  34759. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34760. {
  34761. front: {
  34762. height: math.unit(6 + 8/12, "feet"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/pixel/front.svg",
  34766. extra: 1900/1735,
  34767. bottom: 63/1963
  34768. }
  34769. },
  34770. },
  34771. [
  34772. {
  34773. name: "Normal",
  34774. height: math.unit(6 + 8/12, "feet"),
  34775. default: true
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34781. {
  34782. front: {
  34783. height: math.unit(4 + 11/12, "feet"),
  34784. weight: math.unit(111, "lb"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/rhett/front.svg",
  34788. extra: 1682/1586,
  34789. bottom: 92/1774
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Mini",
  34796. height: math.unit(1 + 1/12, "feet")
  34797. },
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(4 + 11/12, "feet"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34807. {
  34808. front: {
  34809. height: math.unit(3 + 3/12, "feet"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/penny/front.svg",
  34813. extra: 1406/1311,
  34814. bottom: 26/1432
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(3 + 3/12, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(4 + 11/12, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/monty/front.svg",
  34834. extra: 1479/1209,
  34835. bottom: 0/1479
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(4 + 11/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(8 + 4/12, "feet"),
  34852. name: "Front",
  34853. image: {
  34854. source: "./media/characters/sterling/front.svg",
  34855. extra: 1420/1236,
  34856. bottom: 27/1447
  34857. }
  34858. },
  34859. },
  34860. [
  34861. {
  34862. name: "Normal",
  34863. height: math.unit(8 + 4/12, "feet"),
  34864. default: true
  34865. },
  34866. ]
  34867. ))
  34868. characterMakers.push(() => makeCharacter(
  34869. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34870. {
  34871. front: {
  34872. height: math.unit(15, "feet"),
  34873. name: "Front",
  34874. image: {
  34875. source: "./media/characters/marble/front.svg",
  34876. extra: 973/937,
  34877. bottom: 32/1005
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(15, "feet"),
  34885. default: true
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34891. {
  34892. front: {
  34893. height: math.unit(3, "inches"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/powder/front.svg",
  34897. extra: 1504/1334,
  34898. bottom: 518/2022
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Normal",
  34905. height: math.unit(3, "inches"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(4 + 5/12, "feet"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/joey-raccoon/front.svg",
  34918. extra: 1273/1197,
  34919. bottom: 0/1273
  34920. }
  34921. },
  34922. },
  34923. [
  34924. {
  34925. name: "Normal",
  34926. height: math.unit(4 + 5/12, "feet"),
  34927. default: true
  34928. },
  34929. ]
  34930. ))
  34931. characterMakers.push(() => makeCharacter(
  34932. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34933. {
  34934. front: {
  34935. height: math.unit(8 + 4/12, "feet"),
  34936. name: "Front",
  34937. image: {
  34938. source: "./media/characters/vick/front.svg",
  34939. extra: 2187/2118,
  34940. bottom: 47/2234
  34941. }
  34942. },
  34943. },
  34944. [
  34945. {
  34946. name: "Normal",
  34947. height: math.unit(8 + 4/12, "feet"),
  34948. default: true
  34949. },
  34950. ]
  34951. ))
  34952. characterMakers.push(() => makeCharacter(
  34953. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34954. {
  34955. front: {
  34956. height: math.unit(5 + 5/12, "feet"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/mitsy/front.svg",
  34960. extra: 1842/1695,
  34961. bottom: 0/1842
  34962. }
  34963. },
  34964. },
  34965. [
  34966. {
  34967. name: "Normal",
  34968. height: math.unit(5 + 5/12, "feet"),
  34969. default: true
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(6 + 3/12, "feet"),
  34978. name: "Front",
  34979. image: {
  34980. source: "./media/characters/silvy/front.svg",
  34981. extra: 1995/1836,
  34982. bottom: 225/2220
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(6 + 3/12, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(3 + 8/12, "feet"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/rodney/front.svg",
  35002. extra: 1956/1747,
  35003. bottom: 31/1987
  35004. }
  35005. },
  35006. frontDressed: {
  35007. height: math.unit(2.9, "feet"),
  35008. name: "Front (Dressed)",
  35009. image: {
  35010. source: "./media/characters/rodney/front-dressed.svg",
  35011. extra: 1382/1241,
  35012. bottom: 385/1767
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(3 + 8/12, "feet"),
  35020. default: true
  35021. },
  35022. ]
  35023. ))
  35024. characterMakers.push(() => makeCharacter(
  35025. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35026. {
  35027. front: {
  35028. height: math.unit(5 + 9/12, "feet"),
  35029. weight: math.unit(194, "lbs"),
  35030. name: "Front",
  35031. image: {
  35032. source: "./media/characters/zakail-sudekai/front.svg",
  35033. extra: 2696/2533,
  35034. bottom: 248/2944
  35035. }
  35036. },
  35037. maw: {
  35038. height: math.unit(1.35, "feet"),
  35039. name: "Maw",
  35040. image: {
  35041. source: "./media/characters/zakail-sudekai/maw.svg"
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(5 + 9/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(8 + 4/12, "feet"),
  35058. weight: math.unit(1200, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/eleanor/front.svg",
  35062. extra: 1226/1192,
  35063. bottom: 52/1278
  35064. }
  35065. },
  35066. back: {
  35067. height: math.unit(8 + 4/12, "feet"),
  35068. weight: math.unit(1200, "lb"),
  35069. name: "Back",
  35070. image: {
  35071. source: "./media/characters/eleanor/back.svg",
  35072. extra: 1242/1184,
  35073. bottom: 60/1302
  35074. }
  35075. },
  35076. head: {
  35077. height: math.unit(2.62, "feet"),
  35078. name: "Head",
  35079. image: {
  35080. source: "./media/characters/eleanor/head.svg"
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(8 + 4/12, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(8 + 4/12, "feet"),
  35097. weight: math.unit(750, "lb"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/tanya/front.svg",
  35101. extra: 1749/1615,
  35102. bottom: 33/1782
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(8 + 4/12, "feet"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35116. {
  35117. front: {
  35118. height: math.unit(5, "feet"),
  35119. weight: math.unit(225, "lb"),
  35120. name: "Front",
  35121. image: {
  35122. source: "./media/characters/cindy/front.svg",
  35123. extra: 1320/1250,
  35124. bottom: 42/1362
  35125. }
  35126. },
  35127. frontDressed: {
  35128. height: math.unit(5, "feet"),
  35129. weight: math.unit(225, "lb"),
  35130. name: "Front (Dressed)",
  35131. image: {
  35132. source: "./media/characters/cindy/front-dressed.svg",
  35133. extra: 1320/1250,
  35134. bottom: 42/1362
  35135. }
  35136. },
  35137. back: {
  35138. height: math.unit(5, "feet"),
  35139. weight: math.unit(225, "lb"),
  35140. name: "Back",
  35141. image: {
  35142. source: "./media/characters/cindy/back.svg",
  35143. extra: 1384/1346,
  35144. bottom: 14/1398
  35145. }
  35146. },
  35147. },
  35148. [
  35149. {
  35150. name: "Normal",
  35151. height: math.unit(5, "feet"),
  35152. default: true
  35153. },
  35154. ]
  35155. ))
  35156. characterMakers.push(() => makeCharacter(
  35157. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35158. {
  35159. front: {
  35160. height: math.unit(6 + 9/12, "feet"),
  35161. weight: math.unit(440, "lb"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/wilbur-owen/front.svg",
  35165. extra: 1575/1448,
  35166. bottom: 72/1647
  35167. }
  35168. },
  35169. back: {
  35170. height: math.unit(6 + 9/12, "feet"),
  35171. weight: math.unit(440, "lb"),
  35172. name: "Back",
  35173. image: {
  35174. source: "./media/characters/wilbur-owen/back.svg",
  35175. extra: 1578/1445,
  35176. bottom: 36/1614
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(6 + 9/12, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(6 + 5/12, "feet"),
  35193. weight: math.unit(650, "lb"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/keegan/front.svg",
  35197. extra: 2387/2198,
  35198. bottom: 33/2420
  35199. }
  35200. },
  35201. side: {
  35202. height: math.unit(6 + 5/12, "feet"),
  35203. weight: math.unit(650, "lb"),
  35204. name: "Side",
  35205. image: {
  35206. source: "./media/characters/keegan/side.svg",
  35207. extra: 2390/2202,
  35208. bottom: 47/2437
  35209. }
  35210. },
  35211. back: {
  35212. height: math.unit(6 + 5/12, "feet"),
  35213. weight: math.unit(650, "lb"),
  35214. name: "Back",
  35215. image: {
  35216. source: "./media/characters/keegan/back.svg",
  35217. extra: 2418/2268,
  35218. bottom: 15/2433
  35219. }
  35220. },
  35221. frontSfw: {
  35222. height: math.unit(6 + 5/12, "feet"),
  35223. weight: math.unit(650, "lb"),
  35224. name: "Front (SFW)",
  35225. image: {
  35226. source: "./media/characters/keegan/front-sfw.svg",
  35227. extra: 2387/2198,
  35228. bottom: 33/2420
  35229. }
  35230. },
  35231. beans: {
  35232. height: math.unit(1.85, "feet"),
  35233. name: "Beans",
  35234. image: {
  35235. source: "./media/characters/keegan/beans.svg"
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(6 + 5/12, "feet"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35249. {
  35250. front: {
  35251. height: math.unit(9, "feet"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/colton/front.svg",
  35255. extra: 1589/1326,
  35256. bottom: 139/1728
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(9, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(2 + 9/12, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/bora/front.svg",
  35276. extra: 1265/1250,
  35277. bottom: 24/1289
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(2 + 9/12, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(8, "feet"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/myu-myu/front.svg",
  35297. extra: 1949/1857,
  35298. bottom: 90/2039
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Normal",
  35305. height: math.unit(8, "feet"),
  35306. default: true
  35307. },
  35308. {
  35309. name: "Big",
  35310. height: math.unit(15, "feet")
  35311. },
  35312. {
  35313. name: "BIG",
  35314. height: math.unit(25, "feet")
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35320. {
  35321. side: {
  35322. height: math.unit(7 + 5/12, "feet"),
  35323. weight: math.unit(2800, "lb"),
  35324. name: "Side",
  35325. image: {
  35326. source: "./media/characters/haloren/side.svg",
  35327. extra: 1793/409,
  35328. bottom: 59/1852
  35329. }
  35330. },
  35331. frontPaw: {
  35332. height: math.unit(2.36, "feet"),
  35333. name: "Front paw",
  35334. image: {
  35335. source: "./media/characters/haloren/front-paw.svg"
  35336. }
  35337. },
  35338. hindPaw: {
  35339. height: math.unit(3.18, "feet"),
  35340. name: "Hind paw",
  35341. image: {
  35342. source: "./media/characters/haloren/hind-paw.svg"
  35343. }
  35344. },
  35345. maw: {
  35346. height: math.unit(5.05, "feet"),
  35347. name: "Maw",
  35348. image: {
  35349. source: "./media/characters/haloren/maw.svg"
  35350. }
  35351. },
  35352. dick: {
  35353. height: math.unit(2.90, "feet"),
  35354. name: "Dick",
  35355. image: {
  35356. source: "./media/characters/haloren/dick.svg"
  35357. }
  35358. },
  35359. },
  35360. [
  35361. {
  35362. name: "Normal",
  35363. height: math.unit(7 + 5/12, "feet"),
  35364. default: true
  35365. },
  35366. {
  35367. name: "Enhanced",
  35368. height: math.unit(14 + 3/12, "feet")
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(171, "cm"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/kimmy/front.svg",
  35380. extra: 1491/1435,
  35381. bottom: 53/1544
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Small",
  35388. height: math.unit(9, "cm")
  35389. },
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(171, "cm"),
  35393. default: true
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(8, "feet"),
  35402. weight: math.unit(300, "lb"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/galeboomer/front.svg",
  35406. extra: 4651/4415,
  35407. bottom: 162/4813
  35408. }
  35409. },
  35410. back: {
  35411. height: math.unit(8, "feet"),
  35412. weight: math.unit(300, "lb"),
  35413. name: "Back",
  35414. image: {
  35415. source: "./media/characters/galeboomer/back.svg",
  35416. extra: 4544/4314,
  35417. bottom: 16/4560
  35418. }
  35419. },
  35420. frontAlt: {
  35421. height: math.unit(8, "feet"),
  35422. weight: math.unit(300, "lb"),
  35423. name: "Front (Alt)",
  35424. image: {
  35425. source: "./media/characters/galeboomer/front-alt.svg",
  35426. extra: 4458/4228,
  35427. bottom: 68/4526
  35428. }
  35429. },
  35430. maw: {
  35431. height: math.unit(1.2, "feet"),
  35432. name: "Maw",
  35433. image: {
  35434. source: "./media/characters/galeboomer/maw.svg"
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(8, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(5 + 9/12, "feet"),
  35451. weight: math.unit(120, "lb"),
  35452. name: "Front",
  35453. image: {
  35454. source: "./media/characters/chyr/front.svg",
  35455. extra: 1323/1254,
  35456. bottom: 63/1386
  35457. }
  35458. },
  35459. back: {
  35460. height: math.unit(5 + 9/12, "feet"),
  35461. weight: math.unit(120, "lb"),
  35462. name: "Back",
  35463. image: {
  35464. source: "./media/characters/chyr/back.svg",
  35465. extra: 1323/1252,
  35466. bottom: 48/1371
  35467. }
  35468. },
  35469. },
  35470. [
  35471. {
  35472. name: "Normal",
  35473. height: math.unit(5 + 9/12, "feet"),
  35474. default: true
  35475. },
  35476. ]
  35477. ))
  35478. characterMakers.push(() => makeCharacter(
  35479. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35480. {
  35481. front: {
  35482. height: math.unit(7, "feet"),
  35483. weight: math.unit(310, "lb"),
  35484. name: "Front",
  35485. image: {
  35486. source: "./media/characters/solarus/front.svg",
  35487. extra: 2415/2021,
  35488. bottom: 103/2518
  35489. }
  35490. },
  35491. back: {
  35492. height: math.unit(7, "feet"),
  35493. weight: math.unit(310, "lb"),
  35494. name: "Back",
  35495. image: {
  35496. source: "./media/characters/solarus/back.svg",
  35497. extra: 2463/2089,
  35498. bottom: 79/2542
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(7, "feet"),
  35506. default: true
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(16, "feet"),
  35515. name: "Front",
  35516. image: {
  35517. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35518. extra: 1844/1780,
  35519. bottom: 58/1902
  35520. }
  35521. },
  35522. },
  35523. [
  35524. {
  35525. name: "Normal",
  35526. height: math.unit(16, "feet"),
  35527. default: true
  35528. },
  35529. ]
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35533. {
  35534. front: {
  35535. height: math.unit(11 + 6/12, "feet"),
  35536. weight: math.unit(1366, "lb"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/lexor/front.svg",
  35540. extra: 1560/1481,
  35541. bottom: 211/1771
  35542. }
  35543. },
  35544. back: {
  35545. height: math.unit(11 + 6/12, "feet"),
  35546. weight: math.unit(1366, "lb"),
  35547. name: "Back",
  35548. image: {
  35549. source: "./media/characters/lexor/back.svg",
  35550. extra: 1614/1533,
  35551. bottom: 76/1690
  35552. }
  35553. },
  35554. maw: {
  35555. height: math.unit(3, "feet"),
  35556. name: "Maw",
  35557. image: {
  35558. source: "./media/characters/lexor/maw.svg"
  35559. }
  35560. },
  35561. dick: {
  35562. height: math.unit(2.59, "feet"),
  35563. name: "Dick",
  35564. image: {
  35565. source: "./media/characters/lexor/dick.svg"
  35566. }
  35567. },
  35568. },
  35569. [
  35570. {
  35571. name: "Normal",
  35572. height: math.unit(11 + 6/12, "feet"),
  35573. default: true
  35574. },
  35575. ]
  35576. ))
  35577. characterMakers.push(() => makeCharacter(
  35578. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35579. {
  35580. front: {
  35581. height: math.unit(5 + 8/12, "feet"),
  35582. name: "Front",
  35583. image: {
  35584. source: "./media/characters/magnum/front.svg",
  35585. extra: 942/855,
  35586. bottom: 26/968
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(5 + 8/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35600. {
  35601. front: {
  35602. height: math.unit(18 + 4/12, "feet"),
  35603. weight: math.unit(1500, "kg"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/solas-sharpsman/front.svg",
  35607. extra: 1698/1589,
  35608. bottom: 0/1698
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(18 + 4/12, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(5 + 5/12, "feet"),
  35625. weight: math.unit(180, "lb"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/october/front.svg",
  35629. extra: 1800/1650,
  35630. bottom: 0/1800
  35631. }
  35632. },
  35633. frontNsfw: {
  35634. height: math.unit(5 + 5/12, "feet"),
  35635. weight: math.unit(180, "lb"),
  35636. name: "Front (NSFW)",
  35637. image: {
  35638. source: "./media/characters/october/front-nsfw.svg",
  35639. extra: 1392/1307,
  35640. bottom: 42/1434
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(5 + 5/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(8 + 6/12, "feet"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/essynkardi/front.svg",
  35660. extra: 1914/1846,
  35661. bottom: 22/1936
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(8 + 6/12, "feet"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(6 + 6/12, "feet"),
  35678. weight: math.unit(7, "lb"),
  35679. name: "Front",
  35680. image: {
  35681. source: "./media/characters/icky/front.svg",
  35682. extra: 813/782,
  35683. bottom: 66/879
  35684. }
  35685. },
  35686. back: {
  35687. height: math.unit(6 + 6/12, "feet"),
  35688. weight: math.unit(7, "lb"),
  35689. name: "Back",
  35690. image: {
  35691. source: "./media/characters/icky/back.svg",
  35692. extra: 754/735,
  35693. bottom: 56/810
  35694. }
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "Normal",
  35700. height: math.unit(6 + 6/12, "feet"),
  35701. default: true
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(15, "feet"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/rojas/front.svg",
  35713. extra: 1462/1408,
  35714. bottom: 95/1557
  35715. }
  35716. },
  35717. back: {
  35718. height: math.unit(15, "feet"),
  35719. name: "Back",
  35720. image: {
  35721. source: "./media/characters/rojas/back.svg",
  35722. extra: 1023/954,
  35723. bottom: 28/1051
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(15, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35737. {
  35738. frontHuman: {
  35739. height: math.unit(5 + 7/12, "feet"),
  35740. name: "Front (Human)",
  35741. image: {
  35742. source: "./media/characters/alek-dryagan/front-human.svg",
  35743. extra: 1687/1667,
  35744. bottom: 69/1756
  35745. }
  35746. },
  35747. backHuman: {
  35748. height: math.unit(5 + 7/12, "feet"),
  35749. name: "Back (Human)",
  35750. image: {
  35751. source: "./media/characters/alek-dryagan/back-human.svg",
  35752. extra: 1670/1649,
  35753. bottom: 65/1735
  35754. }
  35755. },
  35756. frontDemi: {
  35757. height: math.unit(65, "feet"),
  35758. name: "Front (Demi)",
  35759. image: {
  35760. source: "./media/characters/alek-dryagan/front-demi.svg",
  35761. extra: 1669/1642,
  35762. bottom: 49/1718
  35763. }
  35764. },
  35765. backDemi: {
  35766. height: math.unit(65, "feet"),
  35767. name: "Back (Demi)",
  35768. image: {
  35769. source: "./media/characters/alek-dryagan/back-demi.svg",
  35770. extra: 1658/1637,
  35771. bottom: 40/1698
  35772. }
  35773. },
  35774. mawHuman: {
  35775. height: math.unit(0.3, "feet"),
  35776. name: "Maw (Human)",
  35777. image: {
  35778. source: "./media/characters/alek-dryagan/maw-human.svg"
  35779. }
  35780. },
  35781. mawDemi: {
  35782. height: math.unit(3.8, "feet"),
  35783. name: "Maw (Demi)",
  35784. image: {
  35785. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(5 + 7/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35799. {
  35800. frontHuman: {
  35801. height: math.unit(5 + 2/12, "feet"),
  35802. name: "Front (Human)",
  35803. image: {
  35804. source: "./media/characters/gen/front-human.svg",
  35805. extra: 1627/1538,
  35806. bottom: 71/1698
  35807. }
  35808. },
  35809. backHuman: {
  35810. height: math.unit(5 + 2/12, "feet"),
  35811. name: "Back (Human)",
  35812. image: {
  35813. source: "./media/characters/gen/back-human.svg",
  35814. extra: 1638/1548,
  35815. bottom: 69/1707
  35816. }
  35817. },
  35818. frontDemi: {
  35819. height: math.unit(5 + 2/12, "feet"),
  35820. name: "Front (Demi)",
  35821. image: {
  35822. source: "./media/characters/gen/front-demi.svg",
  35823. extra: 1627/1538,
  35824. bottom: 71/1698
  35825. }
  35826. },
  35827. backDemi: {
  35828. height: math.unit(5 + 2/12, "feet"),
  35829. name: "Back (Demi)",
  35830. image: {
  35831. source: "./media/characters/gen/back-demi.svg",
  35832. extra: 1638/1548,
  35833. bottom: 69/1707
  35834. }
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(5 + 2/12, "feet"),
  35841. default: true
  35842. },
  35843. ]
  35844. ))
  35845. characterMakers.push(() => makeCharacter(
  35846. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35847. {
  35848. frontImp: {
  35849. height: math.unit(1 + 11/12, "feet"),
  35850. name: "Front (Imp)",
  35851. image: {
  35852. source: "./media/characters/max-kobold/front-imp.svg",
  35853. extra: 1238/1134,
  35854. bottom: 81/1319
  35855. }
  35856. },
  35857. backImp: {
  35858. height: math.unit(1 + 11/12, "feet"),
  35859. name: "Back (Imp)",
  35860. image: {
  35861. source: "./media/characters/max-kobold/back-imp.svg",
  35862. extra: 1334/1175,
  35863. bottom: 34/1368
  35864. }
  35865. },
  35866. frontDemi: {
  35867. height: math.unit(5 + 9/12, "feet"),
  35868. name: "Front (Demi)",
  35869. image: {
  35870. source: "./media/characters/max-kobold/front-demi.svg",
  35871. extra: 1715/1685,
  35872. bottom: 54/1769
  35873. }
  35874. },
  35875. backDemi: {
  35876. height: math.unit(5 + 9/12, "feet"),
  35877. name: "Back (Demi)",
  35878. image: {
  35879. source: "./media/characters/max-kobold/back-demi.svg",
  35880. extra: 1752/1729,
  35881. bottom: 41/1793
  35882. }
  35883. },
  35884. handImp: {
  35885. height: math.unit(0.45, "feet"),
  35886. name: "Hand (Imp)",
  35887. image: {
  35888. source: "./media/characters/max-kobold/hand.svg"
  35889. }
  35890. },
  35891. pawImp: {
  35892. height: math.unit(0.46, "feet"),
  35893. name: "Paw (Imp)",
  35894. image: {
  35895. source: "./media/characters/max-kobold/paw.svg"
  35896. }
  35897. },
  35898. handDemi: {
  35899. height: math.unit(0.80, "feet"),
  35900. name: "Hand (Demi)",
  35901. image: {
  35902. source: "./media/characters/max-kobold/hand.svg"
  35903. }
  35904. },
  35905. pawDemi: {
  35906. height: math.unit(1.1, "feet"),
  35907. name: "Paw (Demi)",
  35908. image: {
  35909. source: "./media/characters/max-kobold/paw.svg"
  35910. }
  35911. },
  35912. headImp: {
  35913. height: math.unit(1.33, "feet"),
  35914. name: "Head (Imp)",
  35915. image: {
  35916. source: "./media/characters/max-kobold/head-imp.svg"
  35917. }
  35918. },
  35919. mawImp: {
  35920. height: math.unit(0.75, "feet"),
  35921. name: "Maw (Imp)",
  35922. image: {
  35923. source: "./media/characters/max-kobold/maw-imp.svg"
  35924. }
  35925. },
  35926. mawDemi: {
  35927. height: math.unit(0.42, "feet"),
  35928. name: "Maw (Demi)",
  35929. image: {
  35930. source: "./media/characters/max-kobold/maw-demi.svg"
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(1 + 11/12, "feet"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35944. {
  35945. front: {
  35946. height: math.unit(7 + 5/12, "feet"),
  35947. name: "Front",
  35948. image: {
  35949. source: "./media/characters/carbon/front.svg",
  35950. extra: 1754/1689,
  35951. bottom: 65/1819
  35952. }
  35953. },
  35954. back: {
  35955. height: math.unit(7 + 5/12, "feet"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/carbon/back.svg",
  35959. extra: 1762/1695,
  35960. bottom: 24/1786
  35961. }
  35962. },
  35963. frontGigantamax: {
  35964. height: math.unit(150, "feet"),
  35965. name: "Front (Gigantamax)",
  35966. image: {
  35967. source: "./media/characters/carbon/front-gigantamax.svg",
  35968. extra: 1826/1669,
  35969. bottom: 59/1885
  35970. }
  35971. },
  35972. backGigantamax: {
  35973. height: math.unit(150, "feet"),
  35974. name: "Back (Gigantamax)",
  35975. image: {
  35976. source: "./media/characters/carbon/back-gigantamax.svg",
  35977. extra: 1796/1653,
  35978. bottom: 53/1849
  35979. }
  35980. },
  35981. maw: {
  35982. height: math.unit(0.48, "feet"),
  35983. name: "Maw",
  35984. image: {
  35985. source: "./media/characters/carbon/maw.svg"
  35986. }
  35987. },
  35988. mawGigantamax: {
  35989. height: math.unit(7.5, "feet"),
  35990. name: "Maw (Gigantamax)",
  35991. image: {
  35992. source: "./media/characters/carbon/maw-gigantamax.svg"
  35993. }
  35994. },
  35995. },
  35996. [
  35997. {
  35998. name: "Normal",
  35999. height: math.unit(7 + 5/12, "feet"),
  36000. default: true
  36001. },
  36002. ]
  36003. ))
  36004. characterMakers.push(() => makeCharacter(
  36005. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36006. {
  36007. front: {
  36008. height: math.unit(6, "feet"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/maverick/front.svg",
  36012. extra: 1672/1661,
  36013. bottom: 85/1757
  36014. }
  36015. },
  36016. back: {
  36017. height: math.unit(6, "feet"),
  36018. name: "Back",
  36019. image: {
  36020. source: "./media/characters/maverick/back.svg",
  36021. extra: 1642/1631,
  36022. bottom: 38/1680
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(6, "feet"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(15, "feet"),
  36039. weight: math.unit(615, "lb"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/grockle/front.svg",
  36043. extra: 1535/1427,
  36044. bottom: 56/1591
  36045. }
  36046. },
  36047. },
  36048. [
  36049. {
  36050. name: "Normal",
  36051. height: math.unit(15, "feet"),
  36052. default: true
  36053. },
  36054. {
  36055. name: "Large",
  36056. height: math.unit(150, "feet")
  36057. },
  36058. {
  36059. name: "Macro",
  36060. height: math.unit(1876, "feet")
  36061. },
  36062. {
  36063. name: "Mega Macro",
  36064. height: math.unit(121940, "feet")
  36065. },
  36066. {
  36067. name: "Giga Macro",
  36068. height: math.unit(750, "km")
  36069. },
  36070. {
  36071. name: "Tera Macro",
  36072. height: math.unit(750000, "km")
  36073. },
  36074. {
  36075. name: "Galactic",
  36076. height: math.unit(1.4e5, "km")
  36077. },
  36078. {
  36079. name: "Godlike",
  36080. height: math.unit(9.8e280, "galaxies")
  36081. },
  36082. ]
  36083. ))
  36084. characterMakers.push(() => makeCharacter(
  36085. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36086. {
  36087. front: {
  36088. height: math.unit(11, "meters"),
  36089. weight: math.unit(20, "tonnes"),
  36090. name: "Front",
  36091. image: {
  36092. source: "./media/characters/alistair/front.svg",
  36093. extra: 1265/1009,
  36094. bottom: 93/1358
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(11, "meters"),
  36102. default: true
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36108. {
  36109. front: {
  36110. height: math.unit(5 + 8/12, "feet"),
  36111. name: "Front",
  36112. image: {
  36113. source: "./media/characters/haruka/front.svg",
  36114. extra: 2012/1952,
  36115. bottom: 0/2012
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(5 + 8/12, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36129. {
  36130. back: {
  36131. height: math.unit(9, "feet"),
  36132. name: "Back",
  36133. image: {
  36134. source: "./media/characters/vivian-sylveon/back.svg",
  36135. extra: 1853/1714,
  36136. bottom: 0/1853
  36137. }
  36138. },
  36139. },
  36140. [
  36141. {
  36142. name: "Normal",
  36143. height: math.unit(9, "feet"),
  36144. default: true
  36145. },
  36146. {
  36147. name: "Macro",
  36148. height: math.unit(500, "feet")
  36149. },
  36150. {
  36151. name: "Megamacro",
  36152. height: math.unit(600, "miles")
  36153. },
  36154. {
  36155. name: "Gigamacro",
  36156. height: math.unit(30000, "miles")
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36162. {
  36163. anthro: {
  36164. height: math.unit(5 + 10/12, "feet"),
  36165. weight: math.unit(100, "lb"),
  36166. name: "Anthro",
  36167. image: {
  36168. source: "./media/characters/daiki/anthro.svg",
  36169. extra: 1115/1027,
  36170. bottom: 69/1184
  36171. }
  36172. },
  36173. feral: {
  36174. height: math.unit(200, "feet"),
  36175. name: "Feral",
  36176. image: {
  36177. source: "./media/characters/daiki/feral.svg",
  36178. extra: 1256/313,
  36179. bottom: 39/1295
  36180. }
  36181. },
  36182. feralHead: {
  36183. height: math.unit(171, "feet"),
  36184. name: "Feral Head",
  36185. image: {
  36186. source: "./media/characters/daiki/feral-head.svg"
  36187. }
  36188. },
  36189. },
  36190. [
  36191. {
  36192. name: "Normal",
  36193. height: math.unit(5 + 10/12, "feet"),
  36194. default: true
  36195. },
  36196. ]
  36197. ))
  36198. characterMakers.push(() => makeCharacter(
  36199. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36200. {
  36201. fullyEquippedFront: {
  36202. height: math.unit(3 + 1/12, "feet"),
  36203. weight: math.unit(24, "lb"),
  36204. name: "Fully Equipped (Front)",
  36205. image: {
  36206. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36207. extra: 687/605,
  36208. bottom: 18/705
  36209. }
  36210. },
  36211. fullyEquippedBack: {
  36212. height: math.unit(3 + 1/12, "feet"),
  36213. weight: math.unit(24, "lb"),
  36214. name: "Fully Equipped (Back)",
  36215. image: {
  36216. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36217. extra: 689/590,
  36218. bottom: 18/707
  36219. }
  36220. },
  36221. dailyWear: {
  36222. height: math.unit(3 + 1/12, "feet"),
  36223. weight: math.unit(24, "lb"),
  36224. name: "Daily Wear",
  36225. image: {
  36226. source: "./media/characters/tea-spot/daily-wear.svg",
  36227. extra: 701/620,
  36228. bottom: 21/722
  36229. }
  36230. },
  36231. maidWork: {
  36232. height: math.unit(3 + 1/12, "feet"),
  36233. weight: math.unit(24, "lb"),
  36234. name: "Maid Work",
  36235. image: {
  36236. source: "./media/characters/tea-spot/maid-work.svg",
  36237. extra: 693/609,
  36238. bottom: 15/708
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Normal",
  36245. height: math.unit(3 + 1/12, "feet"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36252. {
  36253. front: {
  36254. height: math.unit(175, "cm"),
  36255. weight: math.unit(75, "kg"),
  36256. name: "Front",
  36257. image: {
  36258. source: "./media/characters/chee/front.svg",
  36259. extra: 1796/1740,
  36260. bottom: 40/1836
  36261. }
  36262. },
  36263. },
  36264. [
  36265. {
  36266. name: "Micro-Micro",
  36267. height: math.unit(1, "nm")
  36268. },
  36269. {
  36270. name: "Micro-erst",
  36271. height: math.unit(1, "micrometer")
  36272. },
  36273. {
  36274. name: "Micro-er",
  36275. height: math.unit(1, "cm")
  36276. },
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(175, "cm"),
  36280. default: true
  36281. },
  36282. {
  36283. name: "Macro",
  36284. height: math.unit(100, "m")
  36285. },
  36286. {
  36287. name: "Macro-er",
  36288. height: math.unit(1, "km")
  36289. },
  36290. {
  36291. name: "Macro-erst",
  36292. height: math.unit(10, "km")
  36293. },
  36294. {
  36295. name: "Macro-Macro",
  36296. height: math.unit(100, "km")
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(11 + 9/12, "feet"),
  36305. weight: math.unit(935, "lb"),
  36306. name: "Front",
  36307. image: {
  36308. source: "./media/characters/kingsley/front.svg",
  36309. extra: 1803/1674,
  36310. bottom: 127/1930
  36311. }
  36312. },
  36313. frontNude: {
  36314. height: math.unit(11 + 9/12, "feet"),
  36315. weight: math.unit(935, "lb"),
  36316. name: "Front (Nude)",
  36317. image: {
  36318. source: "./media/characters/kingsley/front-nude.svg",
  36319. extra: 1803/1674,
  36320. bottom: 127/1930
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(11 + 9/12, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36334. {
  36335. side: {
  36336. height: math.unit(9, "feet"),
  36337. name: "Side",
  36338. image: {
  36339. source: "./media/characters/rymel/side.svg",
  36340. extra: 792/469,
  36341. bottom: 121/913
  36342. }
  36343. },
  36344. maw: {
  36345. height: math.unit(2.4, "meters"),
  36346. name: "Maw",
  36347. image: {
  36348. source: "./media/characters/rymel/maw.svg"
  36349. }
  36350. },
  36351. },
  36352. [
  36353. {
  36354. name: "House Drake",
  36355. height: math.unit(2, "feet")
  36356. },
  36357. {
  36358. name: "Reduced",
  36359. height: math.unit(4.5, "feet")
  36360. },
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(9, "feet"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(1.74, "meters"),
  36373. weight: math.unit(55, "kg"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/rubus/front.svg",
  36377. extra: 1894/1742,
  36378. bottom: 44/1938
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(1.74, "meters"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(5 + 2/12, "feet"),
  36395. weight: math.unit(112, "lb"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/cassie-kingston/front.svg",
  36399. extra: 1438/1390,
  36400. bottom: 47/1485
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(5 + 2/12, "feet"),
  36408. default: true
  36409. },
  36410. {
  36411. name: "Macro",
  36412. height: math.unit(128, "feet")
  36413. },
  36414. {
  36415. name: "Megamacro",
  36416. height: math.unit(2.56, "miles")
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(7, "feet"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/fox/front.svg",
  36428. extra: 1798/1703,
  36429. bottom: 55/1853
  36430. }
  36431. },
  36432. back: {
  36433. height: math.unit(7, "feet"),
  36434. name: "Back",
  36435. image: {
  36436. source: "./media/characters/fox/back.svg",
  36437. extra: 1748/1649,
  36438. bottom: 32/1780
  36439. }
  36440. },
  36441. head: {
  36442. height: math.unit(1.95, "feet"),
  36443. name: "Head",
  36444. image: {
  36445. source: "./media/characters/fox/head.svg"
  36446. }
  36447. },
  36448. dick: {
  36449. height: math.unit(1.33, "feet"),
  36450. name: "Dick",
  36451. image: {
  36452. source: "./media/characters/fox/dick.svg"
  36453. }
  36454. },
  36455. foot: {
  36456. height: math.unit(1, "feet"),
  36457. name: "Foot",
  36458. image: {
  36459. source: "./media/characters/fox/foot.svg"
  36460. }
  36461. },
  36462. paw: {
  36463. height: math.unit(0.92, "feet"),
  36464. name: "Paw",
  36465. image: {
  36466. source: "./media/characters/fox/paw.svg"
  36467. }
  36468. },
  36469. },
  36470. [
  36471. {
  36472. name: "Small",
  36473. height: math.unit(3, "inches")
  36474. },
  36475. {
  36476. name: "\"Realistic\"",
  36477. height: math.unit(7, "feet")
  36478. },
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(150, "feet"),
  36482. default: true
  36483. },
  36484. {
  36485. name: "BIG",
  36486. height: math.unit(1200, "feet")
  36487. },
  36488. {
  36489. name: "👀",
  36490. height: math.unit(5, "miles")
  36491. },
  36492. {
  36493. name: "👀👀👀",
  36494. height: math.unit(64, "miles")
  36495. },
  36496. ]
  36497. ))
  36498. characterMakers.push(() => makeCharacter(
  36499. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36500. {
  36501. front: {
  36502. height: math.unit(625, "feet"),
  36503. name: "Front",
  36504. image: {
  36505. source: "./media/characters/asonja-rossa/front.svg",
  36506. extra: 1833/1686,
  36507. bottom: 24/1857
  36508. }
  36509. },
  36510. back: {
  36511. height: math.unit(625, "feet"),
  36512. name: "Back",
  36513. image: {
  36514. source: "./media/characters/asonja-rossa/back.svg",
  36515. extra: 1852/1753,
  36516. bottom: 26/1878
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Macro",
  36523. height: math.unit(625, "feet"),
  36524. default: true
  36525. },
  36526. ]
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36530. {
  36531. side: {
  36532. height: math.unit(6, "feet"),
  36533. weight: math.unit(150, "lb"),
  36534. name: "Side",
  36535. image: {
  36536. source: "./media/characters/rezukii/side.svg",
  36537. extra: 979/542,
  36538. bottom: 87/1066
  36539. }
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "Tiny",
  36545. height: math.unit(2, "feet")
  36546. },
  36547. {
  36548. name: "Smol",
  36549. height: math.unit(4, "feet")
  36550. },
  36551. {
  36552. name: "Normal",
  36553. height: math.unit(8, "feet"),
  36554. default: true
  36555. },
  36556. {
  36557. name: "Big",
  36558. height: math.unit(12, "feet")
  36559. },
  36560. {
  36561. name: "Macro",
  36562. height: math.unit(30, "feet")
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(14, "feet"),
  36571. weight: math.unit(9.5, "tonnes"),
  36572. name: "Front",
  36573. image: {
  36574. source: "./media/characters/dawnheart/front.svg",
  36575. extra: 2792/2675,
  36576. bottom: 64/2856
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(14, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36590. {
  36591. front: {
  36592. height: math.unit(1.7, "m"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/gladi/front.svg",
  36596. extra: 1460/1362,
  36597. bottom: 19/1479
  36598. }
  36599. },
  36600. back: {
  36601. height: math.unit(1.7, "m"),
  36602. name: "Back",
  36603. image: {
  36604. source: "./media/characters/gladi/back.svg",
  36605. extra: 1459/1357,
  36606. bottom: 12/1471
  36607. }
  36608. },
  36609. feral: {
  36610. height: math.unit(2.05, "m"),
  36611. name: "Feral",
  36612. image: {
  36613. source: "./media/characters/gladi/feral.svg",
  36614. extra: 821/557,
  36615. bottom: 91/912
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Shortest",
  36622. height: math.unit(70, "cm")
  36623. },
  36624. {
  36625. name: "Normal",
  36626. height: math.unit(1.7, "m")
  36627. },
  36628. {
  36629. name: "Macro",
  36630. height: math.unit(10, "m"),
  36631. default: true
  36632. },
  36633. {
  36634. name: "Tallest",
  36635. height: math.unit(200, "m")
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36641. {
  36642. front: {
  36643. height: math.unit(5 + 7/12, "feet"),
  36644. weight: math.unit(92, "kg"),
  36645. name: "Front",
  36646. image: {
  36647. source: "./media/characters/erdno/front.svg",
  36648. extra: 1954/1889,
  36649. bottom: 22/1976
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(5 + 7/12, "feet"),
  36657. default: true
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36663. {
  36664. front: {
  36665. height: math.unit(5 + 10/12, "feet"),
  36666. weight: math.unit(150, "lb"),
  36667. name: "Front",
  36668. image: {
  36669. source: "./media/characters/jamie/front.svg",
  36670. extra: 1908/1768,
  36671. bottom: 19/1927
  36672. }
  36673. },
  36674. },
  36675. [
  36676. {
  36677. name: "Minimum",
  36678. height: math.unit(2, "cm")
  36679. },
  36680. {
  36681. name: "Micro",
  36682. height: math.unit(3, "inches")
  36683. },
  36684. {
  36685. name: "Normal",
  36686. height: math.unit(5 + 10/12, "feet"),
  36687. default: true
  36688. },
  36689. {
  36690. name: "Macro",
  36691. height: math.unit(150, "feet")
  36692. },
  36693. {
  36694. name: "Megamacro",
  36695. height: math.unit(10000, "m")
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(2, "meters"),
  36704. weight: math.unit(100, "kg"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/shiron/front.svg",
  36708. extra: 2103/1985,
  36709. bottom: 98/2201
  36710. }
  36711. },
  36712. back: {
  36713. height: math.unit(2, "meters"),
  36714. weight: math.unit(100, "kg"),
  36715. name: "Back",
  36716. image: {
  36717. source: "./media/characters/shiron/back.svg",
  36718. extra: 2110/2015,
  36719. bottom: 89/2199
  36720. }
  36721. },
  36722. hand: {
  36723. height: math.unit(0.96, "feet"),
  36724. name: "Hand",
  36725. image: {
  36726. source: "./media/characters/shiron/hand.svg"
  36727. }
  36728. },
  36729. foot: {
  36730. height: math.unit(1.464, "feet"),
  36731. name: "Foot",
  36732. image: {
  36733. source: "./media/characters/shiron/foot.svg"
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Normal",
  36740. height: math.unit(2, "meters")
  36741. },
  36742. {
  36743. name: "Macro",
  36744. height: math.unit(500, "meters"),
  36745. default: true
  36746. },
  36747. {
  36748. name: "Megamacro",
  36749. height: math.unit(20, "km")
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(6, "feet"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/sam/front.svg",
  36761. extra: 849/826,
  36762. bottom: 19/868
  36763. }
  36764. },
  36765. },
  36766. [
  36767. {
  36768. name: "Normal",
  36769. height: math.unit(6, "feet"),
  36770. default: true
  36771. },
  36772. ]
  36773. ))
  36774. characterMakers.push(() => makeCharacter(
  36775. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36776. {
  36777. front: {
  36778. height: math.unit(8 + 4/12, "feet"),
  36779. weight: math.unit(122, "kg"),
  36780. name: "Front",
  36781. image: {
  36782. source: "./media/characters/namori-kurogawa/front.svg",
  36783. extra: 1894/1576,
  36784. bottom: 34/1928
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(8 + 4/12, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(9, "feet"),
  36801. weight: math.unit(621, "lb"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/unmru/front.svg",
  36805. extra: 1853/1747,
  36806. bottom: 73/1926
  36807. }
  36808. },
  36809. side: {
  36810. height: math.unit(9, "feet"),
  36811. weight: math.unit(621, "lb"),
  36812. name: "Side",
  36813. image: {
  36814. source: "./media/characters/unmru/side.svg",
  36815. extra: 1781/1671,
  36816. bottom: 127/1908
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(9, "feet"),
  36821. weight: math.unit(621, "lb"),
  36822. name: "Back",
  36823. image: {
  36824. source: "./media/characters/unmru/back.svg",
  36825. extra: 1894/1765,
  36826. bottom: 75/1969
  36827. }
  36828. },
  36829. dick: {
  36830. height: math.unit(3, "feet"),
  36831. weight: math.unit(35, "lb"),
  36832. name: "Dick",
  36833. image: {
  36834. source: "./media/characters/unmru/dick.svg"
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(9, "feet")
  36842. },
  36843. {
  36844. name: "Natural",
  36845. height: math.unit(27, "feet"),
  36846. default: true
  36847. },
  36848. {
  36849. name: "Giant",
  36850. height: math.unit(90, "feet")
  36851. },
  36852. {
  36853. name: "Kaiju",
  36854. height: math.unit(270, "feet")
  36855. },
  36856. {
  36857. name: "Macro",
  36858. height: math.unit(900, "feet")
  36859. },
  36860. {
  36861. name: "Macro+",
  36862. height: math.unit(2700, "feet")
  36863. },
  36864. {
  36865. name: "Megamacro",
  36866. height: math.unit(9000, "feet")
  36867. },
  36868. {
  36869. name: "City-Crushing",
  36870. height: math.unit(27000, "feet")
  36871. },
  36872. {
  36873. name: "Mountain-Mashing",
  36874. height: math.unit(90000, "feet")
  36875. },
  36876. {
  36877. name: "Earth-Eclipsing",
  36878. height: math.unit(2.7e8, "feet")
  36879. },
  36880. {
  36881. name: "Sol-Swallowing",
  36882. height: math.unit(9e10, "feet")
  36883. },
  36884. {
  36885. name: "Majoris-Munching",
  36886. height: math.unit(2.7e13, "feet")
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36892. {
  36893. front: {
  36894. height: math.unit(1, "inch"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/squeaks-mouse/front.svg",
  36898. extra: 352/308,
  36899. bottom: 25/377
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Micro",
  36906. height: math.unit(1, "inch"),
  36907. default: true
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36913. {
  36914. side: {
  36915. height: math.unit(35, "feet"),
  36916. name: "Side",
  36917. image: {
  36918. source: "./media/characters/sayko/side.svg",
  36919. extra: 1697/1021,
  36920. bottom: 82/1779
  36921. }
  36922. },
  36923. head: {
  36924. height: math.unit(16, "feet"),
  36925. name: "Head",
  36926. image: {
  36927. source: "./media/characters/sayko/head.svg"
  36928. }
  36929. },
  36930. forepaw: {
  36931. height: math.unit(7.85, "feet"),
  36932. name: "Forepaw",
  36933. image: {
  36934. source: "./media/characters/sayko/forepaw.svg"
  36935. }
  36936. },
  36937. hindpaw: {
  36938. height: math.unit(8.8, "feet"),
  36939. name: "Hindpaw",
  36940. image: {
  36941. source: "./media/characters/sayko/hindpaw.svg"
  36942. }
  36943. },
  36944. },
  36945. [
  36946. {
  36947. name: "Normal",
  36948. height: math.unit(35, "feet"),
  36949. default: true
  36950. },
  36951. {
  36952. name: "Colossus",
  36953. height: math.unit(100, "meters")
  36954. },
  36955. {
  36956. name: "\"Small\" Deity",
  36957. height: math.unit(1, "km")
  36958. },
  36959. {
  36960. name: "\"Large\" Deity",
  36961. height: math.unit(15, "km")
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(6, "feet"),
  36970. weight: math.unit(250, "lb"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/mukiro/front.svg",
  36974. extra: 1368/1310,
  36975. bottom: 34/1402
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(6, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  36989. {
  36990. front: {
  36991. height: math.unit(12 + 4/12, "feet"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/zeph-the-tiger-god/front.svg",
  36995. extra: 1346/1311,
  36996. bottom: 65/1411
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Base",
  37003. height: math.unit(12 + 4/12, "feet"),
  37004. default: true
  37005. },
  37006. {
  37007. name: "Macro",
  37008. height: math.unit(150, "feet")
  37009. },
  37010. {
  37011. name: "Mega",
  37012. height: math.unit(2, "miles")
  37013. },
  37014. {
  37015. name: "Demi God",
  37016. height: math.unit(4, "AU")
  37017. },
  37018. {
  37019. name: "God Size",
  37020. height: math.unit(1, "universe")
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37026. {
  37027. front: {
  37028. height: math.unit(3 + 3/12, "feet"),
  37029. weight: math.unit(88, "lb"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/trey/front.svg",
  37033. extra: 1815/1509,
  37034. bottom: 60/1875
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(3 + 3/12, "feet"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(4, "meters"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/adelonda/front.svg",
  37054. extra: 1942/1775,
  37055. bottom: 33/1975
  37056. }
  37057. },
  37058. back: {
  37059. height: math.unit(4, "meters"),
  37060. name: "Back",
  37061. image: {
  37062. source: "./media/characters/adelonda/back.svg",
  37063. extra: 1932/1780,
  37064. bottom: 42/1974
  37065. }
  37066. },
  37067. bust: {
  37068. height: math.unit(1.8, "meter"),
  37069. name: "Bust",
  37070. image: {
  37071. source: "./media/characters/adelonda/bust.svg"
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(4, "meters"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(8 + 4/12, "feet"),
  37088. weight: math.unit(670, "lb"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/acadiel/front.svg",
  37092. extra: 1901/1595,
  37093. bottom: 142/2043
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(8 + 4/12, "feet"),
  37101. default: true
  37102. },
  37103. {
  37104. name: "Macro",
  37105. height: math.unit(200, "feet")
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(6 + 2/12, "feet"),
  37114. weight: math.unit(185, "lb"),
  37115. name: "Front",
  37116. image: {
  37117. source: "./media/characters/kayne-ein/front.svg",
  37118. extra: 1780/1560,
  37119. bottom: 81/1861
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(6 + 2/12, "feet"),
  37127. default: true
  37128. },
  37129. {
  37130. name: "Transformation Stage",
  37131. height: math.unit(15, "feet")
  37132. },
  37133. {
  37134. name: "Macro",
  37135. height: math.unit(150, "feet")
  37136. },
  37137. {
  37138. name: "Earth's Shadow",
  37139. height: math.unit(6200, "miles")
  37140. },
  37141. {
  37142. name: "Universal Demon",
  37143. height: math.unit(28e9, "parsecs")
  37144. },
  37145. {
  37146. name: "Multiverse God",
  37147. height: math.unit(3, "multiverses")
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(5 + 5/12, "feet"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/fawn/front.svg",
  37159. extra: 1873/1731,
  37160. bottom: 95/1968
  37161. }
  37162. },
  37163. back: {
  37164. height: math.unit(5 + 5/12, "feet"),
  37165. name: "Back",
  37166. image: {
  37167. source: "./media/characters/fawn/back.svg",
  37168. extra: 1813/1700,
  37169. bottom: 14/1827
  37170. }
  37171. },
  37172. hoof: {
  37173. height: math.unit(1.45, "feet"),
  37174. name: "Hoof",
  37175. image: {
  37176. source: "./media/characters/fawn/hoof.svg"
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(5 + 5/12, "feet"),
  37184. default: true
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(2 + 5/12, "feet"),
  37193. name: "Front",
  37194. image: {
  37195. source: "./media/characters/orion/front.svg",
  37196. extra: 1366/1304,
  37197. bottom: 43/1409
  37198. }
  37199. },
  37200. paw: {
  37201. height: math.unit(0.52, "feet"),
  37202. name: "Paw",
  37203. image: {
  37204. source: "./media/characters/orion/paw.svg"
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(2 + 5/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(5 + 10/12, "feet"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/vera/front.svg",
  37224. extra: 1680/1575,
  37225. bottom: 49/1729
  37226. }
  37227. },
  37228. back: {
  37229. height: math.unit(5 + 10/12, "feet"),
  37230. name: "Back",
  37231. image: {
  37232. source: "./media/characters/vera/back.svg",
  37233. extra: 1700/1588,
  37234. bottom: 18/1718
  37235. }
  37236. },
  37237. arcanine: {
  37238. height: math.unit(6 + 8/12, "feet"),
  37239. name: "Arcanine",
  37240. image: {
  37241. source: "./media/characters/vera/arcanine.svg",
  37242. extra: 1590/1511,
  37243. bottom: 71/1661
  37244. }
  37245. },
  37246. maw: {
  37247. height: math.unit(0.82, "feet"),
  37248. name: "Maw",
  37249. image: {
  37250. source: "./media/characters/vera/maw.svg"
  37251. }
  37252. },
  37253. mawArcanine: {
  37254. height: math.unit(0.97, "feet"),
  37255. name: "Maw (Arcanine)",
  37256. image: {
  37257. source: "./media/characters/vera/maw-arcanine.svg"
  37258. }
  37259. },
  37260. paw: {
  37261. height: math.unit(0.75, "feet"),
  37262. name: "Paw",
  37263. image: {
  37264. source: "./media/characters/vera/paw.svg"
  37265. }
  37266. },
  37267. pawprint: {
  37268. height: math.unit(0.52, "feet"),
  37269. name: "Pawprint",
  37270. image: {
  37271. source: "./media/characters/vera/pawprint.svg"
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(5 + 10/12, "feet"),
  37279. default: true
  37280. },
  37281. {
  37282. name: "Macro",
  37283. height: math.unit(75, "feet")
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(4, "feet"),
  37292. weight: math.unit(40, "lb"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/orvan-rabbit/front.svg",
  37296. extra: 1896/1642,
  37297. bottom: 29/1925
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(4, "feet"),
  37305. default: true
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(6, "feet"),
  37314. weight: math.unit(168, "lb"),
  37315. name: "Front",
  37316. image: {
  37317. source: "./media/characters/lisa/front.svg",
  37318. extra: 2065/1867,
  37319. bottom: 46/2111
  37320. }
  37321. },
  37322. back: {
  37323. height: math.unit(6, "feet"),
  37324. weight: math.unit(168, "lb"),
  37325. name: "Back",
  37326. image: {
  37327. source: "./media/characters/lisa/back.svg",
  37328. extra: 1982/1838,
  37329. bottom: 29/2011
  37330. }
  37331. },
  37332. maw: {
  37333. height: math.unit(0.81, "feet"),
  37334. name: "Maw",
  37335. image: {
  37336. source: "./media/characters/lisa/maw.svg"
  37337. }
  37338. },
  37339. paw: {
  37340. height: math.unit(0.9, "feet"),
  37341. name: "Paw",
  37342. image: {
  37343. source: "./media/characters/lisa/paw.svg"
  37344. }
  37345. },
  37346. caribousune: {
  37347. height: math.unit(7 + 2/12, "feet"),
  37348. weight: math.unit(268, "lb"),
  37349. name: "Caribousune",
  37350. image: {
  37351. source: "./media/characters/lisa/caribousune.svg",
  37352. extra: 1843/1633,
  37353. bottom: 29/1872
  37354. }
  37355. },
  37356. frontCaribousune: {
  37357. height: math.unit(7 + 2/12, "feet"),
  37358. weight: math.unit(268, "lb"),
  37359. name: "Front (Caribousune)",
  37360. image: {
  37361. source: "./media/characters/lisa/front-caribousune.svg",
  37362. extra: 1818/1638,
  37363. bottom: 52/1870
  37364. }
  37365. },
  37366. sideCaribousune: {
  37367. height: math.unit(7 + 2/12, "feet"),
  37368. weight: math.unit(268, "lb"),
  37369. name: "Side (Caribousune)",
  37370. image: {
  37371. source: "./media/characters/lisa/side-caribousune.svg",
  37372. extra: 1851/1635,
  37373. bottom: 16/1867
  37374. }
  37375. },
  37376. backCaribousune: {
  37377. height: math.unit(7 + 2/12, "feet"),
  37378. weight: math.unit(268, "lb"),
  37379. name: "Back (Caribousune)",
  37380. image: {
  37381. source: "./media/characters/lisa/back-caribousune.svg",
  37382. extra: 1801/1604,
  37383. bottom: 44/1845
  37384. }
  37385. },
  37386. caribou: {
  37387. height: math.unit(7 + 2/12, "feet"),
  37388. weight: math.unit(268, "lb"),
  37389. name: "Caribou",
  37390. image: {
  37391. source: "./media/characters/lisa/caribou.svg",
  37392. extra: 1843/1633,
  37393. bottom: 29/1872
  37394. }
  37395. },
  37396. frontCaribou: {
  37397. height: math.unit(7 + 2/12, "feet"),
  37398. weight: math.unit(268, "lb"),
  37399. name: "Front (Caribou)",
  37400. image: {
  37401. source: "./media/characters/lisa/front-caribou.svg",
  37402. extra: 1818/1638,
  37403. bottom: 52/1870
  37404. }
  37405. },
  37406. sideCaribou: {
  37407. height: math.unit(7 + 2/12, "feet"),
  37408. weight: math.unit(268, "lb"),
  37409. name: "Side (Caribou)",
  37410. image: {
  37411. source: "./media/characters/lisa/side-caribou.svg",
  37412. extra: 1851/1635,
  37413. bottom: 16/1867
  37414. }
  37415. },
  37416. backCaribou: {
  37417. height: math.unit(7 + 2/12, "feet"),
  37418. weight: math.unit(268, "lb"),
  37419. name: "Back (Caribou)",
  37420. image: {
  37421. source: "./media/characters/lisa/back-caribou.svg",
  37422. extra: 1801/1604,
  37423. bottom: 44/1845
  37424. }
  37425. },
  37426. mawCaribou: {
  37427. height: math.unit(1.45, "feet"),
  37428. name: "Maw (Caribou)",
  37429. image: {
  37430. source: "./media/characters/lisa/maw-caribou.svg"
  37431. }
  37432. },
  37433. mawCaribousune: {
  37434. height: math.unit(1.45, "feet"),
  37435. name: "Maw (Caribousune)",
  37436. image: {
  37437. source: "./media/characters/lisa/maw-caribousune.svg"
  37438. }
  37439. },
  37440. pawCaribousune: {
  37441. height: math.unit(1.61, "feet"),
  37442. name: "Paw (Caribou)",
  37443. image: {
  37444. source: "./media/characters/lisa/paw-caribousune.svg"
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(6, "feet")
  37452. },
  37453. {
  37454. name: "God Size",
  37455. height: math.unit(72, "feet"),
  37456. default: true
  37457. },
  37458. {
  37459. name: "Towering",
  37460. height: math.unit(288, "feet")
  37461. },
  37462. {
  37463. name: "City Size",
  37464. height: math.unit(48384, "feet")
  37465. },
  37466. {
  37467. name: "Continental",
  37468. height: math.unit(4200, "miles")
  37469. },
  37470. {
  37471. name: "Planet Eater",
  37472. height: math.unit(42, "earths")
  37473. },
  37474. {
  37475. name: "Star Swallower",
  37476. height: math.unit(42, "solarradii")
  37477. },
  37478. {
  37479. name: "System Swallower",
  37480. height: math.unit(84000, "AU")
  37481. },
  37482. {
  37483. name: "Galaxy Gobbler",
  37484. height: math.unit(42, "galaxies")
  37485. },
  37486. {
  37487. name: "Universe Devourer",
  37488. height: math.unit(42, "universes")
  37489. },
  37490. {
  37491. name: "Multiverse Muncher",
  37492. height: math.unit(42, "multiverses")
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(36, "feet"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/shadow-rat/front.svg",
  37504. extra: 1845/1758,
  37505. bottom: 83/1928
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Macro",
  37512. height: math.unit(36, "feet"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37519. {
  37520. side: {
  37521. height: math.unit(8, "feet"),
  37522. weight: math.unit(2630, "lb"),
  37523. name: "Side",
  37524. image: {
  37525. source: "./media/characters/torallia/side.svg",
  37526. extra: 2164/2021,
  37527. bottom: 371/2535
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Mortal Interaction",
  37534. height: math.unit(8, "feet")
  37535. },
  37536. {
  37537. name: "Natural",
  37538. height: math.unit(24, "feet"),
  37539. default: true
  37540. },
  37541. {
  37542. name: "Giant",
  37543. height: math.unit(80, "feet")
  37544. },
  37545. {
  37546. name: "Kaiju",
  37547. height: math.unit(240, "feet")
  37548. },
  37549. {
  37550. name: "Macro",
  37551. height: math.unit(800, "feet")
  37552. },
  37553. {
  37554. name: "Macro+",
  37555. height: math.unit(2400, "feet")
  37556. },
  37557. {
  37558. name: "Macro++",
  37559. height: math.unit(8000, "feet")
  37560. },
  37561. {
  37562. name: "City-Crushing",
  37563. height: math.unit(24000, "feet")
  37564. },
  37565. {
  37566. name: "Mountain-Mashing",
  37567. height: math.unit(80000, "feet")
  37568. },
  37569. {
  37570. name: "District Demolisher",
  37571. height: math.unit(240000, "feet")
  37572. },
  37573. {
  37574. name: "Tri-County Terror",
  37575. height: math.unit(800000, "feet")
  37576. },
  37577. {
  37578. name: "State Smasher",
  37579. height: math.unit(2.4e6, "feet")
  37580. },
  37581. {
  37582. name: "Nation Nemesis",
  37583. height: math.unit(8e6, "feet")
  37584. },
  37585. {
  37586. name: "Continent Cracker",
  37587. height: math.unit(2.4e7, "feet")
  37588. },
  37589. {
  37590. name: "Planet-Pillaging",
  37591. height: math.unit(8e7, "feet")
  37592. },
  37593. {
  37594. name: "Earth-Eclipsing",
  37595. height: math.unit(2.4e8, "feet")
  37596. },
  37597. {
  37598. name: "Jovian-Jostling",
  37599. height: math.unit(8e8, "feet")
  37600. },
  37601. {
  37602. name: "Gas Giant Gulper",
  37603. height: math.unit(2.4e9, "feet")
  37604. },
  37605. {
  37606. name: "Astral Annihilator",
  37607. height: math.unit(8e9, "feet")
  37608. },
  37609. {
  37610. name: "Celestial Conqueror",
  37611. height: math.unit(2.4e10, "feet")
  37612. },
  37613. {
  37614. name: "Sol-Swallowing",
  37615. height: math.unit(8e10, "feet")
  37616. },
  37617. {
  37618. name: "Hunter of the Heavens",
  37619. height: math.unit(2.4e13, "feet")
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(6 + 8/12, "feet"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/rebecca-pawlson/front.svg",
  37631. extra: 1737/1596,
  37632. bottom: 107/1844
  37633. }
  37634. },
  37635. back: {
  37636. height: math.unit(6 + 8/12, "feet"),
  37637. name: "Back",
  37638. image: {
  37639. source: "./media/characters/rebecca-pawlson/back.svg",
  37640. extra: 1702/1523,
  37641. bottom: 86/1788
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(6 + 8/12, "feet")
  37649. },
  37650. {
  37651. name: "Mini Macro",
  37652. height: math.unit(10, "feet"),
  37653. default: true
  37654. },
  37655. {
  37656. name: "Macro",
  37657. height: math.unit(100, "feet")
  37658. },
  37659. {
  37660. name: "Mega Macro",
  37661. height: math.unit(2500, "feet")
  37662. },
  37663. {
  37664. name: "Giga Macro",
  37665. height: math.unit(50, "miles")
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(7 + 6/12, "feet"),
  37674. weight: math.unit(600, "lb"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/moxie-nova/front.svg",
  37678. extra: 1734/1652,
  37679. bottom: 41/1775
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(7 + 6/12, "feet"),
  37687. default: true
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37693. {
  37694. front: {
  37695. height: math.unit(5, "feet"),
  37696. weight: math.unit(150, "lb"),
  37697. name: "Front",
  37698. image: {
  37699. source: "./media/characters/tiffany/front.svg",
  37700. extra: 1941/1845,
  37701. bottom: 58/1999
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(5, "feet"),
  37709. default: true
  37710. },
  37711. ]
  37712. ))
  37713. characterMakers.push(() => makeCharacter(
  37714. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37715. {
  37716. front: {
  37717. height: math.unit(8, "feet"),
  37718. weight: math.unit(300, "lb"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/raxinath/front.svg",
  37722. extra: 1407/1309,
  37723. bottom: 39/1446
  37724. }
  37725. },
  37726. back: {
  37727. height: math.unit(8, "feet"),
  37728. weight: math.unit(300, "lb"),
  37729. name: "Back",
  37730. image: {
  37731. source: "./media/characters/raxinath/back.svg",
  37732. extra: 1405/1315,
  37733. bottom: 9/1414
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Speck",
  37740. height: math.unit(0.5, "nm")
  37741. },
  37742. {
  37743. name: "Micro",
  37744. height: math.unit(3, "inches")
  37745. },
  37746. {
  37747. name: "Kobold",
  37748. height: math.unit(3, "feet")
  37749. },
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(8, "feet"),
  37753. default: true
  37754. },
  37755. {
  37756. name: "Giant",
  37757. height: math.unit(50, "feet")
  37758. },
  37759. {
  37760. name: "Macro",
  37761. height: math.unit(1000, "feet")
  37762. },
  37763. {
  37764. name: "Megamacro",
  37765. height: math.unit(1, "mile")
  37766. },
  37767. ]
  37768. ))
  37769. characterMakers.push(() => makeCharacter(
  37770. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37771. {
  37772. front: {
  37773. height: math.unit(10, "feet"),
  37774. weight: math.unit(1442, "lb"),
  37775. name: "Front",
  37776. image: {
  37777. source: "./media/characters/mal-dragon/front.svg",
  37778. extra: 1515/1444,
  37779. bottom: 113/1628
  37780. }
  37781. },
  37782. back: {
  37783. height: math.unit(10, "feet"),
  37784. weight: math.unit(1442, "lb"),
  37785. name: "Back",
  37786. image: {
  37787. source: "./media/characters/mal-dragon/back.svg",
  37788. extra: 1527/1434,
  37789. bottom: 25/1552
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Mortal Interaction",
  37796. height: math.unit(10, "feet"),
  37797. default: true
  37798. },
  37799. {
  37800. name: "Large",
  37801. height: math.unit(30, "feet")
  37802. },
  37803. {
  37804. name: "Kaiju",
  37805. height: math.unit(300, "feet")
  37806. },
  37807. {
  37808. name: "Megamacro",
  37809. height: math.unit(10000, "feet")
  37810. },
  37811. {
  37812. name: "Continent Cracker",
  37813. height: math.unit(30000000, "feet")
  37814. },
  37815. {
  37816. name: "Sol-Swallowing",
  37817. height: math.unit(1e11, "feet")
  37818. },
  37819. {
  37820. name: "Light Universal",
  37821. height: math.unit(5, "universes")
  37822. },
  37823. {
  37824. name: "Universe Atoms",
  37825. height: math.unit(1.829e9, "universes")
  37826. },
  37827. {
  37828. name: "Light Multiversal",
  37829. height: math.unit(5, "multiverses")
  37830. },
  37831. {
  37832. name: "Multiverse Atoms",
  37833. height: math.unit(1.829e9, "multiverses")
  37834. },
  37835. {
  37836. name: "Fabric of Time",
  37837. height: math.unit(1e262, "multiverses")
  37838. },
  37839. ]
  37840. ))
  37841. characterMakers.push(() => makeCharacter(
  37842. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37843. {
  37844. front: {
  37845. height: math.unit(9, "feet"),
  37846. weight: math.unit(1050, "lb"),
  37847. name: "Front",
  37848. image: {
  37849. source: "./media/characters/tabitha/front.svg",
  37850. extra: 2083/1994,
  37851. bottom: 68/2151
  37852. }
  37853. },
  37854. },
  37855. [
  37856. {
  37857. name: "Baseline",
  37858. height: math.unit(9, "feet"),
  37859. default: true
  37860. },
  37861. {
  37862. name: "Giant",
  37863. height: math.unit(90, "feet")
  37864. },
  37865. {
  37866. name: "Macro",
  37867. height: math.unit(900, "feet")
  37868. },
  37869. {
  37870. name: "Megamacro",
  37871. height: math.unit(9000, "feet")
  37872. },
  37873. {
  37874. name: "City-Crushing",
  37875. height: math.unit(27000, "feet")
  37876. },
  37877. {
  37878. name: "Mountain-Mashing",
  37879. height: math.unit(90000, "feet")
  37880. },
  37881. {
  37882. name: "Nation Nemesis",
  37883. height: math.unit(9e6, "feet")
  37884. },
  37885. {
  37886. name: "Continent Cracker",
  37887. height: math.unit(27e6, "feet")
  37888. },
  37889. {
  37890. name: "Earth-Eclipsing",
  37891. height: math.unit(2.7e8, "feet")
  37892. },
  37893. {
  37894. name: "Gas Giant Gulper",
  37895. height: math.unit(2.7e9, "feet")
  37896. },
  37897. {
  37898. name: "Sol-Swallowing",
  37899. height: math.unit(9e10, "feet")
  37900. },
  37901. {
  37902. name: "Galaxy Gulper",
  37903. height: math.unit(9, "galaxies")
  37904. },
  37905. {
  37906. name: "Cosmos Churner",
  37907. height: math.unit(9, "universes")
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(160, "cm"),
  37916. weight: math.unit(55, "kg"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/tow/front.svg",
  37920. extra: 1751/1722,
  37921. bottom: 74/1825
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Norm",
  37928. height: math.unit(160, "cm")
  37929. },
  37930. {
  37931. name: "Casual",
  37932. height: math.unit(3200, "m"),
  37933. default: true
  37934. },
  37935. {
  37936. name: "Show-Off",
  37937. height: math.unit(160, "km")
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Vivian (Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37943. {
  37944. front: {
  37945. height: math.unit(7 + 11/12, "feet"),
  37946. weight: math.unit(342.8, "lb"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/vivian-dragon/front.svg",
  37950. extra: 1890/1865,
  37951. bottom: 28/1918
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Micro",
  37958. height: math.unit(5, "inches")
  37959. },
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(7 + 11/12, "feet"),
  37963. default: true
  37964. },
  37965. {
  37966. name: "Macro",
  37967. height: math.unit(395 + 7/12, "feet")
  37968. },
  37969. ]
  37970. ))
  37971. //characters
  37972. function makeCharacters() {
  37973. const results = [];
  37974. characterMakers.forEach(character => {
  37975. results.push(character());
  37976. });
  37977. return results;
  37978. }