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

36727 строки
923 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. "mammal"
  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. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. "folf": {
  1576. name: "Folf",
  1577. parents: ["fox", "wolf"]
  1578. },
  1579. "pooltoy": {
  1580. name: "Pooltoy",
  1581. parents: ["construct"]
  1582. },
  1583. }
  1584. //species
  1585. function getSpeciesInfo(speciesList) {
  1586. let result = new Set();
  1587. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1588. result.add(entry)
  1589. });
  1590. return Array.from(result);
  1591. };
  1592. function getSpeciesInfoHelper(species) {
  1593. if (!speciesData[species]) {
  1594. console.warn(species + " doesn't exist");
  1595. return [];
  1596. }
  1597. if (speciesData[species].parents) {
  1598. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1599. } else {
  1600. return [species];
  1601. }
  1602. }
  1603. characterMakers.push(() => makeCharacter(
  1604. {
  1605. name: "Fen",
  1606. species: ["crux"],
  1607. description: {
  1608. title: "Bio",
  1609. text: "Very furry. Sheds on everything."
  1610. },
  1611. tags: [
  1612. "anthro",
  1613. "goo"
  1614. ]
  1615. },
  1616. {
  1617. back: {
  1618. height: math.unit(2.2428, "meter"),
  1619. weight: math.unit(124.738, "kg"),
  1620. name: "Back",
  1621. image: {
  1622. source: "./media/characters/fen/back.svg",
  1623. extra: 2024 / 1867,
  1624. bottom: 13 / 2037
  1625. },
  1626. info: {
  1627. description: {
  1628. mode: "append",
  1629. text: "\n\nHe is not currently looking at you."
  1630. }
  1631. }
  1632. },
  1633. full: {
  1634. height: math.unit(1.34, "meter"),
  1635. weight: math.unit(225, "kg"),
  1636. name: "Full",
  1637. image: {
  1638. source: "./media/characters/fen/full.svg"
  1639. },
  1640. info: {
  1641. description: {
  1642. mode: "append",
  1643. text: "\n\nMunch."
  1644. }
  1645. }
  1646. },
  1647. kneeling: {
  1648. height: math.unit(5.4, "feet"),
  1649. weight: math.unit(124.738, "kg"),
  1650. name: "Kneeling",
  1651. image: {
  1652. source: "./media/characters/fen/kneeling.svg",
  1653. extra: 563 / 507
  1654. }
  1655. },
  1656. goo: {
  1657. height: math.unit(2.8, "feet"),
  1658. weight: math.unit(125, "kg"),
  1659. capacity: math.unit(1, "people"),
  1660. name: "Goo",
  1661. image: {
  1662. source: "./media/characters/fen/goo.svg",
  1663. bottom: 116 / 613
  1664. }
  1665. },
  1666. lounging: {
  1667. height: math.unit(6.5, "feet"),
  1668. weight: math.unit(125, "kg"),
  1669. name: "Lounging",
  1670. image: {
  1671. source: "./media/characters/fen/lounging.svg"
  1672. }
  1673. },
  1674. },
  1675. [
  1676. {
  1677. name: "Normal",
  1678. height: math.unit(2.2428, "meter")
  1679. },
  1680. {
  1681. name: "Big",
  1682. height: math.unit(12, "feet")
  1683. },
  1684. {
  1685. name: "Minimacro",
  1686. height: math.unit(40, "feet"),
  1687. default: true,
  1688. info: {
  1689. description: {
  1690. mode: "append",
  1691. text: "\n\nTOO DAMN BIG"
  1692. }
  1693. }
  1694. },
  1695. {
  1696. name: "Macro",
  1697. height: math.unit(100, "feet"),
  1698. info: {
  1699. description: {
  1700. mode: "append",
  1701. text: "\n\nTOO DAMN BIG"
  1702. }
  1703. }
  1704. },
  1705. {
  1706. name: "Macro+",
  1707. height: math.unit(300, "feet")
  1708. },
  1709. {
  1710. name: "Megamacro",
  1711. height: math.unit(2, "miles")
  1712. }
  1713. ]
  1714. ))
  1715. characterMakers.push(() => makeCharacter(
  1716. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1717. {
  1718. front: {
  1719. height: math.unit(183, "cm"),
  1720. weight: math.unit(80, "kg"),
  1721. name: "Front",
  1722. image: {
  1723. source: "./media/characters/sofia-fluttertail/front.svg",
  1724. bottom: 0.01,
  1725. extra: 2154 / 2081
  1726. }
  1727. },
  1728. frontAlt: {
  1729. height: math.unit(183, "cm"),
  1730. weight: math.unit(80, "kg"),
  1731. name: "Front (alt)",
  1732. image: {
  1733. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1734. }
  1735. },
  1736. back: {
  1737. height: math.unit(183, "cm"),
  1738. weight: math.unit(80, "kg"),
  1739. name: "Back",
  1740. image: {
  1741. source: "./media/characters/sofia-fluttertail/back.svg"
  1742. }
  1743. },
  1744. kneeling: {
  1745. height: math.unit(125, "cm"),
  1746. weight: math.unit(80, "kg"),
  1747. name: "Kneeling",
  1748. image: {
  1749. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1750. extra: 1033 / 977,
  1751. bottom: 23.7 / 1057
  1752. }
  1753. },
  1754. maw: {
  1755. height: math.unit(183 / 5, "cm"),
  1756. name: "Maw",
  1757. image: {
  1758. source: "./media/characters/sofia-fluttertail/maw.svg"
  1759. }
  1760. },
  1761. mawcloseup: {
  1762. height: math.unit(183 / 5 * 0.41, "cm"),
  1763. name: "Maw (Closeup)",
  1764. image: {
  1765. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1766. }
  1767. },
  1768. paws: {
  1769. height: math.unit(1.17, "feet"),
  1770. name: "Paws",
  1771. image: {
  1772. source: "./media/characters/sofia-fluttertail/paws.svg",
  1773. extra: 851 / 851,
  1774. bottom: 17 / 868
  1775. }
  1776. },
  1777. },
  1778. [
  1779. {
  1780. name: "Normal",
  1781. height: math.unit(1.83, "meter")
  1782. },
  1783. {
  1784. name: "Size Thief",
  1785. height: math.unit(18, "feet")
  1786. },
  1787. {
  1788. name: "50 Foot Collie",
  1789. height: math.unit(50, "feet")
  1790. },
  1791. {
  1792. name: "Macro",
  1793. height: math.unit(96, "feet"),
  1794. default: true
  1795. },
  1796. {
  1797. name: "Megamerger",
  1798. height: math.unit(650, "feet")
  1799. },
  1800. ]
  1801. ))
  1802. characterMakers.push(() => makeCharacter(
  1803. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1804. {
  1805. front: {
  1806. height: math.unit(7, "feet"),
  1807. weight: math.unit(100, "kg"),
  1808. name: "Front",
  1809. image: {
  1810. source: "./media/characters/march/front.svg",
  1811. extra: 1,
  1812. bottom: 0.015
  1813. }
  1814. },
  1815. foot: {
  1816. height: math.unit(0.9, "feet"),
  1817. name: "Foot",
  1818. image: {
  1819. source: "./media/characters/march/foot.svg"
  1820. }
  1821. },
  1822. },
  1823. [
  1824. {
  1825. name: "Normal",
  1826. height: math.unit(7.9, "feet")
  1827. },
  1828. {
  1829. name: "Macro",
  1830. height: math.unit(220, "meters")
  1831. },
  1832. {
  1833. name: "Megamacro",
  1834. height: math.unit(2.98, "km"),
  1835. default: true
  1836. },
  1837. {
  1838. name: "Gigamacro",
  1839. height: math.unit(15963, "km")
  1840. },
  1841. {
  1842. name: "Teramacro",
  1843. height: math.unit(2980000000, "km")
  1844. },
  1845. {
  1846. name: "Examacro",
  1847. height: math.unit(250, "parsecs")
  1848. },
  1849. ]
  1850. ))
  1851. characterMakers.push(() => makeCharacter(
  1852. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1853. {
  1854. front: {
  1855. height: math.unit(6, "feet"),
  1856. weight: math.unit(60, "kg"),
  1857. name: "Front",
  1858. image: {
  1859. source: "./media/characters/noir/front.svg",
  1860. extra: 1,
  1861. bottom: 0.032
  1862. }
  1863. },
  1864. },
  1865. [
  1866. {
  1867. name: "Normal",
  1868. height: math.unit(6.6, "feet")
  1869. },
  1870. {
  1871. name: "Macro",
  1872. height: math.unit(500, "feet")
  1873. },
  1874. {
  1875. name: "Megamacro",
  1876. height: math.unit(2.5, "km"),
  1877. default: true
  1878. },
  1879. {
  1880. name: "Gigamacro",
  1881. height: math.unit(22500, "km")
  1882. },
  1883. {
  1884. name: "Teramacro",
  1885. height: math.unit(2500000000, "km")
  1886. },
  1887. {
  1888. name: "Examacro",
  1889. height: math.unit(200, "parsecs")
  1890. },
  1891. ]
  1892. ))
  1893. characterMakers.push(() => makeCharacter(
  1894. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1895. {
  1896. front: {
  1897. height: math.unit(7, "feet"),
  1898. weight: math.unit(100, "kg"),
  1899. name: "Front",
  1900. image: {
  1901. source: "./media/characters/okuri/front.svg",
  1902. extra: 1,
  1903. bottom: 0.037
  1904. }
  1905. },
  1906. back: {
  1907. height: math.unit(7, "feet"),
  1908. weight: math.unit(100, "kg"),
  1909. name: "Back",
  1910. image: {
  1911. source: "./media/characters/okuri/back.svg",
  1912. extra: 1,
  1913. bottom: 0.007
  1914. }
  1915. },
  1916. },
  1917. [
  1918. {
  1919. name: "Megamacro",
  1920. height: math.unit(100, "miles"),
  1921. default: true
  1922. },
  1923. ]
  1924. ))
  1925. characterMakers.push(() => makeCharacter(
  1926. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1927. {
  1928. front: {
  1929. height: math.unit(7, "feet"),
  1930. weight: math.unit(100, "kg"),
  1931. name: "Front",
  1932. image: {
  1933. source: "./media/characters/manny/front.svg",
  1934. extra: 1,
  1935. bottom: 0.06
  1936. }
  1937. },
  1938. back: {
  1939. height: math.unit(7, "feet"),
  1940. weight: math.unit(100, "kg"),
  1941. name: "Back",
  1942. image: {
  1943. source: "./media/characters/manny/back.svg",
  1944. extra: 1,
  1945. bottom: 0.014
  1946. }
  1947. },
  1948. },
  1949. [
  1950. {
  1951. name: "Normal",
  1952. height: math.unit(7, "feet"),
  1953. },
  1954. {
  1955. name: "Macro",
  1956. height: math.unit(78, "feet"),
  1957. default: true
  1958. },
  1959. {
  1960. name: "Macro+",
  1961. height: math.unit(300, "meters")
  1962. },
  1963. {
  1964. name: "Macro++",
  1965. height: math.unit(2400, "meters")
  1966. },
  1967. {
  1968. name: "Megamacro",
  1969. height: math.unit(5167, "meters")
  1970. },
  1971. {
  1972. name: "Gigamacro",
  1973. height: math.unit(41769, "miles")
  1974. },
  1975. ]
  1976. ))
  1977. characterMakers.push(() => makeCharacter(
  1978. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1979. {
  1980. front: {
  1981. height: math.unit(7, "feet"),
  1982. weight: math.unit(100, "kg"),
  1983. name: "Front",
  1984. image: {
  1985. source: "./media/characters/adake/front-1.svg"
  1986. }
  1987. },
  1988. frontAlt: {
  1989. height: math.unit(7, "feet"),
  1990. weight: math.unit(100, "kg"),
  1991. name: "Front (Alt)",
  1992. image: {
  1993. source: "./media/characters/adake/front-2.svg",
  1994. extra: 1,
  1995. bottom: 0.01
  1996. }
  1997. },
  1998. back: {
  1999. height: math.unit(7, "feet"),
  2000. weight: math.unit(100, "kg"),
  2001. name: "Back",
  2002. image: {
  2003. source: "./media/characters/adake/back.svg",
  2004. }
  2005. },
  2006. kneel: {
  2007. height: math.unit(5.385, "feet"),
  2008. weight: math.unit(100, "kg"),
  2009. name: "Kneeling",
  2010. image: {
  2011. source: "./media/characters/adake/kneel.svg",
  2012. bottom: 0.052
  2013. }
  2014. },
  2015. },
  2016. [
  2017. {
  2018. name: "Normal",
  2019. height: math.unit(7, "feet"),
  2020. },
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(78, "feet"),
  2024. default: true
  2025. },
  2026. {
  2027. name: "Macro+",
  2028. height: math.unit(300, "meters")
  2029. },
  2030. {
  2031. name: "Macro++",
  2032. height: math.unit(2400, "meters")
  2033. },
  2034. {
  2035. name: "Megamacro",
  2036. height: math.unit(5167, "meters")
  2037. },
  2038. {
  2039. name: "Gigamacro",
  2040. height: math.unit(41769, "miles")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(1.65, "meters"),
  2049. weight: math.unit(50, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/elijah/front.svg",
  2053. extra: 858 / 830,
  2054. bottom: 95.5 / 953.8559
  2055. }
  2056. },
  2057. back: {
  2058. height: math.unit(1.65, "meters"),
  2059. weight: math.unit(50, "kg"),
  2060. name: "Back",
  2061. image: {
  2062. source: "./media/characters/elijah/back.svg",
  2063. extra: 895 / 850,
  2064. bottom: 5.3 / 897.956
  2065. }
  2066. },
  2067. frontNsfw: {
  2068. height: math.unit(1.65, "meters"),
  2069. weight: math.unit(50, "kg"),
  2070. name: "Front (NSFW)",
  2071. image: {
  2072. source: "./media/characters/elijah/front-nsfw.svg",
  2073. extra: 858 / 830,
  2074. bottom: 95.5 / 953.8559
  2075. }
  2076. },
  2077. backNsfw: {
  2078. height: math.unit(1.65, "meters"),
  2079. weight: math.unit(50, "kg"),
  2080. name: "Back (NSFW)",
  2081. image: {
  2082. source: "./media/characters/elijah/back-nsfw.svg",
  2083. extra: 895 / 850,
  2084. bottom: 5.3 / 897.956
  2085. }
  2086. },
  2087. dick: {
  2088. height: math.unit(1, "feet"),
  2089. name: "Dick",
  2090. image: {
  2091. source: "./media/characters/elijah/dick.svg"
  2092. }
  2093. },
  2094. beakOpen: {
  2095. height: math.unit(1.25, "feet"),
  2096. name: "Beak (Open)",
  2097. image: {
  2098. source: "./media/characters/elijah/beak-open.svg"
  2099. }
  2100. },
  2101. beakShut: {
  2102. height: math.unit(1.25, "feet"),
  2103. name: "Beak (Shut)",
  2104. image: {
  2105. source: "./media/characters/elijah/beak-shut.svg"
  2106. }
  2107. },
  2108. footFlexing: {
  2109. height: math.unit(1.61, "feet"),
  2110. name: "Foot (Flexing)",
  2111. image: {
  2112. source: "./media/characters/elijah/foot-flexing.svg"
  2113. }
  2114. },
  2115. footStepping: {
  2116. height: math.unit(1.44, "feet"),
  2117. name: "Foot (Stepping)",
  2118. image: {
  2119. source: "./media/characters/elijah/foot-stepping.svg"
  2120. }
  2121. },
  2122. plantigradeLeg: {
  2123. height: math.unit(2.34, "feet"),
  2124. name: "Plantigrade Leg",
  2125. image: {
  2126. source: "./media/characters/elijah/plantigrade-leg.svg"
  2127. }
  2128. },
  2129. plantigradeFootLeft: {
  2130. height: math.unit(0.9, "feet"),
  2131. name: "Plantigrade Foot (Left)",
  2132. image: {
  2133. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2134. }
  2135. },
  2136. plantigradeFootRight: {
  2137. height: math.unit(0.9, "feet"),
  2138. name: "Plantigrade Foot (Right)",
  2139. image: {
  2140. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.65, "meters")
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(55, "meters"),
  2152. default: true
  2153. },
  2154. {
  2155. name: "Macro+",
  2156. height: math.unit(105, "meters")
  2157. },
  2158. ]
  2159. ))
  2160. characterMakers.push(() => makeCharacter(
  2161. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2162. {
  2163. front: {
  2164. height: math.unit(11, "feet"),
  2165. weight: math.unit(320, "kg"),
  2166. name: "Front",
  2167. image: {
  2168. source: "./media/characters/rai/front.svg",
  2169. extra: 1802/1696,
  2170. bottom: 68/1870
  2171. }
  2172. },
  2173. frontDressed: {
  2174. height: math.unit(11, "feet"),
  2175. weight: math.unit(320, "kg"),
  2176. name: "Front (Dressed)",
  2177. image: {
  2178. source: "./media/characters/rai/front-dressed.svg",
  2179. extra: 1802/1696,
  2180. bottom: 68/1870
  2181. }
  2182. },
  2183. side: {
  2184. height: math.unit(11, "feet"),
  2185. weight: math.unit(320, "kg"),
  2186. name: "Side",
  2187. image: {
  2188. source: "./media/characters/rai/side.svg",
  2189. extra: 1789/1710,
  2190. bottom: 115/1904
  2191. }
  2192. },
  2193. back: {
  2194. height: math.unit(11, "feet"),
  2195. weight: math.unit(320, "kg"),
  2196. name: "Back",
  2197. image: {
  2198. source: "./media/characters/rai/back.svg",
  2199. extra: 1770/1707,
  2200. bottom: 28/1798
  2201. }
  2202. },
  2203. feral: {
  2204. height: math.unit(11, "feet"),
  2205. weight: math.unit(640, "kg"),
  2206. name: "Feral",
  2207. image: {
  2208. source: "./media/characters/rai/feral.svg",
  2209. extra: 1035/642,
  2210. bottom: 86/1121
  2211. }
  2212. },
  2213. dragon: {
  2214. height: math.unit(23, "feet"),
  2215. weight: math.unit(50000, "lb"),
  2216. name: "Dragon",
  2217. image: {
  2218. source: "./media/characters/rai/dragon.svg",
  2219. extra: 2498 / 2030,
  2220. bottom: 85.2 / 2584
  2221. }
  2222. },
  2223. maw: {
  2224. height: math.unit(6 / 3.81416, "feet"),
  2225. name: "Maw",
  2226. image: {
  2227. source: "./media/characters/rai/maw.svg"
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(11, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(302, "feet"),
  2239. default: true
  2240. },
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2245. {
  2246. frontDressed: {
  2247. height: math.unit(216, "feet"),
  2248. weight: math.unit(7000000, "lb"),
  2249. name: "Front (Dressed)",
  2250. image: {
  2251. source: "./media/characters/jazzy/front-dressed.svg",
  2252. extra: 2738 / 2651,
  2253. bottom: 41.8 / 2786
  2254. }
  2255. },
  2256. backDressed: {
  2257. height: math.unit(216, "feet"),
  2258. weight: math.unit(7000000, "lb"),
  2259. name: "Back (Dressed)",
  2260. image: {
  2261. source: "./media/characters/jazzy/back-dressed.svg",
  2262. extra: 2775 / 2673,
  2263. bottom: 36.8 / 2817
  2264. }
  2265. },
  2266. front: {
  2267. height: math.unit(216, "feet"),
  2268. weight: math.unit(7000000, "lb"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/jazzy/front.svg",
  2272. extra: 2738 / 2651,
  2273. bottom: 41.8 / 2786
  2274. }
  2275. },
  2276. back: {
  2277. height: math.unit(216, "feet"),
  2278. weight: math.unit(7000000, "lb"),
  2279. name: "Back",
  2280. image: {
  2281. source: "./media/characters/jazzy/back.svg",
  2282. extra: 2775 / 2673,
  2283. bottom: 36.8 / 2817
  2284. }
  2285. },
  2286. maw: {
  2287. height: math.unit(20, "feet"),
  2288. name: "Maw",
  2289. image: {
  2290. source: "./media/characters/jazzy/maw.svg"
  2291. }
  2292. },
  2293. paws: {
  2294. height: math.unit(27.5, "feet"),
  2295. name: "Paws",
  2296. image: {
  2297. source: "./media/characters/jazzy/paws.svg"
  2298. }
  2299. },
  2300. eye: {
  2301. height: math.unit(4.4, "feet"),
  2302. name: "Eye",
  2303. image: {
  2304. source: "./media/characters/jazzy/eye.svg"
  2305. }
  2306. },
  2307. droneOffense: {
  2308. height: math.unit(9.5, "inches"),
  2309. name: "Drone (Offense)",
  2310. image: {
  2311. source: "./media/characters/jazzy/drone-offense.svg"
  2312. }
  2313. },
  2314. droneRecon: {
  2315. height: math.unit(9.5, "inches"),
  2316. name: "Drone (Recon)",
  2317. image: {
  2318. source: "./media/characters/jazzy/drone-recon.svg"
  2319. }
  2320. },
  2321. droneDefense: {
  2322. height: math.unit(9.5, "inches"),
  2323. name: "Drone (Defense)",
  2324. image: {
  2325. source: "./media/characters/jazzy/drone-defense.svg"
  2326. }
  2327. },
  2328. },
  2329. [
  2330. {
  2331. name: "Macro",
  2332. height: math.unit(216, "feet"),
  2333. default: true
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(9 + 6/12, "feet"),
  2342. weight: math.unit(700, "lb"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/flamm/front.svg",
  2346. extra: 1751/1632,
  2347. bottom: 46/1797
  2348. }
  2349. },
  2350. buff: {
  2351. height: math.unit(9 + 6/12, "feet"),
  2352. weight: math.unit(950, "lb"),
  2353. name: "Buff",
  2354. image: {
  2355. source: "./media/characters/flamm/buff.svg",
  2356. extra: 3018/2874,
  2357. bottom: 221/3239
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(9.5, "feet")
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(200, "feet"),
  2369. default: true
  2370. },
  2371. ]
  2372. ))
  2373. characterMakers.push(() => makeCharacter(
  2374. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2375. {
  2376. front: {
  2377. height: math.unit(5 + 3/12, "feet"),
  2378. weight: math.unit(60, "kg"),
  2379. name: "Front",
  2380. image: {
  2381. source: "./media/characters/zephiro/front.svg",
  2382. extra: 2309 / 2162,
  2383. bottom: 0.069
  2384. }
  2385. },
  2386. side: {
  2387. height: math.unit(5 + 3/12, "feet"),
  2388. weight: math.unit(60, "kg"),
  2389. name: "Side",
  2390. image: {
  2391. source: "./media/characters/zephiro/side.svg",
  2392. extra: 2403 / 2279,
  2393. bottom: 0.015
  2394. }
  2395. },
  2396. back: {
  2397. height: math.unit(5 + 3/12, "feet"),
  2398. weight: math.unit(60, "kg"),
  2399. name: "Back",
  2400. image: {
  2401. source: "./media/characters/zephiro/back.svg",
  2402. extra: 2373 / 2244,
  2403. bottom: 0.013
  2404. }
  2405. },
  2406. hand: {
  2407. height: math.unit(0.68, "feet"),
  2408. name: "Hand",
  2409. image: {
  2410. source: "./media/characters/zephiro/hand.svg"
  2411. }
  2412. },
  2413. paw: {
  2414. height: math.unit(1, "feet"),
  2415. name: "Paw",
  2416. image: {
  2417. source: "./media/characters/zephiro/paw.svg"
  2418. }
  2419. },
  2420. beans: {
  2421. height: math.unit(0.93, "feet"),
  2422. name: "Beans",
  2423. image: {
  2424. source: "./media/characters/zephiro/beans.svg"
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Micro",
  2431. height: math.unit(3, "inches")
  2432. },
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(5 + 3 / 12, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(118, "feet")
  2441. },
  2442. ]
  2443. ))
  2444. characterMakers.push(() => makeCharacter(
  2445. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2446. {
  2447. front: {
  2448. height: math.unit(5, "feet"),
  2449. weight: math.unit(90, "kg"),
  2450. name: "Front",
  2451. image: {
  2452. source: "./media/characters/fory/front.svg",
  2453. extra: 2862 / 2674,
  2454. bottom: 180 / 3043.8
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(5, "feet"),
  2459. weight: math.unit(90, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/fory/back.svg",
  2463. extra: 2962 / 2791,
  2464. bottom: 106 / 3071.8
  2465. }
  2466. },
  2467. foot: {
  2468. height: math.unit(2.14, "feet"),
  2469. name: "Foot",
  2470. image: {
  2471. source: "./media/characters/fory/foot.svg"
  2472. }
  2473. },
  2474. },
  2475. [
  2476. {
  2477. name: "Normal",
  2478. height: math.unit(5, "feet")
  2479. },
  2480. {
  2481. name: "Macro",
  2482. height: math.unit(50, "feet"),
  2483. default: true
  2484. },
  2485. {
  2486. name: "Megamacro",
  2487. height: math.unit(10, "miles")
  2488. },
  2489. {
  2490. name: "Gigamacro",
  2491. height: math.unit(5, "earths")
  2492. },
  2493. ]
  2494. ))
  2495. characterMakers.push(() => makeCharacter(
  2496. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2497. {
  2498. front: {
  2499. height: math.unit(7, "feet"),
  2500. weight: math.unit(90, "kg"),
  2501. name: "Front",
  2502. image: {
  2503. source: "./media/characters/kurrikage/front.svg",
  2504. extra: 1,
  2505. bottom: 0.035
  2506. }
  2507. },
  2508. back: {
  2509. height: math.unit(7, "feet"),
  2510. weight: math.unit(90, "lb"),
  2511. name: "Back",
  2512. image: {
  2513. source: "./media/characters/kurrikage/back.svg"
  2514. }
  2515. },
  2516. paw: {
  2517. height: math.unit(1.5, "feet"),
  2518. name: "Paw",
  2519. image: {
  2520. source: "./media/characters/kurrikage/paw.svg"
  2521. }
  2522. },
  2523. staff: {
  2524. height: math.unit(6.7, "feet"),
  2525. name: "Staff",
  2526. image: {
  2527. source: "./media/characters/kurrikage/staff.svg"
  2528. }
  2529. },
  2530. peek: {
  2531. height: math.unit(1.05, "feet"),
  2532. name: "Peeking",
  2533. image: {
  2534. source: "./media/characters/kurrikage/peek.svg",
  2535. bottom: 0.08
  2536. }
  2537. },
  2538. },
  2539. [
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(12, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Big",
  2547. height: math.unit(20, "feet")
  2548. },
  2549. {
  2550. name: "Macro",
  2551. height: math.unit(500, "feet")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(20, "miles")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(75, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/shingo/front.svg",
  2568. extra: 706/681,
  2569. bottom: 11/717
  2570. }
  2571. },
  2572. frontAlt: {
  2573. height: math.unit(6, "feet"),
  2574. weight: math.unit(75, "kg"),
  2575. name: "Front (Alt)",
  2576. image: {
  2577. source: "./media/characters/shingo/front-alt.svg",
  2578. extra: 3511 / 3338,
  2579. bottom: 0.005
  2580. }
  2581. },
  2582. paw: {
  2583. height: math.unit(1, "feet"),
  2584. name: "Paw",
  2585. image: {
  2586. source: "./media/characters/shingo/paw.svg"
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Micro",
  2593. height: math.unit(4, "inches")
  2594. },
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(6, "feet"),
  2598. default: true
  2599. },
  2600. {
  2601. name: "Macro",
  2602. height: math.unit(108, "feet")
  2603. },
  2604. {
  2605. name: "Macro+",
  2606. height: math.unit(1500, "feet")
  2607. },
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2612. {
  2613. side: {
  2614. height: math.unit(6, "feet"),
  2615. weight: math.unit(75, "kg"),
  2616. name: "Side",
  2617. image: {
  2618. source: "./media/characters/aigey/side.svg"
  2619. }
  2620. },
  2621. },
  2622. [
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(200, "feet"),
  2626. default: true
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(100, "miles")
  2631. },
  2632. ]
  2633. )
  2634. )
  2635. characterMakers.push(() => makeCharacter(
  2636. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2637. {
  2638. front: {
  2639. height: math.unit(5 + 5 / 12, "feet"),
  2640. weight: math.unit(75, "kg"),
  2641. name: "Front",
  2642. image: {
  2643. source: "./media/characters/natasha/front.svg",
  2644. extra: 859 / 824,
  2645. bottom: 23 / 879.6
  2646. }
  2647. },
  2648. frontNsfw: {
  2649. height: math.unit(5 + 5 / 12, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Front (NSFW)",
  2652. image: {
  2653. source: "./media/characters/natasha/front-nsfw.svg",
  2654. extra: 859 / 824,
  2655. bottom: 23 / 879.6
  2656. }
  2657. },
  2658. frontErect: {
  2659. height: math.unit(5 + 5 / 12, "feet"),
  2660. weight: math.unit(75, "kg"),
  2661. name: "Front (Erect)",
  2662. image: {
  2663. source: "./media/characters/natasha/front-erect.svg",
  2664. extra: 859 / 824,
  2665. bottom: 23 / 879.6
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(5 + 5 / 12, "feet"),
  2670. weight: math.unit(75, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/natasha/back.svg",
  2674. extra: 887.9 / 852.6,
  2675. bottom: 9.7 / 896.4
  2676. }
  2677. },
  2678. backAlt: {
  2679. height: math.unit(5 + 5 / 12, "feet"),
  2680. weight: math.unit(75, "kg"),
  2681. name: "Back (Alt)",
  2682. image: {
  2683. source: "./media/characters/natasha/back-alt.svg",
  2684. extra: 1236.7 / 1192,
  2685. bottom: 22.3 / 1258.2
  2686. }
  2687. },
  2688. dick: {
  2689. height: math.unit(1.772, "feet"),
  2690. name: "Dick",
  2691. image: {
  2692. source: "./media/characters/natasha/dick.svg"
  2693. }
  2694. },
  2695. paw: {
  2696. height: math.unit(0.250, "meters"),
  2697. name: "Paw",
  2698. image: {
  2699. source: "./media/characters/natasha/paw.svg"
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(5 + 5 / 12, "feet")
  2707. },
  2708. {
  2709. name: "Large",
  2710. height: math.unit(12, "feet")
  2711. },
  2712. {
  2713. name: "Macro",
  2714. height: math.unit(100, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Macro+",
  2719. height: math.unit(260, "feet")
  2720. },
  2721. {
  2722. name: "Macro++",
  2723. height: math.unit(1, "mile")
  2724. },
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(6, "feet"),
  2732. weight: math.unit(75, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/malik/front.svg"
  2736. }
  2737. },
  2738. side: {
  2739. height: math.unit(6, "feet"),
  2740. weight: math.unit(75, "kg"),
  2741. name: "Side",
  2742. image: {
  2743. source: "./media/characters/malik/side.svg",
  2744. extra: 1.1539
  2745. }
  2746. },
  2747. back: {
  2748. height: math.unit(6, "feet"),
  2749. weight: math.unit(75, "kg"),
  2750. name: "Back",
  2751. image: {
  2752. source: "./media/characters/malik/back.svg"
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Macro",
  2759. height: math.unit(156, "feet"),
  2760. default: true
  2761. },
  2762. {
  2763. name: "Macro+",
  2764. height: math.unit(1188, "feet")
  2765. },
  2766. ]
  2767. ))
  2768. characterMakers.push(() => makeCharacter(
  2769. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2770. {
  2771. front: {
  2772. height: math.unit(6, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Front",
  2775. image: {
  2776. source: "./media/characters/sefer/front.svg",
  2777. extra: 848 / 659,
  2778. bottom: 28.3 / 876.442
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(6, "feet"),
  2783. weight: math.unit(75, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/sefer/back.svg",
  2787. extra: 864 / 695,
  2788. bottom: 10 / 871
  2789. }
  2790. },
  2791. frontDressed: {
  2792. height: math.unit(6, "feet"),
  2793. weight: math.unit(75, "kg"),
  2794. name: "Front (Dressed)",
  2795. image: {
  2796. source: "./media/characters/sefer/front-dressed.svg",
  2797. extra: 839 / 653,
  2798. bottom: 37.6 / 878
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(6, "feet"),
  2806. default: true
  2807. },
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2812. {
  2813. body: {
  2814. height: math.unit(2.2428, "meter"),
  2815. weight: math.unit(124.738, "kg"),
  2816. name: "Body",
  2817. image: {
  2818. extra: 1225 / 1050,
  2819. source: "./media/characters/north/front.svg"
  2820. }
  2821. }
  2822. },
  2823. [
  2824. {
  2825. name: "Micro",
  2826. height: math.unit(4, "inches")
  2827. },
  2828. {
  2829. name: "Macro",
  2830. height: math.unit(63, "meters")
  2831. },
  2832. {
  2833. name: "Megamacro",
  2834. height: math.unit(101, "miles"),
  2835. default: true
  2836. }
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2841. {
  2842. angled: {
  2843. height: math.unit(4, "meter"),
  2844. weight: math.unit(150, "kg"),
  2845. name: "Angled",
  2846. image: {
  2847. source: "./media/characters/talan/angled-sfw.svg",
  2848. bottom: 29 / 3734
  2849. }
  2850. },
  2851. angledNsfw: {
  2852. height: math.unit(4, "meter"),
  2853. weight: math.unit(150, "kg"),
  2854. name: "Angled (NSFW)",
  2855. image: {
  2856. source: "./media/characters/talan/angled-nsfw.svg",
  2857. bottom: 29 / 3734
  2858. }
  2859. },
  2860. frontNsfw: {
  2861. height: math.unit(4, "meter"),
  2862. weight: math.unit(150, "kg"),
  2863. name: "Front (NSFW)",
  2864. image: {
  2865. source: "./media/characters/talan/front-nsfw.svg",
  2866. bottom: 29 / 3734
  2867. }
  2868. },
  2869. sideNsfw: {
  2870. height: math.unit(4, "meter"),
  2871. weight: math.unit(150, "kg"),
  2872. name: "Side (NSFW)",
  2873. image: {
  2874. source: "./media/characters/talan/side-nsfw.svg",
  2875. bottom: 29 / 3734
  2876. }
  2877. },
  2878. back: {
  2879. height: math.unit(4, "meter"),
  2880. weight: math.unit(150, "kg"),
  2881. name: "Back",
  2882. image: {
  2883. source: "./media/characters/talan/back.svg"
  2884. }
  2885. },
  2886. dickBottom: {
  2887. height: math.unit(0.621, "meter"),
  2888. name: "Dick (Bottom)",
  2889. image: {
  2890. source: "./media/characters/talan/dick-bottom.svg"
  2891. }
  2892. },
  2893. dickTop: {
  2894. height: math.unit(0.621, "meter"),
  2895. name: "Dick (Top)",
  2896. image: {
  2897. source: "./media/characters/talan/dick-top.svg"
  2898. }
  2899. },
  2900. dickSide: {
  2901. height: math.unit(0.305, "meter"),
  2902. name: "Dick (Side)",
  2903. image: {
  2904. source: "./media/characters/talan/dick-side.svg"
  2905. }
  2906. },
  2907. dickFront: {
  2908. height: math.unit(0.305, "meter"),
  2909. name: "Dick (Front)",
  2910. image: {
  2911. source: "./media/characters/talan/dick-front.svg"
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(4, "meters")
  2919. },
  2920. {
  2921. name: "Macro",
  2922. height: math.unit(100, "meters")
  2923. },
  2924. {
  2925. name: "Megamacro",
  2926. height: math.unit(2, "miles"),
  2927. default: true
  2928. },
  2929. {
  2930. name: "Gigamacro",
  2931. height: math.unit(5000, "miles")
  2932. },
  2933. {
  2934. name: "Teramacro",
  2935. height: math.unit(100, "parsecs")
  2936. }
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/gael'rathus/front.svg"
  2948. }
  2949. },
  2950. frontAlt: {
  2951. height: math.unit(2, "meter"),
  2952. weight: math.unit(90, "kg"),
  2953. name: "Front (alt)",
  2954. image: {
  2955. source: "./media/characters/gael'rathus/front-alt.svg"
  2956. }
  2957. },
  2958. frontAlt2: {
  2959. height: math.unit(2, "meter"),
  2960. weight: math.unit(90, "kg"),
  2961. name: "Front (alt 2)",
  2962. image: {
  2963. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2964. }
  2965. }
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(9, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Large",
  2975. height: math.unit(25, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(0.25, "miles")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(10, "miles")
  2984. }
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2989. {
  2990. side: {
  2991. height: math.unit(2, "meter"),
  2992. weight: math.unit(140, "kg"),
  2993. name: "Side",
  2994. image: {
  2995. source: "./media/characters/sosha/side.svg",
  2996. bottom: 0.042
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Normal",
  3003. height: math.unit(12, "feet"),
  3004. default: true
  3005. }
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3010. {
  3011. side: {
  3012. height: math.unit(5 + 5 / 12, "feet"),
  3013. weight: math.unit(170, "kg"),
  3014. name: "Side",
  3015. image: {
  3016. source: "./media/characters/runnola/side.svg",
  3017. extra: 741 / 448,
  3018. bottom: 0.05
  3019. }
  3020. },
  3021. },
  3022. [
  3023. {
  3024. name: "Small",
  3025. height: math.unit(3, "feet")
  3026. },
  3027. {
  3028. name: "Normal",
  3029. height: math.unit(5 + 5 / 12, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Big",
  3034. height: math.unit(10, "feet")
  3035. },
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3040. {
  3041. front: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(50, "kg"),
  3044. name: "Front",
  3045. image: {
  3046. source: "./media/characters/kurribird/front.svg",
  3047. bottom: 0.015
  3048. }
  3049. },
  3050. frontAlt: {
  3051. height: math.unit(1.5, "meter"),
  3052. weight: math.unit(50, "kg"),
  3053. name: "Front (Alt)",
  3054. image: {
  3055. source: "./media/characters/kurribird/front-alt.svg",
  3056. extra: 1.45
  3057. }
  3058. },
  3059. },
  3060. [
  3061. {
  3062. name: "Normal",
  3063. height: math.unit(7, "feet")
  3064. },
  3065. {
  3066. name: "Big",
  3067. height: math.unit(12, "feet"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(1500, "feet")
  3073. },
  3074. {
  3075. name: "Megamacro",
  3076. height: math.unit(2, "miles")
  3077. }
  3078. ]
  3079. ))
  3080. characterMakers.push(() => makeCharacter(
  3081. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3082. {
  3083. front: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(80, "kg"),
  3086. name: "Front",
  3087. image: {
  3088. source: "./media/characters/elbial/front.svg",
  3089. extra: 1643 / 1556,
  3090. bottom: 60.2 / 1696
  3091. }
  3092. },
  3093. side: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(80, "kg"),
  3096. name: "Side",
  3097. image: {
  3098. source: "./media/characters/elbial/side.svg",
  3099. extra: 1630 / 1565,
  3100. bottom: 71.5 / 1697
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(80, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/elbial/back.svg",
  3109. extra: 1668 / 1595,
  3110. bottom: 5.6 / 1672
  3111. }
  3112. },
  3113. frontDressed: {
  3114. height: math.unit(2, "meter"),
  3115. weight: math.unit(80, "kg"),
  3116. name: "Front (Dressed)",
  3117. image: {
  3118. source: "./media/characters/elbial/front-dressed.svg",
  3119. extra: 1653 / 1584,
  3120. bottom: 57 / 1708
  3121. }
  3122. },
  3123. genitals: {
  3124. height: math.unit(2 / 3.367, "meter"),
  3125. name: "Genitals",
  3126. image: {
  3127. source: "./media/characters/elbial/genitals.svg"
  3128. }
  3129. },
  3130. },
  3131. [
  3132. {
  3133. name: "Large",
  3134. height: math.unit(100, "feet")
  3135. },
  3136. {
  3137. name: "Macro",
  3138. height: math.unit(500, "feet"),
  3139. default: true
  3140. },
  3141. {
  3142. name: "Megamacro",
  3143. height: math.unit(10, "miles")
  3144. },
  3145. {
  3146. name: "Gigamacro",
  3147. height: math.unit(25000, "miles")
  3148. },
  3149. {
  3150. name: "Full-Size",
  3151. height: math.unit(8000000, "gigaparsecs")
  3152. }
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(2, "meter"),
  3160. weight: math.unit(60, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/noah/front.svg"
  3164. }
  3165. },
  3166. talons: {
  3167. height: math.unit(0.315, "meter"),
  3168. name: "Talons",
  3169. image: {
  3170. source: "./media/characters/noah/talons.svg"
  3171. }
  3172. }
  3173. },
  3174. [
  3175. {
  3176. name: "Large",
  3177. height: math.unit(50, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(750, "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(50, "miles")
  3187. },
  3188. {
  3189. name: "Gigamacro",
  3190. height: math.unit(100000, "miles")
  3191. },
  3192. {
  3193. name: "Full-Size",
  3194. height: math.unit(3000000000, "miles")
  3195. }
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3200. {
  3201. front: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(80, "kg"),
  3204. name: "Front",
  3205. image: {
  3206. source: "./media/characters/natalya/front.svg"
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(80, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/natalya/back.svg"
  3215. }
  3216. }
  3217. },
  3218. [
  3219. {
  3220. name: "Normal",
  3221. height: math.unit(150, "feet"),
  3222. default: true
  3223. },
  3224. {
  3225. name: "Megamacro",
  3226. height: math.unit(5, "miles")
  3227. },
  3228. {
  3229. name: "Full-Size",
  3230. height: math.unit(600, "kiloparsecs")
  3231. }
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3236. {
  3237. front: {
  3238. height: math.unit(2, "meter"),
  3239. weight: math.unit(50, "kg"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/erestrebah/front.svg",
  3243. extra: 208 / 193,
  3244. bottom: 0.055
  3245. }
  3246. },
  3247. back: {
  3248. height: math.unit(2, "meter"),
  3249. weight: math.unit(50, "kg"),
  3250. name: "Back",
  3251. image: {
  3252. source: "./media/characters/erestrebah/back.svg",
  3253. extra: 1.3
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(10, "feet")
  3261. },
  3262. {
  3263. name: "Large",
  3264. height: math.unit(50, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Macro",
  3269. height: math.unit(300, "feet")
  3270. },
  3271. {
  3272. name: "Macro+",
  3273. height: math.unit(750, "feet")
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(3, "miles")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(80, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/jennifer/front.svg",
  3290. bottom: 0.11,
  3291. extra: 1.16
  3292. }
  3293. },
  3294. frontAlt: {
  3295. height: math.unit(2, "meter"),
  3296. weight: math.unit(80, "kg"),
  3297. name: "Front (Alt)",
  3298. image: {
  3299. source: "./media/characters/jennifer/front-alt.svg"
  3300. }
  3301. }
  3302. },
  3303. [
  3304. {
  3305. name: "Canon Height",
  3306. height: math.unit(120, "feet"),
  3307. default: true
  3308. },
  3309. {
  3310. name: "Macro+",
  3311. height: math.unit(300, "feet")
  3312. },
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(20000, "feet")
  3316. }
  3317. ]
  3318. ))
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(50, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/kalista/front.svg",
  3328. extra: 1947 / 1700,
  3329. bottom: 76.6 / 1412.98
  3330. }
  3331. },
  3332. back: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(50, "kg"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/kalista/back.svg",
  3338. extra: 1366 / 1156,
  3339. bottom: 33.9 / 1362.78
  3340. }
  3341. }
  3342. },
  3343. [
  3344. {
  3345. name: "Uncomfortably Small",
  3346. height: math.unit(10, "feet")
  3347. },
  3348. {
  3349. name: "Small",
  3350. height: math.unit(30, "feet")
  3351. },
  3352. {
  3353. name: "Macro",
  3354. height: math.unit(100, "feet"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Macro+",
  3359. height: math.unit(2000, "feet")
  3360. },
  3361. {
  3362. name: "True Form",
  3363. height: math.unit(8924, "miles")
  3364. }
  3365. ]
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3369. {
  3370. front: {
  3371. height: math.unit(2, "meter"),
  3372. weight: math.unit(120, "kg"),
  3373. name: "Front",
  3374. image: {
  3375. source: "./media/characters/ggv/front.svg"
  3376. }
  3377. },
  3378. side: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(120, "kg"),
  3381. name: "Side",
  3382. image: {
  3383. source: "./media/characters/ggv/side.svg"
  3384. }
  3385. }
  3386. },
  3387. [
  3388. {
  3389. name: "Extremely Puny",
  3390. height: math.unit(9 + 5 / 12, "feet")
  3391. },
  3392. {
  3393. name: "Horribly Small",
  3394. height: math.unit(47.7, "miles"),
  3395. default: true
  3396. },
  3397. {
  3398. name: "Reasonably Sized",
  3399. height: math.unit(25000, "parsecs")
  3400. },
  3401. {
  3402. name: "Slightly Uncompressed",
  3403. height: math.unit(7.77e31, "parsecs")
  3404. },
  3405. {
  3406. name: "Omniversal",
  3407. height: math.unit(1e300, "meters")
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(2, "meter"),
  3416. weight: math.unit(75, "lb"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/napalm/front.svg"
  3420. }
  3421. },
  3422. back: {
  3423. height: math.unit(2, "meter"),
  3424. weight: math.unit(75, "lb"),
  3425. name: "Back",
  3426. image: {
  3427. source: "./media/characters/napalm/back.svg"
  3428. }
  3429. }
  3430. },
  3431. [
  3432. {
  3433. name: "Standard",
  3434. height: math.unit(55, "feet"),
  3435. default: true
  3436. }
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(7 + 5 / 6, "feet"),
  3444. weight: math.unit(325, "lb"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/asana/front.svg",
  3448. extra: 1133 / 1060,
  3449. bottom: 15.2 / 1148.6
  3450. }
  3451. },
  3452. back: {
  3453. height: math.unit(7 + 5 / 6, "feet"),
  3454. weight: math.unit(325, "lb"),
  3455. name: "Back",
  3456. image: {
  3457. source: "./media/characters/asana/back.svg",
  3458. extra: 1114 / 1043,
  3459. bottom: 5 / 1120
  3460. }
  3461. },
  3462. dressedDark: {
  3463. height: math.unit(7 + 5 / 6, "feet"),
  3464. weight: math.unit(325, "lb"),
  3465. name: "Dressed (Dark)",
  3466. image: {
  3467. source: "./media/characters/asana/dressed-dark.svg",
  3468. extra: 1133 / 1060,
  3469. bottom: 15.2 / 1148.6
  3470. }
  3471. },
  3472. dressedLight: {
  3473. height: math.unit(7 + 5 / 6, "feet"),
  3474. weight: math.unit(325, "lb"),
  3475. name: "Dressed (Light)",
  3476. image: {
  3477. source: "./media/characters/asana/dressed-light.svg",
  3478. extra: 1133 / 1060,
  3479. bottom: 15.2 / 1148.6
  3480. }
  3481. },
  3482. },
  3483. [
  3484. {
  3485. name: "Standard",
  3486. height: math.unit(7 + 5 / 6, "feet"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Large",
  3491. height: math.unit(10, "meters")
  3492. },
  3493. {
  3494. name: "Macro",
  3495. height: math.unit(2500, "meters")
  3496. },
  3497. {
  3498. name: "Megamacro",
  3499. height: math.unit(5e6, "meters")
  3500. },
  3501. {
  3502. name: "Examacro",
  3503. height: math.unit(5e12, "lightyears")
  3504. },
  3505. {
  3506. name: "Max Size",
  3507. height: math.unit(1e31, "lightyears")
  3508. }
  3509. ]
  3510. ))
  3511. characterMakers.push(() => makeCharacter(
  3512. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3513. {
  3514. front: {
  3515. height: math.unit(2, "meter"),
  3516. weight: math.unit(60, "kg"),
  3517. name: "Front",
  3518. image: {
  3519. source: "./media/characters/ebony/front.svg",
  3520. bottom: 0.03,
  3521. extra: 1045 / 810 + 0.03
  3522. }
  3523. },
  3524. side: {
  3525. height: math.unit(2, "meter"),
  3526. weight: math.unit(60, "kg"),
  3527. name: "Side",
  3528. image: {
  3529. source: "./media/characters/ebony/side.svg",
  3530. bottom: 0.03,
  3531. extra: 1045 / 810 + 0.03
  3532. }
  3533. },
  3534. back: {
  3535. height: math.unit(2, "meter"),
  3536. weight: math.unit(60, "kg"),
  3537. name: "Back",
  3538. image: {
  3539. source: "./media/characters/ebony/back.svg",
  3540. bottom: 0.01,
  3541. extra: 1045 / 810 + 0.01
  3542. }
  3543. },
  3544. },
  3545. [
  3546. // TODO check why I did this lol
  3547. {
  3548. name: "Standard",
  3549. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(200, "feet")
  3555. },
  3556. {
  3557. name: "Gigamacro",
  3558. height: math.unit(13000, "km")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(6, "feet"),
  3567. weight: math.unit(175, "lb"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/mountain/front.svg",
  3571. extra: 972 / 955,
  3572. bottom: 64 / 1036.6
  3573. }
  3574. },
  3575. back: {
  3576. height: math.unit(6, "feet"),
  3577. weight: math.unit(175, "lb"),
  3578. name: "Back",
  3579. image: {
  3580. source: "./media/characters/mountain/back.svg",
  3581. extra: 970 / 950,
  3582. bottom: 28.25 / 999
  3583. }
  3584. },
  3585. },
  3586. [
  3587. {
  3588. name: "Large",
  3589. height: math.unit(20, "meters")
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(300, "meters")
  3594. },
  3595. {
  3596. name: "Gigamacro",
  3597. height: math.unit(10000, "km"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Examacro",
  3602. height: math.unit(10e9, "lightyears")
  3603. }
  3604. ]
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(8, "feet"),
  3611. weight: math.unit(500, "lb"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/rick/front.svg"
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Normal",
  3621. height: math.unit(8, "feet"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(5, "km")
  3627. }
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(8, "feet"),
  3635. weight: math.unit(120, "lb"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/ona/front.svg"
  3639. }
  3640. },
  3641. frontAlt: {
  3642. height: math.unit(8, "feet"),
  3643. weight: math.unit(120, "lb"),
  3644. name: "Front (Alt)",
  3645. image: {
  3646. source: "./media/characters/ona/front-alt.svg"
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(8, "feet"),
  3651. weight: math.unit(120, "lb"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/ona/back.svg"
  3655. }
  3656. },
  3657. foot: {
  3658. height: math.unit(1.1, "feet"),
  3659. name: "Foot",
  3660. image: {
  3661. source: "./media/characters/ona/foot.svg"
  3662. }
  3663. }
  3664. },
  3665. [
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(70, "km"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Gigamacro",
  3673. height: math.unit(681818, "miles")
  3674. },
  3675. {
  3676. name: "Examacro",
  3677. height: math.unit(3800000, "lightyears")
  3678. },
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3683. {
  3684. front: {
  3685. height: math.unit(12, "feet"),
  3686. weight: math.unit(3000, "lb"),
  3687. name: "Front",
  3688. image: {
  3689. source: "./media/characters/mech/front.svg",
  3690. extra: 2900 / 2770,
  3691. bottom: 110 / 3010
  3692. }
  3693. },
  3694. back: {
  3695. height: math.unit(12, "feet"),
  3696. weight: math.unit(3000, "lb"),
  3697. name: "Back",
  3698. image: {
  3699. source: "./media/characters/mech/back.svg",
  3700. extra: 3011 / 2890,
  3701. bottom: 94 / 3105
  3702. }
  3703. },
  3704. maw: {
  3705. height: math.unit(3.07, "feet"),
  3706. name: "Maw",
  3707. image: {
  3708. source: "./media/characters/mech/maw.svg"
  3709. }
  3710. },
  3711. head: {
  3712. height: math.unit(2.82, "feet"),
  3713. name: "Head",
  3714. image: {
  3715. source: "./media/characters/mech/head.svg"
  3716. }
  3717. },
  3718. dick: {
  3719. height: math.unit(1.43, "feet"),
  3720. name: "Dick",
  3721. image: {
  3722. source: "./media/characters/mech/dick.svg"
  3723. }
  3724. },
  3725. },
  3726. [
  3727. {
  3728. name: "Normal",
  3729. height: math.unit(12, "feet")
  3730. },
  3731. {
  3732. name: "Macro",
  3733. height: math.unit(300, "feet"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Macro+",
  3738. height: math.unit(1500, "feet")
  3739. },
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3744. {
  3745. front: {
  3746. height: math.unit(1.3, "meter"),
  3747. weight: math.unit(30, "kg"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/gregory/front.svg",
  3751. }
  3752. }
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(1.3, "meter"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(20, "meter")
  3763. }
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(2.8, "meter"),
  3771. weight: math.unit(200, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/elory/front.svg",
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(2.8, "meter"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(38, "meter")
  3787. }
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(470, "feet"),
  3795. weight: math.unit(924, "tons"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/angelpatamon/front.svg",
  3799. }
  3800. }
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(470, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Deity Size I",
  3810. height: math.unit(28651.2, "km")
  3811. },
  3812. {
  3813. name: "Deity Size II",
  3814. height: math.unit(171907.2, "km")
  3815. }
  3816. ]
  3817. ))
  3818. characterMakers.push(() => makeCharacter(
  3819. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3820. {
  3821. side: {
  3822. height: math.unit(7.2, "meter"),
  3823. weight: math.unit(8.2, "tons"),
  3824. name: "Side",
  3825. image: {
  3826. source: "./media/characters/cryae/side.svg",
  3827. extra: 3500 / 1500
  3828. }
  3829. }
  3830. },
  3831. [
  3832. {
  3833. name: "Normal",
  3834. height: math.unit(7.2, "meter"),
  3835. default: true
  3836. }
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(175, "lb"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/xera/front.svg",
  3848. extra: 2377 / 1972,
  3849. bottom: 75.5 / 2452
  3850. }
  3851. },
  3852. side: {
  3853. height: math.unit(6, "feet"),
  3854. weight: math.unit(175, "lb"),
  3855. name: "Side",
  3856. image: {
  3857. source: "./media/characters/xera/side.svg",
  3858. extra: 2345 / 2019,
  3859. bottom: 39.7 / 2384
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(175, "lb"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/xera/back.svg",
  3868. extra: 2095 / 1984,
  3869. bottom: 67 / 2166
  3870. }
  3871. },
  3872. },
  3873. [
  3874. {
  3875. name: "Small",
  3876. height: math.unit(10, "feet")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(500, "meters"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Macro+",
  3885. height: math.unit(10, "km")
  3886. },
  3887. {
  3888. name: "Gigamacro",
  3889. height: math.unit(25000, "km")
  3890. },
  3891. {
  3892. name: "Teramacro",
  3893. height: math.unit(3e6, "km")
  3894. }
  3895. ]
  3896. ))
  3897. characterMakers.push(() => makeCharacter(
  3898. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3899. {
  3900. front: {
  3901. height: math.unit(6, "feet"),
  3902. weight: math.unit(175, "lb"),
  3903. name: "Front",
  3904. image: {
  3905. source: "./media/characters/nebula/front.svg",
  3906. extra: 2566 / 2362,
  3907. bottom: 81 / 2644
  3908. }
  3909. }
  3910. },
  3911. [
  3912. {
  3913. name: "Small",
  3914. height: math.unit(4.5, "meters")
  3915. },
  3916. {
  3917. name: "Macro",
  3918. height: math.unit(1500, "meters"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Megamacro",
  3923. height: math.unit(150, "km")
  3924. },
  3925. {
  3926. name: "Gigamacro",
  3927. height: math.unit(27000, "km")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(6, "feet"),
  3936. weight: math.unit(225, "lb"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/abysgar/front.svg"
  3940. }
  3941. }
  3942. },
  3943. [
  3944. {
  3945. name: "Small",
  3946. height: math.unit(4.5, "meters")
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(1250, "meters"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(125, "km")
  3956. },
  3957. {
  3958. name: "Gigamacro",
  3959. height: math.unit(26000, "km")
  3960. }
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3965. {
  3966. front: {
  3967. height: math.unit(6, "feet"),
  3968. weight: math.unit(180, "lb"),
  3969. name: "Front",
  3970. image: {
  3971. source: "./media/characters/yakuz/front.svg"
  3972. }
  3973. }
  3974. },
  3975. [
  3976. {
  3977. name: "Small",
  3978. height: math.unit(5, "meters")
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(1500, "meters"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Megamacro",
  3987. height: math.unit(200, "km")
  3988. },
  3989. {
  3990. name: "Gigamacro",
  3991. height: math.unit(100000, "km")
  3992. }
  3993. ]
  3994. ))
  3995. characterMakers.push(() => makeCharacter(
  3996. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3997. {
  3998. front: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(175, "lb"),
  4001. name: "Front",
  4002. image: {
  4003. source: "./media/characters/mirova/front.svg",
  4004. extra: 3334 / 3071,
  4005. bottom: 42 / 3375.6
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Small",
  4012. height: math.unit(5, "meters")
  4013. },
  4014. {
  4015. name: "Macro",
  4016. height: math.unit(900, "meters"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Megamacro",
  4021. height: math.unit(135, "km")
  4022. },
  4023. {
  4024. name: "Gigamacro",
  4025. height: math.unit(20000, "km")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4031. {
  4032. side: {
  4033. height: math.unit(28.35, "feet"),
  4034. weight: math.unit(99.75, "tons"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/asana-mech/side.svg",
  4038. extra: 923 / 699,
  4039. bottom: 50 / 975
  4040. }
  4041. },
  4042. chaingun: {
  4043. height: math.unit(7, "feet"),
  4044. weight: math.unit(2400, "lb"),
  4045. name: "Chaingun",
  4046. image: {
  4047. source: "./media/characters/asana-mech/chaingun.svg"
  4048. }
  4049. },
  4050. laser: {
  4051. height: math.unit(7.12, "feet"),
  4052. weight: math.unit(2000, "lb"),
  4053. name: "Laser",
  4054. image: {
  4055. source: "./media/characters/asana-mech/laser.svg"
  4056. }
  4057. },
  4058. },
  4059. [
  4060. {
  4061. name: "Normal",
  4062. height: math.unit(28.35, "feet"),
  4063. default: true
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(2500, "feet")
  4068. },
  4069. {
  4070. name: "Megamacro",
  4071. height: math.unit(25, "miles")
  4072. },
  4073. {
  4074. name: "Examacro",
  4075. height: math.unit(6e8, "lightyears")
  4076. },
  4077. ]
  4078. ))
  4079. characterMakers.push(() => makeCharacter(
  4080. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4081. {
  4082. front: {
  4083. height: math.unit(5, "meters"),
  4084. weight: math.unit(1000, "kg"),
  4085. name: "Front",
  4086. image: {
  4087. source: "./media/characters/asche/front.svg",
  4088. extra: 1258 / 1190,
  4089. bottom: 47 / 1305
  4090. }
  4091. },
  4092. frontUnderwear: {
  4093. height: math.unit(5, "meters"),
  4094. weight: math.unit(1000, "kg"),
  4095. name: "Front (Underwear)",
  4096. image: {
  4097. source: "./media/characters/asche/front-underwear.svg",
  4098. extra: 1258 / 1190,
  4099. bottom: 47 / 1305
  4100. }
  4101. },
  4102. frontDressed: {
  4103. height: math.unit(5, "meters"),
  4104. weight: math.unit(1000, "kg"),
  4105. name: "Front (Dressed)",
  4106. image: {
  4107. source: "./media/characters/asche/front-dressed.svg",
  4108. extra: 1258 / 1190,
  4109. bottom: 47 / 1305
  4110. }
  4111. },
  4112. frontArmor: {
  4113. height: math.unit(5, "meters"),
  4114. weight: math.unit(1000, "kg"),
  4115. name: "Front (Armored)",
  4116. image: {
  4117. source: "./media/characters/asche/front-armored.svg",
  4118. extra: 1374 / 1308,
  4119. bottom: 23 / 1397
  4120. }
  4121. },
  4122. mp724: {
  4123. height: math.unit(0.96, "meters"),
  4124. weight: math.unit(38, "kg"),
  4125. name: "H&K MP724",
  4126. image: {
  4127. source: "./media/characters/asche/h&k-mp724.svg"
  4128. }
  4129. },
  4130. side: {
  4131. height: math.unit(5, "meters"),
  4132. weight: math.unit(1000, "kg"),
  4133. name: "Side",
  4134. image: {
  4135. source: "./media/characters/asche/side.svg",
  4136. extra: 1717 / 1609,
  4137. bottom: 0.005
  4138. }
  4139. },
  4140. back: {
  4141. height: math.unit(5, "meters"),
  4142. weight: math.unit(1000, "kg"),
  4143. name: "Back",
  4144. image: {
  4145. source: "./media/characters/asche/back.svg",
  4146. extra: 1570 / 1501
  4147. }
  4148. },
  4149. },
  4150. [
  4151. {
  4152. name: "DEFCON 5",
  4153. height: math.unit(5, "meters")
  4154. },
  4155. {
  4156. name: "DEFCON 4",
  4157. height: math.unit(500, "meters"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "DEFCON 3",
  4162. height: math.unit(5, "km")
  4163. },
  4164. {
  4165. name: "DEFCON 2",
  4166. height: math.unit(500, "km")
  4167. },
  4168. {
  4169. name: "DEFCON 1",
  4170. height: math.unit(500000, "km")
  4171. },
  4172. {
  4173. name: "DEFCON 0",
  4174. height: math.unit(3, "gigaparsecs")
  4175. },
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(2, "meters"),
  4183. weight: math.unit(76, "kg"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/gale/front.svg"
  4187. }
  4188. },
  4189. frontAlt1: {
  4190. height: math.unit(2, "meters"),
  4191. weight: math.unit(76, "kg"),
  4192. name: "Front (Alt 1)",
  4193. image: {
  4194. source: "./media/characters/gale/front-alt-1.svg"
  4195. }
  4196. },
  4197. frontAlt2: {
  4198. height: math.unit(2, "meters"),
  4199. weight: math.unit(76, "kg"),
  4200. name: "Front (Alt 2)",
  4201. image: {
  4202. source: "./media/characters/gale/front-alt-2.svg"
  4203. }
  4204. },
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(7, "feet")
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(150, "feet"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Macro+",
  4218. height: math.unit(300, "feet")
  4219. },
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(2, "meters"),
  4227. weight: math.unit(76, "kg"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/draylen/front.svg"
  4231. }
  4232. }
  4233. },
  4234. [
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(150, "feet"),
  4238. default: true
  4239. }
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(7 + 9 / 12, "feet"),
  4247. weight: math.unit(379, "lbs"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/chez/front.svg"
  4251. }
  4252. },
  4253. side: {
  4254. height: math.unit(7 + 9 / 12, "feet"),
  4255. weight: math.unit(379, "lbs"),
  4256. name: "Side",
  4257. image: {
  4258. source: "./media/characters/chez/side.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(7 + 9 / 12, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "God King",
  4270. height: math.unit(9750000, "meters")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(6, "feet"),
  4279. weight: math.unit(275, "lbs"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/kaylum/front.svg",
  4283. bottom: 0.01,
  4284. extra: 1166 / 1031
  4285. }
  4286. },
  4287. frontWingless: {
  4288. height: math.unit(6, "feet"),
  4289. weight: math.unit(275, "lbs"),
  4290. name: "Front (Wingless)",
  4291. image: {
  4292. source: "./media/characters/kaylum/front-wingless.svg",
  4293. bottom: 0.01,
  4294. extra: 1117 / 1031
  4295. }
  4296. }
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(3.05, "meters")
  4302. },
  4303. {
  4304. name: "Master",
  4305. height: math.unit(5.5, "meters")
  4306. },
  4307. {
  4308. name: "Rampage",
  4309. height: math.unit(19, "meters")
  4310. },
  4311. {
  4312. name: "Macro Lite",
  4313. height: math.unit(37, "meters")
  4314. },
  4315. {
  4316. name: "Hyper Predator",
  4317. height: math.unit(61, "meters")
  4318. },
  4319. {
  4320. name: "Macro",
  4321. height: math.unit(138, "meters"),
  4322. default: true
  4323. }
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4328. {
  4329. front: {
  4330. height: math.unit(6, "feet"),
  4331. weight: math.unit(150, "lbs"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/geta/front.svg"
  4335. }
  4336. }
  4337. },
  4338. [
  4339. {
  4340. name: "Micro",
  4341. height: math.unit(3, "inches"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(5 + 5 / 12, "feet")
  4347. }
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4352. {
  4353. front: {
  4354. height: math.unit(6, "feet"),
  4355. weight: math.unit(300, "lbs"),
  4356. name: "Front",
  4357. image: {
  4358. source: "./media/characters/tyrnn/front.svg"
  4359. }
  4360. }
  4361. },
  4362. [
  4363. {
  4364. name: "Main Height",
  4365. height: math.unit(355, "feet"),
  4366. default: true
  4367. },
  4368. {
  4369. name: "Fave. Height",
  4370. height: math.unit(2400, "feet")
  4371. }
  4372. ]
  4373. ))
  4374. characterMakers.push(() => makeCharacter(
  4375. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4376. {
  4377. front: {
  4378. height: math.unit(6, "feet"),
  4379. weight: math.unit(300, "lbs"),
  4380. name: "Front",
  4381. image: {
  4382. source: "./media/characters/appledectomy/front.svg"
  4383. }
  4384. }
  4385. },
  4386. [
  4387. {
  4388. name: "Macro",
  4389. height: math.unit(2500, "feet")
  4390. },
  4391. {
  4392. name: "Megamacro",
  4393. height: math.unit(50, "miles"),
  4394. default: true
  4395. },
  4396. {
  4397. name: "Gigamacro",
  4398. height: math.unit(5000, "miles")
  4399. },
  4400. {
  4401. name: "Teramacro",
  4402. height: math.unit(250000, "miles")
  4403. },
  4404. ]
  4405. ))
  4406. characterMakers.push(() => makeCharacter(
  4407. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4408. {
  4409. front: {
  4410. height: math.unit(6, "feet"),
  4411. weight: math.unit(200, "lbs"),
  4412. name: "Front",
  4413. image: {
  4414. source: "./media/characters/vulpes/front.svg",
  4415. extra: 573 / 543,
  4416. bottom: 0.033
  4417. }
  4418. },
  4419. side: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(200, "lbs"),
  4422. name: "Side",
  4423. image: {
  4424. source: "./media/characters/vulpes/side.svg",
  4425. extra: 577 / 549,
  4426. bottom: 11 / 588
  4427. }
  4428. },
  4429. back: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(200, "lbs"),
  4432. name: "Back",
  4433. image: {
  4434. source: "./media/characters/vulpes/back.svg",
  4435. extra: 573 / 549,
  4436. bottom: 20 / 593
  4437. }
  4438. },
  4439. feet: {
  4440. height: math.unit(1.276, "feet"),
  4441. name: "Feet",
  4442. image: {
  4443. source: "./media/characters/vulpes/feet.svg"
  4444. }
  4445. },
  4446. maw: {
  4447. height: math.unit(1.18, "feet"),
  4448. name: "Maw",
  4449. image: {
  4450. source: "./media/characters/vulpes/maw.svg"
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Micro",
  4457. height: math.unit(2, "inches")
  4458. },
  4459. {
  4460. name: "Normal",
  4461. height: math.unit(6.3, "feet")
  4462. },
  4463. {
  4464. name: "Macro",
  4465. height: math.unit(850, "feet")
  4466. },
  4467. {
  4468. name: "Megamacro",
  4469. height: math.unit(7500, "feet"),
  4470. default: true
  4471. },
  4472. {
  4473. name: "Gigamacro",
  4474. height: math.unit(570000, "miles")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4480. {
  4481. front: {
  4482. height: math.unit(6, "feet"),
  4483. weight: math.unit(210, "lbs"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/rain-fallen/front.svg"
  4487. }
  4488. },
  4489. side: {
  4490. height: math.unit(6, "feet"),
  4491. weight: math.unit(210, "lbs"),
  4492. name: "Side",
  4493. image: {
  4494. source: "./media/characters/rain-fallen/side.svg"
  4495. }
  4496. },
  4497. back: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(210, "lbs"),
  4500. name: "Back",
  4501. image: {
  4502. source: "./media/characters/rain-fallen/back.svg"
  4503. }
  4504. },
  4505. feral: {
  4506. height: math.unit(9, "feet"),
  4507. weight: math.unit(700, "lbs"),
  4508. name: "Feral",
  4509. image: {
  4510. source: "./media/characters/rain-fallen/feral.svg"
  4511. }
  4512. },
  4513. },
  4514. [
  4515. {
  4516. name: "Meddling with Mortals",
  4517. height: math.unit(8 + 8/12, "feet")
  4518. },
  4519. {
  4520. name: "Normal",
  4521. height: math.unit(5, "meter")
  4522. },
  4523. {
  4524. name: "Macro",
  4525. height: math.unit(150, "meter"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(278e6, "meter")
  4531. },
  4532. {
  4533. name: "Gigamacro",
  4534. height: math.unit(2e9, "meter")
  4535. },
  4536. {
  4537. name: "Teramacro",
  4538. height: math.unit(8e12, "meter")
  4539. },
  4540. {
  4541. name: "Devourer",
  4542. height: math.unit(14, "zettameters")
  4543. },
  4544. {
  4545. name: "Scarlet King",
  4546. height: math.unit(18, "yottameters")
  4547. },
  4548. {
  4549. name: "Void",
  4550. height: math.unit(1e88, "yottameters")
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4556. {
  4557. standing: {
  4558. height: math.unit(6, "feet"),
  4559. weight: math.unit(180, "lbs"),
  4560. name: "Standing",
  4561. image: {
  4562. source: "./media/characters/zaakira/standing.svg",
  4563. extra: 1599/1504,
  4564. bottom: 39/1638
  4565. }
  4566. },
  4567. laying: {
  4568. height: math.unit(3, "feet"),
  4569. weight: math.unit(180, "lbs"),
  4570. name: "Laying",
  4571. image: {
  4572. source: "./media/characters/zaakira/laying.svg"
  4573. }
  4574. },
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(12, "feet")
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(279, "feet"),
  4584. default: true
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4590. {
  4591. femSfw: {
  4592. height: math.unit(8, "feet"),
  4593. weight: math.unit(350, "lb"),
  4594. name: "Fem",
  4595. image: {
  4596. source: "./media/characters/sigvald/fem-sfw.svg",
  4597. extra: 182 / 164,
  4598. bottom: 8.7 / 190.5
  4599. }
  4600. },
  4601. femNsfw: {
  4602. height: math.unit(8, "feet"),
  4603. weight: math.unit(350, "lb"),
  4604. name: "Fem (NSFW)",
  4605. image: {
  4606. source: "./media/characters/sigvald/fem-nsfw.svg",
  4607. extra: 182 / 164,
  4608. bottom: 8.7 / 190.5
  4609. }
  4610. },
  4611. maleNsfw: {
  4612. height: math.unit(8, "feet"),
  4613. weight: math.unit(350, "lb"),
  4614. name: "Male (NSFW)",
  4615. image: {
  4616. source: "./media/characters/sigvald/male-nsfw.svg",
  4617. extra: 182 / 164,
  4618. bottom: 8.7 / 190.5
  4619. }
  4620. },
  4621. hermNsfw: {
  4622. height: math.unit(8, "feet"),
  4623. weight: math.unit(350, "lb"),
  4624. name: "Herm (NSFW)",
  4625. image: {
  4626. source: "./media/characters/sigvald/herm-nsfw.svg",
  4627. extra: 182 / 164,
  4628. bottom: 8.7 / 190.5
  4629. }
  4630. },
  4631. dick: {
  4632. height: math.unit(2.36, "feet"),
  4633. name: "Dick",
  4634. image: {
  4635. source: "./media/characters/sigvald/dick.svg"
  4636. }
  4637. },
  4638. eye: {
  4639. height: math.unit(0.31, "feet"),
  4640. name: "Eye",
  4641. image: {
  4642. source: "./media/characters/sigvald/eye.svg"
  4643. }
  4644. },
  4645. mouth: {
  4646. height: math.unit(0.92, "feet"),
  4647. name: "Mouth",
  4648. image: {
  4649. source: "./media/characters/sigvald/mouth.svg"
  4650. }
  4651. },
  4652. paws: {
  4653. height: math.unit(2.2, "feet"),
  4654. name: "Paws",
  4655. image: {
  4656. source: "./media/characters/sigvald/paws.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(8, "feet")
  4664. },
  4665. {
  4666. name: "Large",
  4667. height: math.unit(12, "feet")
  4668. },
  4669. {
  4670. name: "Larger",
  4671. height: math.unit(20, "feet")
  4672. },
  4673. {
  4674. name: "Macro",
  4675. height: math.unit(150, "feet")
  4676. },
  4677. {
  4678. name: "Macro+",
  4679. height: math.unit(200, "feet"),
  4680. default: true
  4681. },
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4686. {
  4687. side: {
  4688. height: math.unit(12, "feet"),
  4689. weight: math.unit(2000, "kg"),
  4690. name: "Side",
  4691. image: {
  4692. source: "./media/characters/scott/side.svg",
  4693. extra: 754 / 724,
  4694. bottom: 0.069
  4695. }
  4696. },
  4697. upright: {
  4698. height: math.unit(12, "feet"),
  4699. weight: math.unit(2000, "kg"),
  4700. name: "Upright",
  4701. image: {
  4702. source: "./media/characters/scott/upright.svg",
  4703. extra: 3881 / 3722,
  4704. bottom: 0.05
  4705. }
  4706. },
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(12, "feet"),
  4712. default: true
  4713. },
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4718. {
  4719. side: {
  4720. height: math.unit(8, "meters"),
  4721. weight: math.unit(84755, "lbs"),
  4722. name: "Side",
  4723. image: {
  4724. source: "./media/characters/tobias/side.svg",
  4725. extra: 1474 / 1096,
  4726. bottom: 38.9 / 1513.1235
  4727. }
  4728. },
  4729. },
  4730. [
  4731. {
  4732. name: "Normal",
  4733. height: math.unit(8, "meters"),
  4734. default: true
  4735. },
  4736. ]
  4737. ))
  4738. characterMakers.push(() => makeCharacter(
  4739. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4740. {
  4741. front: {
  4742. height: math.unit(5.5, "feet"),
  4743. weight: math.unit(400, "lbs"),
  4744. name: "Front",
  4745. image: {
  4746. source: "./media/characters/kieran/front.svg",
  4747. extra: 2694 / 2364,
  4748. bottom: 217 / 2908
  4749. }
  4750. },
  4751. side: {
  4752. height: math.unit(5.5, "feet"),
  4753. weight: math.unit(400, "lbs"),
  4754. name: "Side",
  4755. image: {
  4756. source: "./media/characters/kieran/side.svg",
  4757. extra: 875 / 777,
  4758. bottom: 84.6 / 959
  4759. }
  4760. },
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(5.5, "feet"),
  4766. default: true
  4767. },
  4768. ]
  4769. ))
  4770. characterMakers.push(() => makeCharacter(
  4771. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4772. {
  4773. side: {
  4774. height: math.unit(2, "meters"),
  4775. weight: math.unit(70, "kg"),
  4776. name: "Side",
  4777. image: {
  4778. source: "./media/characters/sanya/side.svg",
  4779. bottom: 0.02,
  4780. extra: 1.02
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Small",
  4787. height: math.unit(2, "meters")
  4788. },
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(3, "meters")
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(16, "meters"),
  4796. default: true
  4797. },
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(2, "meters"),
  4805. weight: math.unit(120, "kg"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/miranda/front.svg",
  4809. extra: 195 / 185,
  4810. bottom: 10.9 / 206.5
  4811. }
  4812. },
  4813. back: {
  4814. height: math.unit(2, "meters"),
  4815. weight: math.unit(120, "kg"),
  4816. name: "Back",
  4817. image: {
  4818. source: "./media/characters/miranda/back.svg",
  4819. extra: 201 / 193,
  4820. bottom: 2.3 / 203.7
  4821. }
  4822. },
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(10, "feet"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "James", species: ["deer"], tags: ["anthro"] },
  4834. {
  4835. side: {
  4836. height: math.unit(2, "meters"),
  4837. weight: math.unit(100, "kg"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/james/front.svg",
  4841. extra: 10 / 8.5
  4842. }
  4843. },
  4844. },
  4845. [
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(8.5, "feet"),
  4849. default: true
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4855. {
  4856. side: {
  4857. height: math.unit(9.5, "feet"),
  4858. weight: math.unit(2500, "lbs"),
  4859. name: "Side",
  4860. image: {
  4861. source: "./media/characters/heather/side.svg"
  4862. }
  4863. },
  4864. },
  4865. [
  4866. {
  4867. name: "Normal",
  4868. height: math.unit(9.5, "feet"),
  4869. default: true
  4870. }
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4875. {
  4876. side: {
  4877. height: math.unit(6.5, "feet"),
  4878. weight: math.unit(400, "lbs"),
  4879. name: "Side",
  4880. image: {
  4881. source: "./media/characters/lukas/side.svg",
  4882. extra: 7.25 / 6.5
  4883. }
  4884. },
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(6.5, "feet"),
  4890. default: true
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4896. {
  4897. side: {
  4898. height: math.unit(5, "feet"),
  4899. weight: math.unit(3000, "lbs"),
  4900. name: "Side",
  4901. image: {
  4902. source: "./media/characters/louise/side.svg"
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(5, "feet"),
  4910. default: true
  4911. }
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4916. {
  4917. side: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(150, "lbs"),
  4920. name: "Side",
  4921. image: {
  4922. source: "./media/characters/ramona/side.svg"
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(5.3, "meters"),
  4930. default: true
  4931. },
  4932. {
  4933. name: "Macro",
  4934. height: math.unit(20, "stories")
  4935. },
  4936. {
  4937. name: "Macro+",
  4938. height: math.unit(50, "stories")
  4939. },
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4944. {
  4945. standing: {
  4946. height: math.unit(5.75, "feet"),
  4947. weight: math.unit(160, "lbs"),
  4948. name: "Standing",
  4949. image: {
  4950. source: "./media/characters/deerpuff/standing.svg",
  4951. extra: 682 / 624
  4952. }
  4953. },
  4954. sitting: {
  4955. height: math.unit(5.75 / 1.79, "feet"),
  4956. weight: math.unit(160, "lbs"),
  4957. name: "Sitting",
  4958. image: {
  4959. source: "./media/characters/deerpuff/sitting.svg",
  4960. bottom: 44 / 400,
  4961. extra: 1
  4962. }
  4963. },
  4964. taurLaying: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(400, "lbs"),
  4967. name: "Taur (Laying)",
  4968. image: {
  4969. source: "./media/characters/deerpuff/taur-laying.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Puffball",
  4976. height: math.unit(6, "inches")
  4977. },
  4978. {
  4979. name: "Normalpuff",
  4980. height: math.unit(5.75, "feet")
  4981. },
  4982. {
  4983. name: "Macropuff",
  4984. height: math.unit(1500, "feet"),
  4985. default: true
  4986. },
  4987. {
  4988. name: "Megapuff",
  4989. height: math.unit(500, "miles")
  4990. },
  4991. {
  4992. name: "Gigapuff",
  4993. height: math.unit(250000, "miles")
  4994. },
  4995. {
  4996. name: "Omegapuff",
  4997. height: math.unit(1000, "lightyears")
  4998. },
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5003. {
  5004. stomping: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(170, "lbs"),
  5007. name: "Stomping",
  5008. image: {
  5009. source: "./media/characters/vivian/stomping.svg"
  5010. }
  5011. },
  5012. sitting: {
  5013. height: math.unit(6 / 1.75, "feet"),
  5014. weight: math.unit(170, "lbs"),
  5015. name: "Sitting",
  5016. image: {
  5017. source: "./media/characters/vivian/sitting.svg",
  5018. bottom: 1 / 6.4,
  5019. extra: 1,
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(7, "feet"),
  5027. default: true
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(10, "stories")
  5032. },
  5033. {
  5034. name: "Macro+",
  5035. height: math.unit(30, "stories")
  5036. },
  5037. {
  5038. name: "Megamacro",
  5039. height: math.unit(10, "miles")
  5040. },
  5041. {
  5042. name: "Megamacro+",
  5043. height: math.unit(2750000, "meters")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(160, "lbs"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/prince/front.svg",
  5056. extra: 3400 / 3000
  5057. }
  5058. },
  5059. jumping: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(160, "lbs"),
  5062. name: "Jumping",
  5063. image: {
  5064. source: "./media/characters/prince/jump.svg",
  5065. extra: 2555 / 2134
  5066. }
  5067. },
  5068. },
  5069. [
  5070. {
  5071. name: "Normal",
  5072. height: math.unit(7.75, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "Not cute",
  5077. height: math.unit(17, "feet")
  5078. },
  5079. {
  5080. name: "I said NOT",
  5081. height: math.unit(91, "feet")
  5082. },
  5083. {
  5084. name: "Please stop",
  5085. height: math.unit(560, "feet")
  5086. },
  5087. {
  5088. name: "What have you done",
  5089. height: math.unit(2200, "feet")
  5090. },
  5091. {
  5092. name: "Deer God",
  5093. height: math.unit(3.6, "miles")
  5094. },
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5099. {
  5100. standing: {
  5101. height: math.unit(6, "feet"),
  5102. weight: math.unit(300, "lbs"),
  5103. name: "Standing",
  5104. image: {
  5105. source: "./media/characters/psymon/standing.svg",
  5106. extra: 1888 / 1810,
  5107. bottom: 0.05
  5108. }
  5109. },
  5110. slithering: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(300, "lbs"),
  5113. name: "Slithering",
  5114. image: {
  5115. source: "./media/characters/psymon/slithering.svg",
  5116. extra: 1330 / 1224
  5117. }
  5118. },
  5119. slitheringAlt: {
  5120. height: math.unit(6, "feet"),
  5121. weight: math.unit(300, "lbs"),
  5122. name: "Slithering (Alt)",
  5123. image: {
  5124. source: "./media/characters/psymon/slithering-alt.svg",
  5125. extra: 1330 / 1224
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(11.25, "feet"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "Large",
  5137. height: math.unit(27, "feet")
  5138. },
  5139. {
  5140. name: "Giant",
  5141. height: math.unit(87, "feet")
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(365, "feet")
  5146. },
  5147. {
  5148. name: "Megamacro",
  5149. height: math.unit(3, "miles")
  5150. },
  5151. {
  5152. name: "World Serpent",
  5153. height: math.unit(8000, "miles")
  5154. },
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(180, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/daimos/front.svg",
  5166. extra: 4160 / 3897,
  5167. bottom: 0.021
  5168. }
  5169. }
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(8, "feet"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Big Dog",
  5179. height: math.unit(22, "feet")
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(127, "feet")
  5184. },
  5185. {
  5186. name: "Megamacro",
  5187. height: math.unit(3600, "feet")
  5188. },
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5193. {
  5194. side: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(180, "lbs"),
  5197. name: "Side",
  5198. image: {
  5199. source: "./media/characters/blake/side.svg",
  5200. extra: 1212 / 1120,
  5201. bottom: 0.05
  5202. }
  5203. },
  5204. crouched: {
  5205. height: math.unit(6 * 0.57, "feet"),
  5206. weight: math.unit(180, "lbs"),
  5207. name: "Crouched",
  5208. image: {
  5209. source: "./media/characters/blake/crouched.svg",
  5210. extra: 840 / 587,
  5211. bottom: 0.04
  5212. }
  5213. },
  5214. bent: {
  5215. height: math.unit(6 * 0.75, "feet"),
  5216. weight: math.unit(180, "lbs"),
  5217. name: "Bent",
  5218. image: {
  5219. source: "./media/characters/blake/bent.svg",
  5220. extra: 592 / 544,
  5221. bottom: 0.035
  5222. }
  5223. },
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(8 + 1 / 6, "feet"),
  5229. default: true
  5230. },
  5231. {
  5232. name: "Big Backside",
  5233. height: math.unit(37, "feet")
  5234. },
  5235. {
  5236. name: "Subway Shredder",
  5237. height: math.unit(72, "feet")
  5238. },
  5239. {
  5240. name: "City Carver",
  5241. height: math.unit(1675, "feet")
  5242. },
  5243. {
  5244. name: "Tectonic Tweaker",
  5245. height: math.unit(2300, "miles")
  5246. },
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5251. {
  5252. front: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(180, "lbs"),
  5255. name: "Front",
  5256. image: {
  5257. source: "./media/characters/guisetto/front.svg",
  5258. extra: 856 / 817,
  5259. bottom: 0.06
  5260. }
  5261. },
  5262. airborne: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(180, "lbs"),
  5265. name: "Airborne",
  5266. image: {
  5267. source: "./media/characters/guisetto/airborne.svg",
  5268. extra: 584 / 525
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(10 + 11 / 12, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Large",
  5280. height: math.unit(35, "feet")
  5281. },
  5282. {
  5283. name: "Macro",
  5284. height: math.unit(475, "feet")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(180, "lbs"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/luxor/front.svg",
  5297. extra: 2940 / 2152
  5298. }
  5299. },
  5300. back: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(180, "lbs"),
  5303. name: "Back",
  5304. image: {
  5305. source: "./media/characters/luxor/back.svg",
  5306. extra: 1083 / 960
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(5 + 5 / 6, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Lamp",
  5318. height: math.unit(50, "feet")
  5319. },
  5320. {
  5321. name: "Lämp",
  5322. height: math.unit(300, "feet")
  5323. },
  5324. {
  5325. name: "The sun is a lamp",
  5326. height: math.unit(250000, "miles")
  5327. },
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5332. {
  5333. front: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(50, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/huoyan/front.svg"
  5339. }
  5340. },
  5341. side: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(180, "lbs"),
  5344. name: "Side",
  5345. image: {
  5346. source: "./media/characters/huoyan/side.svg"
  5347. }
  5348. },
  5349. },
  5350. [
  5351. {
  5352. name: "Chef",
  5353. height: math.unit(9, "feet")
  5354. },
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(65, "feet"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(780, "feet")
  5363. },
  5364. {
  5365. name: "Flaming Mountain",
  5366. height: math.unit(4.8, "miles")
  5367. },
  5368. {
  5369. name: "Celestial",
  5370. height: math.unit(765000, "miles")
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(5 + 3 / 4, "feet"),
  5379. weight: math.unit(120, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/tails/front.svg"
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(5 + 3 / 4, "feet"),
  5390. default: true
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(4, "feet"),
  5399. weight: math.unit(50, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/rainy/front.svg"
  5403. }
  5404. }
  5405. },
  5406. [
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(800, "feet"),
  5410. default: true
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(150, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/rainier/front.svg"
  5423. }
  5424. }
  5425. },
  5426. [
  5427. {
  5428. name: "Micro",
  5429. height: math.unit(2, "mm"),
  5430. default: true
  5431. }
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(180, "lbs"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/andy/front.svg"
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(8, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(1000, "feet")
  5455. },
  5456. {
  5457. name: "Megamacro",
  5458. height: math.unit(5, "miles")
  5459. },
  5460. {
  5461. name: "Gigamacro",
  5462. height: math.unit(5000, "miles")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5468. {
  5469. front: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(210, "lbs"),
  5472. name: "Front",
  5473. image: {
  5474. source: "./media/characters/cimmaron/front-sfw.svg",
  5475. extra: 701 / 676,
  5476. bottom: 0.046
  5477. }
  5478. },
  5479. back: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(210, "lbs"),
  5482. name: "Back",
  5483. image: {
  5484. source: "./media/characters/cimmaron/back-sfw.svg",
  5485. extra: 701 / 676,
  5486. bottom: 0.046
  5487. }
  5488. },
  5489. frontNsfw: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(210, "lbs"),
  5492. name: "Front (NSFW)",
  5493. image: {
  5494. source: "./media/characters/cimmaron/front-nsfw.svg",
  5495. extra: 701 / 676,
  5496. bottom: 0.046
  5497. }
  5498. },
  5499. backNsfw: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(210, "lbs"),
  5502. name: "Back (NSFW)",
  5503. image: {
  5504. source: "./media/characters/cimmaron/back-nsfw.svg",
  5505. extra: 701 / 676,
  5506. bottom: 0.046
  5507. }
  5508. },
  5509. dick: {
  5510. height: math.unit(1.714, "feet"),
  5511. name: "Dick",
  5512. image: {
  5513. source: "./media/characters/cimmaron/dick.svg"
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(6, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Macro Mayor",
  5525. height: math.unit(350, "meters")
  5526. },
  5527. ]
  5528. ))
  5529. characterMakers.push(() => makeCharacter(
  5530. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5531. {
  5532. front: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(200, "lbs"),
  5535. name: "Front",
  5536. image: {
  5537. source: "./media/characters/akari/front.svg",
  5538. extra: 962 / 901,
  5539. bottom: 0.04
  5540. }
  5541. }
  5542. },
  5543. [
  5544. {
  5545. name: "Micro",
  5546. height: math.unit(5, "inches"),
  5547. default: true
  5548. },
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(7, "feet")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(140, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/cynosura/front.svg",
  5564. extra: 896 / 847
  5565. }
  5566. },
  5567. back: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(140, "lbs"),
  5570. name: "Back",
  5571. image: {
  5572. source: "./media/characters/cynosura/back.svg",
  5573. extra: 1365 / 1250
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Micro",
  5580. height: math.unit(4, "inches")
  5581. },
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(5.75, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Tall",
  5589. height: math.unit(10, "feet")
  5590. },
  5591. {
  5592. name: "Big",
  5593. height: math.unit(20, "feet")
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(50, "feet")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(13 + 2/12, "feet"),
  5606. weight: math.unit(800, "kg"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/gin/front.svg",
  5610. extra: 1312/1191,
  5611. bottom: 45/1357
  5612. }
  5613. },
  5614. mouth: {
  5615. height: math.unit(2.39 * 1.8, "feet"),
  5616. name: "Mouth",
  5617. image: {
  5618. source: "./media/characters/gin/mouth.svg"
  5619. }
  5620. },
  5621. hand: {
  5622. height: math.unit(1.57 * 2.19, "feet"),
  5623. name: "Hand",
  5624. image: {
  5625. source: "./media/characters/gin/hand.svg"
  5626. }
  5627. },
  5628. foot: {
  5629. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5630. name: "Foot",
  5631. image: {
  5632. source: "./media/characters/gin/foot.svg"
  5633. }
  5634. },
  5635. sole: {
  5636. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5637. name: "Sole",
  5638. image: {
  5639. source: "./media/characters/gin/sole.svg"
  5640. }
  5641. },
  5642. },
  5643. [
  5644. {
  5645. name: "Very Small",
  5646. height: math.unit(13 + 2 / 12, "feet")
  5647. },
  5648. {
  5649. name: "Micro",
  5650. height: math.unit(600, "miles")
  5651. },
  5652. {
  5653. name: "Regular",
  5654. height: math.unit(20, "earths"),
  5655. default: true
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(2.2, "solarradii")
  5660. },
  5661. {
  5662. name: "Teramacro",
  5663. height: math.unit(1.2, "galaxies")
  5664. },
  5665. {
  5666. name: "Omegamacro",
  5667. height: math.unit(200, "universes")
  5668. },
  5669. ]
  5670. ))
  5671. characterMakers.push(() => makeCharacter(
  5672. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5673. {
  5674. front: {
  5675. height: math.unit(6 + 1 / 6, "feet"),
  5676. weight: math.unit(178, "lbs"),
  5677. name: "Front",
  5678. image: {
  5679. source: "./media/characters/guy/front.svg"
  5680. }
  5681. }
  5682. },
  5683. [
  5684. {
  5685. name: "Normal",
  5686. height: math.unit(6 + 1 / 6, "feet"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Large",
  5691. height: math.unit(25 + 7 / 12, "feet")
  5692. },
  5693. {
  5694. name: "Macro",
  5695. height: math.unit(60 + 9 / 12, "feet")
  5696. },
  5697. {
  5698. name: "Macro+",
  5699. height: math.unit(246, "feet")
  5700. },
  5701. {
  5702. name: "Macro++",
  5703. height: math.unit(878, "feet")
  5704. }
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5709. {
  5710. front: {
  5711. height: math.unit(9, "feet"),
  5712. weight: math.unit(800, "lbs"),
  5713. name: "Front",
  5714. image: {
  5715. source: "./media/characters/tiberius/front.svg",
  5716. extra: 2295 / 2071
  5717. }
  5718. },
  5719. back: {
  5720. height: math.unit(9, "feet"),
  5721. weight: math.unit(800, "lbs"),
  5722. name: "Back",
  5723. image: {
  5724. source: "./media/characters/tiberius/back.svg",
  5725. extra: 2373 / 2160
  5726. }
  5727. },
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(9, "feet"),
  5733. default: true
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(600, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/surgo/front.svg",
  5746. extra: 3591 / 2227
  5747. }
  5748. },
  5749. back: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(600, "lbs"),
  5752. name: "Back",
  5753. image: {
  5754. source: "./media/characters/surgo/back.svg",
  5755. extra: 3557 / 2228
  5756. }
  5757. },
  5758. laying: {
  5759. height: math.unit(6 * 0.85, "feet"),
  5760. weight: math.unit(600, "lbs"),
  5761. name: "Laying",
  5762. image: {
  5763. source: "./media/characters/surgo/laying.svg"
  5764. }
  5765. },
  5766. },
  5767. [
  5768. {
  5769. name: "Normal",
  5770. height: math.unit(6, "feet"),
  5771. default: true
  5772. }
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5777. {
  5778. side: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(150, "lbs"),
  5781. name: "Side",
  5782. image: {
  5783. source: "./media/characters/cibus/side.svg",
  5784. extra: 800 / 400
  5785. }
  5786. },
  5787. },
  5788. [
  5789. {
  5790. name: "Normal",
  5791. height: math.unit(6, "feet"),
  5792. default: true
  5793. }
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(240, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/nibbles/front.svg"
  5805. }
  5806. },
  5807. side: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(240, "lbs"),
  5810. name: "Side",
  5811. image: {
  5812. source: "./media/characters/nibbles/side.svg"
  5813. }
  5814. },
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(9, "feet"),
  5820. default: true
  5821. }
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5826. {
  5827. side: {
  5828. height: math.unit(5 + 1 / 6, "feet"),
  5829. weight: math.unit(130, "lbs"),
  5830. name: "Side",
  5831. image: {
  5832. source: "./media/characters/rikky/side.svg",
  5833. extra: 851 / 801
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Normal",
  5840. height: math.unit(5 + 1 / 6, "feet")
  5841. },
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(152, "feet"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Megamacro",
  5849. height: math.unit(7, "miles")
  5850. }
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5855. {
  5856. side: {
  5857. height: math.unit(370, "cm"),
  5858. weight: math.unit(350, "lbs"),
  5859. name: "Side",
  5860. image: {
  5861. source: "./media/characters/malfressa/side.svg"
  5862. }
  5863. },
  5864. walking: {
  5865. height: math.unit(370, "cm"),
  5866. weight: math.unit(350, "lbs"),
  5867. name: "Walking",
  5868. image: {
  5869. source: "./media/characters/malfressa/walking.svg"
  5870. }
  5871. },
  5872. feral: {
  5873. height: math.unit(2500, "cm"),
  5874. weight: math.unit(100000, "lbs"),
  5875. name: "Feral",
  5876. image: {
  5877. source: "./media/characters/malfressa/feral.svg",
  5878. extra: 2108 / 837,
  5879. bottom: 0.02
  5880. }
  5881. },
  5882. },
  5883. [
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(370, "cm")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(300, "meters"),
  5891. default: true
  5892. }
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(60, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/jaro/front.svg"
  5904. }
  5905. },
  5906. back: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(60, "kg"),
  5909. name: "Back",
  5910. image: {
  5911. source: "./media/characters/jaro/back.svg"
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Micro",
  5918. height: math.unit(7, "inches")
  5919. },
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(5.5, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Minimacro",
  5927. height: math.unit(20, "feet")
  5928. },
  5929. {
  5930. name: "Macro",
  5931. height: math.unit(200, "meters")
  5932. }
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(195, "lb"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/rogue/front.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(90, "feet"),
  5951. default: true
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(5 + 8 / 12, "feet"),
  5960. weight: math.unit(140, "lb"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/piper/front.svg",
  5964. extra: 3948/3655,
  5965. bottom: 0/3948
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Micro",
  5972. height: math.unit(2, "inches")
  5973. },
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(5 + 8 / 12, "feet")
  5977. },
  5978. {
  5979. name: "Macro",
  5980. height: math.unit(250, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Megamacro",
  5985. height: math.unit(7, "miles")
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(220, "lb"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/gemini/front.svg"
  5998. }
  5999. },
  6000. back: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(220, "lb"),
  6003. name: "Back",
  6004. image: {
  6005. source: "./media/characters/gemini/back.svg"
  6006. }
  6007. },
  6008. kneeling: {
  6009. height: math.unit(6 / 1.5, "feet"),
  6010. weight: math.unit(220, "lb"),
  6011. name: "Kneeling",
  6012. image: {
  6013. source: "./media/characters/gemini/kneeling.svg",
  6014. bottom: 0.02
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(300, "meters"),
  6022. default: true
  6023. },
  6024. {
  6025. name: "Megamacro",
  6026. height: math.unit(6900, "meters")
  6027. },
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6032. {
  6033. anthro: {
  6034. height: math.unit(2.35, "meters"),
  6035. weight: math.unit(73, "kg"),
  6036. name: "Anthro",
  6037. image: {
  6038. source: "./media/characters/alicia/anthro.svg",
  6039. extra: 2571 / 2385,
  6040. bottom: 75 / 2648
  6041. }
  6042. },
  6043. paw: {
  6044. height: math.unit(1.32, "feet"),
  6045. name: "Paw",
  6046. image: {
  6047. source: "./media/characters/alicia/paw.svg"
  6048. }
  6049. },
  6050. feral: {
  6051. height: math.unit(1.69, "meters"),
  6052. weight: math.unit(73, "kg"),
  6053. name: "Feral",
  6054. image: {
  6055. source: "./media/characters/alicia/feral.svg",
  6056. extra: 2123 / 1715,
  6057. bottom: 222 / 2349
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(2.35, "meters")
  6065. },
  6066. {
  6067. name: "Macro",
  6068. height: math.unit(60, "meters"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Megamacro",
  6073. height: math.unit(10000, "kilometers")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(7, "feet"),
  6082. weight: math.unit(250, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/archy/front.svg"
  6086. }
  6087. }
  6088. },
  6089. [
  6090. {
  6091. name: "Micro",
  6092. height: math.unit(1, "inch")
  6093. },
  6094. {
  6095. name: "Shorty",
  6096. height: math.unit(5, "feet")
  6097. },
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(7, "feet")
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(600, "meters"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Megamacro",
  6109. height: math.unit(1, "mile")
  6110. },
  6111. ]
  6112. ))
  6113. characterMakers.push(() => makeCharacter(
  6114. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6115. {
  6116. front: {
  6117. height: math.unit(1.65, "meters"),
  6118. weight: math.unit(74, "kg"),
  6119. name: "Front",
  6120. image: {
  6121. source: "./media/characters/berri/front.svg",
  6122. extra: 857 / 837,
  6123. bottom: 18 / 877
  6124. }
  6125. },
  6126. bum: {
  6127. height: math.unit(1.46, "feet"),
  6128. name: "Bum",
  6129. image: {
  6130. source: "./media/characters/berri/bum.svg"
  6131. }
  6132. },
  6133. mouth: {
  6134. height: math.unit(0.44, "feet"),
  6135. name: "Mouth",
  6136. image: {
  6137. source: "./media/characters/berri/mouth.svg"
  6138. }
  6139. },
  6140. paw: {
  6141. height: math.unit(0.826, "feet"),
  6142. name: "Paw",
  6143. image: {
  6144. source: "./media/characters/berri/paw.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(1.65, "meters")
  6152. },
  6153. {
  6154. name: "Macro",
  6155. height: math.unit(60, "m"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Megamacro",
  6160. height: math.unit(9.213, "km")
  6161. },
  6162. {
  6163. name: "Planet Eater",
  6164. height: math.unit(489, "megameters")
  6165. },
  6166. {
  6167. name: "Teramacro",
  6168. height: math.unit(2471635000000, "meters")
  6169. },
  6170. {
  6171. name: "Examacro",
  6172. height: math.unit(8.0624e+26, "meters")
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(1.72, "meters"),
  6181. weight: math.unit(68, "kg"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/lexi/front.svg"
  6185. }
  6186. }
  6187. },
  6188. [
  6189. {
  6190. name: "Very Smol",
  6191. height: math.unit(10, "mm")
  6192. },
  6193. {
  6194. name: "Micro",
  6195. height: math.unit(6.8, "cm"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(1.72, "m")
  6201. }
  6202. ]
  6203. ))
  6204. characterMakers.push(() => makeCharacter(
  6205. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6206. {
  6207. front: {
  6208. height: math.unit(1.69, "meters"),
  6209. weight: math.unit(68, "kg"),
  6210. name: "Front",
  6211. image: {
  6212. source: "./media/characters/martin/front.svg",
  6213. extra: 596 / 581
  6214. }
  6215. }
  6216. },
  6217. [
  6218. {
  6219. name: "Micro",
  6220. height: math.unit(6.85, "cm"),
  6221. default: true
  6222. },
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(1.69, "m")
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(1.69, "meters"),
  6234. weight: math.unit(68, "kg"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/juno/front.svg"
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Micro",
  6244. height: math.unit(7, "cm")
  6245. },
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(1.89, "m")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(353, "meters"),
  6253. default: true
  6254. }
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(1.93, "meters"),
  6262. weight: math.unit(83, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/samantha/front.svg"
  6266. }
  6267. },
  6268. frontClothed: {
  6269. height: math.unit(1.93, "meters"),
  6270. weight: math.unit(83, "kg"),
  6271. name: "Front (Clothed)",
  6272. image: {
  6273. source: "./media/characters/samantha/front-clothed.svg"
  6274. }
  6275. },
  6276. back: {
  6277. height: math.unit(1.93, "meters"),
  6278. weight: math.unit(83, "kg"),
  6279. name: "Back",
  6280. image: {
  6281. source: "./media/characters/samantha/back.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(1.93, "m")
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(74, "meters"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Macro+",
  6297. height: math.unit(223, "meters"),
  6298. },
  6299. {
  6300. name: "Megamacro",
  6301. height: math.unit(8381, "meters"),
  6302. },
  6303. {
  6304. name: "Megamacro+",
  6305. height: math.unit(12000, "kilometers")
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(1.92, "meters"),
  6314. weight: math.unit(80, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/dr-clay/front.svg"
  6318. }
  6319. },
  6320. frontClothed: {
  6321. height: math.unit(1.92, "meters"),
  6322. weight: math.unit(80, "kg"),
  6323. name: "Front (Clothed)",
  6324. image: {
  6325. source: "./media/characters/dr-clay/front-clothed.svg"
  6326. }
  6327. }
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(1.92, "m")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(214, "meters"),
  6337. default: true
  6338. },
  6339. {
  6340. name: "Macro+",
  6341. height: math.unit(12.237, "meters"),
  6342. },
  6343. {
  6344. name: "Megamacro",
  6345. height: math.unit(557, "megameters"),
  6346. },
  6347. {
  6348. name: "Unimaginable",
  6349. height: math.unit(120e9, "lightyears")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(2, "meters"),
  6358. weight: math.unit(80, "kg"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6362. }
  6363. }
  6364. },
  6365. [
  6366. {
  6367. name: "Teramacro",
  6368. height: math.unit(500000, "lightyears"),
  6369. default: true
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(2, "meters"),
  6378. weight: math.unit(150, "kg"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/vemus/front.svg",
  6382. extra: 1074/936,
  6383. bottom: 23/1097
  6384. }
  6385. }
  6386. },
  6387. [
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(3.75, "meters"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Big",
  6395. height: math.unit(8, "meters")
  6396. },
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(100, "meters")
  6400. },
  6401. {
  6402. name: "Macro+",
  6403. height: math.unit(1500, "meters")
  6404. },
  6405. {
  6406. name: "Stellar",
  6407. height: math.unit(14e8, "meters")
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6413. {
  6414. front: {
  6415. height: math.unit(2, "meters"),
  6416. weight: math.unit(70, "kg"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/beherit/front.svg",
  6420. extra: 1408 / 1242
  6421. }
  6422. }
  6423. },
  6424. [
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(6, "feet")
  6428. },
  6429. {
  6430. name: "Lorg",
  6431. height: math.unit(25, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Lorger",
  6436. height: math.unit(75, "feet")
  6437. },
  6438. {
  6439. name: "Macro",
  6440. height: math.unit(200, "meters")
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6446. {
  6447. front: {
  6448. height: math.unit(2, "meters"),
  6449. weight: math.unit(150, "kg"),
  6450. name: "Front",
  6451. image: {
  6452. source: "./media/characters/everett/front.svg",
  6453. extra: 2038 / 1737,
  6454. bottom: 0.03
  6455. }
  6456. },
  6457. paw: {
  6458. height: math.unit(2 / 3.6, "meters"),
  6459. name: "Paw",
  6460. image: {
  6461. source: "./media/characters/everett/paw.svg"
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(15, "feet"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Lorg",
  6473. height: math.unit(70, "feet"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Lorger",
  6478. height: math.unit(250, "feet")
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(500, "meters")
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(2, "meters"),
  6491. weight: math.unit(86, "kg"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/rose/front.svg",
  6495. extra: 350/335,
  6496. bottom: 10/360
  6497. }
  6498. },
  6499. frontAlt: {
  6500. height: math.unit(1.6, "meters"),
  6501. weight: math.unit(86, "kg"),
  6502. name: "Front (Alt)",
  6503. image: {
  6504. source: "./media/characters/rose/front-alt.svg",
  6505. extra: 299/283,
  6506. bottom: 3/302
  6507. }
  6508. },
  6509. plush: {
  6510. height: math.unit(2, "meters"),
  6511. weight: math.unit(86/3, "kg"),
  6512. name: "Plush",
  6513. image: {
  6514. source: "./media/characters/rose/plush.svg",
  6515. extra: 361/337,
  6516. bottom: 11/372
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Mini-Micro",
  6523. height: math.unit(1, "cm")
  6524. },
  6525. {
  6526. name: "Micro",
  6527. height: math.unit(3.5, "inches"),
  6528. default: true
  6529. },
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(6 + 1 / 6, "feet")
  6533. },
  6534. {
  6535. name: "Mini-Macro",
  6536. height: math.unit(9 + 10 / 12, "feet")
  6537. },
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(2, "meters"),
  6545. weight: math.unit(350, "lbs"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/regal/front.svg"
  6549. }
  6550. },
  6551. back: {
  6552. height: math.unit(2, "meters"),
  6553. weight: math.unit(350, "lbs"),
  6554. name: "Back",
  6555. image: {
  6556. source: "./media/characters/regal/back.svg"
  6557. }
  6558. },
  6559. },
  6560. [
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(350, "feet"),
  6564. default: true
  6565. }
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(4 + 11 / 12, "feet"),
  6573. weight: math.unit(100, "lbs"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/opal/front.svg"
  6577. }
  6578. },
  6579. frontAlt: {
  6580. height: math.unit(4 + 11 / 12, "feet"),
  6581. weight: math.unit(100, "lbs"),
  6582. name: "Front (Alt)",
  6583. image: {
  6584. source: "./media/characters/opal/front-alt.svg"
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Small",
  6591. height: math.unit(4 + 11 / 12, "feet")
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(20, "feet"),
  6596. default: true
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(120, "feet")
  6601. },
  6602. {
  6603. name: "Megamacro",
  6604. height: math.unit(80, "miles")
  6605. },
  6606. {
  6607. name: "True Size",
  6608. height: math.unit(100000, "lightyears")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(200, "lbs"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/vector-wuff/front.svg"
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(2.8, "meters")
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(450, "meters"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Megamacro",
  6636. height: math.unit(15, "kilometers")
  6637. }
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(256, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/dannik/front.svg"
  6649. }
  6650. }
  6651. },
  6652. [
  6653. {
  6654. name: "Macro",
  6655. height: math.unit(69.57, "meters"),
  6656. default: true
  6657. },
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(120, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/azura-saharah/front.svg"
  6669. }
  6670. },
  6671. back: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(120, "lbs"),
  6674. name: "Back",
  6675. image: {
  6676. source: "./media/characters/azura-saharah/back.svg"
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Macro",
  6683. height: math.unit(100, "feet"),
  6684. default: true
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6690. {
  6691. side: {
  6692. height: math.unit(5 + 4 / 12, "feet"),
  6693. weight: math.unit(163, "lbs"),
  6694. name: "Side",
  6695. image: {
  6696. source: "./media/characters/kennedy/side.svg"
  6697. }
  6698. }
  6699. },
  6700. [
  6701. {
  6702. name: "Standard Doggo",
  6703. height: math.unit(5 + 4 / 12, "feet")
  6704. },
  6705. {
  6706. name: "Big Doggo",
  6707. height: math.unit(25 + 3 / 12, "feet"),
  6708. default: true
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6714. {
  6715. front: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(90, "lbs"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/odi-lunar/front.svg"
  6721. }
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Micro",
  6727. height: math.unit(3, "inches"),
  6728. default: true
  6729. },
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(5.5, "feet")
  6733. }
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6738. {
  6739. back: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(220, "lbs"),
  6742. name: "Back",
  6743. image: {
  6744. source: "./media/characters/mandake/back.svg"
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(7, "feet"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Macro",
  6756. height: math.unit(78, "feet")
  6757. },
  6758. {
  6759. name: "Macro+",
  6760. height: math.unit(300, "meters")
  6761. },
  6762. {
  6763. name: "Macro++",
  6764. height: math.unit(2400, "feet")
  6765. },
  6766. {
  6767. name: "Megamacro",
  6768. height: math.unit(5167, "meters")
  6769. },
  6770. {
  6771. name: "Gigamacro",
  6772. height: math.unit(41769, "miles")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(120, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/yozey/front.svg"
  6785. }
  6786. },
  6787. frontAlt: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(120, "lbs"),
  6790. name: "Front (Alt)",
  6791. image: {
  6792. source: "./media/characters/yozey/front-alt.svg"
  6793. }
  6794. },
  6795. side: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(120, "lbs"),
  6798. name: "Side",
  6799. image: {
  6800. source: "./media/characters/yozey/side.svg"
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(3, "inches"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Normal",
  6812. height: math.unit(6, "feet")
  6813. }
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(6, "feet"),
  6821. weight: math.unit(103, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/valeska-voss/front.svg"
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Mini-Sized Sub",
  6831. height: math.unit(3.1, "inches")
  6832. },
  6833. {
  6834. name: "Mid-Sized Sub",
  6835. height: math.unit(6.2, "inches")
  6836. },
  6837. {
  6838. name: "Full-Sized Sub",
  6839. height: math.unit(9.3, "inches")
  6840. },
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(5 + 2 / 12, "foot"),
  6844. default: true
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(160, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/gene-zeta/front.svg",
  6857. extra: 3006 / 2826,
  6858. bottom: 182 / 3188
  6859. }
  6860. }
  6861. },
  6862. [
  6863. {
  6864. name: "Micro",
  6865. height: math.unit(6, "inches")
  6866. },
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(5 + 11 / 12, "foot"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(140, "feet")
  6875. },
  6876. {
  6877. name: "Supercharged",
  6878. height: math.unit(2500, "feet")
  6879. },
  6880. ]
  6881. ))
  6882. characterMakers.push(() => makeCharacter(
  6883. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6884. {
  6885. front: {
  6886. height: math.unit(6, "feet"),
  6887. weight: math.unit(350, "lbs"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/razinox/front.svg",
  6891. extra: 1686 / 1548,
  6892. bottom: 28.2 / 1868
  6893. }
  6894. },
  6895. back: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(350, "lbs"),
  6898. name: "Back",
  6899. image: {
  6900. source: "./media/characters/razinox/back.svg",
  6901. extra: 1660 / 1590,
  6902. bottom: 15 / 1665
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(10 + 8 / 12, "foot")
  6910. },
  6911. {
  6912. name: "Minimacro",
  6913. height: math.unit(15, "foot")
  6914. },
  6915. {
  6916. name: "Macro",
  6917. height: math.unit(60, "foot"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Megamacro",
  6922. height: math.unit(5, "miles")
  6923. },
  6924. {
  6925. name: "Gigamacro",
  6926. height: math.unit(6000, "miles")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(150, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/cobalt/front.svg"
  6939. }
  6940. }
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(8 + 1 / 12, "foot")
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(111, "foot"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Supracosmic",
  6954. height: math.unit(1e42, "feet")
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(6, "feet"),
  6963. weight: math.unit(140, "lbs"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/amanda/front.svg"
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Micro",
  6973. height: math.unit(5, "inches"),
  6974. default: true
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(2.75, "meters"),
  6983. weight: math.unit(1200, "lb"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/teal/front.svg",
  6987. extra: 2463 / 2320,
  6988. bottom: 166 / 2629
  6989. }
  6990. },
  6991. back: {
  6992. height: math.unit(2.75, "meters"),
  6993. weight: math.unit(1200, "lb"),
  6994. name: "Back",
  6995. image: {
  6996. source: "./media/characters/teal/back.svg",
  6997. extra: 2580 / 2489,
  6998. bottom: 151 / 2731
  6999. }
  7000. },
  7001. sitting: {
  7002. height: math.unit(1.9, "meters"),
  7003. weight: math.unit(1200, "lb"),
  7004. name: "Sitting",
  7005. image: {
  7006. source: "./media/characters/teal/sitting.svg",
  7007. extra: 623 / 590,
  7008. bottom: 121 / 744
  7009. }
  7010. },
  7011. standing: {
  7012. height: math.unit(2.75, "meters"),
  7013. weight: math.unit(1200, "lb"),
  7014. name: "Standing",
  7015. image: {
  7016. source: "./media/characters/teal/standing.svg",
  7017. extra: 923 / 893,
  7018. bottom: 60 / 983
  7019. }
  7020. },
  7021. stretching: {
  7022. height: math.unit(3.65, "meters"),
  7023. weight: math.unit(1200, "lb"),
  7024. name: "Stretching",
  7025. image: {
  7026. source: "./media/characters/teal/stretching.svg",
  7027. extra: 1276 / 1244,
  7028. bottom: 0 / 1276
  7029. }
  7030. },
  7031. legged: {
  7032. height: math.unit(1.3, "meters"),
  7033. weight: math.unit(100, "lb"),
  7034. name: "Legged",
  7035. image: {
  7036. source: "./media/characters/teal/legged.svg",
  7037. extra: 462 / 437,
  7038. bottom: 24 / 486
  7039. }
  7040. },
  7041. naga: {
  7042. height: math.unit(5.4, "meters"),
  7043. weight: math.unit(4000, "lb"),
  7044. name: "Naga",
  7045. image: {
  7046. source: "./media/characters/teal/naga.svg",
  7047. extra: 1902 / 1858,
  7048. bottom: 0 / 1902
  7049. }
  7050. },
  7051. hand: {
  7052. height: math.unit(0.52, "meters"),
  7053. name: "Hand",
  7054. image: {
  7055. source: "./media/characters/teal/hand.svg"
  7056. }
  7057. },
  7058. maw: {
  7059. height: math.unit(0.43, "meters"),
  7060. name: "Maw",
  7061. image: {
  7062. source: "./media/characters/teal/maw.svg"
  7063. }
  7064. },
  7065. slit: {
  7066. height: math.unit(0.25, "meters"),
  7067. name: "Slit",
  7068. image: {
  7069. source: "./media/characters/teal/slit.svg"
  7070. }
  7071. },
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(2.75, "meters"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(300, "feet")
  7082. },
  7083. {
  7084. name: "Macro+",
  7085. height: math.unit(2000, "feet")
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7091. {
  7092. frontCat: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(180, "lbs"),
  7095. name: "Front (Cat)",
  7096. image: {
  7097. source: "./media/characters/ravin-amulet/front-cat.svg"
  7098. }
  7099. },
  7100. frontCatAlt: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(180, "lbs"),
  7103. name: "Front (Alt, Cat)",
  7104. image: {
  7105. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7106. }
  7107. },
  7108. frontWerewolf: {
  7109. height: math.unit(6 * 1.2, "feet"),
  7110. weight: math.unit(225, "lbs"),
  7111. name: "Front (Werewolf)",
  7112. image: {
  7113. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7114. }
  7115. },
  7116. backWerewolf: {
  7117. height: math.unit(6 * 1.2, "feet"),
  7118. weight: math.unit(225, "lbs"),
  7119. name: "Back (Werewolf)",
  7120. image: {
  7121. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Nano",
  7128. height: math.unit(1, "micrometer")
  7129. },
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(1, "inch")
  7133. },
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(6, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(60, "feet")
  7142. }
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(165, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/fluoresce/front.svg"
  7154. }
  7155. }
  7156. },
  7157. [
  7158. {
  7159. name: "Micro",
  7160. height: math.unit(6, "cm")
  7161. },
  7162. {
  7163. name: "Normal",
  7164. height: math.unit(5 + 7 / 12, "feet"),
  7165. default: true
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(56, "feet")
  7170. },
  7171. {
  7172. name: "Megamacro",
  7173. height: math.unit(1.9, "miles")
  7174. },
  7175. ]
  7176. ))
  7177. characterMakers.push(() => makeCharacter(
  7178. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7179. {
  7180. front: {
  7181. height: math.unit(9 + 6 / 12, "feet"),
  7182. weight: math.unit(523, "lbs"),
  7183. name: "Side",
  7184. image: {
  7185. source: "./media/characters/aurora/side.svg"
  7186. }
  7187. }
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(9 + 6 / 12, "feet")
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(96, "feet"),
  7197. default: true
  7198. },
  7199. {
  7200. name: "Macro+",
  7201. height: math.unit(243, "feet")
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(194, "cm"),
  7210. weight: math.unit(90, "kg"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/ranek/front.svg"
  7214. }
  7215. },
  7216. side: {
  7217. height: math.unit(194, "cm"),
  7218. weight: math.unit(90, "kg"),
  7219. name: "Side",
  7220. image: {
  7221. source: "./media/characters/ranek/side.svg"
  7222. }
  7223. },
  7224. back: {
  7225. height: math.unit(194, "cm"),
  7226. weight: math.unit(90, "kg"),
  7227. name: "Back",
  7228. image: {
  7229. source: "./media/characters/ranek/back.svg"
  7230. }
  7231. },
  7232. feral: {
  7233. height: math.unit(30, "cm"),
  7234. weight: math.unit(1.6, "lbs"),
  7235. name: "Feral",
  7236. image: {
  7237. source: "./media/characters/ranek/feral.svg"
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(194, "cm"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Macro",
  7249. height: math.unit(100, "meters")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(5 + 6 / 12, "feet"),
  7258. weight: math.unit(153, "lbs"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/andrew-cooper/front.svg"
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Nano",
  7268. height: math.unit(1, "mm")
  7269. },
  7270. {
  7271. name: "Micro",
  7272. height: math.unit(2, "inches")
  7273. },
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(5 + 6 / 12, "feet"),
  7277. default: true
  7278. }
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(180, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/akane-sato/front.svg",
  7290. extra: 1219 / 1140
  7291. }
  7292. },
  7293. back: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(180, "lbs"),
  7296. name: "Back",
  7297. image: {
  7298. source: "./media/characters/akane-sato/back.svg",
  7299. extra: 1219 / 1170
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Normal",
  7306. height: math.unit(2.5, "meters")
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(250, "meters"),
  7311. default: true
  7312. },
  7313. {
  7314. name: "Megamacro",
  7315. height: math.unit(25, "km")
  7316. },
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(65, "kg"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/rook/front.svg",
  7328. extra: 960 / 950
  7329. }
  7330. }
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(8.8, "feet")
  7336. },
  7337. {
  7338. name: "Macro",
  7339. height: math.unit(88, "feet"),
  7340. default: true
  7341. },
  7342. {
  7343. name: "Megamacro",
  7344. height: math.unit(8, "miles")
  7345. },
  7346. ]
  7347. ))
  7348. characterMakers.push(() => makeCharacter(
  7349. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7350. {
  7351. front: {
  7352. height: math.unit(12 + 2 / 12, "feet"),
  7353. weight: math.unit(808, "lbs"),
  7354. name: "Front",
  7355. image: {
  7356. source: "./media/characters/prodigy/front.svg"
  7357. }
  7358. }
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(12 + 2 / 12, "feet"),
  7364. default: true
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(143, "feet")
  7369. },
  7370. {
  7371. name: "Macro+",
  7372. height: math.unit(400, "feet")
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(225, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/daniel/front.svg"
  7385. }
  7386. },
  7387. leaning: {
  7388. height: math.unit(6, "feet"),
  7389. weight: math.unit(225, "lbs"),
  7390. name: "Leaning",
  7391. image: {
  7392. source: "./media/characters/daniel/leaning.svg"
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Macro",
  7399. height: math.unit(1000, "feet"),
  7400. default: true
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7406. {
  7407. front: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(88, "lbs"),
  7410. name: "Front",
  7411. image: {
  7412. source: "./media/characters/chiros/front.svg",
  7413. extra: 306 / 226
  7414. }
  7415. },
  7416. side: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(88, "lbs"),
  7419. name: "Side",
  7420. image: {
  7421. source: "./media/characters/chiros/side.svg",
  7422. extra: 306 / 226
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(6, "cm"),
  7430. default: true
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(100, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/selka/front.svg",
  7443. extra: 947 / 887
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(5, "cm"),
  7451. default: true
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(8 + 3 / 12, "feet"),
  7460. weight: math.unit(424, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/verin/front.svg",
  7464. extra: 1845 / 1550
  7465. }
  7466. },
  7467. frontArmored: {
  7468. height: math.unit(8 + 3 / 12, "feet"),
  7469. weight: math.unit(424, "lbs"),
  7470. name: "Front (Armored)",
  7471. image: {
  7472. source: "./media/characters/verin/front-armor.svg",
  7473. extra: 1845 / 1550,
  7474. bottom: 0.01
  7475. }
  7476. },
  7477. back: {
  7478. height: math.unit(8 + 3 / 12, "feet"),
  7479. weight: math.unit(424, "lbs"),
  7480. name: "Back",
  7481. image: {
  7482. source: "./media/characters/verin/back.svg",
  7483. bottom: 0.1,
  7484. extra: 1
  7485. }
  7486. },
  7487. foot: {
  7488. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7489. name: "Foot",
  7490. image: {
  7491. source: "./media/characters/verin/foot.svg"
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Normal",
  7498. height: math.unit(8 + 3 / 12, "feet")
  7499. },
  7500. {
  7501. name: "Minimacro",
  7502. height: math.unit(21, "feet"),
  7503. default: true
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(626, "feet")
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(2.718, "meters"),
  7516. weight: math.unit(150, "lbs"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/sovrim-terraquian/front.svg"
  7520. }
  7521. },
  7522. back: {
  7523. height: math.unit(2.718, "meters"),
  7524. weight: math.unit(150, "lbs"),
  7525. name: "Back",
  7526. image: {
  7527. source: "./media/characters/sovrim-terraquian/back.svg"
  7528. }
  7529. }
  7530. },
  7531. [
  7532. {
  7533. name: "Micro",
  7534. height: math.unit(2, "inches")
  7535. },
  7536. {
  7537. name: "Small",
  7538. height: math.unit(1, "meter")
  7539. },
  7540. {
  7541. name: "Normal",
  7542. height: math.unit(Math.E, "meters"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(20, "meters")
  7548. },
  7549. {
  7550. name: "Macro+",
  7551. height: math.unit(400, "meters")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(7, "feet"),
  7560. weight: math.unit(489, "lbs"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/reece-silvermane/front.svg",
  7564. bottom: 0.02,
  7565. extra: 1
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(1.5, "miles"),
  7573. default: true
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(78, "kg"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/kane/front.svg",
  7586. extra: 978 / 899
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(2.1, "m"),
  7594. },
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(1, "km"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(200, "kg"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/tegon/front.svg",
  7611. bottom: 0.01,
  7612. extra: 1
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Micro",
  7619. height: math.unit(1, "inch")
  7620. },
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(6 + 3 / 12, "feet"),
  7624. default: true
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(300, "feet")
  7629. },
  7630. {
  7631. name: "Megamacro",
  7632. height: math.unit(69, "miles")
  7633. },
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7638. {
  7639. side: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(2304, "lbs"),
  7642. name: "Side",
  7643. image: {
  7644. source: "./media/characters/arcturax/side.svg",
  7645. extra: 790 / 376,
  7646. bottom: 0.01
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Micro",
  7653. height: math.unit(2, "inch")
  7654. },
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(6, "feet")
  7658. },
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(39, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Megamacro",
  7666. height: math.unit(7, "miles")
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(50, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/sentri/front.svg",
  7679. extra: 1750 / 1570,
  7680. bottom: 0.025
  7681. }
  7682. },
  7683. frontAlt: {
  7684. height: math.unit(6, "feet"),
  7685. weight: math.unit(50, "lbs"),
  7686. name: "Front (Alt)",
  7687. image: {
  7688. source: "./media/characters/sentri/front-alt.svg",
  7689. extra: 1750 / 1570,
  7690. bottom: 0.025
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(15, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(2500, "feet")
  7703. }
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(5 + 8 / 12, "feet"),
  7711. weight: math.unit(130, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/corvin/front.svg",
  7715. extra: 1803 / 1629
  7716. }
  7717. },
  7718. frontShirt: {
  7719. height: math.unit(5 + 8 / 12, "feet"),
  7720. weight: math.unit(130, "lbs"),
  7721. name: "Front (Shirt)",
  7722. image: {
  7723. source: "./media/characters/corvin/front-shirt.svg",
  7724. extra: 1803 / 1629
  7725. }
  7726. },
  7727. frontPoncho: {
  7728. height: math.unit(5 + 8 / 12, "feet"),
  7729. weight: math.unit(130, "lbs"),
  7730. name: "Front (Poncho)",
  7731. image: {
  7732. source: "./media/characters/corvin/front-poncho.svg",
  7733. extra: 1803 / 1629
  7734. }
  7735. },
  7736. side: {
  7737. height: math.unit(5 + 8 / 12, "feet"),
  7738. weight: math.unit(130, "lbs"),
  7739. name: "Side",
  7740. image: {
  7741. source: "./media/characters/corvin/side.svg",
  7742. extra: 1012 / 945
  7743. }
  7744. },
  7745. back: {
  7746. height: math.unit(5 + 8 / 12, "feet"),
  7747. weight: math.unit(130, "lbs"),
  7748. name: "Back",
  7749. image: {
  7750. source: "./media/characters/corvin/back.svg",
  7751. extra: 1803 / 1629
  7752. }
  7753. },
  7754. },
  7755. [
  7756. {
  7757. name: "Micro",
  7758. height: math.unit(3, "inches")
  7759. },
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(5 + 8 / 12, "feet")
  7763. },
  7764. {
  7765. name: "Macro",
  7766. height: math.unit(300, "feet"),
  7767. default: true
  7768. },
  7769. {
  7770. name: "Megamacro",
  7771. height: math.unit(500, "miles")
  7772. }
  7773. ]
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7777. {
  7778. front: {
  7779. height: math.unit(6, "feet"),
  7780. weight: math.unit(135, "lbs"),
  7781. name: "Front",
  7782. image: {
  7783. source: "./media/characters/q/front.svg",
  7784. extra: 854 / 752,
  7785. bottom: 0.005
  7786. }
  7787. },
  7788. back: {
  7789. height: math.unit(6, "feet"),
  7790. weight: math.unit(130, "lbs"),
  7791. name: "Back",
  7792. image: {
  7793. source: "./media/characters/q/back.svg",
  7794. extra: 854 / 752
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(90, "feet"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Extra Macro",
  7806. height: math.unit(300, "feet"),
  7807. },
  7808. {
  7809. name: "BIG WALF",
  7810. height: math.unit(750, "feet"),
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(6, "feet"),
  7819. weight: math.unit(150, "lbs"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/carley/front.svg",
  7823. extra: 3927 / 3540,
  7824. bottom: 29.2 / 735
  7825. }
  7826. }
  7827. },
  7828. [
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(6 + 3 / 12, "feet")
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(185, "feet"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "Megamacro",
  7840. height: math.unit(8, "miles"),
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(3, "feet"),
  7849. weight: math.unit(28, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/citrine/front.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(3, "feet"),
  7860. default: true
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7866. {
  7867. front: {
  7868. height: math.unit(14, "feet"),
  7869. weight: math.unit(1450, "kg"),
  7870. capacity: math.unit(15, "people"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/aura-starwind/front.svg",
  7874. extra: 1455 / 1335
  7875. }
  7876. },
  7877. side: {
  7878. height: math.unit(14, "feet"),
  7879. weight: math.unit(1450, "kg"),
  7880. capacity: math.unit(15, "people"),
  7881. name: "Side",
  7882. image: {
  7883. source: "./media/characters/aura-starwind/side.svg",
  7884. extra: 1654 / 1497
  7885. }
  7886. },
  7887. taur: {
  7888. height: math.unit(18, "feet"),
  7889. weight: math.unit(5500, "kg"),
  7890. capacity: math.unit(50, "people"),
  7891. name: "Taur",
  7892. image: {
  7893. source: "./media/characters/aura-starwind/taur.svg",
  7894. extra: 1760 / 1650
  7895. }
  7896. },
  7897. feral: {
  7898. height: math.unit(46, "feet"),
  7899. weight: math.unit(25000, "kg"),
  7900. capacity: math.unit(120, "people"),
  7901. name: "Feral",
  7902. image: {
  7903. source: "./media/characters/aura-starwind/feral.svg"
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(14, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(50, "meters")
  7916. },
  7917. {
  7918. name: "Megamacro",
  7919. height: math.unit(5000, "meters")
  7920. },
  7921. {
  7922. name: "Gigamacro",
  7923. height: math.unit(100000, "kilometers")
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(2 + 7 / 12, "feet"),
  7932. weight: math.unit(32, "lbs"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/rivet/front.svg",
  7936. extra: 1716 / 1658,
  7937. bottom: 0.03
  7938. }
  7939. },
  7940. foot: {
  7941. height: math.unit(0.551, "feet"),
  7942. name: "Rivet's Foot",
  7943. image: {
  7944. source: "./media/characters/rivet/foot.svg"
  7945. },
  7946. rename: true
  7947. }
  7948. },
  7949. [
  7950. {
  7951. name: "Micro",
  7952. height: math.unit(1.5, "inches"),
  7953. },
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(2 + 7 / 12, "feet"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(85, "feet")
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(2.2, "km")
  7966. }
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(5 + 9 / 12, "feet"),
  7974. weight: math.unit(150, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/coffee/front.svg",
  7978. extra: 3666 / 3032,
  7979. bottom: 0.04
  7980. }
  7981. },
  7982. foot: {
  7983. height: math.unit(1.29, "feet"),
  7984. name: "Foot",
  7985. image: {
  7986. source: "./media/characters/coffee/foot.svg"
  7987. }
  7988. },
  7989. },
  7990. [
  7991. {
  7992. name: "Micro",
  7993. height: math.unit(2, "inches"),
  7994. },
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(5 + 9 / 12, "feet"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Macro",
  8002. height: math.unit(800, "feet")
  8003. },
  8004. {
  8005. name: "Megamacro",
  8006. height: math.unit(25, "miles")
  8007. }
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(200, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/chari-gal/front.svg",
  8019. extra: 1568 / 1385,
  8020. bottom: 0.047
  8021. }
  8022. },
  8023. gigantamax: {
  8024. height: math.unit(6 * 16, "feet"),
  8025. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8026. name: "Gigantamax",
  8027. image: {
  8028. source: "./media/characters/chari-gal/gigantamax.svg",
  8029. extra: 1124 / 888,
  8030. bottom: 0.03
  8031. }
  8032. },
  8033. },
  8034. [
  8035. {
  8036. name: "Normal",
  8037. height: math.unit(5 + 7 / 12, "feet")
  8038. },
  8039. {
  8040. name: "Macro",
  8041. height: math.unit(200, "feet"),
  8042. default: true
  8043. }
  8044. ]
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(6, "feet"),
  8051. weight: math.unit(150, "lbs"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/nova/front.svg",
  8055. extra: 5000 / 4722,
  8056. bottom: 0.02
  8057. }
  8058. }
  8059. },
  8060. [
  8061. {
  8062. name: "Micro-",
  8063. height: math.unit(0.8, "inches")
  8064. },
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(2, "inches"),
  8068. default: true
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(3 + 1 / 12, "feet"),
  8077. weight: math.unit(21.7, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/argent/front.svg",
  8081. extra: 1471 / 1331,
  8082. bottom: 100.8 / 1575.5
  8083. }
  8084. }
  8085. },
  8086. [
  8087. {
  8088. name: "Micro",
  8089. height: math.unit(2, "inches")
  8090. },
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(3 + 1 / 12, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(120, "feet")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8104. {
  8105. lamp: {
  8106. height: math.unit(7 * 1559 / 989, "feet"),
  8107. name: "Magic Lamp",
  8108. image: {
  8109. source: "./media/characters/mira-al-cul/lamp.svg",
  8110. extra: 1617 / 1559
  8111. }
  8112. },
  8113. front: {
  8114. height: math.unit(7, "feet"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/mira-al-cul/front.svg",
  8118. extra: 1044 / 990
  8119. }
  8120. },
  8121. },
  8122. [
  8123. {
  8124. name: "Heavily Restricted",
  8125. height: math.unit(7 * 1559 / 989, "feet")
  8126. },
  8127. {
  8128. name: "Freshly Freed",
  8129. height: math.unit(50 * 1559 / 989, "feet")
  8130. },
  8131. {
  8132. name: "World Encompassing",
  8133. height: math.unit(10000 * 1559 / 989, "miles")
  8134. },
  8135. {
  8136. name: "Galactic",
  8137. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8138. },
  8139. {
  8140. name: "Palmed Universe",
  8141. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Multiversal Matriarch",
  8146. height: math.unit(8.87e10, "yottameters")
  8147. },
  8148. {
  8149. name: "Void Mother",
  8150. height: math.unit(3.14e110, "yottaparsecs")
  8151. },
  8152. {
  8153. name: "Toying with Transcendence",
  8154. height: math.unit(1e307, "meters")
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8160. {
  8161. front: {
  8162. height: math.unit(17 + 1 / 12, "feet"),
  8163. weight: math.unit(476.2 * 5, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/kuro-shi-uchū/front.svg",
  8167. extra: 2329 / 1835,
  8168. bottom: 0.02
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Micro",
  8175. height: math.unit(2, "inches")
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(12, "meters")
  8180. },
  8181. {
  8182. name: "Planetary",
  8183. height: math.unit(0.00929, "AU"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Universal",
  8188. height: math.unit(20, "gigaparsecs")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(5 + 2 / 12, "feet"),
  8197. weight: math.unit(120, "lbs"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/katherine/front.svg",
  8201. extra: 2075 / 1969
  8202. }
  8203. },
  8204. dress: {
  8205. height: math.unit(5 + 2 / 12, "feet"),
  8206. weight: math.unit(120, "lbs"),
  8207. name: "Dress",
  8208. image: {
  8209. source: "./media/characters/katherine/dress.svg",
  8210. extra: 2258 / 2064
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(1, "inches"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 2 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(100, "meters")
  8227. },
  8228. {
  8229. name: "Megamacro",
  8230. height: math.unit(80, "miles")
  8231. },
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(7 + 8 / 12, "feet"),
  8239. weight: math.unit(250, "lbs"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/yevis/front.svg",
  8243. extra: 1938 / 1755
  8244. }
  8245. }
  8246. },
  8247. [
  8248. {
  8249. name: "Mortal",
  8250. height: math.unit(7 + 8 / 12, "feet")
  8251. },
  8252. {
  8253. name: "Battle",
  8254. height: math.unit(25 + 11 / 12, "feet")
  8255. },
  8256. {
  8257. name: "Wrath",
  8258. height: math.unit(1654 + 11 / 12, "feet")
  8259. },
  8260. {
  8261. name: "Planet Destroyer",
  8262. height: math.unit(12000, "miles")
  8263. },
  8264. {
  8265. name: "Galaxy Conqueror",
  8266. height: math.unit(1.45, "zettameters"),
  8267. default: true
  8268. },
  8269. {
  8270. name: "Universal War",
  8271. height: math.unit(184, "gigaparsecs")
  8272. },
  8273. {
  8274. name: "Eternity War",
  8275. height: math.unit(1.98e55, "yottaparsecs")
  8276. },
  8277. ]
  8278. ))
  8279. characterMakers.push(() => makeCharacter(
  8280. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8281. {
  8282. front: {
  8283. height: math.unit(5 + 8 / 12, "feet"),
  8284. weight: math.unit(63, "kg"),
  8285. name: "Front",
  8286. image: {
  8287. source: "./media/characters/xavier/front.svg",
  8288. extra: 944 / 883
  8289. }
  8290. },
  8291. frontStretch: {
  8292. height: math.unit(5 + 8 / 12, "feet"),
  8293. weight: math.unit(63, "kg"),
  8294. name: "Stretching",
  8295. image: {
  8296. source: "./media/characters/xavier/front-stretch.svg",
  8297. extra: 962 / 820
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(5 + 8 / 12, "feet")
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(100, "meters"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "McLargeHuge",
  8313. height: math.unit(10, "miles")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(5 + 5 / 12, "feet"),
  8322. weight: math.unit(150, "lb"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/joshii/front.svg",
  8326. extra: 765 / 653,
  8327. bottom: 51 / 816
  8328. }
  8329. },
  8330. foot: {
  8331. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8332. name: "Foot",
  8333. image: {
  8334. source: "./media/characters/joshii/foot.svg"
  8335. }
  8336. },
  8337. },
  8338. [
  8339. {
  8340. name: "Micro",
  8341. height: math.unit(2, "inches"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(5 + 5 / 12, "feet")
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(785, "feet")
  8351. },
  8352. {
  8353. name: "Megamacro",
  8354. height: math.unit(24.5, "miles")
  8355. },
  8356. ]
  8357. ))
  8358. characterMakers.push(() => makeCharacter(
  8359. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8360. {
  8361. front: {
  8362. height: math.unit(6, "feet"),
  8363. weight: math.unit(150, "lb"),
  8364. name: "Front",
  8365. image: {
  8366. source: "./media/characters/goddess-elizabeth/front.svg",
  8367. extra: 1800 / 1525,
  8368. bottom: 0.005
  8369. }
  8370. },
  8371. foot: {
  8372. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8373. name: "Foot",
  8374. image: {
  8375. source: "./media/characters/goddess-elizabeth/foot.svg"
  8376. }
  8377. },
  8378. mouth: {
  8379. height: math.unit(6, "feet"),
  8380. name: "Mouth",
  8381. image: {
  8382. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Micro",
  8389. height: math.unit(12, "feet")
  8390. },
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(80, "miles"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(15000, "parsecs")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(5 + 9 / 12, "feet"),
  8407. weight: math.unit(144, "lb"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/kara/front.svg"
  8411. }
  8412. },
  8413. feet: {
  8414. height: math.unit(6 / 6.765, "feet"),
  8415. name: "Kara's Feet",
  8416. rename: true,
  8417. image: {
  8418. source: "./media/characters/kara/feet.svg"
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(5 + 9 / 12, "feet")
  8426. },
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(174, "feet"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(18, "feet"),
  8439. weight: math.unit(4050, "lb"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/tyrone/front.svg",
  8443. extra: 2405 / 2270,
  8444. bottom: 182 / 2587
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Normal",
  8451. height: math.unit(18, "feet"),
  8452. default: true
  8453. },
  8454. {
  8455. name: "Macro",
  8456. height: math.unit(300, "feet")
  8457. },
  8458. {
  8459. name: "Megamacro",
  8460. height: math.unit(15, "km")
  8461. },
  8462. {
  8463. name: "Gigamacro",
  8464. height: math.unit(500, "km")
  8465. },
  8466. {
  8467. name: "Teramacro",
  8468. height: math.unit(0.5, "gigameters")
  8469. },
  8470. {
  8471. name: "Omnimacro",
  8472. height: math.unit(1e252, "yottauniverse")
  8473. },
  8474. ]
  8475. ))
  8476. characterMakers.push(() => makeCharacter(
  8477. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8478. {
  8479. front: {
  8480. height: math.unit(7 + 8 / 12, "feet"),
  8481. weight: math.unit(120, "lb"),
  8482. name: "Front",
  8483. image: {
  8484. source: "./media/characters/danny/front.svg",
  8485. extra: 1490 / 1350
  8486. }
  8487. },
  8488. back: {
  8489. height: math.unit(7 + 8 / 12, "feet"),
  8490. weight: math.unit(120, "lb"),
  8491. name: "Back",
  8492. image: {
  8493. source: "./media/characters/danny/back.svg",
  8494. extra: 1490 / 1350
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Normal",
  8501. height: math.unit(7 + 8 / 12, "feet"),
  8502. default: true
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(3.5, "inches"),
  8511. weight: math.unit(19, "grams"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/mallow/front.svg",
  8515. extra: 471 / 431
  8516. }
  8517. },
  8518. back: {
  8519. height: math.unit(3.5, "inches"),
  8520. weight: math.unit(19, "grams"),
  8521. name: "Back",
  8522. image: {
  8523. source: "./media/characters/mallow/back.svg",
  8524. extra: 471 / 431
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Normal",
  8531. height: math.unit(3.5, "inches"),
  8532. default: true
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(9, "feet"),
  8541. weight: math.unit(230, "kg"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/starry-aqua/front.svg"
  8545. }
  8546. },
  8547. back: {
  8548. height: math.unit(9, "feet"),
  8549. weight: math.unit(230, "kg"),
  8550. name: "Back",
  8551. image: {
  8552. source: "./media/characters/starry-aqua/back.svg"
  8553. }
  8554. },
  8555. hand: {
  8556. height: math.unit(9 * 0.1168, "feet"),
  8557. name: "Hand",
  8558. image: {
  8559. source: "./media/characters/starry-aqua/hand.svg"
  8560. }
  8561. },
  8562. foot: {
  8563. height: math.unit(9 * 0.18, "feet"),
  8564. name: "Foot",
  8565. image: {
  8566. source: "./media/characters/starry-aqua/foot.svg"
  8567. }
  8568. }
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(3, "inches")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(9, "feet")
  8578. },
  8579. {
  8580. name: "Macro",
  8581. height: math.unit(300, "feet"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(3200, "feet")
  8587. }
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(230, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/luka/front.svg",
  8599. extra: 1,
  8600. bottom: 0.025
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(12 + 8 / 12, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Minimacro",
  8612. height: math.unit(20, "feet")
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(250, "feet")
  8617. },
  8618. {
  8619. name: "Megamacro",
  8620. height: math.unit(5, "miles")
  8621. },
  8622. {
  8623. name: "Gigamacro",
  8624. height: math.unit(8000, "miles")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(150, "lb"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/natalie-nightring/front.svg",
  8637. extra: 1,
  8638. bottom: 0.06
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Uh Oh",
  8645. height: math.unit(0.1, "mm")
  8646. },
  8647. {
  8648. name: "Small",
  8649. height: math.unit(3, "inches")
  8650. },
  8651. {
  8652. name: "Human Scale",
  8653. height: math.unit(6, "feet")
  8654. },
  8655. {
  8656. name: "Librarian",
  8657. height: math.unit(50, "feet"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Immense",
  8662. height: math.unit(200, "miles")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(180, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/danni-rosie/front.svg",
  8675. extra: 1260 / 1128,
  8676. bottom: 0.022
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Micro",
  8683. height: math.unit(2, "inches"),
  8684. default: true
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5 + 9 / 12, "feet"),
  8693. weight: math.unit(220, "lb"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/samantha-kruse/front.svg",
  8697. extra: (985 / 935),
  8698. bottom: 0.03
  8699. }
  8700. },
  8701. frontUndressed: {
  8702. height: math.unit(5 + 9 / 12, "feet"),
  8703. weight: math.unit(220, "lb"),
  8704. name: "Front (Undressed)",
  8705. image: {
  8706. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8707. extra: (973 / 923),
  8708. bottom: 0.025
  8709. }
  8710. },
  8711. fat: {
  8712. height: math.unit(5 + 9 / 12, "feet"),
  8713. weight: math.unit(900, "lb"),
  8714. name: "Front (Fat)",
  8715. image: {
  8716. source: "./media/characters/samantha-kruse/fat.svg",
  8717. extra: 2688 / 2561
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(5 + 9 / 12, "feet"),
  8725. default: true
  8726. }
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8731. {
  8732. back: {
  8733. height: math.unit(5 + 4 / 12, "feet"),
  8734. weight: math.unit(4963, "lb"),
  8735. name: "Back",
  8736. image: {
  8737. source: "./media/characters/amelia-rosie/back.svg",
  8738. extra: 1113 / 963,
  8739. bottom: 0.01
  8740. }
  8741. },
  8742. },
  8743. [
  8744. {
  8745. name: "Level 0",
  8746. height: math.unit(5 + 4 / 12, "feet")
  8747. },
  8748. {
  8749. name: "Level 1",
  8750. height: math.unit(164597, "feet"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Level 2",
  8755. height: math.unit(956243, "miles")
  8756. },
  8757. {
  8758. name: "Level 3",
  8759. height: math.unit(29421709423, "miles")
  8760. },
  8761. {
  8762. name: "Level 4",
  8763. height: math.unit(154, "lightyears")
  8764. },
  8765. {
  8766. name: "Level 5",
  8767. height: math.unit(4738272, "lightyears")
  8768. },
  8769. {
  8770. name: "Level 6",
  8771. height: math.unit(145787152896, "lightyears")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(5 + 11 / 12, "feet"),
  8780. weight: math.unit(65, "kg"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/rook-kitara/front.svg",
  8784. extra: 1347 / 1274,
  8785. bottom: 0.005
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Totally Unfair",
  8792. height: math.unit(1.8, "mm")
  8793. },
  8794. {
  8795. name: "Lap Rookie",
  8796. height: math.unit(1.4, "feet")
  8797. },
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(5 + 11 / 12, "feet"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "How Did This Happen",
  8805. height: math.unit(80, "miles")
  8806. }
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(7, "feet"),
  8814. weight: math.unit(300, "lb"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/pisces/front.svg",
  8818. extra: 2255 / 2115,
  8819. bottom: 0.03
  8820. }
  8821. },
  8822. back: {
  8823. height: math.unit(7, "feet"),
  8824. weight: math.unit(300, "lb"),
  8825. name: "Back",
  8826. image: {
  8827. source: "./media/characters/pisces/back.svg",
  8828. extra: 2146 / 2055,
  8829. bottom: 0.04
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(7, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Swimming Pool",
  8841. height: math.unit(12.2, "meters")
  8842. },
  8843. {
  8844. name: "Olympic Swimming Pool",
  8845. height: math.unit(56.3, "meters")
  8846. },
  8847. {
  8848. name: "Lake Superior",
  8849. height: math.unit(93900, "meters")
  8850. },
  8851. {
  8852. name: "Mediterranean Sea",
  8853. height: math.unit(644457, "meters")
  8854. },
  8855. {
  8856. name: "World's Oceans",
  8857. height: math.unit(4567491, "meters")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(2.3, "meters"),
  8866. weight: math.unit(120, "kg"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/zelas/front.svg"
  8870. }
  8871. },
  8872. side: {
  8873. height: math.unit(2.3, "meters"),
  8874. weight: math.unit(120, "kg"),
  8875. name: "Side",
  8876. image: {
  8877. source: "./media/characters/zelas/side.svg"
  8878. }
  8879. },
  8880. back: {
  8881. height: math.unit(2.3, "meters"),
  8882. weight: math.unit(120, "kg"),
  8883. name: "Back",
  8884. image: {
  8885. source: "./media/characters/zelas/back.svg"
  8886. }
  8887. },
  8888. foot: {
  8889. height: math.unit(1.116, "feet"),
  8890. name: "Foot",
  8891. image: {
  8892. source: "./media/characters/zelas/foot.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(2.3, "meters")
  8900. },
  8901. {
  8902. name: "Macro",
  8903. height: math.unit(30, "meters"),
  8904. default: true
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(1, "inch"),
  8913. weight: math.unit(0.21, "grams"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/talbot/front.svg",
  8917. extra: 594 / 544
  8918. }
  8919. },
  8920. },
  8921. [
  8922. {
  8923. name: "Micro",
  8924. height: math.unit(1, "inch"),
  8925. default: true
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8931. {
  8932. front: {
  8933. height: math.unit(3 + 3 / 12, "feet"),
  8934. weight: math.unit(51.8, "lb"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/fliss/front.svg",
  8938. extra: 840 / 640
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Teeny Tiny",
  8945. height: math.unit(1, "mm")
  8946. },
  8947. {
  8948. name: "Small",
  8949. height: math.unit(1, "inch"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Standard Sylveon",
  8954. height: math.unit(3 + 3 / 12, "feet")
  8955. },
  8956. {
  8957. name: "Large Nuisance",
  8958. height: math.unit(33, "feet")
  8959. },
  8960. {
  8961. name: "City Filler",
  8962. height: math.unit(3000, "feet")
  8963. },
  8964. {
  8965. name: "New Horizon",
  8966. height: math.unit(6000, "miles")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(5, "cm"),
  8975. weight: math.unit(1.94, "g"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/fleta/front.svg",
  8979. extra: 835 / 803
  8980. }
  8981. },
  8982. back: {
  8983. height: math.unit(5, "cm"),
  8984. weight: math.unit(1.94, "g"),
  8985. name: "Back",
  8986. image: {
  8987. source: "./media/characters/fleta/back.svg",
  8988. extra: 835 / 803
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(5, "cm"),
  8996. default: true
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(6, "feet"),
  9005. weight: math.unit(225, "lb"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/dominic/front.svg",
  9009. extra: 1770 / 1620,
  9010. bottom: 0.025
  9011. }
  9012. },
  9013. back: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(225, "lb"),
  9016. name: "Back",
  9017. image: {
  9018. source: "./media/characters/dominic/back.svg",
  9019. extra: 1745 / 1620,
  9020. bottom: 0.065
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Nano",
  9027. height: math.unit(0.1, "mm")
  9028. },
  9029. {
  9030. name: "Micro-",
  9031. height: math.unit(1, "mm")
  9032. },
  9033. {
  9034. name: "Micro",
  9035. height: math.unit(4, "inches")
  9036. },
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(6 + 4 / 12, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Macro",
  9044. height: math.unit(115, "feet")
  9045. },
  9046. {
  9047. name: "Macro+",
  9048. height: math.unit(955, "feet")
  9049. },
  9050. {
  9051. name: "Megamacro",
  9052. height: math.unit(8990, "feet")
  9053. },
  9054. {
  9055. name: "Gigmacro",
  9056. height: math.unit(9310, "miles")
  9057. },
  9058. {
  9059. name: "Teramacro",
  9060. height: math.unit(1567005010, "miles")
  9061. },
  9062. {
  9063. name: "Examacro",
  9064. height: math.unit(1425, "parsecs")
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(400, "feet"),
  9073. weight: math.unit(44444444, "lb"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/major-colonel/front.svg"
  9077. }
  9078. },
  9079. back: {
  9080. height: math.unit(400, "feet"),
  9081. weight: math.unit(44444444, "lb"),
  9082. name: "Back",
  9083. image: {
  9084. source: "./media/characters/major-colonel/back.svg"
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(400, "feet"),
  9092. default: true
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9098. {
  9099. catFront: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(120, "lb"),
  9102. name: "Front (Cat Side)",
  9103. image: {
  9104. source: "./media/characters/axel-lycan/cat-front.svg",
  9105. extra: 430 / 402,
  9106. bottom: 43 / 472.35
  9107. }
  9108. },
  9109. catBack: {
  9110. height: math.unit(6, "feet"),
  9111. weight: math.unit(120, "lb"),
  9112. name: "Back (Cat Side)",
  9113. image: {
  9114. source: "./media/characters/axel-lycan/cat-back.svg",
  9115. extra: 447 / 419,
  9116. bottom: 23.3 / 469
  9117. }
  9118. },
  9119. wolfFront: {
  9120. height: math.unit(6, "feet"),
  9121. weight: math.unit(120, "lb"),
  9122. name: "Front (Wolf Side)",
  9123. image: {
  9124. source: "./media/characters/axel-lycan/wolf-front.svg",
  9125. extra: 485 / 456,
  9126. bottom: 19 / 504
  9127. }
  9128. },
  9129. wolfBack: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(120, "lb"),
  9132. name: "Back (Wolf Side)",
  9133. image: {
  9134. source: "./media/characters/axel-lycan/wolf-back.svg",
  9135. extra: 475 / 438,
  9136. bottom: 39.2 / 514
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(1, "km"),
  9144. default: true
  9145. },
  9146. ]
  9147. ))
  9148. characterMakers.push(() => makeCharacter(
  9149. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9150. {
  9151. front: {
  9152. height: math.unit(5 + 9 / 12, "feet"),
  9153. weight: math.unit(175, "lb"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/vanrel-hyena/front.svg",
  9157. extra: 1086 / 1010,
  9158. bottom: 0.04
  9159. }
  9160. },
  9161. },
  9162. [
  9163. {
  9164. name: "Normal",
  9165. height: math.unit(5 + 9 / 12, "feet"),
  9166. default: true
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9172. {
  9173. front: {
  9174. height: math.unit(6, "feet"),
  9175. weight: math.unit(103, "lb"),
  9176. name: "Front",
  9177. image: {
  9178. source: "./media/characters/abbott-absol/front.svg",
  9179. extra: 2010 / 1842
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Megamicro",
  9186. height: math.unit(0.1, "mm")
  9187. },
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(1, "inch")
  9191. },
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(6, "feet"),
  9195. default: true
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(264, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/hector/front.svg",
  9208. extra: 2280 / 2130,
  9209. bottom: 0.07
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Normal",
  9216. height: math.unit(12.25, "foot"),
  9217. default: true
  9218. },
  9219. {
  9220. name: "Macro",
  9221. height: math.unit(160, "feet")
  9222. },
  9223. ]
  9224. ))
  9225. characterMakers.push(() => makeCharacter(
  9226. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9227. {
  9228. front: {
  9229. height: math.unit(6, "feet"),
  9230. weight: math.unit(150, "lb"),
  9231. name: "Front",
  9232. image: {
  9233. source: "./media/characters/sal/front.svg",
  9234. extra: 1846 / 1699,
  9235. bottom: 0.04
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(10, "miles"),
  9243. default: true
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9249. {
  9250. front: {
  9251. height: math.unit(3, "meters"),
  9252. weight: math.unit(450, "kg"),
  9253. name: "front",
  9254. image: {
  9255. source: "./media/characters/ranger/front.svg",
  9256. extra: 2401 / 2243,
  9257. bottom: 0.05
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(3, "meters"),
  9265. default: true
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(14, "feet"),
  9274. weight: math.unit(800, "kg"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/theresa/front.svg",
  9278. extra: 3575 / 3346,
  9279. bottom: 0.03
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Normal",
  9286. height: math.unit(14, "feet"),
  9287. default: true
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9293. {
  9294. front: {
  9295. height: math.unit(6, "feet"),
  9296. weight: math.unit(3, "kg"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/ine/front.svg",
  9300. extra: 678 / 539,
  9301. bottom: 0.023
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Normal",
  9308. height: math.unit(2.265, "feet"),
  9309. default: true
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9315. {
  9316. front: {
  9317. height: math.unit(5, "feet"),
  9318. weight: math.unit(30, "kg"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/vial/front.svg",
  9322. extra: 1365 / 1277,
  9323. bottom: 0.04
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Normal",
  9330. height: math.unit(5, "feet"),
  9331. default: true
  9332. },
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9337. {
  9338. side: {
  9339. height: math.unit(3.4, "meters"),
  9340. weight: math.unit(1000, "lb"),
  9341. name: "Side",
  9342. image: {
  9343. source: "./media/characters/rovoska/side.svg",
  9344. extra: 4403 / 1515
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(3.4, "meters"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(8, "feet"),
  9361. weight: math.unit(315, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/gunner-rotthbauer/front.svg"
  9365. }
  9366. },
  9367. back: {
  9368. height: math.unit(8, "feet"),
  9369. weight: math.unit(315, "lb"),
  9370. name: "Back",
  9371. image: {
  9372. source: "./media/characters/gunner-rotthbauer/back.svg"
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Micro",
  9379. height: math.unit(3.5, "inches")
  9380. },
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(8, "feet"),
  9384. default: true
  9385. },
  9386. {
  9387. name: "Macro",
  9388. height: math.unit(250, "feet")
  9389. },
  9390. {
  9391. name: "Megamacro",
  9392. height: math.unit(1, "AU")
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9398. {
  9399. front: {
  9400. height: math.unit(5 + 5 / 12, "feet"),
  9401. weight: math.unit(140, "lb"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/allatia/front.svg",
  9405. extra: 1227 / 1180,
  9406. bottom: 0.027
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(5 + 5 / 12, "feet")
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(250, "feet"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Megamacro",
  9422. height: math.unit(8, "miles")
  9423. }
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(120, "lb"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/tene/front.svg",
  9435. extra: 1728 / 1578,
  9436. bottom: 0.022
  9437. }
  9438. },
  9439. stomping: {
  9440. height: math.unit(2.025, "meters"),
  9441. weight: math.unit(120, "lb"),
  9442. name: "Stomping",
  9443. image: {
  9444. source: "./media/characters/tene/stomping.svg",
  9445. extra: 938 / 873,
  9446. bottom: 0.01
  9447. }
  9448. },
  9449. sitting: {
  9450. height: math.unit(1, "meter"),
  9451. weight: math.unit(120, "lb"),
  9452. name: "Sitting",
  9453. image: {
  9454. source: "./media/characters/tene/sitting.svg",
  9455. extra: 437 / 415,
  9456. bottom: 0.1
  9457. }
  9458. },
  9459. feral: {
  9460. height: math.unit(3.9, "feet"),
  9461. weight: math.unit(250, "lb"),
  9462. name: "Feral",
  9463. image: {
  9464. source: "./media/characters/tene/feral.svg",
  9465. extra: 717 / 458,
  9466. bottom: 0.179
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(6, "feet")
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(300, "feet"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Megamacro",
  9482. height: math.unit(5, "miles")
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9488. {
  9489. side: {
  9490. height: math.unit(6, "feet"),
  9491. name: "Side",
  9492. image: {
  9493. source: "./media/characters/evander/side.svg",
  9494. extra: 877 / 477
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(0.83, "meters"),
  9502. default: true
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(12, "feet"),
  9511. weight: math.unit(1000, "lb"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9515. extra: 1762 / 1611
  9516. }
  9517. },
  9518. back: {
  9519. height: math.unit(12, "feet"),
  9520. weight: math.unit(1000, "lb"),
  9521. name: "Back",
  9522. image: {
  9523. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9524. extra: 1762 / 1611
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(12, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Kaiju",
  9536. height: math.unit(150, "feet")
  9537. },
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(150, "lb"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/zero-alurus/front.svg"
  9549. }
  9550. },
  9551. back: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(150, "lb"),
  9554. name: "Back",
  9555. image: {
  9556. source: "./media/characters/zero-alurus/back.svg"
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(5 + 10 / 12, "feet")
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(60, "feet"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Macro+",
  9572. height: math.unit(450, "feet")
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9578. {
  9579. front: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(200, "lb"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/mega-shi/front.svg",
  9585. extra: 1279 / 1250,
  9586. bottom: 0.02
  9587. }
  9588. },
  9589. back: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(200, "lb"),
  9592. name: "Back",
  9593. image: {
  9594. source: "./media/characters/mega-shi/back.svg",
  9595. extra: 1279 / 1250,
  9596. bottom: 0.02
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Micro",
  9603. height: math.unit(16 + 6 / 12, "feet")
  9604. },
  9605. {
  9606. name: "Third Dimension",
  9607. height: math.unit(40, "meters")
  9608. },
  9609. {
  9610. name: "Normal",
  9611. height: math.unit(660, "feet"),
  9612. default: true
  9613. },
  9614. {
  9615. name: "Megamacro",
  9616. height: math.unit(10, "miles")
  9617. },
  9618. {
  9619. name: "Planetary Launch",
  9620. height: math.unit(500, "miles")
  9621. },
  9622. {
  9623. name: "Interstellar",
  9624. height: math.unit(1e9, "miles")
  9625. },
  9626. {
  9627. name: "Leaving the Universe",
  9628. height: math.unit(1, "gigaparsec")
  9629. },
  9630. {
  9631. name: "Travelling Universes",
  9632. height: math.unit(30e15, "parsecs")
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(6, "feet"),
  9641. weight: math.unit(150, "lb"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/odyssey/front.svg",
  9645. extra: 1782 / 1582,
  9646. bottom: 0.01
  9647. }
  9648. },
  9649. side: {
  9650. height: math.unit(5.7, "feet"),
  9651. weight: math.unit(140, "lb"),
  9652. name: "Side",
  9653. image: {
  9654. source: "./media/characters/odyssey/side.svg",
  9655. extra: 6462 / 5700
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(5 + 4 / 12, "feet")
  9663. },
  9664. {
  9665. name: "Macro",
  9666. height: math.unit(1, "km")
  9667. },
  9668. {
  9669. name: "Megamacro",
  9670. height: math.unit(3000, "km")
  9671. },
  9672. {
  9673. name: "Gigamacro",
  9674. height: math.unit(1, "AU"),
  9675. default: true
  9676. },
  9677. {
  9678. name: "Omniversal",
  9679. height: math.unit(100e14, "lightyears")
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(300, "lb"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/mekuto/front.svg",
  9692. extra: 921 / 832,
  9693. bottom: 0.03
  9694. }
  9695. },
  9696. hand: {
  9697. height: math.unit(6 / 10.24, "feet"),
  9698. name: "Hand",
  9699. image: {
  9700. source: "./media/characters/mekuto/hand.svg"
  9701. }
  9702. },
  9703. foot: {
  9704. height: math.unit(6 / 5.05, "feet"),
  9705. name: "Foot",
  9706. image: {
  9707. source: "./media/characters/mekuto/foot.svg"
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Minimicro",
  9714. height: math.unit(0.2, "inches")
  9715. },
  9716. {
  9717. name: "Micro",
  9718. height: math.unit(1.5, "inches")
  9719. },
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(5 + 11 / 12, "feet"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "Minimacro",
  9727. height: math.unit(17 + 9 / 12, "feet")
  9728. },
  9729. {
  9730. name: "Macro",
  9731. height: math.unit(177.5, "feet")
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(152, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(6.5, "inches"),
  9744. weight: math.unit(13, "oz"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/dafydd-tomos/front.svg",
  9748. extra: 2990 / 2603,
  9749. bottom: 0.03
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(6.5, "inches"),
  9757. default: true
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(6, "feet"),
  9766. weight: math.unit(150, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/splinter/front.svg",
  9770. extra: 2990 / 2882,
  9771. bottom: 0.04
  9772. }
  9773. },
  9774. back: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(150, "lb"),
  9777. name: "Back",
  9778. image: {
  9779. source: "./media/characters/splinter/back.svg",
  9780. extra: 2990 / 2882,
  9781. bottom: 0.04
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(6, "feet")
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(230, "meters"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(4 + 10 / 12, "feet"),
  9802. weight: math.unit(480, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/snow-gabumon/front.svg",
  9806. extra: 1140 / 963,
  9807. bottom: 0.058
  9808. }
  9809. },
  9810. back: {
  9811. height: math.unit(4 + 10 / 12, "feet"),
  9812. weight: math.unit(480, "lb"),
  9813. name: "Back",
  9814. image: {
  9815. source: "./media/characters/snow-gabumon/back.svg",
  9816. extra: 1115 / 962,
  9817. bottom: 0.041
  9818. }
  9819. },
  9820. frontUndresed: {
  9821. height: math.unit(4 + 10 / 12, "feet"),
  9822. weight: math.unit(480, "lb"),
  9823. name: "Front (Undressed)",
  9824. image: {
  9825. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9826. extra: 1061 / 960,
  9827. bottom: 0.045
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Micro",
  9834. height: math.unit(1, "inch")
  9835. },
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(4 + 10 / 12, "feet"),
  9839. default: true
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(200, "feet")
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(120, "miles")
  9848. },
  9849. {
  9850. name: "Gigamacro",
  9851. height: math.unit(9800, "miles")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(1.7, "meters"),
  9860. weight: math.unit(140, "lb"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/moody/front.svg",
  9864. extra: 3226 / 3007,
  9865. bottom: 0.087
  9866. }
  9867. },
  9868. },
  9869. [
  9870. {
  9871. name: "Micro",
  9872. height: math.unit(1, "mm")
  9873. },
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(1.7, "meters"),
  9877. default: true
  9878. },
  9879. {
  9880. name: "Macro",
  9881. height: math.unit(80, "meters")
  9882. },
  9883. {
  9884. name: "Macro+",
  9885. height: math.unit(500, "meters")
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9891. {
  9892. front: {
  9893. height: math.unit(6, "feet"),
  9894. weight: math.unit(150, "lb"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/zyas/front.svg",
  9898. extra: 1180 / 1120,
  9899. bottom: 0.045
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(10, "feet"),
  9907. default: true
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(500, "feet")
  9912. },
  9913. {
  9914. name: "Megamacro",
  9915. height: math.unit(5, "miles")
  9916. },
  9917. {
  9918. name: "Teramacro",
  9919. height: math.unit(150000, "miles")
  9920. },
  9921. ]
  9922. ))
  9923. characterMakers.push(() => makeCharacter(
  9924. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9925. {
  9926. front: {
  9927. height: math.unit(6, "feet"),
  9928. weight: math.unit(150, "lb"),
  9929. name: "Front",
  9930. image: {
  9931. source: "./media/characters/cuon/front.svg",
  9932. extra: 1390 / 1320,
  9933. bottom: 0.008
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Micro",
  9940. height: math.unit(3, "inches")
  9941. },
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(18 + 9 / 12, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Macro",
  9949. height: math.unit(360, "feet")
  9950. },
  9951. {
  9952. name: "Megamacro",
  9953. height: math.unit(360, "miles")
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(2.4, "meters"),
  9962. weight: math.unit(70, "kg"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/nyanuxk/front.svg",
  9966. extra: 1172 / 1084,
  9967. bottom: 0.065
  9968. }
  9969. },
  9970. side: {
  9971. height: math.unit(2.4, "meters"),
  9972. weight: math.unit(70, "kg"),
  9973. name: "Side",
  9974. image: {
  9975. source: "./media/characters/nyanuxk/side.svg",
  9976. extra: 1190 / 1132,
  9977. bottom: 0.007
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(2.4, "meters"),
  9982. weight: math.unit(70, "kg"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/nyanuxk/back.svg",
  9986. extra: 1200 / 1141,
  9987. bottom: 0.015
  9988. }
  9989. },
  9990. foot: {
  9991. height: math.unit(0.52, "meters"),
  9992. name: "Foot",
  9993. image: {
  9994. source: "./media/characters/nyanuxk/foot.svg"
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(2, "cm")
  10002. },
  10003. {
  10004. name: "Normal",
  10005. height: math.unit(2.4, "meters"),
  10006. default: true
  10007. },
  10008. {
  10009. name: "Smaller Macro",
  10010. height: math.unit(120, "meters")
  10011. },
  10012. {
  10013. name: "Bigger Macro",
  10014. height: math.unit(1.2, "km")
  10015. },
  10016. {
  10017. name: "Megamacro",
  10018. height: math.unit(15, "kilometers")
  10019. },
  10020. {
  10021. name: "Gigamacro",
  10022. height: math.unit(2000, "km")
  10023. },
  10024. {
  10025. name: "Teramacro",
  10026. height: math.unit(500000, "km")
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10032. {
  10033. side: {
  10034. height: math.unit(6, "feet"),
  10035. name: "Side",
  10036. image: {
  10037. source: "./media/characters/ailbhe/side.svg",
  10038. extra: 757 / 464,
  10039. bottom: 0.041
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Normal",
  10046. height: math.unit(1.07, "meters"),
  10047. default: true
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(120, "kg"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/zevulfius/front.svg",
  10060. extra: 965 / 903
  10061. }
  10062. },
  10063. side: {
  10064. height: math.unit(6, "feet"),
  10065. weight: math.unit(120, "kg"),
  10066. name: "Side",
  10067. image: {
  10068. source: "./media/characters/zevulfius/side.svg",
  10069. extra: 939 / 900
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(6, "feet"),
  10074. weight: math.unit(120, "kg"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/zevulfius/back.svg",
  10078. extra: 918 / 854,
  10079. bottom: 0.005
  10080. }
  10081. },
  10082. foot: {
  10083. height: math.unit(6 / 3.72, "feet"),
  10084. name: "Foot",
  10085. image: {
  10086. source: "./media/characters/zevulfius/foot.svg"
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(750, "meters")
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(20, "km"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Gigamacro",
  10102. height: math.unit(2000, "km")
  10103. },
  10104. {
  10105. name: "Teramacro",
  10106. height: math.unit(250000, "km")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(100, "feet"),
  10115. weight: math.unit(350, "kg"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/rikes/front.svg",
  10119. extra: 1565 / 1483,
  10120. bottom: 0.017
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(100, "feet"),
  10128. default: true
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10134. {
  10135. anthro: {
  10136. height: math.unit(8, "feet"),
  10137. weight: math.unit(120, "kg"),
  10138. name: "Anthro",
  10139. image: {
  10140. source: "./media/characters/adam-silver-mane/anthro.svg",
  10141. extra: 5743 / 5339,
  10142. bottom: 0.07
  10143. }
  10144. },
  10145. taur: {
  10146. height: math.unit(16, "feet"),
  10147. weight: math.unit(1500, "kg"),
  10148. name: "Taur",
  10149. image: {
  10150. source: "./media/characters/adam-silver-mane/taur.svg",
  10151. extra: 1713 / 1571,
  10152. bottom: 0.01
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(8, "feet")
  10160. },
  10161. {
  10162. name: "Minimacro",
  10163. height: math.unit(80, "feet")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(800, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(8000, "feet")
  10173. },
  10174. {
  10175. name: "Gigamacro",
  10176. height: math.unit(800, "miles")
  10177. },
  10178. {
  10179. name: "Teramacro",
  10180. height: math.unit(80000, "miles")
  10181. },
  10182. {
  10183. name: "Celestial",
  10184. height: math.unit(8e6, "miles")
  10185. },
  10186. {
  10187. name: "Star Dragon",
  10188. height: math.unit(800000, "parsecs")
  10189. },
  10190. {
  10191. name: "Godly",
  10192. height: math.unit(800, "teraparsecs")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(150, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/ky'owin/front.svg",
  10205. extra: 3888 / 3068,
  10206. bottom: 0.015
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(6 + 8 / 12, "feet")
  10214. },
  10215. {
  10216. name: "Large",
  10217. height: math.unit(68, "feet")
  10218. },
  10219. {
  10220. name: "Macro",
  10221. height: math.unit(132, "feet")
  10222. },
  10223. {
  10224. name: "Macro+",
  10225. height: math.unit(340, "feet")
  10226. },
  10227. {
  10228. name: "Macro++",
  10229. height: math.unit(680, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(1, "mile")
  10235. },
  10236. {
  10237. name: "Megamacro+",
  10238. height: math.unit(10, "miles")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(4, "feet"),
  10247. weight: math.unit(50, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/mal/front.svg",
  10251. extra: 785 / 724,
  10252. bottom: 0.07
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Micro",
  10259. height: math.unit(4, "inches")
  10260. },
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(4, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(200, "feet")
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(150, "lb"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/jordan-deware/front.svg",
  10281. extra: 1191 / 1012
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Nano",
  10288. height: math.unit(0.01, "mm")
  10289. },
  10290. {
  10291. name: "Minimicro",
  10292. height: math.unit(1, "mm")
  10293. },
  10294. {
  10295. name: "Micro",
  10296. height: math.unit(0.5, "inches")
  10297. },
  10298. {
  10299. name: "Normal",
  10300. height: math.unit(4, "feet"),
  10301. default: true
  10302. },
  10303. {
  10304. name: "Minimacro",
  10305. height: math.unit(40, "meters")
  10306. },
  10307. {
  10308. name: "Small Macro",
  10309. height: math.unit(400, "meters")
  10310. },
  10311. {
  10312. name: "Macro",
  10313. height: math.unit(4, "miles")
  10314. },
  10315. {
  10316. name: "Megamacro",
  10317. height: math.unit(40, "miles")
  10318. },
  10319. {
  10320. name: "Megamacro+",
  10321. height: math.unit(400, "miles")
  10322. },
  10323. {
  10324. name: "Gigamacro",
  10325. height: math.unit(400000, "miles")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10331. {
  10332. side: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Side",
  10336. image: {
  10337. source: "./media/characters/kimiko/side.svg",
  10338. extra: 600 / 358
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(15, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(220, "feet")
  10351. },
  10352. {
  10353. name: "Macro+",
  10354. height: math.unit(1450, "feet")
  10355. },
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(11500, "feet")
  10359. },
  10360. {
  10361. name: "Gigamacro",
  10362. height: math.unit(9500, "miles")
  10363. },
  10364. {
  10365. name: "Teramacro",
  10366. height: math.unit(2208005005, "miles")
  10367. },
  10368. {
  10369. name: "Examacro",
  10370. height: math.unit(2750, "parsecs")
  10371. },
  10372. {
  10373. name: "Zettamacro",
  10374. height: math.unit(101500, "parsecs")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(70, "kg"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/andrew-sleepy/front.svg"
  10387. }
  10388. },
  10389. side: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(70, "kg"),
  10392. name: "Side",
  10393. image: {
  10394. source: "./media/characters/andrew-sleepy/side.svg"
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Micro",
  10401. height: math.unit(1, "mm"),
  10402. default: true
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(6, "feet"),
  10411. weight: math.unit(150, "lb"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/judio/front.svg",
  10415. extra: 1258 / 1110
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(5 + 6 / 12, "feet")
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(1000, "feet"),
  10427. default: true
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(10, "miles")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(68, "kg"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/nomaxice/front.svg",
  10444. extra: 1498 / 1073,
  10445. bottom: 0.075
  10446. }
  10447. },
  10448. foot: {
  10449. height: math.unit(1.1, "feet"),
  10450. name: "Foot",
  10451. image: {
  10452. source: "./media/characters/nomaxice/foot.svg"
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Micro",
  10459. height: math.unit(8, "cm")
  10460. },
  10461. {
  10462. name: "Norm",
  10463. height: math.unit(1.82, "m")
  10464. },
  10465. {
  10466. name: "Norm+",
  10467. height: math.unit(8.8, "feet")
  10468. },
  10469. {
  10470. name: "Big",
  10471. height: math.unit(8, "meters"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(18, "meters")
  10477. },
  10478. {
  10479. name: "Macro+",
  10480. height: math.unit(88, "meters")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(12, "feet"),
  10489. weight: math.unit(1.5, "tons"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/dydros/front.svg",
  10493. extra: 863 / 800,
  10494. bottom: 0.015
  10495. }
  10496. },
  10497. back: {
  10498. height: math.unit(12, "feet"),
  10499. weight: math.unit(1.5, "tons"),
  10500. name: "Back",
  10501. image: {
  10502. source: "./media/characters/dydros/back.svg",
  10503. extra: 900 / 843,
  10504. bottom: 0.005
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(12, "feet"),
  10512. default: true
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(100, "kg"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/riggi/front.svg",
  10525. extra: 5787 / 5303
  10526. }
  10527. },
  10528. hyper: {
  10529. height: math.unit(6 * 5 / 3, "feet"),
  10530. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10531. name: "Hyper",
  10532. image: {
  10533. source: "./media/characters/riggi/hyper.svg",
  10534. extra: 3595 / 3485
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Small Macro",
  10541. height: math.unit(50, "feet")
  10542. },
  10543. {
  10544. name: "Default",
  10545. height: math.unit(200, "feet"),
  10546. default: true
  10547. },
  10548. {
  10549. name: "Loom",
  10550. height: math.unit(10000, "feet")
  10551. },
  10552. {
  10553. name: "Cruising Altitude",
  10554. height: math.unit(30000, "feet")
  10555. },
  10556. {
  10557. name: "Megamacro",
  10558. height: math.unit(100, "miles")
  10559. },
  10560. {
  10561. name: "Continent Sized",
  10562. height: math.unit(2800, "miles")
  10563. },
  10564. {
  10565. name: "Earth Sized",
  10566. height: math.unit(8000, "miles")
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(250, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/alexi/front.svg",
  10579. extra: 3483 / 3291,
  10580. bottom: 0.04
  10581. }
  10582. },
  10583. back: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(250, "lb"),
  10586. name: "Back",
  10587. image: {
  10588. source: "./media/characters/alexi/back.svg",
  10589. extra: 3533 / 3356,
  10590. bottom: 0.021
  10591. }
  10592. },
  10593. frontTransforming: {
  10594. height: math.unit(8.58, "feet"),
  10595. weight: math.unit(1300, "lb"),
  10596. name: "Transforming",
  10597. image: {
  10598. source: "./media/characters/alexi/front-transforming.svg",
  10599. extra: 437 / 409,
  10600. bottom: 19 / 458.66
  10601. }
  10602. },
  10603. frontTransformed: {
  10604. height: math.unit(12.5, "feet"),
  10605. weight: math.unit(4000, "lb"),
  10606. name: "Transformed",
  10607. image: {
  10608. source: "./media/characters/alexi/front-transformed.svg",
  10609. extra: 639 / 614,
  10610. bottom: 30.55 / 671
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(14, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Minimacro",
  10622. height: math.unit(30, "meters")
  10623. },
  10624. {
  10625. name: "Macro",
  10626. height: math.unit(500, "meters")
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(9000, "km")
  10631. },
  10632. {
  10633. name: "Teramacro",
  10634. height: math.unit(384000, "km")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(6, "feet"),
  10643. weight: math.unit(150, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/kayroo/front.svg",
  10647. extra: 1153 / 1038,
  10648. bottom: 0.06
  10649. }
  10650. },
  10651. foot: {
  10652. height: math.unit(6, "feet"),
  10653. weight: math.unit(150, "lb"),
  10654. name: "Foot",
  10655. image: {
  10656. source: "./media/characters/kayroo/foot.svg"
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Normal",
  10663. height: math.unit(8, "feet"),
  10664. default: true
  10665. },
  10666. {
  10667. name: "Minimacro",
  10668. height: math.unit(250, "feet")
  10669. },
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(2800, "feet")
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(5200, "feet")
  10677. },
  10678. {
  10679. name: "Gigamacro",
  10680. height: math.unit(27000, "feet")
  10681. },
  10682. {
  10683. name: "Omega",
  10684. height: math.unit(45000, "feet")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(18, "feet"),
  10693. weight: math.unit(5800, "lb"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/rhys/front.svg",
  10697. extra: 3386 / 3090,
  10698. bottom: 0.07
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(18, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Working Size",
  10710. height: math.unit(200, "feet")
  10711. },
  10712. {
  10713. name: "Demolition Size",
  10714. height: math.unit(2000, "feet")
  10715. },
  10716. {
  10717. name: "Maximum Licensed Size",
  10718. height: math.unit(5, "miles")
  10719. },
  10720. {
  10721. name: "Maximum Observed Size",
  10722. height: math.unit(10, "yottameters")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(250, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/toto/front.svg",
  10735. extra: 527 / 479,
  10736. bottom: 0.05
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Micro",
  10743. height: math.unit(3, "feet")
  10744. },
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(10, "feet")
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(150, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Megamacro",
  10756. height: math.unit(1200, "feet")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "King", species: ["lion"], tags: ["anthro"] },
  10762. {
  10763. back: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(150, "lb"),
  10766. name: "Back",
  10767. image: {
  10768. source: "./media/characters/king/back.svg"
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Micro",
  10775. height: math.unit(2, "inches")
  10776. },
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(8, "feet")
  10780. },
  10781. {
  10782. name: "Macro",
  10783. height: math.unit(200, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Megamacro",
  10788. height: math.unit(50, "miles")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10794. {
  10795. anthro: {
  10796. height: math.unit(6 + 5 / 12, "feet"),
  10797. weight: math.unit(280, "lb"),
  10798. name: "Anthro",
  10799. image: {
  10800. source: "./media/characters/cordite/anthro.svg",
  10801. extra: 1986 / 1905,
  10802. bottom: 0.025
  10803. }
  10804. },
  10805. feral: {
  10806. height: math.unit(2, "feet"),
  10807. weight: math.unit(90, "lb"),
  10808. name: "Feral",
  10809. image: {
  10810. source: "./media/characters/cordite/feral.svg",
  10811. extra: 1260 / 755,
  10812. bottom: 0.05
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(6 + 5 / 12, "feet"),
  10820. default: true
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10826. {
  10827. front: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(150, "lb"),
  10830. name: "Front",
  10831. image: {
  10832. source: "./media/characters/pianostrong/front.svg",
  10833. extra: 6577 / 6254,
  10834. bottom: 0.02
  10835. }
  10836. },
  10837. side: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(150, "lb"),
  10840. name: "Side",
  10841. image: {
  10842. source: "./media/characters/pianostrong/side.svg",
  10843. extra: 6106 / 5730
  10844. }
  10845. },
  10846. back: {
  10847. height: math.unit(6, "feet"),
  10848. weight: math.unit(150, "lb"),
  10849. name: "Back",
  10850. image: {
  10851. source: "./media/characters/pianostrong/back.svg",
  10852. extra: 6085 / 5733,
  10853. bottom: 0.01
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Macro",
  10860. height: math.unit(100, "feet")
  10861. },
  10862. {
  10863. name: "Macro+",
  10864. height: math.unit(300, "feet"),
  10865. default: true
  10866. },
  10867. {
  10868. name: "Macro++",
  10869. height: math.unit(1000, "feet")
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10875. {
  10876. front: {
  10877. height: math.unit(6, "feet"),
  10878. weight: math.unit(150, "lb"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/kona/front.svg",
  10882. extra: 2960 / 2629,
  10883. bottom: 0.005
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(11 + 8 / 12, "feet")
  10891. },
  10892. {
  10893. name: "Macro",
  10894. height: math.unit(850, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(1.5, "km"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(80, "miles")
  10905. },
  10906. {
  10907. name: "Gigamacro",
  10908. height: math.unit(3500, "miles")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10914. {
  10915. side: {
  10916. height: math.unit(1.9, "meters"),
  10917. weight: math.unit(326, "kg"),
  10918. name: "Side",
  10919. image: {
  10920. source: "./media/characters/levi/side.svg",
  10921. extra: 1704 / 1334,
  10922. bottom: 0.02
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(1.9, "meters"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Macro",
  10934. height: math.unit(20, "meters")
  10935. },
  10936. {
  10937. name: "Macro+",
  10938. height: math.unit(200, "meters")
  10939. },
  10940. {
  10941. name: "Megamacro",
  10942. height: math.unit(2, "km")
  10943. },
  10944. {
  10945. name: "Megamacro+",
  10946. height: math.unit(20, "km")
  10947. },
  10948. {
  10949. name: "Gigamacro",
  10950. height: math.unit(2500, "km")
  10951. },
  10952. {
  10953. name: "Gigamacro+",
  10954. height: math.unit(120000, "km")
  10955. },
  10956. {
  10957. name: "Teramacro",
  10958. height: math.unit(7.77e6, "km")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(6 + 4 / 12, "feet"),
  10967. weight: math.unit(188, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/bmc/front.svg",
  10971. extra: 1067 / 1022,
  10972. bottom: 0.047
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Human-sized",
  10979. height: math.unit(6 + 4 / 12, "feet")
  10980. },
  10981. {
  10982. name: "Small",
  10983. height: math.unit(250, "feet")
  10984. },
  10985. {
  10986. name: "Normal",
  10987. height: math.unit(1250, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Good Day",
  10992. height: math.unit(88, "miles")
  10993. },
  10994. {
  10995. name: "Largest Measured Size",
  10996. height: math.unit(11.2e6, "lightyears")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(20, "feet"),
  11005. weight: math.unit(2016, "kg"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/sven-the-kaiju/front.svg",
  11009. extra: 1479 / 1449,
  11010. bottom: 0.05
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Fairy",
  11017. height: math.unit(6, "inches")
  11018. },
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(20, "feet"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Rampage",
  11026. height: math.unit(200, "feet")
  11027. },
  11028. {
  11029. name: "Archfey Forest Guardian",
  11030. height: math.unit(1, "mile")
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11036. {
  11037. front: {
  11038. height: math.unit(4, "meters"),
  11039. weight: math.unit(2, "tons"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/marik/front.svg",
  11043. extra: 1057 / 1003,
  11044. bottom: 0.08
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(4, "meters"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(20, "meters")
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(50, "km")
  11061. },
  11062. {
  11063. name: "Gigamacro",
  11064. height: math.unit(100, "km")
  11065. },
  11066. {
  11067. name: "Alpha Macro",
  11068. height: math.unit(7.88e7, "yottameters")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(110, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/mel/front.svg",
  11081. extra: 736 / 617,
  11082. bottom: 0.017
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Pico",
  11089. height: math.unit(3, "pm")
  11090. },
  11091. {
  11092. name: "Nano",
  11093. height: math.unit(3, "nm")
  11094. },
  11095. {
  11096. name: "Micro",
  11097. height: math.unit(0.3, "mm"),
  11098. default: true
  11099. },
  11100. {
  11101. name: "Micro+",
  11102. height: math.unit(3, "mm")
  11103. },
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(5 + 10.5 / 12, "feet")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11112. {
  11113. kaiju: {
  11114. height: math.unit(1.75, "meters"),
  11115. weight: math.unit(55, "kg"),
  11116. name: "Kaiju",
  11117. image: {
  11118. source: "./media/characters/lykonous/kaiju.svg",
  11119. extra: 1055 / 946,
  11120. bottom: 0.135
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(2.5, "meters"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Kaiju Dragon",
  11132. height: math.unit(60, "meters")
  11133. },
  11134. {
  11135. name: "Mega Kaiju",
  11136. height: math.unit(120, "km")
  11137. },
  11138. {
  11139. name: "Giga Kaiju",
  11140. height: math.unit(200, "megameters")
  11141. },
  11142. {
  11143. name: "Terra Kaiju",
  11144. height: math.unit(400, "gigameters")
  11145. },
  11146. {
  11147. name: "Kaiju Dragon God",
  11148. height: math.unit(13000, "exaparsecs")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/blü/front.svg",
  11161. extra: 1883 / 1564,
  11162. bottom: 0.031
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(13, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Big Boi",
  11174. height: math.unit(150, "meters")
  11175. },
  11176. {
  11177. name: "Mini Stomper",
  11178. height: math.unit(300, "meters")
  11179. },
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(1000, "meters")
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(11000, "meters")
  11187. },
  11188. {
  11189. name: "Gigamacro",
  11190. height: math.unit(11000, "km")
  11191. },
  11192. {
  11193. name: "Teramacro",
  11194. height: math.unit(420000, "km")
  11195. },
  11196. {
  11197. name: "Examacro",
  11198. height: math.unit(120, "parsecs")
  11199. },
  11200. {
  11201. name: "God Tho",
  11202. height: math.unit(98000000000, "parsecs")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11208. {
  11209. taurFront: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(200, "lb"),
  11212. name: "Taur (Front)",
  11213. image: {
  11214. source: "./media/characters/scales/taur-front.svg",
  11215. extra: 1,
  11216. bottom: 0.05
  11217. }
  11218. },
  11219. taurBack: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(200, "lb"),
  11222. name: "Taur (Back)",
  11223. image: {
  11224. source: "./media/characters/scales/taur-back.svg",
  11225. extra: 1,
  11226. bottom: 0.08
  11227. }
  11228. },
  11229. anthro: {
  11230. height: math.unit(6 * 7 / 12, "feet"),
  11231. weight: math.unit(100, "lb"),
  11232. name: "Anthro",
  11233. image: {
  11234. source: "./media/characters/scales/anthro.svg",
  11235. extra: 1,
  11236. bottom: 0.06
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(12, "feet"),
  11244. default: true
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(6, "feet"),
  11253. weight: math.unit(150, "lb"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/koragos/front.svg",
  11257. extra: 841 / 794,
  11258. bottom: 0.035
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/koragos/back.svg",
  11267. extra: 841 / 810,
  11268. bottom: 0.022
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Normal",
  11275. height: math.unit(6 + 11 / 12, "feet"),
  11276. default: true
  11277. },
  11278. {
  11279. name: "Macro",
  11280. height: math.unit(490, "feet")
  11281. },
  11282. {
  11283. name: "Megamacro",
  11284. height: math.unit(10, "miles")
  11285. },
  11286. {
  11287. name: "Gigamacro",
  11288. height: math.unit(50, "miles")
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(250, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/xylrem/front.svg",
  11301. extra: 3323 / 3050,
  11302. bottom: 0.065
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Micro",
  11309. height: math.unit(4, "feet")
  11310. },
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(16, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(2720, "feet")
  11319. },
  11320. {
  11321. name: "Megamacro",
  11322. height: math.unit(25000, "miles")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(8, "feet"),
  11331. weight: math.unit(250, "kg"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/ikideru/front.svg",
  11335. extra: 930 / 870,
  11336. bottom: 0.087
  11337. }
  11338. },
  11339. back: {
  11340. height: math.unit(8, "feet"),
  11341. weight: math.unit(250, "kg"),
  11342. name: "Back",
  11343. image: {
  11344. source: "./media/characters/ikideru/back.svg",
  11345. extra: 919 / 852,
  11346. bottom: 0.055
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Rare",
  11353. height: math.unit(8, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Playful Loom",
  11358. height: math.unit(80, "feet")
  11359. },
  11360. {
  11361. name: "City Leaner",
  11362. height: math.unit(230, "feet")
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(2500, "feet")
  11367. },
  11368. {
  11369. name: "Gigamacro",
  11370. height: math.unit(26400, "feet")
  11371. },
  11372. {
  11373. name: "Tectonic Shifter",
  11374. height: math.unit(1.7, "megameters")
  11375. },
  11376. {
  11377. name: "Planet Carer",
  11378. height: math.unit(21, "megameters")
  11379. },
  11380. {
  11381. name: "God",
  11382. height: math.unit(11157.22, "parsecs")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(120, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/neo/front.svg"
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Micro",
  11401. height: math.unit(2, "inches"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Human Size",
  11406. height: math.unit(5 + 8 / 12, "feet")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11412. {
  11413. front: {
  11414. height: math.unit(13 + 10 / 12, "feet"),
  11415. weight: math.unit(5320, "lb"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/chauncey-chantz/front.svg",
  11419. extra: 1587 / 1435,
  11420. bottom: 0.02
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(13 + 10 / 12, "feet"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Macro",
  11432. height: math.unit(45, "feet")
  11433. },
  11434. {
  11435. name: "Megamacro",
  11436. height: math.unit(250, "miles")
  11437. },
  11438. {
  11439. name: "Planetary",
  11440. height: math.unit(10000, "miles")
  11441. },
  11442. {
  11443. name: "Galactic",
  11444. height: math.unit(40000, "parsecs")
  11445. },
  11446. {
  11447. name: "Universal",
  11448. height: math.unit(1, "yottameter")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11454. {
  11455. front: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(150, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/epifox/front.svg",
  11461. extra: 1,
  11462. bottom: 0.075
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Micro",
  11469. height: math.unit(6, "inches")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(12, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(3810, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(500, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(1.8796, "m"),
  11491. weight: math.unit(230, "lb"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/colin-t/front.svg",
  11495. extra: 1272 / 1193,
  11496. bottom: 0.07
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(0.571, "meters")
  11504. },
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(1.8796, "meters"),
  11508. default: true
  11509. },
  11510. {
  11511. name: "Tall",
  11512. height: math.unit(4, "meters")
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(67.241, "meters")
  11517. },
  11518. {
  11519. name: "Megamacro",
  11520. height: math.unit(371.856, "meters")
  11521. },
  11522. {
  11523. name: "Planetary",
  11524. height: math.unit(12631.5689, "km")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(1.85, "meters"),
  11533. weight: math.unit(80, "kg"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/matvei/front.svg",
  11537. extra: 614 / 594,
  11538. bottom: 0.01
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(1.85, "meters"),
  11546. default: true
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(5 + 9 / 12, "feet"),
  11555. weight: math.unit(70, "lb"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/quincy/front.svg",
  11559. extra: 3041 / 2751
  11560. }
  11561. },
  11562. back: {
  11563. height: math.unit(5 + 9 / 12, "feet"),
  11564. weight: math.unit(70, "lb"),
  11565. name: "Back",
  11566. image: {
  11567. source: "./media/characters/quincy/back.svg",
  11568. extra: 3041 / 2751
  11569. }
  11570. },
  11571. flying: {
  11572. height: math.unit(5 + 4 / 12, "feet"),
  11573. weight: math.unit(70, "lb"),
  11574. name: "Flying",
  11575. image: {
  11576. source: "./media/characters/quincy/flying.svg",
  11577. extra: 1044 / 930
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Micro",
  11584. height: math.unit(3, "cm")
  11585. },
  11586. {
  11587. name: "Normal",
  11588. height: math.unit(5 + 9 / 12, "feet")
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(200, "meters"),
  11593. default: true
  11594. },
  11595. {
  11596. name: "Megamacro",
  11597. height: math.unit(1000, "meters")
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(4 + 7 / 12, "feet"),
  11606. weight: math.unit(50, "lb"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/vanrel/front.svg",
  11610. extra: 1,
  11611. bottom: 0.02
  11612. }
  11613. },
  11614. frontAlt: {
  11615. height: math.unit(4 + 7 / 12, "feet"),
  11616. weight: math.unit(50, "lb"),
  11617. name: "Front-alt",
  11618. image: {
  11619. source: "./media/characters/vanrel/front-alt.svg",
  11620. extra: 1,
  11621. bottom: 15 / 1511
  11622. }
  11623. },
  11624. elemental: {
  11625. height: math.unit(3, "feet"),
  11626. weight: math.unit(50, "lb"),
  11627. name: "Elemental",
  11628. image: {
  11629. source: "./media/characters/vanrel/elemental.svg",
  11630. extra: 192.3 / 162.8,
  11631. bottom: 1.79 / 194.17
  11632. }
  11633. },
  11634. side: {
  11635. height: math.unit(4 + 7 / 12, "feet"),
  11636. weight: math.unit(50, "lb"),
  11637. name: "Side",
  11638. image: {
  11639. source: "./media/characters/vanrel/side.svg",
  11640. extra: 1,
  11641. bottom: 0.025
  11642. }
  11643. },
  11644. tome: {
  11645. height: math.unit(1.35, "feet"),
  11646. weight: math.unit(10, "lb"),
  11647. name: "Vanrel's Tome",
  11648. rename: true,
  11649. image: {
  11650. source: "./media/characters/vanrel/tome.svg"
  11651. }
  11652. },
  11653. beans: {
  11654. height: math.unit(0.89, "feet"),
  11655. name: "Beans",
  11656. image: {
  11657. source: "./media/characters/vanrel/beans.svg"
  11658. }
  11659. },
  11660. },
  11661. [
  11662. {
  11663. name: "Normal",
  11664. height: math.unit(4 + 7 / 12, "feet"),
  11665. default: true
  11666. },
  11667. ]
  11668. ))
  11669. characterMakers.push(() => makeCharacter(
  11670. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11671. {
  11672. front: {
  11673. height: math.unit(7 + 5 / 12, "feet"),
  11674. weight: math.unit(150, "lb"),
  11675. name: "Front",
  11676. image: {
  11677. source: "./media/characters/kuiper-vanrel/front.svg",
  11678. extra: 1118 / 1068,
  11679. bottom: 0.09
  11680. }
  11681. },
  11682. foot: {
  11683. height: math.unit(0.55, "meters"),
  11684. name: "Foot",
  11685. image: {
  11686. source: "./media/characters/kuiper-vanrel/foot.svg",
  11687. }
  11688. },
  11689. battle: {
  11690. height: math.unit(6.824, "feet"),
  11691. weight: math.unit(150, "lb"),
  11692. name: "Battle",
  11693. image: {
  11694. source: "./media/characters/kuiper-vanrel/battle.svg",
  11695. extra: 1466 / 1327,
  11696. bottom: 29 / 1492.5
  11697. }
  11698. },
  11699. battleAlt: {
  11700. height: math.unit(6.824, "feet"),
  11701. weight: math.unit(150, "lb"),
  11702. name: "Battle (Alt)",
  11703. image: {
  11704. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11705. extra: 2081 / 1965,
  11706. bottom: 40 / 2121
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(7 + 5 / 12, "feet"),
  11714. default: true
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(8 + 5 / 12, "feet"),
  11723. weight: math.unit(150, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/keset-vanrel/front.svg",
  11727. extra: 1150 / 1084,
  11728. bottom: 0.05
  11729. }
  11730. },
  11731. hand: {
  11732. height: math.unit(0.6, "meters"),
  11733. name: "Hand",
  11734. image: {
  11735. source: "./media/characters/keset-vanrel/hand.svg"
  11736. }
  11737. },
  11738. foot: {
  11739. height: math.unit(0.94978, "meters"),
  11740. name: "Foot",
  11741. image: {
  11742. source: "./media/characters/keset-vanrel/foot.svg"
  11743. }
  11744. },
  11745. battle: {
  11746. height: math.unit(7.408, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Battle",
  11749. image: {
  11750. source: "./media/characters/keset-vanrel/battle.svg",
  11751. extra: 1890 / 1386,
  11752. bottom: 73.28 / 1970
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(8 + 5 / 12, "feet"),
  11760. default: true
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/neos/front.svg",
  11773. extra: 1696 / 992,
  11774. bottom: 0.14
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Normal",
  11781. height: math.unit(54, "cm"),
  11782. default: true
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(100, "m")
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(10, "km")
  11791. },
  11792. {
  11793. name: "Megamacro+",
  11794. height: math.unit(100, "km")
  11795. },
  11796. {
  11797. name: "Gigamacro",
  11798. height: math.unit(100, "Mm")
  11799. },
  11800. {
  11801. name: "Teramacro",
  11802. height: math.unit(100, "Gm")
  11803. },
  11804. {
  11805. name: "Examacro",
  11806. height: math.unit(100, "Em")
  11807. },
  11808. {
  11809. name: "Godly",
  11810. height: math.unit(10000, "Ym")
  11811. },
  11812. {
  11813. name: "Beyond Godly",
  11814. height: math.unit(25, "multiverses")
  11815. },
  11816. ]
  11817. ))
  11818. characterMakers.push(() => makeCharacter(
  11819. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11820. {
  11821. feminine: {
  11822. height: math.unit(5, "feet"),
  11823. weight: math.unit(100, "lb"),
  11824. name: "Feminine",
  11825. image: {
  11826. source: "./media/characters/sammy-mouse/feminine.svg",
  11827. extra: 2526 / 2425,
  11828. bottom: 0.123
  11829. }
  11830. },
  11831. masculine: {
  11832. height: math.unit(5, "feet"),
  11833. weight: math.unit(100, "lb"),
  11834. name: "Masculine",
  11835. image: {
  11836. source: "./media/characters/sammy-mouse/masculine.svg",
  11837. extra: 2526 / 2425,
  11838. bottom: 0.123
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Micro",
  11845. height: math.unit(5, "inches")
  11846. },
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(5, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(60, "feet")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(4, "feet"),
  11863. weight: math.unit(50, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/kole/front.svg",
  11867. extra: 1423 / 1303,
  11868. bottom: 0.025
  11869. }
  11870. },
  11871. back: {
  11872. height: math.unit(4, "feet"),
  11873. weight: math.unit(50, "lb"),
  11874. name: "Back",
  11875. image: {
  11876. source: "./media/characters/kole/back.svg",
  11877. extra: 1426 / 1280,
  11878. bottom: 0.02
  11879. }
  11880. },
  11881. },
  11882. [
  11883. {
  11884. name: "Normal",
  11885. height: math.unit(4, "feet"),
  11886. default: true
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(2 + 6 / 12, "feet"),
  11895. weight: math.unit(20, "lb"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/rufran/front.svg",
  11899. extra: 2041 / 1839,
  11900. bottom: 0.055
  11901. }
  11902. },
  11903. back: {
  11904. height: math.unit(2 + 6 / 12, "feet"),
  11905. weight: math.unit(20, "lb"),
  11906. name: "Back",
  11907. image: {
  11908. source: "./media/characters/rufran/back.svg",
  11909. extra: 2054 / 1839,
  11910. bottom: 0.01
  11911. }
  11912. },
  11913. hand: {
  11914. height: math.unit(0.2166, "meters"),
  11915. name: "Hand",
  11916. image: {
  11917. source: "./media/characters/rufran/hand.svg"
  11918. }
  11919. },
  11920. foot: {
  11921. height: math.unit(0.185, "meters"),
  11922. name: "Foot",
  11923. image: {
  11924. source: "./media/characters/rufran/foot.svg"
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Micro",
  11931. height: math.unit(1, "inch")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(2 + 6 / 12, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Big",
  11940. height: math.unit(60, "feet")
  11941. },
  11942. {
  11943. name: "Macro",
  11944. height: math.unit(325, "feet")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(0.3, "meters"),
  11953. weight: math.unit(3.5, "kg"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/chip/front.svg",
  11957. extra: 748 / 674
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Micro",
  11964. height: math.unit(1, "inch"),
  11965. default: true
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11971. {
  11972. side: {
  11973. height: math.unit(2.3, "meters"),
  11974. weight: math.unit(3500, "lb"),
  11975. name: "Side",
  11976. image: {
  11977. source: "./media/characters/torvid/side.svg",
  11978. extra: 1972 / 722,
  11979. bottom: 0.035
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(2.3, "meters"),
  11987. default: true
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(2, "meters"),
  11996. weight: math.unit(150.5, "kg"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/susan/front.svg",
  12000. extra: 693 / 635,
  12001. bottom: 0.05
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Megamacro",
  12008. height: math.unit(505, "miles"),
  12009. default: true
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12015. {
  12016. front: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(150, "lb"),
  12019. name: "Front",
  12020. image: {
  12021. source: "./media/characters/raindrops/front.svg",
  12022. extra: 2655 / 2461,
  12023. bottom: 49 / 2705
  12024. }
  12025. },
  12026. back: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(150, "lb"),
  12029. name: "Back",
  12030. image: {
  12031. source: "./media/characters/raindrops/back.svg",
  12032. extra: 2574 / 2400,
  12033. bottom: 65 / 2634
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Micro",
  12040. height: math.unit(6, "inches")
  12041. },
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(6 + 2 / 12, "feet")
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(131, "feet"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Megamacro",
  12053. height: math.unit(15, "miles")
  12054. },
  12055. {
  12056. name: "Gigamacro",
  12057. height: math.unit(4000, "miles")
  12058. },
  12059. {
  12060. name: "Teramacro",
  12061. height: math.unit(315000, "miles")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(2.794, "meters"),
  12070. weight: math.unit(325, "kg"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/tezwa/front.svg",
  12074. extra: 2083 / 1906,
  12075. bottom: 0.031
  12076. }
  12077. },
  12078. foot: {
  12079. height: math.unit(0.687, "meters"),
  12080. name: "Foot",
  12081. image: {
  12082. source: "./media/characters/tezwa/foot.svg"
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Normal",
  12089. height: math.unit(9 + 2 / 12, "feet"),
  12090. default: true
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(58, "feet"),
  12099. weight: math.unit(89000, "lb"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/typhus/front.svg",
  12103. extra: 816 / 800,
  12104. bottom: 0.065
  12105. }
  12106. },
  12107. },
  12108. [
  12109. {
  12110. name: "Macro",
  12111. height: math.unit(58, "feet"),
  12112. default: true
  12113. },
  12114. ]
  12115. ))
  12116. characterMakers.push(() => makeCharacter(
  12117. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12118. {
  12119. front: {
  12120. height: math.unit(12, "feet"),
  12121. weight: math.unit(6, "tonnes"),
  12122. name: "Front",
  12123. image: {
  12124. source: "./media/characters/lyra-von-wulf/front.svg",
  12125. extra: 1,
  12126. bottom: 0.10
  12127. }
  12128. },
  12129. frontMecha: {
  12130. height: math.unit(12, "feet"),
  12131. weight: math.unit(12, "tonnes"),
  12132. name: "Front (Mecha)",
  12133. image: {
  12134. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12135. extra: 1,
  12136. bottom: 0.042
  12137. }
  12138. },
  12139. maw: {
  12140. height: math.unit(2.2, "feet"),
  12141. name: "Maw",
  12142. image: {
  12143. source: "./media/characters/lyra-von-wulf/maw.svg"
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(12, "feet"),
  12151. default: true
  12152. },
  12153. {
  12154. name: "Classic",
  12155. height: math.unit(50, "feet")
  12156. },
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(500, "feet")
  12160. },
  12161. {
  12162. name: "Megamacro",
  12163. height: math.unit(1, "mile")
  12164. },
  12165. {
  12166. name: "Gigamacro",
  12167. height: math.unit(400, "miles")
  12168. },
  12169. {
  12170. name: "Teramacro",
  12171. height: math.unit(22000, "miles")
  12172. },
  12173. {
  12174. name: "Solarmacro",
  12175. height: math.unit(8600000, "miles")
  12176. },
  12177. {
  12178. name: "Galactic",
  12179. height: math.unit(1057000, "lightyears")
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(6 + 10 / 12, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/dixon/front.svg",
  12192. extra: 3361 / 3209,
  12193. bottom: 0.01
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(6 + 10 / 12, "feet"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Big",
  12205. height: math.unit(12, "meters")
  12206. },
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(500, "meters")
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(2, "km")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(185, "cm"),
  12222. weight: math.unit(68, "kg"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/kauko/front.svg",
  12226. extra: 1455 / 1421,
  12227. bottom: 0.03
  12228. }
  12229. },
  12230. back: {
  12231. height: math.unit(185, "cm"),
  12232. weight: math.unit(68, "kg"),
  12233. name: "Back",
  12234. image: {
  12235. source: "./media/characters/kauko/back.svg",
  12236. extra: 1455 / 1421,
  12237. bottom: 0.004
  12238. }
  12239. },
  12240. },
  12241. [
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(185, "cm"),
  12245. default: true
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "kg"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/varg/front.svg",
  12258. extra: 1108 / 1018,
  12259. bottom: 0.0375
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(5, "meters")
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(200, "meters")
  12271. },
  12272. {
  12273. name: "Megamacro",
  12274. height: math.unit(20, "kilometers")
  12275. },
  12276. {
  12277. name: "True Size",
  12278. height: math.unit(211, "km"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Gigamacro",
  12283. height: math.unit(1000, "km")
  12284. },
  12285. {
  12286. name: "Gigamacro+",
  12287. height: math.unit(8000, "km")
  12288. },
  12289. {
  12290. name: "Teramacro",
  12291. height: math.unit(1000000, "km")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12297. {
  12298. front: {
  12299. height: math.unit(7 + 7 / 12, "feet"),
  12300. weight: math.unit(267, "lb"),
  12301. name: "Front",
  12302. image: {
  12303. source: "./media/characters/dayza/front.svg",
  12304. extra: 1262 / 1200,
  12305. bottom: 0.035
  12306. }
  12307. },
  12308. side: {
  12309. height: math.unit(7 + 7 / 12, "feet"),
  12310. weight: math.unit(267, "lb"),
  12311. name: "Side",
  12312. image: {
  12313. source: "./media/characters/dayza/side.svg",
  12314. extra: 1295 / 1245,
  12315. bottom: 0.05
  12316. }
  12317. },
  12318. back: {
  12319. height: math.unit(7 + 7 / 12, "feet"),
  12320. weight: math.unit(267, "lb"),
  12321. name: "Back",
  12322. image: {
  12323. source: "./media/characters/dayza/back.svg",
  12324. extra: 1241 / 1170
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(7 + 7 / 12, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(155, "feet")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6 + 5 / 12, "feet"),
  12345. weight: math.unit(160, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/xanthos/front.svg",
  12349. extra: 1,
  12350. bottom: 0.04
  12351. }
  12352. },
  12353. back: {
  12354. height: math.unit(6 + 5 / 12, "feet"),
  12355. weight: math.unit(160, "lb"),
  12356. name: "Back",
  12357. image: {
  12358. source: "./media/characters/xanthos/back.svg",
  12359. extra: 1,
  12360. bottom: 0.03
  12361. }
  12362. },
  12363. hand: {
  12364. height: math.unit(0.928, "feet"),
  12365. name: "Hand",
  12366. image: {
  12367. source: "./media/characters/xanthos/hand.svg"
  12368. }
  12369. },
  12370. foot: {
  12371. height: math.unit(1.286, "feet"),
  12372. name: "Foot",
  12373. image: {
  12374. source: "./media/characters/xanthos/foot.svg"
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(6 + 5 / 12, "feet"),
  12382. default: true
  12383. },
  12384. {
  12385. name: "Normal+",
  12386. height: math.unit(6, "meters")
  12387. },
  12388. {
  12389. name: "Macro",
  12390. height: math.unit(40, "feet")
  12391. },
  12392. {
  12393. name: "Macro+",
  12394. height: math.unit(200, "meters")
  12395. },
  12396. {
  12397. name: "Megamacro",
  12398. height: math.unit(20, "km")
  12399. },
  12400. {
  12401. name: "Megamacro+",
  12402. height: math.unit(100, "km")
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(6 + 3 / 12, "feet"),
  12411. weight: math.unit(215, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/grynn/front.svg",
  12415. extra: 4627 / 4209,
  12416. bottom: 0.047
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Micro",
  12423. height: math.unit(6, "inches")
  12424. },
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(6 + 3 / 12, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Big",
  12432. height: math.unit(104, "feet")
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(944, "feet")
  12437. },
  12438. {
  12439. name: "Macro+",
  12440. height: math.unit(9480, "feet")
  12441. },
  12442. {
  12443. name: "Megamacro",
  12444. height: math.unit(78752, "feet")
  12445. },
  12446. {
  12447. name: "Megamacro+",
  12448. height: math.unit(630128, "feet")
  12449. },
  12450. {
  12451. name: "Megamacro++",
  12452. height: math.unit(3150695, "feet")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(7 + 5 / 12, "feet"),
  12461. weight: math.unit(450, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/mocha-aura/front.svg",
  12465. extra: 1907 / 1817,
  12466. bottom: 0.04
  12467. }
  12468. },
  12469. back: {
  12470. height: math.unit(7 + 5 / 12, "feet"),
  12471. weight: math.unit(450, "lb"),
  12472. name: "Back",
  12473. image: {
  12474. source: "./media/characters/mocha-aura/back.svg",
  12475. extra: 1900 / 1825,
  12476. bottom: 0.045
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Nano",
  12483. height: math.unit(1, "nm")
  12484. },
  12485. {
  12486. name: "Megamicro",
  12487. height: math.unit(1, "mm")
  12488. },
  12489. {
  12490. name: "Micro",
  12491. height: math.unit(3, "inches")
  12492. },
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(7 + 5 / 12, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Macro",
  12500. height: math.unit(30, "feet")
  12501. },
  12502. {
  12503. name: "Megamacro",
  12504. height: math.unit(3500, "feet")
  12505. },
  12506. {
  12507. name: "Teramacro",
  12508. height: math.unit(500000, "miles")
  12509. },
  12510. {
  12511. name: "Petamacro",
  12512. height: math.unit(50000000000000000, "parsecs")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/ilisha-devya/front.svg",
  12525. extra: 1,
  12526. bottom: 0.175
  12527. }
  12528. },
  12529. back: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(150, "lb"),
  12532. name: "Back",
  12533. image: {
  12534. source: "./media/characters/ilisha-devya/back.svg",
  12535. extra: 1,
  12536. bottom: 0.015
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(500, "feet"),
  12544. default: true
  12545. },
  12546. {
  12547. name: "Megamacro",
  12548. height: math.unit(10, "miles")
  12549. },
  12550. {
  12551. name: "Gigamacro",
  12552. height: math.unit(100000, "miles")
  12553. },
  12554. {
  12555. name: "Examacro",
  12556. height: math.unit(1e9, "lightyears")
  12557. },
  12558. {
  12559. name: "Omniversal",
  12560. height: math.unit(1e33, "lightyears")
  12561. },
  12562. {
  12563. name: "Beyond Infinite",
  12564. height: math.unit(1e100, "lightyears")
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12570. {
  12571. Side: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(150, "lb"),
  12574. name: "Side",
  12575. image: {
  12576. source: "./media/characters/mira/side.svg",
  12577. extra: 900 / 799,
  12578. bottom: 0.02
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Human Size",
  12585. height: math.unit(6, "feet")
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(100, "feet"),
  12590. default: true
  12591. },
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(10, "miles")
  12595. },
  12596. {
  12597. name: "Gigamacro",
  12598. height: math.unit(25000, "miles")
  12599. },
  12600. {
  12601. name: "Teramacro",
  12602. height: math.unit(300, "AU")
  12603. },
  12604. {
  12605. name: "Full Size",
  12606. height: math.unit(4.5e10, "lightyears")
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/holly/front.svg",
  12619. extra: 639 / 606
  12620. }
  12621. },
  12622. back: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Back",
  12626. image: {
  12627. source: "./media/characters/holly/back.svg",
  12628. extra: 623 / 598
  12629. }
  12630. },
  12631. frontWorking: {
  12632. height: math.unit(6, "feet"),
  12633. weight: math.unit(150, "lb"),
  12634. name: "Front (Working)",
  12635. image: {
  12636. source: "./media/characters/holly/front-working.svg",
  12637. extra: 607 / 577,
  12638. bottom: 0.048
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Normal",
  12645. height: math.unit(12 + 3 / 12, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(150, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/porter/front.svg",
  12659. extra: 1,
  12660. bottom: 0.01
  12661. }
  12662. },
  12663. frontRobes: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(150, "lb"),
  12666. name: "Front (Robes)",
  12667. image: {
  12668. source: "./media/characters/porter/front-robes.svg",
  12669. extra: 1.01,
  12670. bottom: 0.01
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Normal",
  12677. height: math.unit(11 + 9 / 12, "feet"),
  12678. default: true
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12684. {
  12685. legendary: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(150, "lb"),
  12688. name: "Legendary",
  12689. image: {
  12690. source: "./media/characters/lucy/legendary.svg",
  12691. extra: 1355 / 1100,
  12692. bottom: 0.045
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Legendary",
  12699. height: math.unit(86882 * 2, "miles"),
  12700. default: true
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "lb"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/drusilla/front.svg",
  12713. extra: 678 / 635,
  12714. bottom: 0.03
  12715. }
  12716. },
  12717. back: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(150, "lb"),
  12720. name: "Back",
  12721. image: {
  12722. source: "./media/characters/drusilla/back.svg",
  12723. extra: 678 / 635,
  12724. bottom: 0.005
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Macro",
  12731. height: math.unit(100, "feet")
  12732. },
  12733. {
  12734. name: "Canon Height",
  12735. height: math.unit(2000, "feet"),
  12736. default: true
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12742. {
  12743. front: {
  12744. height: math.unit(6, "feet"),
  12745. weight: math.unit(180, "lb"),
  12746. name: "Front",
  12747. image: {
  12748. source: "./media/characters/renard-thatch/front.svg",
  12749. extra: 2411 / 2275,
  12750. bottom: 0.01
  12751. }
  12752. },
  12753. frontPosing: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(180, "lb"),
  12756. name: "Front (Posing)",
  12757. image: {
  12758. source: "./media/characters/renard-thatch/front-posing.svg",
  12759. extra: 2381 / 2261,
  12760. bottom: 0.01
  12761. }
  12762. },
  12763. back: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(180, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/renard-thatch/back.svg",
  12769. extra: 2428 / 2288
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Micro",
  12776. height: math.unit(3, "inches")
  12777. },
  12778. {
  12779. name: "Default",
  12780. height: math.unit(6, "feet"),
  12781. default: true
  12782. },
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(75, "feet")
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(1450, "feet"),
  12794. weight: math.unit(1.21e6, "tons"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/sekvra/front.svg",
  12798. extra: 1,
  12799. bottom: 0.03
  12800. }
  12801. },
  12802. frontClothed: {
  12803. height: math.unit(1450, "feet"),
  12804. weight: math.unit(1.21e6, "tons"),
  12805. name: "Front (Clothed)",
  12806. image: {
  12807. source: "./media/characters/sekvra/front-clothed.svg",
  12808. extra: 1,
  12809. bottom: 0.03
  12810. }
  12811. },
  12812. side: {
  12813. height: math.unit(1450, "feet"),
  12814. weight: math.unit(1.21e6, "tons"),
  12815. name: "Side",
  12816. image: {
  12817. source: "./media/characters/sekvra/side.svg",
  12818. extra: 1,
  12819. bottom: 0.025
  12820. }
  12821. },
  12822. back: {
  12823. height: math.unit(1450, "feet"),
  12824. weight: math.unit(1.21e6, "tons"),
  12825. name: "Back",
  12826. image: {
  12827. source: "./media/characters/sekvra/back.svg",
  12828. extra: 1,
  12829. bottom: 0.005
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Macro",
  12836. height: math.unit(1450, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Megamacro",
  12841. height: math.unit(15000, "feet")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(150, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/carmine/front.svg",
  12854. extra: 1,
  12855. bottom: 0.035
  12856. }
  12857. },
  12858. frontArmor: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Front (Armor)",
  12862. image: {
  12863. source: "./media/characters/carmine/front-armor.svg",
  12864. extra: 1,
  12865. bottom: 0.035
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Large",
  12872. height: math.unit(1, "mile")
  12873. },
  12874. {
  12875. name: "Huge",
  12876. height: math.unit(40, "miles"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Colossal",
  12881. height: math.unit(2500, "miles")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(6, "feet"),
  12890. weight: math.unit(150, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/elyssia/front.svg",
  12894. extra: 2201 / 2035,
  12895. bottom: 0.05
  12896. }
  12897. },
  12898. frontClothed: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(150, "lb"),
  12901. name: "Front (Clothed)",
  12902. image: {
  12903. source: "./media/characters/elyssia/front-clothed.svg",
  12904. extra: 2201 / 2035,
  12905. bottom: 0.05
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(6, "feet"),
  12910. weight: math.unit(150, "lb"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/elyssia/back.svg",
  12914. extra: 2201 / 2035,
  12915. bottom: 0.013
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Smaller",
  12922. height: math.unit(150, "feet")
  12923. },
  12924. {
  12925. name: "Standard",
  12926. height: math.unit(1400, "feet"),
  12927. default: true
  12928. },
  12929. {
  12930. name: "Distracted",
  12931. height: math.unit(15000, "feet")
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12937. {
  12938. front: {
  12939. height: math.unit(7 + 4 / 12, "feet"),
  12940. weight: math.unit(500, "lb"),
  12941. name: "Front",
  12942. image: {
  12943. source: "./media/characters/geno-maxwell/front.svg",
  12944. extra: 2207 / 2040,
  12945. bottom: 0.015
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Micro",
  12952. height: math.unit(3, "inches")
  12953. },
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(7 + 4 / 12, "feet"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Macro",
  12961. height: math.unit(220, "feet")
  12962. },
  12963. {
  12964. name: "Megamacro",
  12965. height: math.unit(11, "miles")
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(7 + 4 / 12, "feet"),
  12974. weight: math.unit(500, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/regena-maxwell/front.svg",
  12978. extra: 3115 / 2770,
  12979. bottom: 0.02
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(7 + 4 / 12, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(220, "feet")
  12992. },
  12993. {
  12994. name: "Megamacro",
  12995. height: math.unit(11, "miles")
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13001. {
  13002. front: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13008. extra: 860 / 690,
  13009. bottom: 0.03
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(1.7, "meters"),
  13017. default: true
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(6, "feet"),
  13026. weight: math.unit(150, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/quilly/front.svg",
  13030. extra: 890 / 776
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Gigamacro",
  13037. height: math.unit(404090, "miles"),
  13038. default: true
  13039. },
  13040. ]
  13041. ))
  13042. characterMakers.push(() => makeCharacter(
  13043. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13044. {
  13045. front: {
  13046. height: math.unit(7 + 8 / 12, "feet"),
  13047. weight: math.unit(350, "lb"),
  13048. name: "Front",
  13049. image: {
  13050. source: "./media/characters/tempest/front.svg",
  13051. extra: 1175 / 1086,
  13052. bottom: 0.02
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(7 + 8 / 12, "feet"),
  13060. default: true
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13066. {
  13067. side: {
  13068. height: math.unit(4 + 5 / 12, "feet"),
  13069. weight: math.unit(80, "lb"),
  13070. name: "Side",
  13071. image: {
  13072. source: "./media/characters/rodger/side.svg",
  13073. extra: 1235 / 1118
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Micro",
  13080. height: math.unit(1, "inch")
  13081. },
  13082. {
  13083. name: "Normal",
  13084. height: math.unit(4 + 5 / 12, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Macro",
  13089. height: math.unit(120, "feet")
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/danyel/front.svg",
  13102. extra: 1185 / 1123,
  13103. bottom: 0.05
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Shrunken",
  13110. height: math.unit(0.5, "mm")
  13111. },
  13112. {
  13113. name: "Micro",
  13114. height: math.unit(1, "mm"),
  13115. default: true
  13116. },
  13117. {
  13118. name: "Upsized",
  13119. height: math.unit(5 + 5 / 12, "feet")
  13120. },
  13121. ]
  13122. ))
  13123. characterMakers.push(() => makeCharacter(
  13124. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13125. {
  13126. front: {
  13127. height: math.unit(5 + 6 / 12, "feet"),
  13128. weight: math.unit(200, "lb"),
  13129. name: "Front",
  13130. image: {
  13131. source: "./media/characters/vivian-bijoux/front.svg",
  13132. extra: 1,
  13133. bottom: 0.072
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(5 + 6 / 12, "feet"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Bad Dream",
  13145. height: math.unit(500, "feet")
  13146. },
  13147. {
  13148. name: "Nightmare",
  13149. height: math.unit(500, "miles")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(6 + 1 / 12, "feet"),
  13158. weight: math.unit(260, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/zeta/front.svg",
  13162. extra: 1968 / 1889,
  13163. bottom: 0.06
  13164. }
  13165. },
  13166. back: {
  13167. height: math.unit(6 + 1 / 12, "feet"),
  13168. weight: math.unit(260, "lb"),
  13169. name: "Back",
  13170. image: {
  13171. source: "./media/characters/zeta/back.svg",
  13172. extra: 1944 / 1858,
  13173. bottom: 0.03
  13174. }
  13175. },
  13176. hand: {
  13177. height: math.unit(1.112, "feet"),
  13178. name: "Hand",
  13179. image: {
  13180. source: "./media/characters/zeta/hand.svg"
  13181. }
  13182. },
  13183. foot: {
  13184. height: math.unit(1.48, "feet"),
  13185. name: "Foot",
  13186. image: {
  13187. source: "./media/characters/zeta/foot.svg"
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Micro",
  13194. height: math.unit(6, "inches")
  13195. },
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(6 + 1 / 12, "feet"),
  13199. default: true
  13200. },
  13201. {
  13202. name: "Macro",
  13203. height: math.unit(20, "feet")
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(150, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/jamie-larsen/front.svg",
  13216. extra: 962 / 933,
  13217. bottom: 0.02
  13218. }
  13219. },
  13220. back: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Back",
  13224. image: {
  13225. source: "./media/characters/jamie-larsen/back.svg",
  13226. extra: 997 / 946
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(28 + 7 / 12, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Macro+",
  13238. height: math.unit(180, "feet")
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(10, "miles")
  13243. },
  13244. {
  13245. name: "Gigamacro",
  13246. height: math.unit(200000, "miles")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13252. {
  13253. front: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(120, "lb"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/vance/front.svg",
  13259. extra: 1980 / 1890,
  13260. bottom: 0.09
  13261. }
  13262. },
  13263. back: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(120, "lb"),
  13266. name: "Back",
  13267. image: {
  13268. source: "./media/characters/vance/back.svg",
  13269. extra: 2081 / 1994,
  13270. bottom: 0.014
  13271. }
  13272. },
  13273. hand: {
  13274. height: math.unit(0.88, "feet"),
  13275. name: "Hand",
  13276. image: {
  13277. source: "./media/characters/vance/hand.svg"
  13278. }
  13279. },
  13280. foot: {
  13281. height: math.unit(0.64, "feet"),
  13282. name: "Foot",
  13283. image: {
  13284. source: "./media/characters/vance/foot.svg"
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Small",
  13291. height: math.unit(90, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Macro",
  13296. height: math.unit(100, "meters")
  13297. },
  13298. {
  13299. name: "Megamacro",
  13300. height: math.unit(15, "miles")
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(180, "lb"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/xochitl/front.svg",
  13313. extra: 2297 / 2261,
  13314. bottom: 0.065
  13315. }
  13316. },
  13317. back: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(180, "lb"),
  13320. name: "Back",
  13321. image: {
  13322. source: "./media/characters/xochitl/back.svg",
  13323. extra: 2386 / 2354,
  13324. bottom: 0.01
  13325. }
  13326. },
  13327. foot: {
  13328. height: math.unit(6 / 5 * 1.15, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Foot",
  13331. image: {
  13332. source: "./media/characters/xochitl/foot.svg"
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Macro",
  13339. height: math.unit(80, "feet")
  13340. },
  13341. {
  13342. name: "Macro+",
  13343. height: math.unit(400, "feet"),
  13344. default: true
  13345. },
  13346. {
  13347. name: "Gigamacro",
  13348. height: math.unit(80000, "miles")
  13349. },
  13350. {
  13351. name: "Gigamacro+",
  13352. height: math.unit(400000, "miles")
  13353. },
  13354. {
  13355. name: "Teramacro",
  13356. height: math.unit(300, "AU")
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(150, "lb"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/vincent/front.svg",
  13369. extra: 1130 / 1080,
  13370. bottom: 0.055
  13371. }
  13372. },
  13373. beak: {
  13374. height: math.unit(6 * 0.1, "feet"),
  13375. name: "Beak",
  13376. image: {
  13377. source: "./media/characters/vincent/beak.svg"
  13378. }
  13379. },
  13380. hand: {
  13381. height: math.unit(6 * 0.85, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Hand",
  13384. image: {
  13385. source: "./media/characters/vincent/hand.svg"
  13386. }
  13387. },
  13388. foot: {
  13389. height: math.unit(6 * 0.19, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Foot",
  13392. image: {
  13393. source: "./media/characters/vincent/foot.svg"
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Base",
  13400. height: math.unit(6 + 5 / 12, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(300, "feet")
  13406. },
  13407. {
  13408. name: "Megamacro",
  13409. height: math.unit(2, "miles")
  13410. },
  13411. {
  13412. name: "Gigamacro",
  13413. height: math.unit(1000, "miles")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6 + 2 / 12, "feet"),
  13422. weight: math.unit(265, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/jay/front.svg",
  13426. extra: 1510 / 1430,
  13427. bottom: 0.042
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(6 + 2 / 12, "feet"),
  13432. weight: math.unit(265, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/jay/back.svg",
  13436. extra: 1510 / 1430,
  13437. bottom: 0.025
  13438. }
  13439. },
  13440. clothed: {
  13441. height: math.unit(6 + 2 / 12, "feet"),
  13442. weight: math.unit(265, "lb"),
  13443. name: "Front (Clothed)",
  13444. image: {
  13445. source: "./media/characters/jay/clothed.svg",
  13446. extra: 744 / 699,
  13447. bottom: 0.043
  13448. }
  13449. },
  13450. head: {
  13451. height: math.unit(1.772, "feet"),
  13452. name: "Head",
  13453. image: {
  13454. source: "./media/characters/jay/head.svg"
  13455. }
  13456. },
  13457. sizeRay: {
  13458. height: math.unit(1.331, "feet"),
  13459. name: "Size Ray",
  13460. image: {
  13461. source: "./media/characters/jay/size-ray.svg"
  13462. }
  13463. },
  13464. },
  13465. [
  13466. {
  13467. name: "Micro",
  13468. height: math.unit(1, "inch")
  13469. },
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(6 + 2 / 12, "feet"),
  13473. default: true
  13474. },
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(1, "mile")
  13478. },
  13479. {
  13480. name: "Megamacro",
  13481. height: math.unit(100, "miles")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(2, "meters"),
  13490. weight: math.unit(500, "kg"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/coatl/front.svg",
  13494. extra: 3948 / 3500,
  13495. bottom: 0.082
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(4, "meters")
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(100, "meters"),
  13507. default: true
  13508. },
  13509. {
  13510. name: "Macro+",
  13511. height: math.unit(300, "meters")
  13512. },
  13513. {
  13514. name: "Megamacro",
  13515. height: math.unit(3, "gigameters")
  13516. },
  13517. {
  13518. name: "Megamacro+",
  13519. height: math.unit(300, "terameters")
  13520. },
  13521. {
  13522. name: "Megamacro++",
  13523. height: math.unit(3, "lightyears")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(50, "kg"),
  13533. name: "front",
  13534. image: {
  13535. source: "./media/characters/shiroryu/front.svg",
  13536. extra: 1990 / 1935
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Mortal Mingling",
  13543. height: math.unit(3, "meters")
  13544. },
  13545. {
  13546. name: "Kaiju-ish",
  13547. height: math.unit(250, "meters")
  13548. },
  13549. {
  13550. name: "Somewhat Godly",
  13551. height: math.unit(400, "km"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Planetary",
  13556. height: math.unit(300, "megameters")
  13557. },
  13558. {
  13559. name: "Galaxy-dwarfing",
  13560. height: math.unit(450, "kiloparsecs")
  13561. },
  13562. {
  13563. name: "Universe Eater",
  13564. height: math.unit(150, "gigaparsecs")
  13565. },
  13566. {
  13567. name: "Almost Immeasurable",
  13568. height: math.unit(1.3e266, "yottaparsecs")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/umeko/front.svg",
  13581. extra: 1,
  13582. bottom: 0.019
  13583. }
  13584. },
  13585. frontArmored: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front (Armored)",
  13589. image: {
  13590. source: "./media/characters/umeko/front-armored.svg",
  13591. extra: 1,
  13592. bottom: 0.021
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Macro",
  13599. height: math.unit(220, "feet"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Guardian Dragon",
  13604. height: math.unit(50, "miles")
  13605. },
  13606. {
  13607. name: "Cosmic",
  13608. height: math.unit(800000, "miles")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/cassidy/front.svg",
  13621. extra: 1,
  13622. bottom: 0.043
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Canon Height",
  13629. height: math.unit(120, "feet"),
  13630. default: true
  13631. },
  13632. {
  13633. name: "Macro+",
  13634. height: math.unit(400, "feet")
  13635. },
  13636. {
  13637. name: "Macro++",
  13638. height: math.unit(4000, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(3, "miles")
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/isaac/front.svg",
  13655. extra: 896 / 815,
  13656. bottom: 0.11
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Human Size",
  13663. height: math.unit(8, "feet"),
  13664. default: true
  13665. },
  13666. {
  13667. name: "Macro",
  13668. height: math.unit(400, "feet")
  13669. },
  13670. {
  13671. name: "Megamacro",
  13672. height: math.unit(50, "miles")
  13673. },
  13674. {
  13675. name: "Canon Height",
  13676. height: math.unit(200, "AU")
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(72, "kg"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/sleekit/front.svg",
  13689. extra: 4693 / 4487,
  13690. bottom: 0.012
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Minimum Height",
  13697. height: math.unit(10, "meters")
  13698. },
  13699. {
  13700. name: "Smaller",
  13701. height: math.unit(25, "meters")
  13702. },
  13703. {
  13704. name: "Larger",
  13705. height: math.unit(38, "meters"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Maximum height",
  13710. height: math.unit(100, "meters")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/nillia/front.svg",
  13723. extra: 2195 / 2037,
  13724. bottom: 0.005
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/nillia/back.svg",
  13733. extra: 2195 / 2037,
  13734. bottom: 0.005
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Canon Height",
  13741. height: math.unit(489, "feet"),
  13742. default: true
  13743. }
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/mesmyriza/front.svg",
  13755. extra: 2067 / 1784,
  13756. bottom: 0.035
  13757. }
  13758. },
  13759. foot: {
  13760. height: math.unit(6 / (250 / 35), "feet"),
  13761. name: "Foot",
  13762. image: {
  13763. source: "./media/characters/mesmyriza/foot.svg"
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Macro",
  13770. height: math.unit(457, "meters"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Megamacro",
  13775. height: math.unit(8, "megameters")
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(250, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/saudade/front.svg",
  13788. extra: 1172 / 1139,
  13789. bottom: 0.035
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Micro",
  13796. height: math.unit(3, "inches")
  13797. },
  13798. {
  13799. name: "Normal",
  13800. height: math.unit(6, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(50, "feet")
  13806. },
  13807. {
  13808. name: "Megamacro",
  13809. height: math.unit(2800, "feet")
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(5 + 4 / 12, "feet"),
  13818. weight: math.unit(100, "lb"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/keireer/front.svg",
  13822. extra: 716 / 666,
  13823. bottom: 0.05
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(5 + 4 / 12, "feet"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(90, "kg"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/mirja/front.svg",
  13844. extra: 1789 / 1683,
  13845. bottom: 0.05
  13846. }
  13847. },
  13848. frontDressed: {
  13849. height: math.unit(6, "feet"),
  13850. weight: math.unit(90, "lb"),
  13851. name: "Front (Dressed)",
  13852. image: {
  13853. source: "./media/characters/mirja/front-dressed.svg",
  13854. extra: 1789 / 1683,
  13855. bottom: 0.05
  13856. }
  13857. },
  13858. back: {
  13859. height: math.unit(6, "feet"),
  13860. weight: math.unit(90, "lb"),
  13861. name: "Back",
  13862. image: {
  13863. source: "./media/characters/mirja/back.svg",
  13864. extra: 953 / 917,
  13865. bottom: 0.017
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "\"Incognito\"",
  13872. height: math.unit(3, "meters")
  13873. },
  13874. {
  13875. name: "Strolling Size",
  13876. height: math.unit(15, "km")
  13877. },
  13878. {
  13879. name: "Larger Strolling Size",
  13880. height: math.unit(400, "km")
  13881. },
  13882. {
  13883. name: "Preferred Size",
  13884. height: math.unit(5000, "km")
  13885. },
  13886. {
  13887. name: "True Size",
  13888. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13889. default: true
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13895. {
  13896. front: {
  13897. height: math.unit(15, "feet"),
  13898. weight: math.unit(880, "kg"),
  13899. name: "Front",
  13900. image: {
  13901. source: "./media/characters/nightraver/front.svg",
  13902. extra: 2444 / 2160,
  13903. bottom: 0.027
  13904. }
  13905. },
  13906. back: {
  13907. height: math.unit(15, "feet"),
  13908. weight: math.unit(880, "kg"),
  13909. name: "Back",
  13910. image: {
  13911. source: "./media/characters/nightraver/back.svg",
  13912. extra: 2309 / 2180,
  13913. bottom: 0.005
  13914. }
  13915. },
  13916. sole: {
  13917. height: math.unit(2.878, "feet"),
  13918. name: "Sole",
  13919. image: {
  13920. source: "./media/characters/nightraver/sole.svg"
  13921. }
  13922. },
  13923. foot: {
  13924. height: math.unit(2.285, "feet"),
  13925. name: "Foot",
  13926. image: {
  13927. source: "./media/characters/nightraver/foot.svg"
  13928. }
  13929. },
  13930. maw: {
  13931. height: math.unit(2.67, "feet"),
  13932. name: "Maw",
  13933. image: {
  13934. source: "./media/characters/nightraver/maw.svg"
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Micro",
  13941. height: math.unit(1, "cm")
  13942. },
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(15, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro",
  13950. height: math.unit(300, "feet")
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(300, "miles")
  13955. },
  13956. {
  13957. name: "Gigamacro",
  13958. height: math.unit(10000, "miles")
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13964. {
  13965. side: {
  13966. height: math.unit(2, "inches"),
  13967. weight: math.unit(5, "grams"),
  13968. name: "Side",
  13969. image: {
  13970. source: "./media/characters/arc/side.svg"
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Micro",
  13977. height: math.unit(2, "inches"),
  13978. default: true
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(1.1938, "meters"),
  13987. weight: math.unit(54, "kg"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/nebula-shahar/front.svg",
  13991. extra: 1642 / 1436,
  13992. bottom: 0.06
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Megamicro",
  13999. height: math.unit(0.3, "mm")
  14000. },
  14001. {
  14002. name: "Micro",
  14003. height: math.unit(3, "cm")
  14004. },
  14005. {
  14006. name: "Normal",
  14007. height: math.unit(138, "cm"),
  14008. default: true
  14009. },
  14010. {
  14011. name: "Macro",
  14012. height: math.unit(30, "m")
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(5.24, "feet"),
  14021. weight: math.unit(150, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/shayla/front.svg",
  14025. extra: 1512 / 1414,
  14026. bottom: 0.01
  14027. }
  14028. },
  14029. back: {
  14030. height: math.unit(5.24, "feet"),
  14031. weight: math.unit(150, "lb"),
  14032. name: "Back",
  14033. image: {
  14034. source: "./media/characters/shayla/back.svg",
  14035. extra: 1512 / 1414
  14036. }
  14037. },
  14038. hand: {
  14039. height: math.unit(0.7781496062992126, "feet"),
  14040. name: "Hand",
  14041. image: {
  14042. source: "./media/characters/shayla/hand.svg"
  14043. }
  14044. },
  14045. foot: {
  14046. height: math.unit(1.4206036745406823, "feet"),
  14047. name: "Foot",
  14048. image: {
  14049. source: "./media/characters/shayla/foot.svg"
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Micro",
  14056. height: math.unit(0.32, "feet")
  14057. },
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(5.24, "feet"),
  14061. default: true
  14062. },
  14063. {
  14064. name: "Macro",
  14065. height: math.unit(492.12, "feet")
  14066. },
  14067. {
  14068. name: "Megamacro",
  14069. height: math.unit(186.41, "miles")
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14075. {
  14076. front: {
  14077. height: math.unit(2.2, "m"),
  14078. weight: math.unit(120, "kg"),
  14079. name: "Front",
  14080. image: {
  14081. source: "./media/characters/pia-jr/front.svg",
  14082. extra: 1000 / 970,
  14083. bottom: 0.035
  14084. }
  14085. },
  14086. hand: {
  14087. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14088. name: "Hand",
  14089. image: {
  14090. source: "./media/characters/pia-jr/hand.svg"
  14091. }
  14092. },
  14093. paw: {
  14094. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14095. name: "Paw",
  14096. image: {
  14097. source: "./media/characters/pia-jr/paw.svg"
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(1.2, "cm")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(2.2, "m"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(180, "m")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(420, "km")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(2, "m"),
  14126. weight: math.unit(115, "kg"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/pia-sr/front.svg",
  14130. extra: 760 / 730,
  14131. bottom: 0.015
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(2, "m"),
  14136. weight: math.unit(115, "kg"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/pia-sr/back.svg",
  14140. extra: 760 / 730,
  14141. bottom: 0.01
  14142. }
  14143. },
  14144. hand: {
  14145. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14146. name: "Hand",
  14147. image: {
  14148. source: "./media/characters/pia-sr/hand.svg"
  14149. }
  14150. },
  14151. foot: {
  14152. height: math.unit(1.83, "feet"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/pia-sr/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Micro",
  14162. height: math.unit(88, "mm")
  14163. },
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(2, "m"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(200, "m")
  14172. },
  14173. {
  14174. name: "Megamacro",
  14175. height: math.unit(420, "km")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(8 + 2 / 12, "feet"),
  14184. weight: math.unit(300, "lb"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/kibibyte/front.svg",
  14188. extra: 2221 / 2098,
  14189. bottom: 0.04
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(8 + 2 / 12, "feet"),
  14197. default: true
  14198. },
  14199. {
  14200. name: "Socialable Macro",
  14201. height: math.unit(50, "feet")
  14202. },
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(300, "feet")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(500, "miles")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(150, "lb"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/felix/front.svg",
  14222. extra: 762 / 722,
  14223. bottom: 0.02
  14224. }
  14225. },
  14226. frontClothed: {
  14227. height: math.unit(6, "feet"),
  14228. weight: math.unit(150, "lb"),
  14229. name: "Front (Clothed)",
  14230. image: {
  14231. source: "./media/characters/felix/front-clothed.svg",
  14232. extra: 762 / 722,
  14233. bottom: 0.02
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(6 + 8 / 12, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(2600, "feet")
  14246. },
  14247. {
  14248. name: "Megamacro",
  14249. height: math.unit(450, "miles")
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6 + 1 / 12, "feet"),
  14258. weight: math.unit(250, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/tobo/front.svg",
  14262. extra: 608 / 586,
  14263. bottom: 0.023
  14264. }
  14265. },
  14266. back: {
  14267. height: math.unit(6 + 1 / 12, "feet"),
  14268. weight: math.unit(250, "lb"),
  14269. name: "Back",
  14270. image: {
  14271. source: "./media/characters/tobo/back.svg",
  14272. extra: 608 / 586
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Nano",
  14279. height: math.unit(2, "nm")
  14280. },
  14281. {
  14282. name: "Megamicro",
  14283. height: math.unit(0.1, "mm")
  14284. },
  14285. {
  14286. name: "Micro",
  14287. height: math.unit(1, "inch"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Human-sized",
  14292. height: math.unit(6 + 1 / 12, "feet")
  14293. },
  14294. {
  14295. name: "Macro",
  14296. height: math.unit(250, "feet")
  14297. },
  14298. {
  14299. name: "Megamacro",
  14300. height: math.unit(75, "miles")
  14301. },
  14302. {
  14303. name: "Texas-sized",
  14304. height: math.unit(750, "miles")
  14305. },
  14306. {
  14307. name: "Teramacro",
  14308. height: math.unit(50000, "miles")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(269, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/danny-kapowsky/front.svg",
  14321. extra: 766 / 736,
  14322. bottom: 0.044
  14323. }
  14324. },
  14325. back: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(269, "lb"),
  14328. name: "Back",
  14329. image: {
  14330. source: "./media/characters/danny-kapowsky/back.svg",
  14331. extra: 797 / 760,
  14332. bottom: 0.025
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Macro",
  14339. height: math.unit(150, "feet"),
  14340. default: true
  14341. },
  14342. {
  14343. name: "Macro+",
  14344. height: math.unit(200, "feet")
  14345. },
  14346. {
  14347. name: "Macro++",
  14348. height: math.unit(300, "feet")
  14349. },
  14350. {
  14351. name: "Macro+++",
  14352. height: math.unit(400, "feet")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14358. {
  14359. side: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(170, "lb"),
  14362. name: "Side",
  14363. image: {
  14364. source: "./media/characters/finn/side.svg",
  14365. extra: 1953 / 1807,
  14366. bottom: 0.057
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Megamacro",
  14373. height: math.unit(14445, "feet"),
  14374. default: true
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(5 + 6 / 12, "feet"),
  14383. weight: math.unit(125, "lb"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/roy/front.svg",
  14387. extra: 1,
  14388. bottom: 0.11
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Micro",
  14395. height: math.unit(3, "inches"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(5 + 6 / 12, "feet")
  14401. },
  14402. {
  14403. name: "Lesser Macro",
  14404. height: math.unit(60, "feet")
  14405. },
  14406. {
  14407. name: "Greater Macro",
  14408. height: math.unit(120, "feet")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(100, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/aevsivs/front.svg",
  14421. extra: 1,
  14422. bottom: 0.03
  14423. }
  14424. },
  14425. back: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(100, "lb"),
  14428. name: "Back",
  14429. image: {
  14430. source: "./media/characters/aevsivs/back.svg"
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Micro",
  14437. height: math.unit(2, "inches"),
  14438. default: true
  14439. },
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5, "feet")
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(5 + 7 / 12, "feet"),
  14451. weight: math.unit(159, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/hildegard/front.svg",
  14455. extra: 289 / 269,
  14456. bottom: 7.63 / 297.8
  14457. }
  14458. },
  14459. back: {
  14460. height: math.unit(5 + 7 / 12, "feet"),
  14461. weight: math.unit(159, "lb"),
  14462. name: "Back",
  14463. image: {
  14464. source: "./media/characters/hildegard/back.svg",
  14465. extra: 280 / 260,
  14466. bottom: 2.3 / 282
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(5 + 7 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14480. {
  14481. bernard: {
  14482. height: math.unit(2 + 7 / 12, "feet"),
  14483. weight: math.unit(66, "lb"),
  14484. name: "Bernard",
  14485. rename: true,
  14486. image: {
  14487. source: "./media/characters/bernard-wilder/bernard.svg",
  14488. extra: 192 / 128,
  14489. bottom: 0.05
  14490. }
  14491. },
  14492. wilder: {
  14493. height: math.unit(5 + 8 / 12, "feet"),
  14494. weight: math.unit(143, "lb"),
  14495. name: "Wilder",
  14496. rename: true,
  14497. image: {
  14498. source: "./media/characters/bernard-wilder/wilder.svg",
  14499. extra: 361 / 312,
  14500. bottom: 0.02
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(2 + 7 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14514. {
  14515. anthro: {
  14516. height: math.unit(6 + 1 / 12, "feet"),
  14517. weight: math.unit(155, "lb"),
  14518. name: "Anthro",
  14519. image: {
  14520. source: "./media/characters/hearth/anthro.svg",
  14521. extra: 260 / 250,
  14522. bottom: 0.02
  14523. }
  14524. },
  14525. feral: {
  14526. height: math.unit(3.78, "feet"),
  14527. weight: math.unit(35, "kg"),
  14528. name: "Feral",
  14529. image: {
  14530. source: "./media/characters/hearth/feral.svg",
  14531. extra: 153 / 135,
  14532. bottom: 0.03
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(6 + 1 / 12, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(6, "feet"),
  14549. weight: math.unit(182, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/ingrid/front.svg",
  14553. extra: 294 / 268,
  14554. bottom: 0.027
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(6, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14568. {
  14569. eevee: {
  14570. height: math.unit(2 + 10 / 12, "feet"),
  14571. weight: math.unit(86, "lb"),
  14572. name: "Malgam",
  14573. image: {
  14574. source: "./media/characters/malgam/eevee.svg",
  14575. extra: 218 / 180,
  14576. bottom: 0.2
  14577. }
  14578. },
  14579. sylveon: {
  14580. height: math.unit(4, "feet"),
  14581. weight: math.unit(101, "lb"),
  14582. name: "Future Malgam",
  14583. rename: true,
  14584. image: {
  14585. source: "./media/characters/malgam/sylveon.svg",
  14586. extra: 371 / 325,
  14587. bottom: 0.015
  14588. }
  14589. },
  14590. gigantamax: {
  14591. height: math.unit(50, "feet"),
  14592. name: "Gigantamax Malgam",
  14593. rename: true,
  14594. image: {
  14595. source: "./media/characters/malgam/gigantamax.svg"
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(2 + 10 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(5 + 11 / 12, "feet"),
  14612. weight: math.unit(188, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/fleur/front.svg",
  14616. extra: 309 / 283,
  14617. bottom: 0.007
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(5 + 11 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(5 + 4 / 12, "feet"),
  14634. weight: math.unit(122, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/jude/front.svg",
  14638. extra: 288 / 273,
  14639. bottom: 0.03
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(5 + 4 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(5 + 11 / 12, "feet"),
  14656. weight: math.unit(190, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/seara/front.svg",
  14660. extra: 1,
  14661. bottom: 0.05
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(5 + 11 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(16 + 5 / 12, "feet"),
  14678. weight: math.unit(524, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/caspian/front.svg",
  14682. extra: 1,
  14683. bottom: 0.04
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Normal",
  14690. height: math.unit(16 + 5 / 12, "feet"),
  14691. default: true
  14692. },
  14693. ]
  14694. ))
  14695. characterMakers.push(() => makeCharacter(
  14696. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14697. {
  14698. front: {
  14699. height: math.unit(5 + 7 / 12, "feet"),
  14700. weight: math.unit(170, "lb"),
  14701. name: "Front",
  14702. image: {
  14703. source: "./media/characters/mika/front.svg",
  14704. extra: 1,
  14705. bottom: 0.016
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(5 + 7 / 12, "feet"),
  14713. default: true
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6 + 2 / 12, "feet"),
  14722. weight: math.unit(268, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/sol/front.svg",
  14726. extra: 247 / 231,
  14727. bottom: 0.05
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(6 + 2 / 12, "feet"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14741. {
  14742. buizel: {
  14743. height: math.unit(2 + 5 / 12, "feet"),
  14744. weight: math.unit(87, "lb"),
  14745. name: "Buizel",
  14746. image: {
  14747. source: "./media/characters/umiko/buizel.svg",
  14748. extra: 172 / 157,
  14749. bottom: 0.01
  14750. }
  14751. },
  14752. floatzel: {
  14753. height: math.unit(5 + 9 / 12, "feet"),
  14754. weight: math.unit(250, "lb"),
  14755. name: "Floatzel",
  14756. image: {
  14757. source: "./media/characters/umiko/floatzel.svg",
  14758. extra: 262 / 248
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(2 + 5 / 12, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(6 + 2 / 12, "feet"),
  14775. weight: math.unit(146, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/iliac/front.svg",
  14779. extra: 389 / 365,
  14780. bottom: 0.035
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(6 + 2 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(170, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/topaz/front.svg",
  14801. extra: 317 / 303,
  14802. bottom: 0.055
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(6, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(5 + 11 / 12, "feet"),
  14819. weight: math.unit(144, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/gabriel/front.svg",
  14823. extra: 285 / 262,
  14824. bottom: 0.004
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(5 + 11 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14838. {
  14839. side: {
  14840. height: math.unit(6 + 5 / 12, "feet"),
  14841. weight: math.unit(300, "lb"),
  14842. name: "Side",
  14843. image: {
  14844. source: "./media/characters/tempest-suicune/side.svg",
  14845. extra: 195 / 154,
  14846. bottom: 0.04
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(6 + 5 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(7 + 2 / 12, "feet"),
  14863. weight: math.unit(322, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/vulcan/front.svg",
  14867. extra: 154 / 147,
  14868. bottom: 0.04
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(7 + 2 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(5 + 10 / 12, "feet"),
  14885. weight: math.unit(264, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/gault/front.svg",
  14889. extra: 161 / 140,
  14890. bottom: 0.028
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(5 + 10 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/shard/front.svg",
  14911. extra: 273 / 238,
  14912. bottom: 0.02
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(3 + 6 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(5 + 11 / 12, "feet"),
  14929. weight: math.unit(146, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/ashe/front.svg",
  14933. extra: 400 / 373,
  14934. bottom: 0.01
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(5 + 11 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(5 + 5 / 12, "feet"),
  14951. weight: math.unit(135, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/beatrix/front.svg",
  14955. extra: 392 / 379,
  14956. bottom: 0.01
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(6, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(6, "feet"),
  14973. weight: math.unit(150, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/ignatius/front.svg",
  14977. extra: 245 / 222,
  14978. bottom: 0.01
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(5 + 5 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(6 + 2 / 12, "feet"),
  14995. weight: math.unit(138, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/mei-li/front.svg",
  14999. extra: 237 / 229,
  15000. bottom: 0.03
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(6 + 2 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(2 + 4 / 12, "feet"),
  15017. weight: math.unit(62, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/puru/front.svg",
  15021. extra: 206 / 149,
  15022. bottom: 0.06
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(2 + 4 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15036. {
  15037. anthro: {
  15038. height: math.unit(5 + 8/12, "feet"),
  15039. weight: math.unit(200, "lb"),
  15040. energyNeed: math.unit(2000, "kcal"),
  15041. name: "Anthro",
  15042. image: {
  15043. source: "./media/characters/kee/anthro.svg",
  15044. extra: 3251/3184,
  15045. bottom: 250/3501
  15046. }
  15047. },
  15048. taur: {
  15049. height: math.unit(11, "feet"),
  15050. weight: math.unit(500, "lb"),
  15051. energyNeed: math.unit(5000, "kcal"),
  15052. name: "Taur",
  15053. image: {
  15054. source: "./media/characters/kee/taur.svg",
  15055. extra: 1362/1320,
  15056. bottom: 83/1445
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 8/12, "feet"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Macro",
  15068. height: math.unit(35, "feet")
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15074. {
  15075. anthro: {
  15076. height: math.unit(7, "feet"),
  15077. weight: math.unit(190, "lb"),
  15078. name: "Anthro",
  15079. image: {
  15080. source: "./media/characters/cobalt-dracha/anthro.svg",
  15081. extra: 231 / 225,
  15082. bottom: 0.04
  15083. }
  15084. },
  15085. feral: {
  15086. height: math.unit(9 + 7 / 12, "feet"),
  15087. weight: math.unit(294, "lb"),
  15088. name: "Feral",
  15089. image: {
  15090. source: "./media/characters/cobalt-dracha/feral.svg",
  15091. extra: 692 / 633,
  15092. bottom: 0.05
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(7, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15106. {
  15107. fallen: {
  15108. height: math.unit(11 + 8 / 12, "feet"),
  15109. weight: math.unit(485, "lb"),
  15110. name: "Java (Fallen)",
  15111. rename: true,
  15112. image: {
  15113. source: "./media/characters/java/fallen.svg",
  15114. extra: 226 / 208,
  15115. bottom: 0.005
  15116. }
  15117. },
  15118. godkin: {
  15119. height: math.unit(10 + 6 / 12, "feet"),
  15120. weight: math.unit(328, "lb"),
  15121. name: "Java (Godkin)",
  15122. rename: true,
  15123. image: {
  15124. source: "./media/characters/java/godkin.svg",
  15125. extra: 270 / 262,
  15126. bottom: 0.02
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(11 + 8 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(7 + 8 / 12, "feet"),
  15143. weight: math.unit(320, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/skoll/front.svg",
  15147. extra: 232 / 220,
  15148. bottom: 0.02
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(7 + 8 / 12, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(5 + 9 / 12, "feet"),
  15165. weight: math.unit(170, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/purna/front.svg",
  15169. extra: 239 / 229,
  15170. bottom: 0.01
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(5 + 9 / 12, "feet"),
  15178. default: true
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(5 + 9 / 12, "feet"),
  15187. weight: math.unit(142, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/kuva/front.svg",
  15191. extra: 281 / 271,
  15192. bottom: 0.006
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(5 + 9 / 12, "feet"),
  15200. default: true
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15206. {
  15207. anthro: {
  15208. height: math.unit(9 + 2 / 12, "feet"),
  15209. weight: math.unit(270, "lb"),
  15210. name: "Anthro",
  15211. image: {
  15212. source: "./media/characters/embra/anthro.svg",
  15213. extra: 200 / 187,
  15214. bottom: 0.02
  15215. }
  15216. },
  15217. feral: {
  15218. height: math.unit(18 + 8 / 12, "feet"),
  15219. weight: math.unit(576, "lb"),
  15220. name: "Feral",
  15221. image: {
  15222. source: "./media/characters/embra/feral.svg",
  15223. extra: 152 / 137,
  15224. bottom: 0.037
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(9 + 2 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15238. {
  15239. anthro: {
  15240. height: math.unit(10 + 9 / 12, "feet"),
  15241. weight: math.unit(224, "lb"),
  15242. name: "Anthro",
  15243. image: {
  15244. source: "./media/characters/grottos/anthro.svg",
  15245. extra: 350 / 332,
  15246. bottom: 0.045
  15247. }
  15248. },
  15249. feral: {
  15250. height: math.unit(20 + 7 / 12, "feet"),
  15251. weight: math.unit(629, "lb"),
  15252. name: "Feral",
  15253. image: {
  15254. source: "./media/characters/grottos/feral.svg",
  15255. extra: 207 / 190,
  15256. bottom: 0.05
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(10 + 9 / 12, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15270. {
  15271. anthro: {
  15272. height: math.unit(9 + 6 / 12, "feet"),
  15273. weight: math.unit(298, "lb"),
  15274. name: "Anthro",
  15275. image: {
  15276. source: "./media/characters/frifna/anthro.svg",
  15277. extra: 282 / 269,
  15278. bottom: 0.015
  15279. }
  15280. },
  15281. feral: {
  15282. height: math.unit(16 + 2 / 12, "feet"),
  15283. weight: math.unit(624, "lb"),
  15284. name: "Feral",
  15285. image: {
  15286. source: "./media/characters/frifna/feral.svg"
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(9 + 6 / 12, "feet"),
  15294. default: true
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15300. {
  15301. front: {
  15302. height: math.unit(6 + 2 / 12, "feet"),
  15303. weight: math.unit(168, "lb"),
  15304. name: "Front",
  15305. image: {
  15306. source: "./media/characters/elise/front.svg",
  15307. extra: 276 / 271
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(6 + 2 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(5 + 10 / 12, "feet"),
  15324. weight: math.unit(210, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/glade/front.svg",
  15328. extra: 258 / 247,
  15329. bottom: 0.008
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(5 + 10 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(5 + 10 / 12, "feet"),
  15346. weight: math.unit(129, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/rina/front.svg",
  15350. extra: 266 / 255,
  15351. bottom: 0.005
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(5 + 10 / 12, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6 + 1 / 12, "feet"),
  15368. weight: math.unit(192, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/veronica/front.svg",
  15372. extra: 319 / 309,
  15373. bottom: 0.005
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(6 + 1 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(9 + 3 / 12, "feet"),
  15390. weight: math.unit(1100, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/braxton/front.svg",
  15394. extra: 1057 / 984,
  15395. bottom: 0.05
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(9 + 3 / 12, "feet")
  15403. },
  15404. {
  15405. name: "Giant",
  15406. height: math.unit(300, "feet"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Macro",
  15411. height: math.unit(700, "feet")
  15412. },
  15413. {
  15414. name: "Megamacro",
  15415. height: math.unit(6000, "feet")
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(6 + 7 / 12, "feet"),
  15424. weight: math.unit(150, "lb"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/blue-feyonics/front.svg",
  15428. extra: 1403 / 1306,
  15429. bottom: 0.047
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(6 + 7 / 12, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(1.8, "meters"),
  15446. weight: math.unit(60, "kg"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/maxwell/front.svg",
  15450. extra: 2060 / 1873
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Micro",
  15457. height: math.unit(1, "mm")
  15458. },
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(1.8, "meter"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Macro",
  15466. height: math.unit(30, "meters")
  15467. },
  15468. {
  15469. name: "Megamacro",
  15470. height: math.unit(10, "km")
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/jack/front.svg",
  15483. extra: 1754 / 1640,
  15484. bottom: 0.01
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(80000, "feet"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Max size",
  15496. height: math.unit(10, "lightyears")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15502. {
  15503. upright: {
  15504. height: math.unit(7, "feet"),
  15505. weight: math.unit(170, "lb"),
  15506. name: "Upright",
  15507. image: {
  15508. source: "./media/characters/cafat/upright.svg",
  15509. bottom: 0.01
  15510. }
  15511. },
  15512. uprightFull: {
  15513. height: math.unit(7, "feet"),
  15514. weight: math.unit(170, "lb"),
  15515. name: "Upright (Full)",
  15516. image: {
  15517. source: "./media/characters/cafat/upright-full.svg",
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. side: {
  15522. height: math.unit(5, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Side",
  15525. image: {
  15526. source: "./media/characters/cafat/side.svg"
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Small",
  15533. height: math.unit(7, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Large",
  15538. height: math.unit(15.5, "feet")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(6, "feet"),
  15547. weight: math.unit(150, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/verin-raharra/front.svg",
  15551. extra: 5019 / 4835,
  15552. bottom: 0.023
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(7 + 5 / 12, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Upsized",
  15564. height: math.unit(20, "feet")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(7, "feet"),
  15573. weight: math.unit(230, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/nakata/front.svg",
  15577. extra: 1.005,
  15578. bottom: 0.01
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(7, "feet"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Big",
  15590. height: math.unit(14, "feet")
  15591. },
  15592. {
  15593. name: "Macro",
  15594. height: math.unit(400, "feet")
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(4.91, "feet"),
  15603. weight: math.unit(100, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/lily/front.svg",
  15607. extra: 1585 / 1415,
  15608. bottom: 0.02
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(4.91, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15622. {
  15623. laying: {
  15624. height: math.unit(4 + 4 / 12, "feet"),
  15625. weight: math.unit(600, "lb"),
  15626. name: "Laying",
  15627. image: {
  15628. source: "./media/characters/sheila/laying.svg",
  15629. extra: 1333 / 1265,
  15630. bottom: 0.16
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(4 + 4 / 12, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(190, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/sax/front.svg",
  15651. extra: 1187 / 973,
  15652. bottom: 0.042
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Micro",
  15659. height: math.unit(4, "inches"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6, "feet"),
  15669. weight: math.unit(150, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/pandora/front.svg",
  15673. extra: 2720 / 2556,
  15674. bottom: 0.015
  15675. }
  15676. },
  15677. back: {
  15678. height: math.unit(6, "feet"),
  15679. weight: math.unit(150, "lb"),
  15680. name: "Back",
  15681. image: {
  15682. source: "./media/characters/pandora/back.svg",
  15683. extra: 2720 / 2556,
  15684. bottom: 0.01
  15685. }
  15686. },
  15687. beans: {
  15688. height: math.unit(6 / 8, "feet"),
  15689. name: "Beans",
  15690. image: {
  15691. source: "./media/characters/pandora/beans.svg"
  15692. }
  15693. },
  15694. skirt: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Skirt",
  15698. image: {
  15699. source: "./media/characters/pandora/skirt.svg",
  15700. extra: 1622 / 1525,
  15701. bottom: 0.015
  15702. }
  15703. },
  15704. hoodie: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Hoodie",
  15708. image: {
  15709. source: "./media/characters/pandora/hoodie.svg",
  15710. extra: 1622 / 1525,
  15711. bottom: 0.015
  15712. }
  15713. },
  15714. casual: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(150, "lb"),
  15717. name: "Casual",
  15718. image: {
  15719. source: "./media/characters/pandora/casual.svg",
  15720. extra: 1622 / 1525,
  15721. bottom: 0.015
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(6, "feet")
  15729. },
  15730. {
  15731. name: "Big Steppy",
  15732. height: math.unit(1, "km"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15739. {
  15740. side: {
  15741. height: math.unit(10, "feet"),
  15742. weight: math.unit(800, "kg"),
  15743. name: "Side",
  15744. image: {
  15745. source: "./media/characters/venio-darcony/side.svg",
  15746. extra: 1373 / 1003,
  15747. bottom: 0.037
  15748. }
  15749. },
  15750. front: {
  15751. height: math.unit(19, "feet"),
  15752. weight: math.unit(800, "kg"),
  15753. name: "Front",
  15754. image: {
  15755. source: "./media/characters/venio-darcony/front.svg"
  15756. }
  15757. },
  15758. back: {
  15759. height: math.unit(19, "feet"),
  15760. weight: math.unit(800, "kg"),
  15761. name: "Back",
  15762. image: {
  15763. source: "./media/characters/venio-darcony/back.svg"
  15764. }
  15765. },
  15766. sideNsfw: {
  15767. height: math.unit(10, "feet"),
  15768. weight: math.unit(800, "kg"),
  15769. name: "Side (NSFW)",
  15770. image: {
  15771. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15772. extra: 1373 / 1003,
  15773. bottom: 0.037
  15774. }
  15775. },
  15776. frontNsfw: {
  15777. height: math.unit(19, "feet"),
  15778. weight: math.unit(800, "kg"),
  15779. name: "Front (NSFW)",
  15780. image: {
  15781. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15782. }
  15783. },
  15784. backNsfw: {
  15785. height: math.unit(19, "feet"),
  15786. weight: math.unit(800, "kg"),
  15787. name: "Back (NSFW)",
  15788. image: {
  15789. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15790. }
  15791. },
  15792. sideArmored: {
  15793. height: math.unit(10, "feet"),
  15794. weight: math.unit(800, "kg"),
  15795. name: "Side (Armored)",
  15796. image: {
  15797. source: "./media/characters/venio-darcony/side-armored.svg",
  15798. extra: 1373 / 1003,
  15799. bottom: 0.037
  15800. }
  15801. },
  15802. frontArmored: {
  15803. height: math.unit(19, "feet"),
  15804. weight: math.unit(900, "kg"),
  15805. name: "Front (Armored)",
  15806. image: {
  15807. source: "./media/characters/venio-darcony/front-armored.svg"
  15808. }
  15809. },
  15810. backArmored: {
  15811. height: math.unit(19, "feet"),
  15812. weight: math.unit(900, "kg"),
  15813. name: "Back (Armored)",
  15814. image: {
  15815. source: "./media/characters/venio-darcony/back-armored.svg"
  15816. }
  15817. },
  15818. sword: {
  15819. height: math.unit(10, "feet"),
  15820. weight: math.unit(50, "lb"),
  15821. name: "Sword",
  15822. image: {
  15823. source: "./media/characters/venio-darcony/sword.svg"
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(10, "feet")
  15831. },
  15832. {
  15833. name: "Macro",
  15834. height: math.unit(130, "feet"),
  15835. default: true
  15836. },
  15837. {
  15838. name: "Macro+",
  15839. height: math.unit(240, "feet")
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(6, "feet"),
  15848. weight: math.unit(150, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/veski/front.svg",
  15852. extra: 1299 / 1225,
  15853. bottom: 0.04
  15854. }
  15855. },
  15856. back: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Back",
  15860. image: {
  15861. source: "./media/characters/veski/back.svg",
  15862. extra: 1299 / 1225,
  15863. bottom: 0.008
  15864. }
  15865. },
  15866. maw: {
  15867. height: math.unit(1.5 * 1.21, "feet"),
  15868. name: "Maw",
  15869. image: {
  15870. source: "./media/characters/veski/maw.svg"
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(2, "km"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(5 + 7 / 12, "feet"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/isabelle/front.svg",
  15890. extra: 2130 / 1976,
  15891. bottom: 0.05
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Supermicro",
  15898. height: math.unit(10, "micrometers")
  15899. },
  15900. {
  15901. name: "Micro",
  15902. height: math.unit(1, "inch")
  15903. },
  15904. {
  15905. name: "Tiny",
  15906. height: math.unit(5, "inches")
  15907. },
  15908. {
  15909. name: "Standard",
  15910. height: math.unit(5 + 7 / 12, "inches")
  15911. },
  15912. {
  15913. name: "Macro",
  15914. height: math.unit(80, "meters"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Megamacro",
  15919. height: math.unit(250, "meters")
  15920. },
  15921. {
  15922. name: "Gigamacro",
  15923. height: math.unit(5, "km")
  15924. },
  15925. {
  15926. name: "Cosmic",
  15927. height: math.unit(2.5e6, "miles")
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(6, "feet"),
  15936. weight: math.unit(150, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/hanzo/front.svg",
  15940. extra: 374 / 344,
  15941. bottom: 0.02
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Normal",
  15948. height: math.unit(8, "feet"),
  15949. default: true
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15955. {
  15956. front: {
  15957. height: math.unit(7, "feet"),
  15958. weight: math.unit(130, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/anna/front.svg",
  15962. extra: 169 / 145,
  15963. bottom: 0.06
  15964. }
  15965. },
  15966. full: {
  15967. height: math.unit(4.96, "feet"),
  15968. weight: math.unit(220, "lb"),
  15969. name: "Full",
  15970. image: {
  15971. source: "./media/characters/anna/full.svg",
  15972. extra: 138 / 114,
  15973. bottom: 0.15
  15974. }
  15975. },
  15976. tongue: {
  15977. height: math.unit(2.53, "feet"),
  15978. name: "Tongue",
  15979. image: {
  15980. source: "./media/characters/anna/tongue.svg"
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(7, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(7, "feet"),
  15997. weight: math.unit(150, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/ian-corvid/front.svg",
  16001. extra: 150 / 142,
  16002. bottom: 0.02
  16003. }
  16004. },
  16005. back: {
  16006. height: math.unit(7, "feet"),
  16007. weight: math.unit(150, "lb"),
  16008. name: "Back",
  16009. image: {
  16010. source: "./media/characters/ian-corvid/back.svg",
  16011. extra: 150 / 143,
  16012. bottom: 0.01
  16013. }
  16014. },
  16015. stomping: {
  16016. height: math.unit(7, "feet"),
  16017. weight: math.unit(150, "lb"),
  16018. name: "Stomping",
  16019. image: {
  16020. source: "./media/characters/ian-corvid/stomping.svg",
  16021. extra: 76 / 72
  16022. }
  16023. },
  16024. sitting: {
  16025. height: math.unit(7 / 1.8, "feet"),
  16026. weight: math.unit(150, "lb"),
  16027. name: "Sitting",
  16028. image: {
  16029. source: "./media/characters/ian-corvid/sitting.svg",
  16030. extra: 1400 / 1269,
  16031. bottom: 0.15
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Tiny Microw",
  16038. height: math.unit(1, "inch")
  16039. },
  16040. {
  16041. name: "Microw",
  16042. height: math.unit(6, "inches")
  16043. },
  16044. {
  16045. name: "Crow",
  16046. height: math.unit(7 + 1 / 12, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Macrow",
  16051. height: math.unit(176, "feet")
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(5 + 7 / 12, "feet"),
  16060. weight: math.unit(147, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/natalie-kellon/front.svg",
  16064. extra: 1214 / 1141,
  16065. bottom: 0.02
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Micro",
  16072. height: math.unit(1 / 16, "inch")
  16073. },
  16074. {
  16075. name: "Tiny",
  16076. height: math.unit(4, "inches")
  16077. },
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(5 + 7 / 12, "feet"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Amazon",
  16085. height: math.unit(12, "feet")
  16086. },
  16087. {
  16088. name: "Giantess",
  16089. height: math.unit(160, "meters")
  16090. },
  16091. {
  16092. name: "Titaness",
  16093. height: math.unit(800, "meters")
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(150, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/alluria/front.svg",
  16106. extra: 806 / 738,
  16107. bottom: 0.01
  16108. }
  16109. },
  16110. side: {
  16111. height: math.unit(6, "feet"),
  16112. weight: math.unit(150, "lb"),
  16113. name: "Side",
  16114. image: {
  16115. source: "./media/characters/alluria/side.svg",
  16116. extra: 800 / 750,
  16117. }
  16118. },
  16119. back: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Back",
  16123. image: {
  16124. source: "./media/characters/alluria/back.svg",
  16125. extra: 806 / 738,
  16126. }
  16127. },
  16128. frontMaid: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Front (Maid)",
  16132. image: {
  16133. source: "./media/characters/alluria/front-maid.svg",
  16134. extra: 806 / 738,
  16135. bottom: 0.01
  16136. }
  16137. },
  16138. sideMaid: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Side (Maid)",
  16142. image: {
  16143. source: "./media/characters/alluria/side-maid.svg",
  16144. extra: 800 / 750,
  16145. bottom: 0.005
  16146. }
  16147. },
  16148. backMaid: {
  16149. height: math.unit(6, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Back (Maid)",
  16152. image: {
  16153. source: "./media/characters/alluria/back-maid.svg",
  16154. extra: 806 / 738,
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Micro",
  16161. height: math.unit(6, "inches"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6, "feet"),
  16171. weight: math.unit(150, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/kyle/front.svg",
  16175. extra: 1069 / 962,
  16176. bottom: 77.228 / 1727.45
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Macro",
  16183. height: math.unit(150, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(300, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/duncan/front.svg",
  16197. extra: 1650 / 1482,
  16198. bottom: 0.05
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Macro",
  16205. height: math.unit(100, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(5 + 4 / 12, "feet"),
  16215. weight: math.unit(220, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/memory/front.svg",
  16219. extra: 3641 / 3545,
  16220. bottom: 0.03
  16221. }
  16222. },
  16223. back: {
  16224. height: math.unit(5 + 4 / 12, "feet"),
  16225. weight: math.unit(220, "lb"),
  16226. name: "Back",
  16227. image: {
  16228. source: "./media/characters/memory/back.svg",
  16229. extra: 3641 / 3545,
  16230. bottom: 0.025
  16231. }
  16232. },
  16233. frontSkirt: {
  16234. height: math.unit(5 + 4 / 12, "feet"),
  16235. weight: math.unit(220, "lb"),
  16236. name: "Front (Skirt)",
  16237. image: {
  16238. source: "./media/characters/memory/front-skirt.svg",
  16239. extra: 3641 / 3545,
  16240. bottom: 0.03
  16241. }
  16242. },
  16243. frontDress: {
  16244. height: math.unit(5 + 4 / 12, "feet"),
  16245. weight: math.unit(220, "lb"),
  16246. name: "Front (Dress)",
  16247. image: {
  16248. source: "./media/characters/memory/front-dress.svg",
  16249. extra: 3641 / 3545,
  16250. bottom: 0.03
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(6, "inches"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(5 + 4 / 12, "feet")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(4 + 11 / 12, "feet"),
  16271. weight: math.unit(100, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/luno/front.svg",
  16275. extra: 1535 / 1487,
  16276. bottom: 0.03
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Micro",
  16283. height: math.unit(3, "inches")
  16284. },
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(4 + 11 / 12, "feet"),
  16288. default: true
  16289. },
  16290. {
  16291. name: "Macro",
  16292. height: math.unit(300, "feet")
  16293. },
  16294. {
  16295. name: "Megamacro",
  16296. height: math.unit(700, "miles")
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(6 + 2 / 12, "feet"),
  16305. weight: math.unit(170, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/jamesy/front.svg",
  16309. extra: 440 / 382,
  16310. bottom: 0.005
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Micro",
  16317. height: math.unit(3, "inches")
  16318. },
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(6 + 2 / 12, "feet"),
  16322. default: true
  16323. },
  16324. {
  16325. name: "Macro",
  16326. height: math.unit(300, "feet")
  16327. },
  16328. {
  16329. name: "Megamacro",
  16330. height: math.unit(700, "miles")
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(160, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/mark/front.svg",
  16343. extra: 3300 / 3100,
  16344. bottom: 136.42 / 3440.47
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Macro",
  16351. height: math.unit(120, "meters")
  16352. },
  16353. {
  16354. name: "Bigger Macro",
  16355. height: math.unit(350, "meters")
  16356. },
  16357. {
  16358. name: "Megamacro",
  16359. height: math.unit(8, "km"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Continental",
  16364. height: math.unit(4550, "km")
  16365. },
  16366. {
  16367. name: "Planetary",
  16368. height: math.unit(65000, "km")
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(6, "feet"),
  16377. weight: math.unit(400, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/mac/front.svg",
  16381. extra: 1048 / 987.7,
  16382. bottom: 60 / 1107.6,
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Macro",
  16389. height: math.unit(500, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(5 + 2 / 12, "feet"),
  16399. weight: math.unit(190, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/bari/front.svg",
  16403. extra: 3156 / 2880,
  16404. bottom: 0.03
  16405. }
  16406. },
  16407. back: {
  16408. height: math.unit(5 + 2 / 12, "feet"),
  16409. weight: math.unit(190, "lb"),
  16410. name: "Back",
  16411. image: {
  16412. source: "./media/characters/bari/back.svg",
  16413. extra: 3260 / 2834,
  16414. bottom: 0.025
  16415. }
  16416. },
  16417. frontPlush: {
  16418. height: math.unit(5 + 2 / 12, "feet"),
  16419. weight: math.unit(190, "lb"),
  16420. name: "Front (Plush)",
  16421. image: {
  16422. source: "./media/characters/bari/front-plush.svg",
  16423. extra: 1112 / 1061,
  16424. bottom: 0.002
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Micro",
  16431. height: math.unit(3, "inches")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(5 + 2 / 12, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(20, "feet")
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(6 + 1 / 12, "feet"),
  16449. weight: math.unit(275, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/hunter-misha-raven/front.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Mortal",
  16459. height: math.unit(6 + 1 / 12, "feet")
  16460. },
  16461. {
  16462. name: "Divine",
  16463. height: math.unit(1.12134e34, "parsecs"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(6 + 3 / 12, "feet"),
  16473. weight: math.unit(220, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/max-calore/front.svg",
  16477. extra: 1700 / 1648,
  16478. bottom: 0.01
  16479. }
  16480. },
  16481. back: {
  16482. height: math.unit(6 + 3 / 12, "feet"),
  16483. weight: math.unit(220, "lb"),
  16484. name: "Back",
  16485. image: {
  16486. source: "./media/characters/max-calore/back.svg",
  16487. extra: 1700 / 1648,
  16488. bottom: 0.01
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(6 + 3 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16502. {
  16503. side: {
  16504. height: math.unit(2 + 8 / 12, "feet"),
  16505. weight: math.unit(99, "lb"),
  16506. name: "Side",
  16507. image: {
  16508. source: "./media/characters/aspen/side.svg",
  16509. extra: 152 / 138,
  16510. bottom: 0.032
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(2 + 8 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16524. {
  16525. side: {
  16526. height: math.unit(3 + 2 / 12, "feet"),
  16527. weight: math.unit(224, "lb"),
  16528. name: "Side",
  16529. image: {
  16530. source: "./media/characters/sheila-feral-wolf/side.svg",
  16531. extra: 179 / 166,
  16532. bottom: 0.03
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(3 + 2 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16546. {
  16547. side: {
  16548. height: math.unit(1 + 9 / 12, "feet"),
  16549. weight: math.unit(38, "lb"),
  16550. name: "Side",
  16551. image: {
  16552. source: "./media/characters/michelle/side.svg",
  16553. extra: 147 / 136.7,
  16554. bottom: 0.03
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(1 + 9 / 12, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(1 + 1 / 12, "feet"),
  16571. weight: math.unit(18, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/nino/front.svg"
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(1 + 1 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(1, "feet"),
  16591. weight: math.unit(16, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/viola/front.svg"
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(1, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6 + 5 / 12, "feet"),
  16611. weight: math.unit(580, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/atlas/front.svg",
  16615. extra: 298.5 / 290,
  16616. bottom: 0.015
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(6 + 5 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16630. {
  16631. side: {
  16632. height: math.unit(1 + 10 / 12, "feet"),
  16633. weight: math.unit(25, "lb"),
  16634. name: "Side",
  16635. image: {
  16636. source: "./media/characters/davy/side.svg",
  16637. extra: 200 / 170,
  16638. bottom: 0.01
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(1 + 10 / 12, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16652. {
  16653. side: {
  16654. height: math.unit(4 + 8 / 12, "feet"),
  16655. weight: math.unit(166, "lb"),
  16656. name: "Side",
  16657. image: {
  16658. source: "./media/characters/fiona/side.svg",
  16659. extra: 232 / 220,
  16660. bottom: 0.03
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(4 + 8 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16674. {
  16675. front: {
  16676. height: math.unit(2, "feet"),
  16677. weight: math.unit(62, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/lyla/front.svg",
  16681. bottom: 0.1
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(2, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16695. {
  16696. side: {
  16697. height: math.unit(1.8, "feet"),
  16698. weight: math.unit(44, "lb"),
  16699. name: "Side",
  16700. image: {
  16701. source: "./media/characters/perseus/side.svg",
  16702. bottom: 0.21
  16703. }
  16704. },
  16705. },
  16706. [
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(1.8, "feet"),
  16710. default: true
  16711. },
  16712. ]
  16713. ))
  16714. characterMakers.push(() => makeCharacter(
  16715. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16716. {
  16717. side: {
  16718. height: math.unit(4 + 2 / 12, "feet"),
  16719. weight: math.unit(20, "lb"),
  16720. name: "Side",
  16721. image: {
  16722. source: "./media/characters/remus/side.svg"
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(4 + 2 / 12, "feet"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(4 + 11 / 12, "feet"),
  16739. weight: math.unit(114, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/raf/front.svg",
  16743. bottom: 20.5 / 1863
  16744. }
  16745. },
  16746. side: {
  16747. height: math.unit(4 + 11 / 12, "feet"),
  16748. weight: math.unit(114, "lb"),
  16749. name: "Side",
  16750. image: {
  16751. source: "./media/characters/raf/side.svg",
  16752. bottom: 22 / 1822
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Micro",
  16759. height: math.unit(2, "inches")
  16760. },
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(4 + 11 / 12, "feet"),
  16764. default: true
  16765. },
  16766. {
  16767. name: "Macro",
  16768. height: math.unit(70, "feet")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(1.5, "meters"),
  16777. weight: math.unit(68, "kg"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/liam-einarr/front.svg",
  16781. extra: 2822 / 2666
  16782. }
  16783. },
  16784. back: {
  16785. height: math.unit(1.5, "meters"),
  16786. weight: math.unit(68, "kg"),
  16787. name: "Back",
  16788. image: {
  16789. source: "./media/characters/liam-einarr/back.svg",
  16790. extra: 2822 / 2666,
  16791. bottom: 0.015
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(1.5, "meters"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(150, "meters")
  16804. },
  16805. {
  16806. name: "Megamacro",
  16807. height: math.unit(35, "km")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6, "feet"),
  16816. weight: math.unit(75, "kg"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/linda/front.svg",
  16820. extra: 930 / 874,
  16821. bottom: 0.004
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(6, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(6 + 8 / 12, "feet"),
  16838. weight: math.unit(220, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/caylex/front.svg",
  16842. extra: 821 / 772,
  16843. bottom: 0.07
  16844. }
  16845. },
  16846. back: {
  16847. height: math.unit(6 + 8 / 12, "feet"),
  16848. weight: math.unit(220, "lb"),
  16849. name: "Back",
  16850. image: {
  16851. source: "./media/characters/caylex/back.svg",
  16852. extra: 821 / 772,
  16853. bottom: 0.022
  16854. }
  16855. },
  16856. hand: {
  16857. height: math.unit(1.25, "feet"),
  16858. name: "Hand",
  16859. image: {
  16860. source: "./media/characters/caylex/hand.svg"
  16861. }
  16862. },
  16863. foot: {
  16864. height: math.unit(1.6, "feet"),
  16865. name: "Foot",
  16866. image: {
  16867. source: "./media/characters/caylex/foot.svg"
  16868. }
  16869. },
  16870. armored: {
  16871. height: math.unit(6 + 8 / 12, "feet"),
  16872. weight: math.unit(250, "lb"),
  16873. name: "Armored",
  16874. image: {
  16875. source: "./media/characters/caylex/armored.svg",
  16876. extra: 1420 / 1310,
  16877. bottom: 0.045
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(6 + 8 / 12, "feet"),
  16885. default: true
  16886. },
  16887. {
  16888. name: "Normal+",
  16889. height: math.unit(12, "feet")
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(7 + 6 / 12, "feet"),
  16898. weight: math.unit(288, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/alana/front.svg",
  16902. extra: 679 / 653,
  16903. bottom: 22.5 / 701
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(7 + 6 / 12, "feet")
  16911. },
  16912. {
  16913. name: "Large",
  16914. height: math.unit(50, "feet")
  16915. },
  16916. {
  16917. name: "Macro",
  16918. height: math.unit(100, "feet"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "Macro+",
  16923. height: math.unit(200, "feet")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(6 + 1 / 12, "feet"),
  16932. weight: math.unit(210, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/hasani/front.svg",
  16936. extra: 244 / 232,
  16937. bottom: 0.01
  16938. }
  16939. },
  16940. back: {
  16941. height: math.unit(6 + 1 / 12, "feet"),
  16942. weight: math.unit(210, "lb"),
  16943. name: "Back",
  16944. image: {
  16945. source: "./media/characters/hasani/back.svg",
  16946. extra: 244 / 232,
  16947. bottom: 0.01
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(6 + 1 / 12, "feet")
  16955. },
  16956. {
  16957. name: "Macro",
  16958. height: math.unit(175, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16965. {
  16966. front: {
  16967. height: math.unit(1.82, "meters"),
  16968. weight: math.unit(140, "lb"),
  16969. name: "Front",
  16970. image: {
  16971. source: "./media/characters/nita/front.svg",
  16972. extra: 2473 / 2363,
  16973. bottom: 0.01
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(1.82, "m")
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(300, "m")
  16985. },
  16986. {
  16987. name: "Mistake Canon",
  16988. height: math.unit(0.5, "miles"),
  16989. default: true
  16990. },
  16991. {
  16992. name: "Big Mistake",
  16993. height: math.unit(13, "miles")
  16994. },
  16995. {
  16996. name: "Playing God",
  16997. height: math.unit(2450, "miles")
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(4, "feet"),
  17006. weight: math.unit(120, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/shiriko/front.svg",
  17010. extra: 195 / 188
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(4, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17024. {
  17025. front: {
  17026. height: math.unit(6, "feet"),
  17027. name: "front",
  17028. image: {
  17029. source: "./media/characters/deja/front.svg",
  17030. extra: 926 / 840,
  17031. bottom: 0.07
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Planck Length",
  17038. height: math.unit(1.6e-35, "meters")
  17039. },
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(30.48, "meters"),
  17043. default: true
  17044. },
  17045. {
  17046. name: "Universal",
  17047. height: math.unit(8.8e26, "meters")
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17053. {
  17054. side: {
  17055. height: math.unit(8, "feet"),
  17056. weight: math.unit(6300, "lb"),
  17057. name: "Side",
  17058. image: {
  17059. source: "./media/characters/anima/side.svg",
  17060. bottom: 0.035
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(8, "feet"),
  17068. default: true
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17074. {
  17075. front: {
  17076. height: math.unit(8, "feet"),
  17077. weight: math.unit(350, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/bianca/front.svg",
  17081. extra: 234 / 225,
  17082. bottom: 0.03
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(8, "feet"),
  17090. default: true
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17096. {
  17097. front: {
  17098. height: math.unit(6, "feet"),
  17099. weight: math.unit(150, "lb"),
  17100. name: "Front",
  17101. image: {
  17102. source: "./media/characters/adinia/front.svg",
  17103. extra: 1845 / 1672,
  17104. bottom: 0.02
  17105. }
  17106. },
  17107. back: {
  17108. height: math.unit(6, "feet"),
  17109. weight: math.unit(150, "lb"),
  17110. name: "Back",
  17111. image: {
  17112. source: "./media/characters/adinia/back.svg",
  17113. extra: 1845 / 1672,
  17114. bottom: 0.002
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(11 + 5 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(3, "meters"),
  17131. weight: math.unit(200, "kg"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/lykasa/front.svg",
  17135. extra: 1076 / 976,
  17136. bottom: 0.06
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(3, "meters")
  17144. },
  17145. {
  17146. name: "Kaiju",
  17147. height: math.unit(120, "meters"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Mega Kaiju",
  17152. height: math.unit(240, "km")
  17153. },
  17154. {
  17155. name: "Giga Kaiju",
  17156. height: math.unit(400, "megameters")
  17157. },
  17158. {
  17159. name: "Tera Kaiju",
  17160. height: math.unit(800, "gigameters")
  17161. },
  17162. {
  17163. name: "Kaiju Dragon Goddess",
  17164. height: math.unit(26, "zettaparsecs")
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17170. {
  17171. side: {
  17172. height: math.unit(283 / 124 * 6, "feet"),
  17173. weight: math.unit(35000, "lb"),
  17174. name: "Side",
  17175. image: {
  17176. source: "./media/characters/malfaren/side.svg",
  17177. extra: 2500 / 1010,
  17178. bottom: 0.01
  17179. }
  17180. },
  17181. front: {
  17182. height: math.unit(22.36, "feet"),
  17183. weight: math.unit(35000, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/malfaren/front.svg",
  17187. extra: 1631 / 1476,
  17188. bottom: 0.01
  17189. }
  17190. },
  17191. maw: {
  17192. height: math.unit(6.9, "feet"),
  17193. name: "Maw",
  17194. image: {
  17195. source: "./media/characters/malfaren/maw.svg"
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Big",
  17202. height: math.unit(283 / 162 * 6, "feet"),
  17203. },
  17204. {
  17205. name: "Bigger",
  17206. height: math.unit(283 / 124 * 6, "feet")
  17207. },
  17208. {
  17209. name: "Massive",
  17210. height: math.unit(283 / 92 * 6, "feet"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "👀💦",
  17215. height: math.unit(283 / 73 * 6, "feet"),
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(1.7, "m"),
  17224. weight: math.unit(70, "kg"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/kernel/front.svg",
  17228. extra: 222 / 210,
  17229. bottom: 0.007
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Nano",
  17236. height: math.unit(17, "micrometers")
  17237. },
  17238. {
  17239. name: "Micro",
  17240. height: math.unit(1.7, "mm")
  17241. },
  17242. {
  17243. name: "Small",
  17244. height: math.unit(1.7, "cm")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(1.7, "m"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(1.75, "meters"),
  17258. weight: math.unit(65, "kg"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/jayne-folest/front.svg",
  17262. extra: 2115 / 2007,
  17263. bottom: 0.02
  17264. }
  17265. },
  17266. back: {
  17267. height: math.unit(1.75, "meters"),
  17268. weight: math.unit(65, "kg"),
  17269. name: "Back",
  17270. image: {
  17271. source: "./media/characters/jayne-folest/back.svg",
  17272. extra: 2115 / 2007,
  17273. bottom: 0.005
  17274. }
  17275. },
  17276. frontClothed: {
  17277. height: math.unit(1.75, "meters"),
  17278. weight: math.unit(65, "kg"),
  17279. name: "Front (Clothed)",
  17280. image: {
  17281. source: "./media/characters/jayne-folest/front-clothed.svg",
  17282. extra: 2115 / 2007,
  17283. bottom: 0.035
  17284. }
  17285. },
  17286. hand: {
  17287. height: math.unit(1 / 1.260, "feet"),
  17288. name: "Hand",
  17289. image: {
  17290. source: "./media/characters/jayne-folest/hand.svg"
  17291. }
  17292. },
  17293. foot: {
  17294. height: math.unit(1 / 0.918, "feet"),
  17295. name: "Foot",
  17296. image: {
  17297. source: "./media/characters/jayne-folest/foot.svg"
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Micro",
  17304. height: math.unit(4, "cm")
  17305. },
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(1.75, "meters")
  17309. },
  17310. {
  17311. name: "Macro",
  17312. height: math.unit(47.5, "meters"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17319. {
  17320. front: {
  17321. height: math.unit(180, "cm"),
  17322. weight: math.unit(70, "kg"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/algier/front.svg",
  17326. extra: 596 / 572,
  17327. bottom: 0.04
  17328. }
  17329. },
  17330. back: {
  17331. height: math.unit(180, "cm"),
  17332. weight: math.unit(70, "kg"),
  17333. name: "Back",
  17334. image: {
  17335. source: "./media/characters/algier/back.svg",
  17336. extra: 596 / 572,
  17337. bottom: 0.025
  17338. }
  17339. },
  17340. frontdressed: {
  17341. height: math.unit(180, "cm"),
  17342. weight: math.unit(150, "kg"),
  17343. name: "Front-dressed",
  17344. image: {
  17345. source: "./media/characters/algier/front-dressed.svg",
  17346. extra: 596 / 572,
  17347. bottom: 0.038
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Micro",
  17354. height: math.unit(5, "cm")
  17355. },
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(180, "cm"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Macro",
  17363. height: math.unit(64, "m")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17369. {
  17370. upright: {
  17371. height: math.unit(7, "feet"),
  17372. weight: math.unit(300, "lb"),
  17373. name: "Upright",
  17374. image: {
  17375. source: "./media/characters/pretzel/upright.svg",
  17376. extra: 534 / 522,
  17377. bottom: 0.065
  17378. }
  17379. },
  17380. sprawling: {
  17381. height: math.unit(3.75, "feet"),
  17382. weight: math.unit(300, "lb"),
  17383. name: "Sprawling",
  17384. image: {
  17385. source: "./media/characters/pretzel/sprawling.svg",
  17386. extra: 314 / 281,
  17387. bottom: 0.1
  17388. }
  17389. },
  17390. tongue: {
  17391. height: math.unit(2, "feet"),
  17392. name: "Tongue",
  17393. image: {
  17394. source: "./media/characters/pretzel/tongue.svg"
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(7, "feet"),
  17402. default: true
  17403. },
  17404. {
  17405. name: "Oversized",
  17406. height: math.unit(15, "feet")
  17407. },
  17408. {
  17409. name: "Huge",
  17410. height: math.unit(30, "feet")
  17411. },
  17412. {
  17413. name: "Macro",
  17414. height: math.unit(250, "feet")
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17420. {
  17421. sideFront: {
  17422. height: math.unit(5 + 2 / 12, "feet"),
  17423. weight: math.unit(120, "lb"),
  17424. name: "Front Side",
  17425. image: {
  17426. source: "./media/characters/roxi/side-front.svg",
  17427. extra: 2924 / 2717,
  17428. bottom: 0.08
  17429. }
  17430. },
  17431. sideBack: {
  17432. height: math.unit(5 + 2 / 12, "feet"),
  17433. weight: math.unit(120, "lb"),
  17434. name: "Back Side",
  17435. image: {
  17436. source: "./media/characters/roxi/side-back.svg",
  17437. extra: 2904 / 2693,
  17438. bottom: 0.06
  17439. }
  17440. },
  17441. front: {
  17442. height: math.unit(5 + 2 / 12, "feet"),
  17443. weight: math.unit(120, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/roxi/front.svg",
  17447. extra: 2028 / 1907,
  17448. bottom: 0.01
  17449. }
  17450. },
  17451. frontAlt: {
  17452. height: math.unit(5 + 2 / 12, "feet"),
  17453. weight: math.unit(120, "lb"),
  17454. name: "Front (Alt)",
  17455. image: {
  17456. source: "./media/characters/roxi/front-alt.svg",
  17457. extra: 1828 / 1798,
  17458. bottom: 0.01
  17459. }
  17460. },
  17461. sitting: {
  17462. height: math.unit(2.8, "feet"),
  17463. weight: math.unit(120, "lb"),
  17464. name: "Sitting",
  17465. image: {
  17466. source: "./media/characters/roxi/sitting.svg",
  17467. extra: 2660 / 2462,
  17468. bottom: 0.1
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(5 + 2 / 12, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17482. {
  17483. side: {
  17484. height: math.unit(55, "feet"),
  17485. weight: math.unit(153, "tons"),
  17486. name: "Side",
  17487. image: {
  17488. source: "./media/characters/shadow/side.svg",
  17489. extra: 701 / 628,
  17490. bottom: 0.02
  17491. }
  17492. },
  17493. flying: {
  17494. height: math.unit(145, "feet"),
  17495. weight: math.unit(153, "tons"),
  17496. name: "Flying",
  17497. image: {
  17498. source: "./media/characters/shadow/flying.svg"
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(55, "feet"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6, "feet"),
  17515. weight: math.unit(200, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/marcie/front.svg",
  17519. extra: 960 / 876,
  17520. bottom: 58 / 1017.87
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Macro",
  17527. height: math.unit(1, "mile"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(7, "feet"),
  17537. weight: math.unit(200, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/kachina/front.svg",
  17541. extra: 1290.68 / 1119,
  17542. bottom: 36.5 / 1327.18
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(7, "feet"),
  17550. default: true
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17556. {
  17557. looking: {
  17558. height: math.unit(2, "meters"),
  17559. weight: math.unit(300, "kg"),
  17560. name: "Looking",
  17561. image: {
  17562. source: "./media/characters/kash/looking.svg",
  17563. extra: 474 / 344,
  17564. bottom: 0.03
  17565. }
  17566. },
  17567. side: {
  17568. height: math.unit(2, "meters"),
  17569. weight: math.unit(300, "kg"),
  17570. name: "Side",
  17571. image: {
  17572. source: "./media/characters/kash/side.svg",
  17573. extra: 302 / 251,
  17574. bottom: 0.03
  17575. }
  17576. },
  17577. front: {
  17578. height: math.unit(2, "meters"),
  17579. weight: math.unit(300, "kg"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/kash/front.svg",
  17583. extra: 495 / 360,
  17584. bottom: 0.015
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(2, "meters"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Big",
  17596. height: math.unit(3, "meters")
  17597. },
  17598. {
  17599. name: "Large",
  17600. height: math.unit(5, "meters")
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17606. {
  17607. feeding: {
  17608. height: math.unit(6.7, "feet"),
  17609. weight: math.unit(350, "lb"),
  17610. name: "Feeding",
  17611. image: {
  17612. source: "./media/characters/lalim/feeding.svg",
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(6.7, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(9.5, "feet"),
  17629. weight: math.unit(600, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/de'vout/front.svg",
  17633. extra: 1443 / 1328,
  17634. bottom: 0.025
  17635. }
  17636. },
  17637. back: {
  17638. height: math.unit(9.5, "feet"),
  17639. weight: math.unit(600, "lb"),
  17640. name: "Back",
  17641. image: {
  17642. source: "./media/characters/de'vout/back.svg",
  17643. extra: 1443 / 1328
  17644. }
  17645. },
  17646. frontDressed: {
  17647. height: math.unit(9.5, "feet"),
  17648. weight: math.unit(600, "lb"),
  17649. name: "Front (Dressed",
  17650. image: {
  17651. source: "./media/characters/de'vout/front-dressed.svg",
  17652. extra: 1443 / 1328,
  17653. bottom: 0.025
  17654. }
  17655. },
  17656. backDressed: {
  17657. height: math.unit(9.5, "feet"),
  17658. weight: math.unit(600, "lb"),
  17659. name: "Back (Dressed",
  17660. image: {
  17661. source: "./media/characters/de'vout/back-dressed.svg",
  17662. extra: 1443 / 1328
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(9.5, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(8, "feet"),
  17679. weight: math.unit(225, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/talana/front.svg",
  17683. extra: 1410 / 1300,
  17684. bottom: 0.015
  17685. }
  17686. },
  17687. frontDressed: {
  17688. height: math.unit(8, "feet"),
  17689. weight: math.unit(225, "lb"),
  17690. name: "Front (Dressed",
  17691. image: {
  17692. source: "./media/characters/talana/front-dressed.svg",
  17693. extra: 1410 / 1300,
  17694. bottom: 0.015
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(8, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17708. {
  17709. side: {
  17710. height: math.unit(7.2, "feet"),
  17711. weight: math.unit(150, "lb"),
  17712. name: "Side",
  17713. image: {
  17714. source: "./media/characters/xeauvok/side.svg",
  17715. extra: 1975 / 1523,
  17716. bottom: 0.07
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(7.2, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17730. {
  17731. side: {
  17732. height: math.unit(10, "feet"),
  17733. weight: math.unit(900, "kg"),
  17734. name: "Side",
  17735. image: {
  17736. source: "./media/characters/zara/side.svg",
  17737. extra: 504 / 498
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(10, "feet"),
  17745. default: true
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17751. {
  17752. side: {
  17753. height: math.unit(6, "feet"),
  17754. weight: math.unit(150, "lb"),
  17755. name: "Side",
  17756. image: {
  17757. source: "./media/characters/richard-dragon/side.svg",
  17758. extra: 845 / 340,
  17759. bottom: 0.017
  17760. }
  17761. },
  17762. maw: {
  17763. height: math.unit(2.97, "feet"),
  17764. name: "Maw",
  17765. image: {
  17766. source: "./media/characters/richard-dragon/maw.svg"
  17767. }
  17768. },
  17769. },
  17770. [
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(4, "feet"),
  17778. weight: math.unit(100, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/richard-smeargle/front.svg",
  17782. extra: 2952 / 2820,
  17783. bottom: 0.028
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(4, "feet"),
  17791. default: true
  17792. },
  17793. {
  17794. name: "Dynamax",
  17795. height: math.unit(20, "meters")
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(6, "feet"),
  17804. weight: math.unit(110, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/klay/front.svg",
  17808. extra: 962 / 883,
  17809. bottom: 0.04
  17810. }
  17811. },
  17812. back: {
  17813. height: math.unit(6, "feet"),
  17814. weight: math.unit(110, "lb"),
  17815. name: "Back",
  17816. image: {
  17817. source: "./media/characters/klay/back.svg",
  17818. extra: 962 / 883
  17819. }
  17820. },
  17821. beans: {
  17822. height: math.unit(1.15, "feet"),
  17823. name: "Beans",
  17824. image: {
  17825. source: "./media/characters/klay/beans.svg"
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Micro",
  17832. height: math.unit(6, "inches")
  17833. },
  17834. {
  17835. name: "Mini",
  17836. height: math.unit(3, "feet")
  17837. },
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(6, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Big",
  17845. height: math.unit(25, "feet")
  17846. },
  17847. {
  17848. name: "Macro",
  17849. height: math.unit(100, "feet")
  17850. },
  17851. {
  17852. name: "Megamacro",
  17853. height: math.unit(400, "feet")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17859. {
  17860. front: {
  17861. height: math.unit(6, "feet"),
  17862. weight: math.unit(160, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/marcus/front.svg",
  17866. extra: 734 / 676,
  17867. bottom: 0.03
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Little",
  17874. height: math.unit(6, "feet")
  17875. },
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(110, "feet"),
  17879. default: true
  17880. },
  17881. {
  17882. name: "Macro",
  17883. height: math.unit(250, "feet")
  17884. },
  17885. {
  17886. name: "Megamacro",
  17887. height: math.unit(1000, "feet")
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17893. {
  17894. front: {
  17895. height: math.unit(7, "feet"),
  17896. weight: math.unit(275, "lb"),
  17897. name: "Front",
  17898. image: {
  17899. source: "./media/characters/claude-delroute/front.svg",
  17900. extra: 230 / 214,
  17901. bottom: 0.007
  17902. }
  17903. },
  17904. side: {
  17905. height: math.unit(7, "feet"),
  17906. weight: math.unit(275, "lb"),
  17907. name: "Side",
  17908. image: {
  17909. source: "./media/characters/claude-delroute/side.svg",
  17910. extra: 222 / 214,
  17911. bottom: 0.01
  17912. }
  17913. },
  17914. back: {
  17915. height: math.unit(7, "feet"),
  17916. weight: math.unit(275, "lb"),
  17917. name: "Back",
  17918. image: {
  17919. source: "./media/characters/claude-delroute/back.svg",
  17920. extra: 230 / 214,
  17921. bottom: 0.015
  17922. }
  17923. },
  17924. maw: {
  17925. height: math.unit(0.6407, "meters"),
  17926. name: "Maw",
  17927. image: {
  17928. source: "./media/characters/claude-delroute/maw.svg"
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(7, "feet"),
  17936. default: true
  17937. },
  17938. {
  17939. name: "Lorge",
  17940. height: math.unit(20, "feet")
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(8 + 4 / 12, "feet"),
  17949. weight: math.unit(600, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/dragonien/front.svg",
  17953. extra: 100 / 94,
  17954. bottom: 3.3 / 103.3445
  17955. }
  17956. },
  17957. back: {
  17958. height: math.unit(8 + 4 / 12, "feet"),
  17959. weight: math.unit(600, "lb"),
  17960. name: "Back",
  17961. image: {
  17962. source: "./media/characters/dragonien/back.svg",
  17963. extra: 776 / 746,
  17964. bottom: 6.4 / 782.0616
  17965. }
  17966. },
  17967. foot: {
  17968. height: math.unit(1.54, "feet"),
  17969. name: "Foot",
  17970. image: {
  17971. source: "./media/characters/dragonien/foot.svg",
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(8 + 4 / 12, "feet"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Macro",
  17983. height: math.unit(200, "feet")
  17984. },
  17985. {
  17986. name: "Megamacro",
  17987. height: math.unit(1, "mile")
  17988. },
  17989. {
  17990. name: "Gigamacro",
  17991. height: math.unit(1000, "miles")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(5 + 2 / 12, "feet"),
  18000. weight: math.unit(110, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/desta/front.svg",
  18004. extra: 767 / 726,
  18005. bottom: 11.7 / 779
  18006. }
  18007. },
  18008. back: {
  18009. height: math.unit(5 + 2 / 12, "feet"),
  18010. weight: math.unit(110, "lb"),
  18011. name: "Back",
  18012. image: {
  18013. source: "./media/characters/desta/back.svg",
  18014. extra: 777 / 728,
  18015. bottom: 6 / 784
  18016. }
  18017. },
  18018. frontAlt: {
  18019. height: math.unit(5 + 2 / 12, "feet"),
  18020. weight: math.unit(110, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/desta/front-alt.svg",
  18024. extra: 1482 / 1417
  18025. }
  18026. },
  18027. side: {
  18028. height: math.unit(5 + 2 / 12, "feet"),
  18029. weight: math.unit(110, "lb"),
  18030. name: "Side",
  18031. image: {
  18032. source: "./media/characters/desta/side.svg",
  18033. extra: 2579 / 2491,
  18034. bottom: 0.053
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Micro",
  18041. height: math.unit(6, "inches")
  18042. },
  18043. {
  18044. name: "Normal",
  18045. height: math.unit(5 + 2 / 12, "feet"),
  18046. default: true
  18047. },
  18048. {
  18049. name: "Macro",
  18050. height: math.unit(62, "feet")
  18051. },
  18052. {
  18053. name: "Megamacro",
  18054. height: math.unit(1800, "feet")
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(10, "feet"),
  18063. weight: math.unit(700, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/storm-alystar/front.svg",
  18067. extra: 2112 / 1898,
  18068. bottom: 0.034
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Micro",
  18075. height: math.unit(3.5, "inches")
  18076. },
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(10, "feet"),
  18080. default: true
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(400, "feet")
  18085. },
  18086. {
  18087. name: "Deific",
  18088. height: math.unit(60, "miles")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(2.35, "meters"),
  18097. weight: math.unit(119, "kg"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/ilia/front.svg",
  18101. extra: 1285 / 1255,
  18102. bottom: 0.06
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(2.35, "meters")
  18110. },
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(140, "meters"),
  18114. default: true
  18115. },
  18116. {
  18117. name: "Megamacro",
  18118. height: math.unit(100, "miles")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(6 + 5 / 12, "feet"),
  18127. weight: math.unit(190, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/kingdead/front.svg",
  18131. extra: 1228 / 1177
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Micro",
  18138. height: math.unit(7, "inches")
  18139. },
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(6 + 5 / 12, "feet")
  18143. },
  18144. {
  18145. name: "Macro",
  18146. height: math.unit(150, "feet"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "Megamacro",
  18151. height: math.unit(200, "miles")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(8, "feet"),
  18160. weight: math.unit(600, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/kyrehx/front.svg",
  18164. extra: 1195 / 1095,
  18165. bottom: 0.034
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Micro",
  18172. height: math.unit(2, "inches")
  18173. },
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(8, "feet"),
  18177. default: true
  18178. },
  18179. {
  18180. name: "Macro",
  18181. height: math.unit(255, "feet")
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18190. weight: math.unit(184, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/xang/front.svg",
  18194. extra: 845 / 755
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(0.935 * 146, "feet")
  18207. },
  18208. {
  18209. name: "Megamacro",
  18210. height: math.unit(0.935 * 3, "miles")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18216. {
  18217. frontDressed: {
  18218. height: math.unit(5 + 7 / 12, "feet"),
  18219. weight: math.unit(140, "lb"),
  18220. name: "Front (Dressed)",
  18221. image: {
  18222. source: "./media/characters/doc-weardno/front-dressed.svg",
  18223. extra: 263 / 234
  18224. }
  18225. },
  18226. backDressed: {
  18227. height: math.unit(5 + 7 / 12, "feet"),
  18228. weight: math.unit(140, "lb"),
  18229. name: "Back (Dressed)",
  18230. image: {
  18231. source: "./media/characters/doc-weardno/back-dressed.svg",
  18232. extra: 266 / 238
  18233. }
  18234. },
  18235. front: {
  18236. height: math.unit(5 + 7 / 12, "feet"),
  18237. weight: math.unit(140, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/doc-weardno/front.svg",
  18241. extra: 254 / 233
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Micro",
  18248. height: math.unit(3, "inches")
  18249. },
  18250. {
  18251. name: "Normal",
  18252. height: math.unit(5 + 7 / 12, "feet"),
  18253. default: true
  18254. },
  18255. {
  18256. name: "Macro",
  18257. height: math.unit(25, "feet")
  18258. },
  18259. {
  18260. name: "Megamacro",
  18261. height: math.unit(2, "miles")
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18267. {
  18268. front: {
  18269. height: math.unit(6 + 2 / 12, "feet"),
  18270. weight: math.unit(153, "lb"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/seth-whilst/front.svg",
  18274. bottom: 0.07
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Micro",
  18281. height: math.unit(5, "inches")
  18282. },
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(6 + 2 / 12, "feet"),
  18286. default: true
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(3, "inches"),
  18295. weight: math.unit(8, "grams"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/pocket-jabari/front.svg",
  18299. extra: 1024 / 974,
  18300. bottom: 0.039
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Minimicro",
  18307. height: math.unit(8, "mm")
  18308. },
  18309. {
  18310. name: "Micro",
  18311. height: math.unit(3, "inches"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Normal",
  18316. height: math.unit(3, "feet")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(15, "feet"),
  18325. weight: math.unit(3280, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/sapphy/front.svg",
  18329. extra: 671 / 577,
  18330. bottom: 0.085
  18331. }
  18332. },
  18333. back: {
  18334. height: math.unit(15, "feet"),
  18335. weight: math.unit(3280, "lb"),
  18336. name: "Back",
  18337. image: {
  18338. source: "./media/characters/sapphy/back.svg",
  18339. extra: 631 / 607,
  18340. bottom: 0.045
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(15, "feet")
  18348. },
  18349. {
  18350. name: "Casual Macro",
  18351. height: math.unit(120, "feet")
  18352. },
  18353. {
  18354. name: "Macro",
  18355. height: math.unit(2150, "feet"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Megamacro",
  18360. height: math.unit(8, "miles")
  18361. },
  18362. {
  18363. name: "Galaxy Mom",
  18364. height: math.unit(6, "megalightyears")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(6, "feet"),
  18373. weight: math.unit(170, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/kiro/front.svg",
  18377. extra: 1064 / 1012,
  18378. bottom: 0.052
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Micro",
  18385. height: math.unit(6, "inches")
  18386. },
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(6, "feet"),
  18390. default: true
  18391. },
  18392. {
  18393. name: "Macro",
  18394. height: math.unit(72, "feet")
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(5 + 9 / 12, "feet"),
  18403. weight: math.unit(175, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/irishfox/front.svg",
  18407. extra: 1912 / 1680,
  18408. bottom: 0.02
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Nano",
  18415. height: math.unit(1, "mm")
  18416. },
  18417. {
  18418. name: "Micro",
  18419. height: math.unit(2, "inches")
  18420. },
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(5 + 9 / 12, "feet"),
  18424. default: true
  18425. },
  18426. {
  18427. name: "Macro",
  18428. height: math.unit(45, "feet")
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18434. {
  18435. front: {
  18436. height: math.unit(6 + 1 / 12, "feet"),
  18437. weight: math.unit(75, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/aronai-sieyes/front.svg",
  18441. extra: 1556 / 1480,
  18442. bottom: 0.015
  18443. }
  18444. },
  18445. side: {
  18446. height: math.unit(6 + 1 / 12, "feet"),
  18447. weight: math.unit(75, "lb"),
  18448. name: "Side",
  18449. image: {
  18450. source: "./media/characters/aronai-sieyes/side.svg",
  18451. extra: 1433 / 1390,
  18452. bottom: 0.0393
  18453. }
  18454. },
  18455. back: {
  18456. height: math.unit(6 + 1 / 12, "feet"),
  18457. weight: math.unit(75, "lb"),
  18458. name: "Back",
  18459. image: {
  18460. source: "./media/characters/aronai-sieyes/back.svg",
  18461. extra: 1544 / 1494,
  18462. bottom: 0.02
  18463. }
  18464. },
  18465. frontClothed: {
  18466. height: math.unit(6 + 1 / 12, "feet"),
  18467. weight: math.unit(75, "lb"),
  18468. name: "Front (Clothed)",
  18469. image: {
  18470. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18471. extra: 1582 / 1527
  18472. }
  18473. },
  18474. feral: {
  18475. height: math.unit(18, "feet"),
  18476. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18477. name: "Feral",
  18478. image: {
  18479. source: "./media/characters/aronai-sieyes/feral.svg",
  18480. extra: 1530 / 1240,
  18481. bottom: 0.035
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Micro",
  18488. height: math.unit(2, "inches")
  18489. },
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(6 + 1 / 12, "feet"),
  18493. default: true
  18494. }
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(12, "feet"),
  18502. weight: math.unit(410, "kg"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/xuna/front.svg",
  18506. extra: 2184 / 1980
  18507. }
  18508. },
  18509. side: {
  18510. height: math.unit(12, "feet"),
  18511. weight: math.unit(410, "kg"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/xuna/side.svg",
  18515. extra: 2184 / 1980
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(12, "feet"),
  18520. weight: math.unit(410, "kg"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/xuna/back.svg",
  18524. extra: 2184 / 1980
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Nano glow",
  18531. height: math.unit(10, "nm")
  18532. },
  18533. {
  18534. name: "Micro floof",
  18535. height: math.unit(0.3, "m")
  18536. },
  18537. {
  18538. name: "Huggable softy boi",
  18539. height: math.unit(3.6576, "m"),
  18540. default: true
  18541. },
  18542. {
  18543. name: "Admirable floof",
  18544. height: math.unit(80, "meters")
  18545. },
  18546. {
  18547. name: "Gentle macro",
  18548. height: math.unit(300, "meters")
  18549. },
  18550. {
  18551. name: "Very careful floof",
  18552. height: math.unit(3200, "meters")
  18553. },
  18554. {
  18555. name: "The mega floof",
  18556. height: math.unit(36000, "meters")
  18557. },
  18558. {
  18559. name: "Giga-fur-Wicker",
  18560. height: math.unit(4800000, "meters")
  18561. },
  18562. {
  18563. name: "Licky world",
  18564. height: math.unit(20000000, "meters")
  18565. },
  18566. {
  18567. name: "Floofy cyan sun",
  18568. height: math.unit(1500000000, "meters")
  18569. },
  18570. {
  18571. name: "Milky Wicker",
  18572. height: math.unit(1000000000000000000000, "meters")
  18573. },
  18574. {
  18575. name: "The observing Wicker",
  18576. height: math.unit(999999999999999999999999999, "meters")
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18582. {
  18583. front: {
  18584. height: math.unit(5 + 9 / 12, "feet"),
  18585. weight: math.unit(150, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/arokha-sieyes/front.svg",
  18589. extra: 1425 / 1284,
  18590. bottom: 0.05
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(5 + 9 / 12, "feet")
  18598. },
  18599. {
  18600. name: "Macro",
  18601. height: math.unit(30, "meters"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18608. {
  18609. front: {
  18610. height: math.unit(6, "feet"),
  18611. weight: math.unit(180, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/arokh-sieyes/front.svg",
  18615. extra: 1830 / 1769,
  18616. bottom: 0.01
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(6, "feet")
  18624. },
  18625. {
  18626. name: "Macro",
  18627. height: math.unit(30, "meters"),
  18628. default: true
  18629. },
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18634. {
  18635. side: {
  18636. height: math.unit(13 + 1 / 12, "feet"),
  18637. weight: math.unit(8.5, "tonnes"),
  18638. name: "Side",
  18639. image: {
  18640. source: "./media/characters/goldeneye/side.svg",
  18641. extra: 1182 / 778,
  18642. bottom: 0.067
  18643. }
  18644. },
  18645. paw: {
  18646. height: math.unit(3.4, "feet"),
  18647. name: "Paw",
  18648. image: {
  18649. source: "./media/characters/goldeneye/paw.svg"
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(13 + 1 / 12, "feet"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18663. {
  18664. front: {
  18665. height: math.unit(6 + 1 / 12, "feet"),
  18666. weight: math.unit(210, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/leonardo-lycheborne/front.svg",
  18670. extra: 390 / 365,
  18671. bottom: 0.032
  18672. }
  18673. },
  18674. side: {
  18675. height: math.unit(6 + 1 / 12, "feet"),
  18676. weight: math.unit(210, "lb"),
  18677. name: "Side",
  18678. image: {
  18679. source: "./media/characters/leonardo-lycheborne/side.svg",
  18680. extra: 390 / 365,
  18681. bottom: 0.005
  18682. }
  18683. },
  18684. back: {
  18685. height: math.unit(6 + 1 / 12, "feet"),
  18686. weight: math.unit(210, "lb"),
  18687. name: "Back",
  18688. image: {
  18689. source: "./media/characters/leonardo-lycheborne/back.svg",
  18690. extra: 392 / 366,
  18691. bottom: 0.01
  18692. }
  18693. },
  18694. hand: {
  18695. height: math.unit(1.08, "feet"),
  18696. name: "Hand",
  18697. image: {
  18698. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18699. }
  18700. },
  18701. foot: {
  18702. height: math.unit(1.32, "feet"),
  18703. name: "Foot",
  18704. image: {
  18705. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18706. }
  18707. },
  18708. were: {
  18709. height: math.unit(20, "feet"),
  18710. weight: math.unit(7800, "lb"),
  18711. name: "Were",
  18712. image: {
  18713. source: "./media/characters/leonardo-lycheborne/were.svg",
  18714. extra: 308 / 294,
  18715. bottom: 0.048
  18716. }
  18717. },
  18718. feral: {
  18719. height: math.unit(7.5, "feet"),
  18720. weight: math.unit(600, "lb"),
  18721. name: "Feral",
  18722. image: {
  18723. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18724. extra: 210 / 186,
  18725. bottom: 0.108
  18726. }
  18727. },
  18728. taur: {
  18729. height: math.unit(11, "feet"),
  18730. weight: math.unit(3300, "lb"),
  18731. name: "Taur",
  18732. image: {
  18733. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18734. extra: 320 / 303,
  18735. bottom: 0.025
  18736. }
  18737. },
  18738. barghest: {
  18739. height: math.unit(11, "feet"),
  18740. weight: math.unit(1300, "lb"),
  18741. name: "Barghest",
  18742. image: {
  18743. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18744. extra: 323 / 302,
  18745. bottom: 0.027
  18746. }
  18747. },
  18748. dick: {
  18749. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18750. name: "Dick",
  18751. image: {
  18752. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18753. }
  18754. },
  18755. dickWere: {
  18756. height: math.unit((20) / 3.8, "feet"),
  18757. name: "Dick (Were)",
  18758. image: {
  18759. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(10, "feet"),
  18776. weight: math.unit(350, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/jet/front.svg",
  18780. extra: 2050 / 1980,
  18781. bottom: 0.013
  18782. }
  18783. },
  18784. back: {
  18785. height: math.unit(10, "feet"),
  18786. weight: math.unit(350, "lb"),
  18787. name: "Back",
  18788. image: {
  18789. source: "./media/characters/jet/back.svg",
  18790. extra: 2050 / 1980,
  18791. bottom: 0.013
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Micro",
  18798. height: math.unit(6, "inches")
  18799. },
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(10, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(100, "feet")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(15, "feet"),
  18816. weight: math.unit(2800, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/tanarath/front.svg",
  18820. extra: 2392 / 2220,
  18821. bottom: 0.03
  18822. }
  18823. },
  18824. back: {
  18825. height: math.unit(15, "feet"),
  18826. weight: math.unit(2800, "lb"),
  18827. name: "Back",
  18828. image: {
  18829. source: "./media/characters/tanarath/back.svg",
  18830. extra: 2392 / 2220,
  18831. bottom: 0.03
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(15, "feet"),
  18839. default: true
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(7 + 1 / 12, "feet"),
  18848. weight: math.unit(175, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/patty-cattybatty/front.svg",
  18852. extra: 908 / 874,
  18853. bottom: 0.025
  18854. }
  18855. },
  18856. },
  18857. [
  18858. {
  18859. name: "Micro",
  18860. height: math.unit(1, "inch")
  18861. },
  18862. {
  18863. name: "Normal",
  18864. height: math.unit(7 + 1 / 12, "feet")
  18865. },
  18866. {
  18867. name: "Mini Macro",
  18868. height: math.unit(155, "feet")
  18869. },
  18870. {
  18871. name: "Macro",
  18872. height: math.unit(1077, "feet")
  18873. },
  18874. {
  18875. name: "Mega Macro",
  18876. height: math.unit(47650, "feet"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Giga Macro",
  18881. height: math.unit(440, "miles")
  18882. },
  18883. {
  18884. name: "Tera Macro",
  18885. height: math.unit(8700, "miles")
  18886. },
  18887. {
  18888. name: "Planetary Macro",
  18889. height: math.unit(32700, "miles")
  18890. },
  18891. {
  18892. name: "Solar Macro",
  18893. height: math.unit(550000, "miles")
  18894. },
  18895. {
  18896. name: "Celestial Macro",
  18897. height: math.unit(2.5, "AU")
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(4 + 5 / 12, "feet"),
  18906. weight: math.unit(90, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/cappu/front.svg",
  18910. extra: 1247 / 1152,
  18911. bottom: 0.012
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(4 + 5 / 12, "feet"),
  18919. default: true
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18925. {
  18926. frontDressed: {
  18927. height: math.unit(70, "cm"),
  18928. weight: math.unit(6, "kg"),
  18929. name: "Front (Dressed)",
  18930. image: {
  18931. source: "./media/characters/sebi/front-dressed.svg",
  18932. extra: 713.5 / 686.5,
  18933. bottom: 0.003
  18934. }
  18935. },
  18936. front: {
  18937. height: math.unit(70, "cm"),
  18938. weight: math.unit(5, "kg"),
  18939. name: "Front",
  18940. image: {
  18941. source: "./media/characters/sebi/front.svg",
  18942. extra: 713.5 / 686.5,
  18943. bottom: 0.003
  18944. }
  18945. }
  18946. },
  18947. [
  18948. {
  18949. name: "Normal",
  18950. height: math.unit(70, "cm"),
  18951. default: true
  18952. },
  18953. {
  18954. name: "Macro",
  18955. height: math.unit(8, "meters")
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18961. {
  18962. front: {
  18963. height: math.unit(6, "feet"),
  18964. weight: math.unit(150, "lb"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/typhek/front.svg",
  18968. extra: 1948 / 1929,
  18969. bottom: 0.025
  18970. }
  18971. },
  18972. side: {
  18973. height: math.unit(6, "feet"),
  18974. weight: math.unit(150, "lb"),
  18975. name: "Side",
  18976. image: {
  18977. source: "./media/characters/typhek/side.svg",
  18978. extra: 2034 / 2010,
  18979. bottom: 0.003
  18980. }
  18981. },
  18982. back: {
  18983. height: math.unit(6, "feet"),
  18984. weight: math.unit(150, "lb"),
  18985. name: "Back",
  18986. image: {
  18987. source: "./media/characters/typhek/back.svg",
  18988. extra: 2005 / 1978,
  18989. bottom: 0.004
  18990. }
  18991. },
  18992. palm: {
  18993. height: math.unit(1.2, "feet"),
  18994. name: "Palm",
  18995. image: {
  18996. source: "./media/characters/typhek/palm.svg"
  18997. }
  18998. },
  18999. fist: {
  19000. height: math.unit(1.1, "feet"),
  19001. name: "Fist",
  19002. image: {
  19003. source: "./media/characters/typhek/fist.svg"
  19004. }
  19005. },
  19006. foot: {
  19007. height: math.unit(1.57, "feet"),
  19008. name: "Foot",
  19009. image: {
  19010. source: "./media/characters/typhek/foot.svg"
  19011. }
  19012. },
  19013. sole: {
  19014. height: math.unit(2.05, "feet"),
  19015. name: "Sole",
  19016. image: {
  19017. source: "./media/characters/typhek/sole.svg"
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(40, "stories"),
  19025. default: true
  19026. },
  19027. {
  19028. name: "Megamacro",
  19029. height: math.unit(1, "mile")
  19030. },
  19031. {
  19032. name: "Gigamacro",
  19033. height: math.unit(4000, "solarradii")
  19034. },
  19035. {
  19036. name: "Universal",
  19037. height: math.unit(1.1, "universes")
  19038. }
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19043. {
  19044. side: {
  19045. height: math.unit(5 + 7 / 12, "feet"),
  19046. weight: math.unit(150, "lb"),
  19047. name: "Side",
  19048. image: {
  19049. source: "./media/characters/kassy/side.svg",
  19050. extra: 1280 / 1225,
  19051. bottom: 0.002
  19052. }
  19053. },
  19054. front: {
  19055. height: math.unit(5 + 7 / 12, "feet"),
  19056. weight: math.unit(150, "lb"),
  19057. name: "Front",
  19058. image: {
  19059. source: "./media/characters/kassy/front.svg",
  19060. extra: 1280 / 1225,
  19061. bottom: 0.025
  19062. }
  19063. },
  19064. back: {
  19065. height: math.unit(5 + 7 / 12, "feet"),
  19066. weight: math.unit(150, "lb"),
  19067. name: "Back",
  19068. image: {
  19069. source: "./media/characters/kassy/back.svg",
  19070. extra: 1280 / 1225,
  19071. bottom: 0.002
  19072. }
  19073. },
  19074. foot: {
  19075. height: math.unit(1.266, "feet"),
  19076. name: "Foot",
  19077. image: {
  19078. source: "./media/characters/kassy/foot.svg"
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(5 + 7 / 12, "feet")
  19086. },
  19087. {
  19088. name: "Macro",
  19089. height: math.unit(137, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Megamacro",
  19094. height: math.unit(1, "mile")
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(6 + 1 / 12, "feet"),
  19103. weight: math.unit(200, "lb"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/neil/front.svg",
  19107. extra: 1326 / 1250,
  19108. bottom: 0.023
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 1 / 12, "feet"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(200, "feet")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(5 + 9 / 12, "feet"),
  19129. weight: math.unit(190, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/atticus/front.svg",
  19133. extra: 2934 / 2785,
  19134. bottom: 0.025
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(5 + 9 / 12, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(180, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19152. {
  19153. side: {
  19154. height: math.unit(9, "feet"),
  19155. weight: math.unit(650, "lb"),
  19156. name: "Side",
  19157. image: {
  19158. source: "./media/characters/milo/side.svg",
  19159. extra: 2644 / 2310,
  19160. bottom: 0.032
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(9, "feet"),
  19168. default: true
  19169. },
  19170. {
  19171. name: "Macro",
  19172. height: math.unit(300, "feet")
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19178. {
  19179. side: {
  19180. height: math.unit(8, "meters"),
  19181. weight: math.unit(90000, "kg"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/ijzer/side.svg",
  19185. extra: 2756 / 1600,
  19186. bottom: 0.01
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Small",
  19193. height: math.unit(3, "meters")
  19194. },
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(8, "meters"),
  19198. default: true
  19199. },
  19200. {
  19201. name: "Normal+",
  19202. height: math.unit(10, "meters")
  19203. },
  19204. {
  19205. name: "Bigger",
  19206. height: math.unit(24, "meters")
  19207. },
  19208. {
  19209. name: "Huge",
  19210. height: math.unit(80, "meters")
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(6 + 2 / 12, "feet"),
  19219. weight: math.unit(153, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/luca-cervicum/front.svg",
  19223. extra: 370 / 327,
  19224. bottom: 0.015
  19225. }
  19226. },
  19227. back: {
  19228. height: math.unit(6 + 2 / 12, "feet"),
  19229. weight: math.unit(153, "lb"),
  19230. name: "Back",
  19231. image: {
  19232. source: "./media/characters/luca-cervicum/back.svg",
  19233. extra: 367 / 333,
  19234. bottom: 0.005
  19235. }
  19236. },
  19237. frontGear: {
  19238. height: math.unit(6 + 2 / 12, "feet"),
  19239. weight: math.unit(173, "lb"),
  19240. name: "Front (Gear)",
  19241. image: {
  19242. source: "./media/characters/luca-cervicum/front-gear.svg",
  19243. extra: 377 / 333,
  19244. bottom: 0.006
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(6 + 2 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6 + 1 / 12, "feet"),
  19261. weight: math.unit(304, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/oliver/front.svg",
  19265. extra: 157 / 143,
  19266. bottom: 0.08
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(6 + 1 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(5 + 7 / 12, "feet"),
  19283. weight: math.unit(140, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/shane/front.svg",
  19287. extra: 304 / 289,
  19288. bottom: 0.005
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(5 + 7 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(5 + 9 / 12, "feet"),
  19305. weight: math.unit(178, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/shin/front.svg",
  19309. extra: 159 / 151,
  19310. bottom: 0.015
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(5 + 9 / 12, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(5 + 10 / 12, "feet"),
  19327. weight: math.unit(168, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/xerxes/front.svg",
  19331. extra: 282 / 260,
  19332. bottom: 0.045
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(5 + 10 / 12, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(6 + 7 / 12, "feet"),
  19349. weight: math.unit(208, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/chaska/front.svg",
  19353. extra: 332 / 319,
  19354. bottom: 0.015
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(6 + 7 / 12, "feet"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(5 + 8 / 12, "feet"),
  19371. weight: math.unit(208, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/enuk/front.svg",
  19375. extra: 437 / 406,
  19376. bottom: 0.02
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(5 + 8 / 12, "feet"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(5 + 10 / 12, "feet"),
  19393. weight: math.unit(252, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/bruun/front.svg",
  19397. extra: 197 / 187,
  19398. bottom: 0.012
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(5 + 10 / 12, "feet"),
  19406. default: true
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19412. {
  19413. front: {
  19414. height: math.unit(6 + 10 / 12, "feet"),
  19415. weight: math.unit(255, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/alexeev/front.svg",
  19419. extra: 213 / 200,
  19420. bottom: 0.05
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(6 + 10 / 12, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(2 + 8 / 12, "feet"),
  19437. weight: math.unit(22, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/evelyn/front.svg",
  19441. extra: 208 / 180
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(2 + 8 / 12, "feet"),
  19449. default: true
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(5 + 9 / 12, "feet"),
  19458. weight: math.unit(139, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/inca/front.svg",
  19462. extra: 294 / 291,
  19463. bottom: 0.03
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(5 + 9 / 12, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 1 / 12, "feet"),
  19480. weight: math.unit(84, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/magdalene/front.svg",
  19484. extra: 293 / 273
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(5 + 1 / 12, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(6 + 3 / 12, "feet"),
  19501. weight: math.unit(185, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/mera/front.svg",
  19505. extra: 291 / 277,
  19506. bottom: 0.03
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(6 + 3 / 12, "feet"),
  19514. default: true
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(6 + 7 / 12, "feet"),
  19523. weight: math.unit(160, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/ceres/front.svg",
  19527. extra: 1023 / 950,
  19528. bottom: 0.027
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(6 + 7 / 12, "feet"),
  19533. weight: math.unit(160, "lb"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/ceres/back.svg",
  19537. extra: 1023 / 950
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(6 + 7 / 12, "feet"),
  19545. default: true
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19551. {
  19552. front: {
  19553. height: math.unit(5 + 10 / 12, "feet"),
  19554. weight: math.unit(150, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/kris/front.svg",
  19558. extra: 885 / 803,
  19559. bottom: 0.03
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(5 + 10 / 12, "feet"),
  19567. default: true
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(7, "feet"),
  19576. weight: math.unit(120, "kg"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/taluthus/front.svg",
  19580. extra: 903 / 833,
  19581. bottom: 0.015
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(7, "feet"),
  19589. default: true
  19590. },
  19591. {
  19592. name: "Macro",
  19593. height: math.unit(300, "feet")
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(5 + 9 / 12, "feet"),
  19602. weight: math.unit(145, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/dawn/front.svg",
  19606. extra: 2094 / 2016,
  19607. bottom: 0.025
  19608. }
  19609. },
  19610. back: {
  19611. height: math.unit(5 + 9 / 12, "feet"),
  19612. weight: math.unit(160, "lb"),
  19613. name: "Back",
  19614. image: {
  19615. source: "./media/characters/dawn/back.svg",
  19616. extra: 2112 / 2080,
  19617. bottom: 0.005
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(6 + 7 / 12, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19631. {
  19632. anthro: {
  19633. height: math.unit(8 + 3 / 12, "feet"),
  19634. weight: math.unit(450, "lb"),
  19635. name: "Anthro",
  19636. image: {
  19637. source: "./media/characters/arador/anthro.svg",
  19638. extra: 1835 / 1718,
  19639. bottom: 0.025
  19640. }
  19641. },
  19642. feral: {
  19643. height: math.unit(4, "feet"),
  19644. weight: math.unit(200, "lb"),
  19645. name: "Feral",
  19646. image: {
  19647. source: "./media/characters/arador/feral.svg",
  19648. extra: 1683 / 1514,
  19649. bottom: 0.07
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(8 + 3 / 12, "feet")
  19657. },
  19658. {
  19659. name: "Macro",
  19660. height: math.unit(82.5, "feet"),
  19661. default: true
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(5 + 10 / 12, "feet"),
  19670. weight: math.unit(125, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/dharsi/front.svg",
  19674. extra: 716 / 630,
  19675. bottom: 0.035
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Nano",
  19682. height: math.unit(100, "nm")
  19683. },
  19684. {
  19685. name: "Micro",
  19686. height: math.unit(2, "inches")
  19687. },
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(5 + 10 / 12, "feet"),
  19691. default: true
  19692. },
  19693. {
  19694. name: "Macro",
  19695. height: math.unit(1000, "feet")
  19696. },
  19697. {
  19698. name: "Megamacro",
  19699. height: math.unit(10, "miles")
  19700. },
  19701. {
  19702. name: "Gigamacro",
  19703. height: math.unit(3000, "miles")
  19704. },
  19705. {
  19706. name: "Teramacro",
  19707. height: math.unit(500000, "miles")
  19708. },
  19709. {
  19710. name: "Teramacro+",
  19711. height: math.unit(30, "galaxies")
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19717. {
  19718. front: {
  19719. height: math.unit(6, "feet"),
  19720. weight: math.unit(150, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/deathy/front.svg",
  19724. extra: 1552 / 1463,
  19725. bottom: 0.025
  19726. }
  19727. },
  19728. side: {
  19729. height: math.unit(6, "feet"),
  19730. weight: math.unit(150, "lb"),
  19731. name: "Side",
  19732. image: {
  19733. source: "./media/characters/deathy/side.svg",
  19734. extra: 1604 / 1455,
  19735. bottom: 0.025
  19736. }
  19737. },
  19738. back: {
  19739. height: math.unit(6, "feet"),
  19740. weight: math.unit(150, "lb"),
  19741. name: "Back",
  19742. image: {
  19743. source: "./media/characters/deathy/back.svg",
  19744. extra: 1580 / 1463,
  19745. bottom: 0.005
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Micro",
  19752. height: math.unit(5, "millimeters")
  19753. },
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(6 + 5 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19763. {
  19764. front: {
  19765. height: math.unit(16, "feet"),
  19766. weight: math.unit(4000, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/juniper/front.svg",
  19770. bottom: 0.04
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(16, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6, "feet"),
  19787. weight: math.unit(150, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/hipster/front.svg",
  19791. extra: 1312 / 1209,
  19792. bottom: 0.025
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(6, "feet"),
  19797. weight: math.unit(150, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/hipster/back.svg",
  19801. extra: 1281 / 1196,
  19802. bottom: 0.01
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Micro",
  19809. height: math.unit(1, "mm")
  19810. },
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(4, "inches"),
  19814. default: true
  19815. },
  19816. {
  19817. name: "Macro",
  19818. height: math.unit(500, "feet")
  19819. },
  19820. {
  19821. name: "Megamacro",
  19822. height: math.unit(1000, "miles")
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(6, "feet"),
  19831. weight: math.unit(150, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/tendirmuldr/front.svg",
  19835. extra: 1878 / 1772,
  19836. bottom: 0.015
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Megamacro",
  19843. height: math.unit(1500, "miles"),
  19844. default: true
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19850. {
  19851. front: {
  19852. height: math.unit(14, "feet"),
  19853. weight: math.unit(12000, "lb"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/mort/front.svg",
  19857. extra: 365 / 318,
  19858. bottom: 0.01
  19859. }
  19860. },
  19861. side: {
  19862. height: math.unit(14, "feet"),
  19863. weight: math.unit(12000, "lb"),
  19864. name: "Side",
  19865. image: {
  19866. source: "./media/characters/mort/side.svg",
  19867. extra: 365 / 318,
  19868. bottom: 0.052
  19869. },
  19870. default: true
  19871. },
  19872. back: {
  19873. height: math.unit(14, "feet"),
  19874. weight: math.unit(12000, "lb"),
  19875. name: "Back",
  19876. image: {
  19877. source: "./media/characters/mort/back.svg",
  19878. extra: 371 / 332,
  19879. bottom: 0.18
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(14, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19893. {
  19894. front: {
  19895. height: math.unit(8, "feet"),
  19896. weight: math.unit(1, "ton"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/lycoa/front.svg",
  19900. extra: 1875 / 1789,
  19901. bottom: 0.022
  19902. }
  19903. },
  19904. back: {
  19905. height: math.unit(8, "feet"),
  19906. weight: math.unit(1, "ton"),
  19907. name: "Back",
  19908. image: {
  19909. source: "./media/characters/lycoa/back.svg",
  19910. extra: 1835 / 1781,
  19911. bottom: 0.03
  19912. }
  19913. },
  19914. head: {
  19915. height: math.unit(2.1, "feet"),
  19916. name: "Head",
  19917. image: {
  19918. source: "./media/characters/lycoa/head.svg"
  19919. }
  19920. },
  19921. tailmaw: {
  19922. height: math.unit(1.9, "feet"),
  19923. name: "Tailmaw",
  19924. image: {
  19925. source: "./media/characters/lycoa/tailmaw.svg"
  19926. }
  19927. },
  19928. tentacles: {
  19929. height: math.unit(2.1, "feet"),
  19930. name: "Tentacles",
  19931. image: {
  19932. source: "./media/characters/lycoa/tentacles.svg"
  19933. }
  19934. },
  19935. dick: {
  19936. height: math.unit(1.73, "feet"),
  19937. name: "Dick",
  19938. image: {
  19939. source: "./media/characters/lycoa/dick.svg"
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(8, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(30, "feet")
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19957. {
  19958. front: {
  19959. height: math.unit(4 + 2 / 12, "feet"),
  19960. weight: math.unit(70, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/naldara/front.svg",
  19964. extra: 841 / 720,
  19965. bottom: 0.04
  19966. }
  19967. },
  19968. naga: {
  19969. height: math.unit(23, "feet"),
  19970. weight: math.unit(15000, "kg"),
  19971. name: "Naga",
  19972. image: {
  19973. source: "./media/characters/naldara/naga.svg",
  19974. extra: 3290 / 2959,
  19975. bottom: 124 / 3432
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(4 + 2 / 12, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(13 + 7 / 12, "feet"),
  19992. weight: math.unit(1500, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/briar/front.svg",
  19996. extra: 626 / 596,
  19997. bottom: 0.08
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(13 + 7 / 12, "feet"),
  20005. default: true
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20011. {
  20012. side: {
  20013. height: math.unit(10, "feet"),
  20014. weight: math.unit(500, "lb"),
  20015. name: "Side",
  20016. image: {
  20017. source: "./media/characters/vanguard/side.svg",
  20018. extra: 502 / 425,
  20019. bottom: 0.087
  20020. }
  20021. },
  20022. },
  20023. [
  20024. {
  20025. name: "Normal",
  20026. height: math.unit(10, "feet"),
  20027. default: true
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20033. {
  20034. front: {
  20035. height: math.unit(7.5, "feet"),
  20036. weight: math.unit(2, "lb"),
  20037. name: "Front",
  20038. image: {
  20039. source: "./media/characters/artemis/front.svg",
  20040. extra: 1192 / 1075,
  20041. bottom: 0.07
  20042. }
  20043. },
  20044. frontNsfw: {
  20045. height: math.unit(7.5, "feet"),
  20046. weight: math.unit(2, "lb"),
  20047. name: "Front (NSFW)",
  20048. image: {
  20049. source: "./media/characters/artemis/front-nsfw.svg",
  20050. extra: 1192 / 1075,
  20051. bottom: 0.07
  20052. }
  20053. },
  20054. frontNsfwer: {
  20055. height: math.unit(7.5, "feet"),
  20056. weight: math.unit(2, "lb"),
  20057. name: "Front (NSFW-er)",
  20058. image: {
  20059. source: "./media/characters/artemis/front-nsfwer.svg",
  20060. extra: 1192 / 1075,
  20061. bottom: 0.07
  20062. }
  20063. },
  20064. side: {
  20065. height: math.unit(7.5, "feet"),
  20066. weight: math.unit(2, "lb"),
  20067. name: "Side",
  20068. image: {
  20069. source: "./media/characters/artemis/side.svg",
  20070. extra: 1192 / 1075,
  20071. bottom: 0.07
  20072. }
  20073. },
  20074. sideNsfw: {
  20075. height: math.unit(7.5, "feet"),
  20076. weight: math.unit(2, "lb"),
  20077. name: "Side (NSFW)",
  20078. image: {
  20079. source: "./media/characters/artemis/side-nsfw.svg",
  20080. extra: 1192 / 1075,
  20081. bottom: 0.07
  20082. }
  20083. },
  20084. sideNsfwer: {
  20085. height: math.unit(7.5, "feet"),
  20086. weight: math.unit(2, "lb"),
  20087. name: "Side (NSFW-er)",
  20088. image: {
  20089. source: "./media/characters/artemis/side-nsfwer.svg",
  20090. extra: 1192 / 1075,
  20091. bottom: 0.07
  20092. }
  20093. },
  20094. maw: {
  20095. height: math.unit(1.1, "feet"),
  20096. name: "Maw",
  20097. image: {
  20098. source: "./media/characters/artemis/maw.svg"
  20099. }
  20100. },
  20101. stomach: {
  20102. height: math.unit(0.95, "feet"),
  20103. name: "Stomach",
  20104. image: {
  20105. source: "./media/characters/artemis/stomach.svg"
  20106. }
  20107. },
  20108. dickCanine: {
  20109. height: math.unit(1, "feet"),
  20110. name: "Dick (Canine)",
  20111. image: {
  20112. source: "./media/characters/artemis/dick-canine.svg"
  20113. }
  20114. },
  20115. dickEquine: {
  20116. height: math.unit(0.85, "feet"),
  20117. name: "Dick (Equine)",
  20118. image: {
  20119. source: "./media/characters/artemis/dick-equine.svg"
  20120. }
  20121. },
  20122. dickExotic: {
  20123. height: math.unit(0.85, "feet"),
  20124. name: "Dick (Exotic)",
  20125. image: {
  20126. source: "./media/characters/artemis/dick-exotic.svg"
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(7.5, "feet"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Enlarged",
  20138. height: math.unit(12, "feet")
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(5 + 3 / 12, "feet"),
  20147. weight: math.unit(160, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/kira/front.svg",
  20151. extra: 906 / 786,
  20152. bottom: 0.01
  20153. }
  20154. },
  20155. back: {
  20156. height: math.unit(5 + 3 / 12, "feet"),
  20157. weight: math.unit(160, "lb"),
  20158. name: "Back",
  20159. image: {
  20160. source: "./media/characters/kira/back.svg",
  20161. extra: 882 / 757,
  20162. bottom: 0.005
  20163. }
  20164. },
  20165. frontDressed: {
  20166. height: math.unit(5 + 3 / 12, "feet"),
  20167. weight: math.unit(160, "lb"),
  20168. name: "Front (Dressed)",
  20169. image: {
  20170. source: "./media/characters/kira/front-dressed.svg",
  20171. extra: 906 / 786,
  20172. bottom: 0.01
  20173. }
  20174. },
  20175. beans: {
  20176. height: math.unit(0.92, "feet"),
  20177. name: "Beans",
  20178. image: {
  20179. source: "./media/characters/kira/beans.svg"
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(5 + 3 / 12, "feet"),
  20187. default: true
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20193. {
  20194. front: {
  20195. height: math.unit(5 + 4 / 12, "feet"),
  20196. weight: math.unit(145, "lb"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/scramble/front.svg",
  20200. extra: 763 / 727,
  20201. bottom: 0.05
  20202. }
  20203. },
  20204. back: {
  20205. height: math.unit(5 + 4 / 12, "feet"),
  20206. weight: math.unit(145, "lb"),
  20207. name: "Back",
  20208. image: {
  20209. source: "./media/characters/scramble/back.svg",
  20210. extra: 826 / 737,
  20211. bottom: 0.002
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(5 + 4 / 12, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20225. {
  20226. side: {
  20227. height: math.unit(6 + 2 / 12, "feet"),
  20228. weight: math.unit(190, "lb"),
  20229. name: "Side",
  20230. image: {
  20231. source: "./media/characters/biscuit/side.svg",
  20232. extra: 858 / 791,
  20233. bottom: 0.044
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(6 + 2 / 12, "feet"),
  20241. default: true
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(5 + 2 / 12, "feet"),
  20250. weight: math.unit(120, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/poffin/front.svg",
  20254. extra: 786 / 680,
  20255. bottom: 0.005
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(5 + 2 / 12, "feet"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20269. {
  20270. front: {
  20271. height: math.unit(6 + 3 / 12, "feet"),
  20272. weight: math.unit(519, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/dhari/front.svg",
  20276. extra: 1048 / 946,
  20277. bottom: 0.015
  20278. }
  20279. },
  20280. back: {
  20281. height: math.unit(6 + 3 / 12, "feet"),
  20282. weight: math.unit(519, "lb"),
  20283. name: "Back",
  20284. image: {
  20285. source: "./media/characters/dhari/back.svg",
  20286. extra: 1048 / 931,
  20287. bottom: 0.005
  20288. }
  20289. },
  20290. frontDressed: {
  20291. height: math.unit(6 + 3 / 12, "feet"),
  20292. weight: math.unit(519, "lb"),
  20293. name: "Front (Dressed)",
  20294. image: {
  20295. source: "./media/characters/dhari/front-dressed.svg",
  20296. extra: 1713 / 1546,
  20297. bottom: 0.02
  20298. }
  20299. },
  20300. backDressed: {
  20301. height: math.unit(6 + 3 / 12, "feet"),
  20302. weight: math.unit(519, "lb"),
  20303. name: "Back (Dressed)",
  20304. image: {
  20305. source: "./media/characters/dhari/back-dressed.svg",
  20306. extra: 1699 / 1537,
  20307. bottom: 0.01
  20308. }
  20309. },
  20310. maw: {
  20311. height: math.unit(0.95, "feet"),
  20312. name: "Maw",
  20313. image: {
  20314. source: "./media/characters/dhari/maw.svg"
  20315. }
  20316. },
  20317. wereFront: {
  20318. height: math.unit(12 + 8 / 12, "feet"),
  20319. weight: math.unit(4000, "lb"),
  20320. name: "Front (Were)",
  20321. image: {
  20322. source: "./media/characters/dhari/were-front.svg",
  20323. extra: 1065 / 969,
  20324. bottom: 0.015
  20325. }
  20326. },
  20327. wereBack: {
  20328. height: math.unit(12 + 8 / 12, "feet"),
  20329. weight: math.unit(4000, "lb"),
  20330. name: "Back (Were)",
  20331. image: {
  20332. source: "./media/characters/dhari/were-back.svg",
  20333. extra: 1065 / 969,
  20334. bottom: 0.012
  20335. }
  20336. },
  20337. wereMaw: {
  20338. height: math.unit(0.625, "meters"),
  20339. name: "Maw (Were)",
  20340. image: {
  20341. source: "./media/characters/dhari/were-maw.svg"
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(6 + 3 / 12, "feet"),
  20349. default: true
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20355. {
  20356. anthro: {
  20357. height: math.unit(5 + 7 / 12, "feet"),
  20358. weight: math.unit(175, "lb"),
  20359. name: "Anthro",
  20360. image: {
  20361. source: "./media/characters/rena-dyne/anthro.svg",
  20362. extra: 1849 / 1785,
  20363. bottom: 0.005
  20364. }
  20365. },
  20366. taur: {
  20367. height: math.unit(15 + 6 / 12, "feet"),
  20368. weight: math.unit(8000, "lb"),
  20369. name: "Taur",
  20370. image: {
  20371. source: "./media/characters/rena-dyne/taur.svg",
  20372. extra: 2315 / 2234,
  20373. bottom: 0.033
  20374. }
  20375. },
  20376. },
  20377. [
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(5 + 7 / 12, "feet"),
  20381. default: true
  20382. },
  20383. ]
  20384. ))
  20385. characterMakers.push(() => makeCharacter(
  20386. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20387. {
  20388. front: {
  20389. height: math.unit(8, "feet"),
  20390. weight: math.unit(600, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/weremeep/front.svg",
  20394. extra: 967 / 862,
  20395. bottom: 0.01
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(8, "feet"),
  20403. default: true
  20404. },
  20405. {
  20406. name: "Lorg",
  20407. height: math.unit(12, "feet")
  20408. },
  20409. {
  20410. name: "Oh Lawd She Comin'",
  20411. height: math.unit(20, "feet")
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20417. {
  20418. front: {
  20419. height: math.unit(4, "feet"),
  20420. weight: math.unit(90, "lb"),
  20421. name: "Front",
  20422. image: {
  20423. source: "./media/characters/reza/front.svg",
  20424. extra: 1183 / 1111,
  20425. bottom: 0.017
  20426. }
  20427. },
  20428. back: {
  20429. height: math.unit(4, "feet"),
  20430. weight: math.unit(90, "lb"),
  20431. name: "Back",
  20432. image: {
  20433. source: "./media/characters/reza/back.svg",
  20434. extra: 1183 / 1111,
  20435. bottom: 0.01
  20436. }
  20437. },
  20438. drake: {
  20439. height: math.unit(30, "feet"),
  20440. weight: math.unit(246960, "lb"),
  20441. name: "Drake",
  20442. image: {
  20443. source: "./media/characters/reza/drake.svg",
  20444. extra: 2350 / 2024,
  20445. bottom: 60.7 / 2403
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(4, "feet"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20459. {
  20460. side: {
  20461. height: math.unit(15, "feet"),
  20462. weight: math.unit(14, "tons"),
  20463. name: "Side",
  20464. image: {
  20465. source: "./media/characters/athea/side.svg",
  20466. extra: 960 / 540,
  20467. bottom: 0.003
  20468. }
  20469. },
  20470. sitting: {
  20471. height: math.unit(6 * 2.85, "feet"),
  20472. weight: math.unit(14, "tons"),
  20473. name: "Sitting",
  20474. image: {
  20475. source: "./media/characters/athea/sitting.svg",
  20476. extra: 621 / 581,
  20477. bottom: 0.075
  20478. }
  20479. },
  20480. maw: {
  20481. height: math.unit(7.59498031496063, "feet"),
  20482. name: "Maw",
  20483. image: {
  20484. source: "./media/characters/athea/maw.svg"
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Lap Cat",
  20491. height: math.unit(2.5, "feet")
  20492. },
  20493. {
  20494. name: "Minimacro",
  20495. height: math.unit(15, "feet"),
  20496. default: true
  20497. },
  20498. {
  20499. name: "Macro",
  20500. height: math.unit(120, "feet")
  20501. },
  20502. {
  20503. name: "Macro+",
  20504. height: math.unit(640, "feet")
  20505. },
  20506. {
  20507. name: "Colossus",
  20508. height: math.unit(2.2, "miles")
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(8 + 8 / 12, "feet"),
  20517. weight: math.unit(130, "kg"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/seroko/front.svg",
  20521. extra: 1385 / 1280,
  20522. bottom: 0.025
  20523. }
  20524. },
  20525. back: {
  20526. height: math.unit(8 + 8 / 12, "feet"),
  20527. weight: math.unit(130, "kg"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/seroko/back.svg",
  20531. extra: 1369 / 1238,
  20532. bottom: 0.018
  20533. }
  20534. },
  20535. frontDressed: {
  20536. height: math.unit(8 + 8 / 12, "feet"),
  20537. weight: math.unit(130, "kg"),
  20538. name: "Front (Dressed)",
  20539. image: {
  20540. source: "./media/characters/seroko/front-dressed.svg",
  20541. extra: 1366 / 1275,
  20542. bottom: 0.03
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(8 + 8 / 12, "feet"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(5.5, "feet"),
  20559. weight: math.unit(160, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/quatzi/front.svg",
  20563. extra: 2346 / 2242,
  20564. bottom: 0.015
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(5.5, "feet"),
  20572. default: true
  20573. },
  20574. {
  20575. name: "Big",
  20576. height: math.unit(7.7, "feet")
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(5 + 11 / 12, "feet"),
  20585. weight: math.unit(180, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/sen/front.svg",
  20589. extra: 1321 / 1254,
  20590. bottom: 0.015
  20591. }
  20592. },
  20593. side: {
  20594. height: math.unit(5 + 11 / 12, "feet"),
  20595. weight: math.unit(180, "lb"),
  20596. name: "Side",
  20597. image: {
  20598. source: "./media/characters/sen/side.svg",
  20599. extra: 1321 / 1254,
  20600. bottom: 0.007
  20601. }
  20602. },
  20603. back: {
  20604. height: math.unit(5 + 11 / 12, "feet"),
  20605. weight: math.unit(180, "lb"),
  20606. name: "Back",
  20607. image: {
  20608. source: "./media/characters/sen/back.svg",
  20609. extra: 1321 / 1254
  20610. }
  20611. },
  20612. },
  20613. [
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(5 + 11 / 12, "feet"),
  20617. default: true
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(166.6, "cm"),
  20626. weight: math.unit(66.6, "kg"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/fruity/front.svg",
  20630. extra: 1510 / 1386,
  20631. bottom: 0.04
  20632. }
  20633. },
  20634. back: {
  20635. height: math.unit(166.6, "cm"),
  20636. weight: math.unit(66.6, "lb"),
  20637. name: "Back",
  20638. image: {
  20639. source: "./media/characters/fruity/back.svg",
  20640. extra: 1563 / 1435,
  20641. bottom: 0.005
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(166.6, "cm"),
  20649. default: true
  20650. },
  20651. {
  20652. name: "Demonic",
  20653. height: math.unit(166.6, "feet")
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20659. {
  20660. side: {
  20661. height: math.unit(10, "feet"),
  20662. weight: math.unit(500, "lb"),
  20663. name: "Side",
  20664. image: {
  20665. source: "./media/characters/zost/side.svg",
  20666. extra: 966 / 880,
  20667. bottom: 0.075
  20668. }
  20669. },
  20670. mawFront: {
  20671. height: math.unit(1.08, "meters"),
  20672. name: "Maw (Front)",
  20673. image: {
  20674. source: "./media/characters/zost/maw-front.svg"
  20675. }
  20676. },
  20677. mawSide: {
  20678. height: math.unit(2.66, "feet"),
  20679. name: "Maw (Side)",
  20680. image: {
  20681. source: "./media/characters/zost/maw-side.svg"
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(10, "feet"),
  20689. default: true
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(5 + 4 / 12, "feet"),
  20698. weight: math.unit(120, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/luci/front.svg",
  20702. extra: 1985 / 1884,
  20703. bottom: 0.04
  20704. }
  20705. },
  20706. back: {
  20707. height: math.unit(5 + 4 / 12, "feet"),
  20708. weight: math.unit(120, "lb"),
  20709. name: "Back",
  20710. image: {
  20711. source: "./media/characters/luci/back.svg",
  20712. extra: 1892 / 1791,
  20713. bottom: 0.002
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(5 + 4 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(1500, "feet"),
  20730. weight: math.unit(3.8e6, "tons"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/2th/front.svg",
  20734. extra: 3489 / 3350,
  20735. bottom: 0.1
  20736. }
  20737. },
  20738. foot: {
  20739. height: math.unit(461, "feet"),
  20740. name: "Foot",
  20741. image: {
  20742. source: "./media/characters/2th/foot.svg"
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "\"Micro\"",
  20749. height: math.unit(15 + 7 / 12, "feet")
  20750. },
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(1500, "feet"),
  20754. default: true
  20755. },
  20756. {
  20757. name: "Macro",
  20758. height: math.unit(5000, "feet")
  20759. },
  20760. {
  20761. name: "Megamacro",
  20762. height: math.unit(15, "miles")
  20763. },
  20764. {
  20765. name: "Gigamacro",
  20766. height: math.unit(4000, "miles")
  20767. },
  20768. {
  20769. name: "Galactic",
  20770. height: math.unit(50, "AU")
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(5 + 6 / 12, "feet"),
  20779. weight: math.unit(220, "lb"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/amethyst/front.svg",
  20783. extra: 2078 / 2040,
  20784. bottom: 0.045
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(5 + 6 / 12, "feet"),
  20789. weight: math.unit(220, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/amethyst/back.svg",
  20793. extra: 2021 / 1989,
  20794. bottom: 0.02
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 6 / 12, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(4 + 11 / 12, "feet"),
  20811. weight: math.unit(120, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/yumi-akiyama/front.svg",
  20815. extra: 1327 / 1235,
  20816. bottom: 0.02
  20817. }
  20818. },
  20819. back: {
  20820. height: math.unit(4 + 11 / 12, "feet"),
  20821. weight: math.unit(120, "lb"),
  20822. name: "Back",
  20823. image: {
  20824. source: "./media/characters/yumi-akiyama/back.svg",
  20825. extra: 1287 / 1245,
  20826. bottom: 0.002
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Galactic",
  20833. height: math.unit(50, "galaxies"),
  20834. default: true
  20835. },
  20836. {
  20837. name: "Universal",
  20838. height: math.unit(100, "universes")
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20844. {
  20845. front: {
  20846. height: math.unit(8, "feet"),
  20847. weight: math.unit(500, "lb"),
  20848. name: "Front",
  20849. image: {
  20850. source: "./media/characters/rifter-yrmori/front.svg",
  20851. extra: 1180 / 1125,
  20852. bottom: 0.02
  20853. }
  20854. },
  20855. back: {
  20856. height: math.unit(8, "feet"),
  20857. weight: math.unit(500, "lb"),
  20858. name: "Back",
  20859. image: {
  20860. source: "./media/characters/rifter-yrmori/back.svg",
  20861. extra: 1190 / 1145,
  20862. bottom: 0.001
  20863. }
  20864. },
  20865. wings: {
  20866. height: math.unit(7.75, "feet"),
  20867. weight: math.unit(500, "lb"),
  20868. name: "Wings",
  20869. image: {
  20870. source: "./media/characters/rifter-yrmori/wings.svg",
  20871. extra: 1357 / 1285
  20872. }
  20873. },
  20874. maw: {
  20875. height: math.unit(0.8, "feet"),
  20876. name: "Maw",
  20877. image: {
  20878. source: "./media/characters/rifter-yrmori/maw.svg"
  20879. }
  20880. },
  20881. mawfront: {
  20882. height: math.unit(1.45, "feet"),
  20883. name: "Maw (Front)",
  20884. image: {
  20885. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(8, "feet"),
  20893. default: true
  20894. },
  20895. {
  20896. name: "Macro",
  20897. height: math.unit(42, "meters")
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20903. {
  20904. were: {
  20905. height: math.unit(25 + 6 / 12, "feet"),
  20906. weight: math.unit(10000, "lb"),
  20907. name: "Were",
  20908. image: {
  20909. source: "./media/characters/tahajin/were.svg",
  20910. extra: 801 / 770,
  20911. bottom: 0.042
  20912. }
  20913. },
  20914. aquatic: {
  20915. height: math.unit(6 + 4 / 12, "feet"),
  20916. weight: math.unit(160, "lb"),
  20917. name: "Aquatic",
  20918. image: {
  20919. source: "./media/characters/tahajin/aquatic.svg",
  20920. extra: 572 / 542,
  20921. bottom: 0.04
  20922. }
  20923. },
  20924. chow: {
  20925. height: math.unit(8 + 11 / 12, "feet"),
  20926. weight: math.unit(450, "lb"),
  20927. name: "Chow",
  20928. image: {
  20929. source: "./media/characters/tahajin/chow.svg",
  20930. extra: 660 / 640,
  20931. bottom: 0.015
  20932. }
  20933. },
  20934. demiNaga: {
  20935. height: math.unit(6 + 8 / 12, "feet"),
  20936. weight: math.unit(300, "lb"),
  20937. name: "Demi Naga",
  20938. image: {
  20939. source: "./media/characters/tahajin/demi-naga.svg",
  20940. extra: 643 / 615,
  20941. bottom: 0.1
  20942. }
  20943. },
  20944. data: {
  20945. height: math.unit(5, "inches"),
  20946. weight: math.unit(0.1, "lb"),
  20947. name: "Data",
  20948. image: {
  20949. source: "./media/characters/tahajin/data.svg"
  20950. }
  20951. },
  20952. fluu: {
  20953. height: math.unit(5 + 7 / 12, "feet"),
  20954. weight: math.unit(140, "lb"),
  20955. name: "Fluu",
  20956. image: {
  20957. source: "./media/characters/tahajin/fluu.svg",
  20958. extra: 628 / 592,
  20959. bottom: 0.02
  20960. }
  20961. },
  20962. starWarrior: {
  20963. height: math.unit(4 + 5 / 12, "feet"),
  20964. weight: math.unit(50, "lb"),
  20965. name: "Star Warrior",
  20966. image: {
  20967. source: "./media/characters/tahajin/star-warrior.svg"
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(25 + 6 / 12, "feet"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20981. {
  20982. front: {
  20983. height: math.unit(8, "feet"),
  20984. weight: math.unit(350, "lb"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/gabira/front.svg",
  20988. extra: 608 / 580,
  20989. bottom: 0.03
  20990. }
  20991. },
  20992. back: {
  20993. height: math.unit(8, "feet"),
  20994. weight: math.unit(350, "lb"),
  20995. name: "Back",
  20996. image: {
  20997. source: "./media/characters/gabira/back.svg",
  20998. extra: 608 / 580,
  20999. bottom: 0.03
  21000. }
  21001. },
  21002. },
  21003. [
  21004. {
  21005. name: "Normal",
  21006. height: math.unit(8, "feet"),
  21007. default: true
  21008. },
  21009. ]
  21010. ))
  21011. characterMakers.push(() => makeCharacter(
  21012. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21013. {
  21014. front: {
  21015. height: math.unit(5 + 3 / 12, "feet"),
  21016. weight: math.unit(137, "lb"),
  21017. name: "Front",
  21018. image: {
  21019. source: "./media/characters/sasha-katraine/front.svg",
  21020. bottom: 0.045
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Micro",
  21027. height: math.unit(5, "inches")
  21028. },
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(5 + 3 / 12, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21038. {
  21039. side: {
  21040. height: math.unit(4, "inches"),
  21041. weight: math.unit(200, "grams"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/der/side.svg",
  21045. extra: 719 / 400,
  21046. bottom: 30.6 / 749.9187
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Micro",
  21053. height: math.unit(4, "inches"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21060. {
  21061. side: {
  21062. height: math.unit(30, "meters"),
  21063. weight: math.unit(700, "tonnes"),
  21064. name: "Side",
  21065. image: {
  21066. source: "./media/characters/fixerdragon/side.svg",
  21067. extra: (1293.0514 - 116.03) / 1106.86,
  21068. bottom: 116.03 / 1293.0514
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Planck",
  21075. height: math.unit(1.6e-35, "meters")
  21076. },
  21077. {
  21078. name: "Micro",
  21079. height: math.unit(0.4, "meters")
  21080. },
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(30, "meters"),
  21084. default: true
  21085. },
  21086. {
  21087. name: "Megamacro",
  21088. height: math.unit(1.2, "megameters")
  21089. },
  21090. {
  21091. name: "Teramacro",
  21092. height: math.unit(130, "terameters")
  21093. },
  21094. {
  21095. name: "Yottamacro",
  21096. height: math.unit(6200, "yottameters")
  21097. },
  21098. ]
  21099. ));
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(8, "feet"),
  21105. weight: math.unit(250, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/kite/front.svg",
  21109. extra: 2796 / 2659,
  21110. bottom: 0.002
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(8, "feet"),
  21118. default: true
  21119. },
  21120. {
  21121. name: "Macro",
  21122. height: math.unit(360, "feet")
  21123. },
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(1500, "feet")
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(5 + 10 / 12, "feet"),
  21135. weight: math.unit(150, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/poojawa-vynar/front.svg",
  21139. extra: (1506.1547 - 55) / 1356.6,
  21140. bottom: 55 / 1506.1547
  21141. }
  21142. },
  21143. frontTailless: {
  21144. height: math.unit(5 + 10 / 12, "feet"),
  21145. weight: math.unit(150, "lb"),
  21146. name: "Front (Tailless)",
  21147. image: {
  21148. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21149. extra: (1506.1547 - 55) / 1356.6,
  21150. bottom: 55 / 1506.1547
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(5 + 10 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21164. {
  21165. front: {
  21166. height: math.unit(293, "meters"),
  21167. weight: math.unit(70400, "tons"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/violette/front.svg",
  21171. extra: 1227 / 1180,
  21172. bottom: 0.005
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(293, "meters"),
  21177. weight: math.unit(70400, "tons"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/violette/back.svg",
  21181. extra: 1227 / 1180,
  21182. bottom: 0.005
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Macro",
  21189. height: math.unit(293, "meters"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(1050, "feet"),
  21199. weight: math.unit(200000, "tons"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/alessandra/front.svg",
  21203. extra: 960 / 912,
  21204. bottom: 0.06
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Macro",
  21211. height: math.unit(1050, "feet")
  21212. },
  21213. {
  21214. name: "Macro+",
  21215. height: math.unit(900, "meters"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(5, "feet"),
  21225. weight: math.unit(187, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/person/front.svg",
  21229. extra: 3087 / 2945,
  21230. bottom: 91 / 3181
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Micro",
  21237. height: math.unit(3, "inches")
  21238. },
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(5, "feet"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Macro",
  21246. height: math.unit(90, "feet")
  21247. },
  21248. {
  21249. name: "Max Size",
  21250. height: math.unit(280, "feet")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(4.5, "meters"),
  21259. weight: math.unit(3200, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/ty/front.svg",
  21263. extra: 1038 / 960,
  21264. bottom: 31.156 / 1068
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(4.5, "meters"),
  21269. weight: math.unit(3200, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/ty/back.svg",
  21273. extra: 1044 / 966,
  21274. bottom: 7.48 / 1049
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(4.5, "meters"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21288. {
  21289. front: {
  21290. height: math.unit(5 + 4 / 12, "feet"),
  21291. weight: math.unit(115, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/rocky/front.svg",
  21295. extra: 1012 / 975,
  21296. bottom: 54 / 1066
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(5 + 4 / 12, "feet"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21310. {
  21311. upright: {
  21312. height: math.unit(6, "meters"),
  21313. weight: math.unit(4000, "kg"),
  21314. name: "Upright",
  21315. image: {
  21316. source: "./media/characters/ruin/upright.svg",
  21317. extra: 668 / 661,
  21318. bottom: 42 / 799.8396
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(6, "meters"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(5, "feet"),
  21335. weight: math.unit(106, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/robin/front.svg",
  21339. extra: 862 / 799,
  21340. bottom: 42.4 / 914.8856
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(5, "feet"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21354. {
  21355. side: {
  21356. height: math.unit(3, "feet"),
  21357. weight: math.unit(225, "lb"),
  21358. name: "Side",
  21359. image: {
  21360. source: "./media/characters/saian/side.svg",
  21361. extra: 566 / 356,
  21362. bottom: 79.7 / 643
  21363. }
  21364. },
  21365. maw: {
  21366. height: math.unit(2.85, "feet"),
  21367. name: "Maw",
  21368. image: {
  21369. source: "./media/characters/saian/maw.svg"
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(3, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21383. {
  21384. side: {
  21385. height: math.unit(8, "feet"),
  21386. weight: math.unit(300, "lb"),
  21387. name: "Side",
  21388. image: {
  21389. source: "./media/characters/equus-silvermane/side.svg",
  21390. extra: 2176 / 2050,
  21391. bottom: 65.7 / 2245
  21392. }
  21393. },
  21394. front: {
  21395. height: math.unit(8, "feet"),
  21396. weight: math.unit(300, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/equus-silvermane/front.svg",
  21400. extra: 4633 / 4400,
  21401. bottom: 71.3 / 4706.915
  21402. }
  21403. },
  21404. sideStepping: {
  21405. height: math.unit(8, "feet"),
  21406. weight: math.unit(300, "lb"),
  21407. name: "Side (Stepping)",
  21408. image: {
  21409. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21410. extra: 1968 / 1860,
  21411. bottom: 16.4 / 1989
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(8, "feet")
  21419. },
  21420. {
  21421. name: "Minimacro",
  21422. height: math.unit(75, "feet"),
  21423. default: true
  21424. },
  21425. {
  21426. name: "Macro",
  21427. height: math.unit(150, "feet")
  21428. },
  21429. {
  21430. name: "Macro+",
  21431. height: math.unit(1000, "feet")
  21432. },
  21433. {
  21434. name: "Megamacro",
  21435. height: math.unit(1, "mile")
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21441. {
  21442. side: {
  21443. height: math.unit(20, "feet"),
  21444. weight: math.unit(30000, "kg"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/windar/side.svg",
  21448. extra: 1491 / 1248,
  21449. bottom: 82.56 / 1568
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(20, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21463. {
  21464. side: {
  21465. height: math.unit(15.66, "feet"),
  21466. weight: math.unit(150, "lb"),
  21467. name: "Side",
  21468. image: {
  21469. source: "./media/characters/melody/side.svg",
  21470. extra: 1097 / 944,
  21471. bottom: 11.8 / 1109
  21472. }
  21473. },
  21474. sideOutfit: {
  21475. height: math.unit(15.66, "feet"),
  21476. weight: math.unit(150, "lb"),
  21477. name: "Side (Outfit)",
  21478. image: {
  21479. source: "./media/characters/melody/side-outfit.svg",
  21480. extra: 1097 / 944,
  21481. bottom: 11.8 / 1109
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(15.66, "feet"),
  21489. default: true
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21495. {
  21496. front: {
  21497. height: math.unit(8, "feet"),
  21498. weight: math.unit(325, "lb"),
  21499. name: "Front",
  21500. image: {
  21501. source: "./media/characters/windera/front.svg",
  21502. extra: 3180 / 2845,
  21503. bottom: 178 / 3365
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(8, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21517. {
  21518. front: {
  21519. height: math.unit(28.75, "feet"),
  21520. weight: math.unit(2000, "kg"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/sonear/front.svg",
  21524. extra: 1041.1 / 964.9,
  21525. bottom: 53.7 / 1096.6
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(28.75, "feet"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21539. {
  21540. side: {
  21541. height: math.unit(25.5, "feet"),
  21542. weight: math.unit(23000, "kg"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/kanara/side.svg"
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(25.5, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21559. {
  21560. side: {
  21561. height: math.unit(10, "feet"),
  21562. weight: math.unit(1000, "kg"),
  21563. name: "Side",
  21564. image: {
  21565. source: "./media/characters/ereus/side.svg",
  21566. extra: 1157 / 959,
  21567. bottom: 153 / 1312.5
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(10, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21581. {
  21582. side: {
  21583. height: math.unit(4.5, "feet"),
  21584. weight: math.unit(500, "lb"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/e-ter/side.svg",
  21588. extra: 1550 / 1248,
  21589. bottom: 146 / 1694
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(4.5, "feet"),
  21597. default: true
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21603. {
  21604. side: {
  21605. height: math.unit(9.7, "feet"),
  21606. weight: math.unit(4000, "kg"),
  21607. name: "Side",
  21608. image: {
  21609. source: "./media/characters/yamie/side.svg"
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(9.7, "feet"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(50, "feet"),
  21626. weight: math.unit(50000, "kg"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/anders/front.svg",
  21630. extra: 570 / 539,
  21631. bottom: 14.7 / 586.7
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Large",
  21638. height: math.unit(50, "feet")
  21639. },
  21640. {
  21641. name: "Macro",
  21642. height: math.unit(2000, "feet"),
  21643. default: true
  21644. },
  21645. {
  21646. name: "Megamacro",
  21647. height: math.unit(12, "miles")
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(7 + 2 / 12, "feet"),
  21656. weight: math.unit(300, "lb"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/reban/front.svg",
  21660. extra: 516 / 487,
  21661. bottom: 42.82 / 558.356
  21662. }
  21663. },
  21664. dick: {
  21665. height: math.unit(7 / 5, "feet"),
  21666. name: "Dick",
  21667. image: {
  21668. source: "./media/characters/reban/dick.svg"
  21669. }
  21670. },
  21671. },
  21672. [
  21673. {
  21674. name: "Natural Height",
  21675. height: math.unit(7 + 2 / 12, "feet")
  21676. },
  21677. {
  21678. name: "Macro",
  21679. height: math.unit(500, "feet"),
  21680. default: true
  21681. },
  21682. {
  21683. name: "Canon Height",
  21684. height: math.unit(50, "AU")
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(6, "feet"),
  21693. weight: math.unit(150, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/terrance-keayes/front.svg",
  21697. extra: 1.005,
  21698. bottom: 151 / 1615
  21699. }
  21700. },
  21701. side: {
  21702. height: math.unit(6, "feet"),
  21703. weight: math.unit(150, "lb"),
  21704. name: "Side",
  21705. image: {
  21706. source: "./media/characters/terrance-keayes/side.svg",
  21707. extra: 1.005,
  21708. bottom: 129.4 / 1544
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(6, "feet"),
  21713. weight: math.unit(150, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/terrance-keayes/back.svg",
  21717. extra: 1.005,
  21718. bottom: 58.4 / 1557.3
  21719. }
  21720. },
  21721. dick: {
  21722. height: math.unit(6 * 0.208, "feet"),
  21723. name: "Dick",
  21724. image: {
  21725. source: "./media/characters/terrance-keayes/dick.svg"
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Canon Height",
  21732. height: math.unit(35, "miles"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(6, "feet"),
  21742. weight: math.unit(150, "lb"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/ofelia/front.svg",
  21746. extra: 546 / 541,
  21747. bottom: 39 / 583
  21748. }
  21749. },
  21750. back: {
  21751. height: math.unit(6, "feet"),
  21752. weight: math.unit(150, "lb"),
  21753. name: "Back",
  21754. image: {
  21755. source: "./media/characters/ofelia/back.svg",
  21756. extra: 564 / 559.5,
  21757. bottom: 8.69 / 573.02
  21758. }
  21759. },
  21760. maw: {
  21761. height: math.unit(1, "feet"),
  21762. name: "Maw",
  21763. image: {
  21764. source: "./media/characters/ofelia/maw.svg"
  21765. }
  21766. },
  21767. foot: {
  21768. height: math.unit(1.949, "feet"),
  21769. name: "Foot",
  21770. image: {
  21771. source: "./media/characters/ofelia/foot.svg"
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Canon Height",
  21778. height: math.unit(2000, "miles"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(6, "feet"),
  21788. weight: math.unit(150, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/samuel/front.svg",
  21792. extra: 265 / 258,
  21793. bottom: 2 / 266.1566
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Macro",
  21800. height: math.unit(100, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Full Size",
  21805. height: math.unit(1000, "miles")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(6, "feet"),
  21814. weight: math.unit(300, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/beishir-kiel/front.svg",
  21818. extra: 569 / 547,
  21819. bottom: 41.9 / 609
  21820. }
  21821. },
  21822. maw: {
  21823. height: math.unit(6 * 0.202, "feet"),
  21824. name: "Maw",
  21825. image: {
  21826. source: "./media/characters/beishir-kiel/maw.svg"
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(300, "feet"),
  21834. default: true
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(5 + 8 / 12, "feet"),
  21843. weight: math.unit(120, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/logan-grey/front.svg",
  21847. extra: 2539 / 2393,
  21848. bottom: 97.6 / 2636.37
  21849. }
  21850. },
  21851. frontAlt: {
  21852. height: math.unit(5 + 8 / 12, "feet"),
  21853. weight: math.unit(120, "lb"),
  21854. name: "Front (Alt)",
  21855. image: {
  21856. source: "./media/characters/logan-grey/front-alt.svg",
  21857. extra: 958 / 893,
  21858. bottom: 15 / 970.768
  21859. }
  21860. },
  21861. back: {
  21862. height: math.unit(5 + 8 / 12, "feet"),
  21863. weight: math.unit(120, "lb"),
  21864. name: "Back",
  21865. image: {
  21866. source: "./media/characters/logan-grey/back.svg",
  21867. extra: 958 / 893,
  21868. bottom: 2.1881 / 970.9788
  21869. }
  21870. },
  21871. dick: {
  21872. height: math.unit(1.437, "feet"),
  21873. name: "Dick",
  21874. image: {
  21875. source: "./media/characters/logan-grey/dick.svg"
  21876. }
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(5 + 8 / 12, "feet")
  21883. },
  21884. {
  21885. name: "The 500 Foot Femboy",
  21886. height: math.unit(500, "feet"),
  21887. default: true
  21888. },
  21889. {
  21890. name: "Megmacro",
  21891. height: math.unit(20, "miles")
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(8 + 2 / 12, "feet"),
  21900. weight: math.unit(275, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/draganta/front.svg",
  21904. extra: 1177 / 1135,
  21905. bottom: 33.46 / 1212.1
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(8 + 6 / 12, "feet"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Macro",
  21917. height: math.unit(150, "feet")
  21918. },
  21919. {
  21920. name: "Megamacro",
  21921. height: math.unit(1000, "miles")
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(1.72, "m"),
  21930. weight: math.unit(80, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/voski/front.svg",
  21934. extra: 2076.22 / 2022.4,
  21935. bottom: 102.7 / 2177.3866
  21936. }
  21937. },
  21938. frontNsfw: {
  21939. height: math.unit(1.72, "m"),
  21940. weight: math.unit(80, "lb"),
  21941. name: "Front (NSFW)",
  21942. image: {
  21943. source: "./media/characters/voski/front-nsfw.svg",
  21944. extra: 2076.22 / 2022.4,
  21945. bottom: 102.7 / 2177.3866
  21946. }
  21947. },
  21948. back: {
  21949. height: math.unit(1.72, "m"),
  21950. weight: math.unit(80, "lb"),
  21951. name: "Back",
  21952. image: {
  21953. source: "./media/characters/voski/back.svg",
  21954. extra: 2104 / 2051,
  21955. bottom: 10.45 / 2113.63
  21956. }
  21957. },
  21958. },
  21959. [
  21960. {
  21961. name: "Normal",
  21962. height: math.unit(1.72, "m")
  21963. },
  21964. {
  21965. name: "Macro",
  21966. height: math.unit(55, "m"),
  21967. default: true
  21968. },
  21969. {
  21970. name: "Macro+",
  21971. height: math.unit(300, "m")
  21972. },
  21973. {
  21974. name: "Macro++",
  21975. height: math.unit(700, "m")
  21976. },
  21977. {
  21978. name: "Macro+++",
  21979. height: math.unit(4500, "m")
  21980. },
  21981. {
  21982. name: "Macro++++",
  21983. height: math.unit(45, "km")
  21984. },
  21985. {
  21986. name: "Macro+++++",
  21987. height: math.unit(1220, "km")
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21993. {
  21994. front: {
  21995. height: math.unit(2.3, "m"),
  21996. weight: math.unit(304, "kg"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/icowom-lee/front.svg",
  22000. extra: 985 / 955,
  22001. bottom: 25.4 / 1012
  22002. }
  22003. },
  22004. fronttentacles: {
  22005. height: math.unit(2.3, "m"),
  22006. weight: math.unit(304, "kg"),
  22007. name: "Front-tentacles",
  22008. image: {
  22009. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22010. extra: 985 / 955,
  22011. bottom: 25.4 / 1012
  22012. }
  22013. },
  22014. back: {
  22015. height: math.unit(2.3, "m"),
  22016. weight: math.unit(304, "kg"),
  22017. name: "Back",
  22018. image: {
  22019. source: "./media/characters/icowom-lee/back.svg",
  22020. extra: 975 / 954,
  22021. bottom: 9.5 / 985
  22022. }
  22023. },
  22024. backtentacles: {
  22025. height: math.unit(2.3, "m"),
  22026. weight: math.unit(304, "kg"),
  22027. name: "Back-tentacles",
  22028. image: {
  22029. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22030. extra: 975 / 954,
  22031. bottom: 9.5 / 985
  22032. }
  22033. },
  22034. frontDressed: {
  22035. height: math.unit(2.3, "m"),
  22036. weight: math.unit(304, "kg"),
  22037. name: "Front (Dressed)",
  22038. image: {
  22039. source: "./media/characters/icowom-lee/front-dressed.svg",
  22040. extra: 3076 / 2933,
  22041. bottom: 51.4 / 3125.1889
  22042. }
  22043. },
  22044. rump: {
  22045. height: math.unit(0.776, "meters"),
  22046. name: "Rump",
  22047. image: {
  22048. source: "./media/characters/icowom-lee/rump.svg"
  22049. }
  22050. },
  22051. genitals: {
  22052. height: math.unit(0.78, "meters"),
  22053. name: "Genitals",
  22054. image: {
  22055. source: "./media/characters/icowom-lee/genitals.svg"
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(2.3, "meters"),
  22063. default: true
  22064. },
  22065. {
  22066. name: "Macro",
  22067. height: math.unit(94, "meters"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(22, "meters"),
  22077. weight: math.unit(21000, "kg"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/shock-diamond/front.svg",
  22081. extra: 2204 / 2053,
  22082. bottom: 65 / 2239.47
  22083. }
  22084. },
  22085. frontNude: {
  22086. height: math.unit(22, "meters"),
  22087. weight: math.unit(21000, "kg"),
  22088. name: "Front (Nude)",
  22089. image: {
  22090. source: "./media/characters/shock-diamond/front-nude.svg",
  22091. extra: 2514 / 2285,
  22092. bottom: 13 / 2527.56
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Normal",
  22099. height: math.unit(3, "meters")
  22100. },
  22101. {
  22102. name: "Macro",
  22103. height: math.unit(22, "meters"),
  22104. default: true
  22105. },
  22106. ]
  22107. ))
  22108. characterMakers.push(() => makeCharacter(
  22109. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22110. {
  22111. front: {
  22112. height: math.unit(5 + 4 / 12, "feet"),
  22113. weight: math.unit(120, "lb"),
  22114. name: "Front",
  22115. image: {
  22116. source: "./media/characters/rory/front.svg",
  22117. extra: 589 / 556,
  22118. bottom: 45.7 / 635.76
  22119. }
  22120. },
  22121. frontNude: {
  22122. height: math.unit(5 + 4 / 12, "feet"),
  22123. weight: math.unit(120, "lb"),
  22124. name: "Front (Nude)",
  22125. image: {
  22126. source: "./media/characters/rory/front-nude.svg",
  22127. extra: 589 / 556,
  22128. bottom: 45.7 / 635.76
  22129. }
  22130. },
  22131. side: {
  22132. height: math.unit(5 + 4 / 12, "feet"),
  22133. weight: math.unit(120, "lb"),
  22134. name: "Side",
  22135. image: {
  22136. source: "./media/characters/rory/side.svg",
  22137. extra: 597 / 564,
  22138. bottom: 55 / 653
  22139. }
  22140. },
  22141. back: {
  22142. height: math.unit(5 + 4 / 12, "feet"),
  22143. weight: math.unit(120, "lb"),
  22144. name: "Back",
  22145. image: {
  22146. source: "./media/characters/rory/back.svg",
  22147. extra: 620 / 585,
  22148. bottom: 8.86 / 630.43
  22149. }
  22150. },
  22151. dick: {
  22152. height: math.unit(0.86, "feet"),
  22153. name: "Dick",
  22154. image: {
  22155. source: "./media/characters/rory/dick.svg"
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 4 / 12, "feet"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Macro",
  22167. height: math.unit(100, "feet")
  22168. },
  22169. {
  22170. name: "Macro+",
  22171. height: math.unit(140, "feet")
  22172. },
  22173. {
  22174. name: "Macro++",
  22175. height: math.unit(300, "feet")
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(5 + 9 / 12, "feet"),
  22184. weight: math.unit(190, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/sprisk/front.svg",
  22188. extra: 1225 / 1180,
  22189. bottom: 42.7 / 1266.4
  22190. }
  22191. },
  22192. frontNsfw: {
  22193. height: math.unit(5 + 9 / 12, "feet"),
  22194. weight: math.unit(190, "lb"),
  22195. name: "Front (NSFW)",
  22196. image: {
  22197. source: "./media/characters/sprisk/front-nsfw.svg",
  22198. extra: 1225 / 1180,
  22199. bottom: 42.7 / 1266.4
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(5 + 9 / 12, "feet"),
  22204. weight: math.unit(190, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/sprisk/back.svg",
  22208. extra: 1247 / 1200,
  22209. bottom: 5.6 / 1253.04
  22210. }
  22211. },
  22212. },
  22213. [
  22214. {
  22215. name: "Tiny",
  22216. height: math.unit(2, "inches")
  22217. },
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(5 + 9 / 12, "feet"),
  22221. default: true
  22222. },
  22223. {
  22224. name: "Mini Macro",
  22225. height: math.unit(18, "feet")
  22226. },
  22227. {
  22228. name: "Macro",
  22229. height: math.unit(100, "feet")
  22230. },
  22231. {
  22232. name: "MACRO",
  22233. height: math.unit(50, "miles")
  22234. },
  22235. {
  22236. name: "M A C R O",
  22237. height: math.unit(300, "miles")
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22243. {
  22244. side: {
  22245. height: math.unit(15.6, "meters"),
  22246. weight: math.unit(700000, "kg"),
  22247. name: "Side",
  22248. image: {
  22249. source: "./media/characters/bunsen/side.svg",
  22250. extra: 1644 / 358
  22251. }
  22252. },
  22253. foot: {
  22254. height: math.unit(1.611 * 1644 / 358, "meter"),
  22255. name: "Foot",
  22256. image: {
  22257. source: "./media/characters/bunsen/foot.svg"
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Small",
  22264. height: math.unit(10, "feet")
  22265. },
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(15.6, "meters"),
  22269. default: true
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(4 + 11 / 12, "feet"),
  22278. weight: math.unit(140, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/sesh/front.svg",
  22282. extra: 3420 / 3231,
  22283. bottom: 72 / 3949.5
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(4 + 11 / 12, "feet")
  22291. },
  22292. {
  22293. name: "Grown",
  22294. height: math.unit(15, "feet"),
  22295. default: true
  22296. },
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(1500, "feet")
  22300. },
  22301. {
  22302. name: "Megamacro",
  22303. height: math.unit(30, "miles")
  22304. },
  22305. {
  22306. name: "Continental",
  22307. height: math.unit(3000, "miles")
  22308. },
  22309. {
  22310. name: "Gravity Mass",
  22311. height: math.unit(300000, "miles")
  22312. },
  22313. {
  22314. name: "Planet Buster",
  22315. height: math.unit(30000000, "miles")
  22316. },
  22317. {
  22318. name: "Big",
  22319. height: math.unit(3000000000, "miles")
  22320. },
  22321. ]
  22322. ))
  22323. characterMakers.push(() => makeCharacter(
  22324. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22325. {
  22326. front: {
  22327. height: math.unit(9, "feet"),
  22328. weight: math.unit(350, "lb"),
  22329. name: "Front",
  22330. image: {
  22331. source: "./media/characters/pepper/front.svg",
  22332. extra: 1448 / 1312,
  22333. bottom: 9.4 / 1457.88
  22334. }
  22335. },
  22336. back: {
  22337. height: math.unit(9, "feet"),
  22338. weight: math.unit(350, "lb"),
  22339. name: "Back",
  22340. image: {
  22341. source: "./media/characters/pepper/back.svg",
  22342. extra: 1423 / 1300,
  22343. bottom: 4.6 / 1429
  22344. }
  22345. },
  22346. maw: {
  22347. height: math.unit(0.932, "feet"),
  22348. name: "Maw",
  22349. image: {
  22350. source: "./media/characters/pepper/maw.svg"
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(9, "feet"),
  22358. default: true
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22364. {
  22365. front: {
  22366. height: math.unit(6, "feet"),
  22367. weight: math.unit(150, "lb"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/maelstrom/front.svg",
  22371. extra: 2100 / 1883,
  22372. bottom: 94 / 2196.7
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Less Kaiju",
  22379. height: math.unit(200, "feet")
  22380. },
  22381. {
  22382. name: "Kaiju",
  22383. height: math.unit(400, "feet"),
  22384. default: true
  22385. },
  22386. {
  22387. name: "Kaiju-er",
  22388. height: math.unit(600, "feet")
  22389. },
  22390. ]
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22394. {
  22395. front: {
  22396. height: math.unit(6 + 5 / 12, "feet"),
  22397. weight: math.unit(180, "lb"),
  22398. name: "Front",
  22399. image: {
  22400. source: "./media/characters/lexir/front.svg",
  22401. extra: 180 / 172,
  22402. bottom: 12 / 192
  22403. }
  22404. },
  22405. back: {
  22406. height: math.unit(6 + 5 / 12, "feet"),
  22407. weight: math.unit(180, "lb"),
  22408. name: "Back",
  22409. image: {
  22410. source: "./media/characters/lexir/back.svg",
  22411. extra: 183.84 / 175.5,
  22412. bottom: 3.1 / 187
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Very Smal",
  22419. height: math.unit(1, "nm")
  22420. },
  22421. {
  22422. name: "Normal",
  22423. height: math.unit(6 + 5 / 12, "feet"),
  22424. default: true
  22425. },
  22426. {
  22427. name: "Macro",
  22428. height: math.unit(1, "mile")
  22429. },
  22430. {
  22431. name: "Megamacro",
  22432. height: math.unit(50, "miles")
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(1.5, "meters"),
  22441. weight: math.unit(100, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/maksio/front.svg",
  22445. extra: 1549 / 1531,
  22446. bottom: 123.7 / 1674.5429
  22447. }
  22448. },
  22449. back: {
  22450. height: math.unit(1.5, "meters"),
  22451. weight: math.unit(100, "lb"),
  22452. name: "Back",
  22453. image: {
  22454. source: "./media/characters/maksio/back.svg",
  22455. extra: 1541 / 1509,
  22456. bottom: 97 / 1639
  22457. }
  22458. },
  22459. hand: {
  22460. height: math.unit(0.621, "feet"),
  22461. name: "Hand",
  22462. image: {
  22463. source: "./media/characters/maksio/hand.svg"
  22464. }
  22465. },
  22466. foot: {
  22467. height: math.unit(1.611, "feet"),
  22468. name: "Foot",
  22469. image: {
  22470. source: "./media/characters/maksio/foot.svg"
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Shrunken",
  22477. height: math.unit(10, "cm")
  22478. },
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(150, "cm"),
  22482. default: true
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22488. {
  22489. front: {
  22490. height: math.unit(100, "feet"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/erza-bear/front.svg",
  22494. extra: 2449 / 2390,
  22495. bottom: 46 / 2494
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(100, "feet"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/erza-bear/back.svg",
  22503. extra: 2489 / 2430,
  22504. bottom: 85.4 / 2480
  22505. }
  22506. },
  22507. tail: {
  22508. height: math.unit(42, "feet"),
  22509. name: "Tail",
  22510. image: {
  22511. source: "./media/characters/erza-bear/tail.svg"
  22512. }
  22513. },
  22514. tongue: {
  22515. height: math.unit(8, "feet"),
  22516. name: "Tongue",
  22517. image: {
  22518. source: "./media/characters/erza-bear/tongue.svg"
  22519. }
  22520. },
  22521. dick: {
  22522. height: math.unit(10.5, "feet"),
  22523. name: "Dick",
  22524. image: {
  22525. source: "./media/characters/erza-bear/dick.svg"
  22526. }
  22527. },
  22528. dickVertical: {
  22529. height: math.unit(16.9, "feet"),
  22530. name: "Dick (Vertical)",
  22531. image: {
  22532. source: "./media/characters/erza-bear/dick-vertical.svg"
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Macro",
  22539. height: math.unit(100, "feet"),
  22540. default: true
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(172, "cm"),
  22549. weight: math.unit(73, "kg"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/violet-flor/front.svg",
  22553. extra: 1530 / 1442,
  22554. bottom: 61.9 / 1588.8
  22555. }
  22556. },
  22557. back: {
  22558. height: math.unit(180, "cm"),
  22559. weight: math.unit(73, "kg"),
  22560. name: "Back",
  22561. image: {
  22562. source: "./media/characters/violet-flor/back.svg",
  22563. extra: 1692 / 1630,
  22564. bottom: 20 / 1712
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(172, "cm"),
  22572. default: true
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(6, "feet"),
  22581. weight: math.unit(220, "lb"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/lynn-rhea/front.svg",
  22585. extra: 310 / 273
  22586. }
  22587. },
  22588. back: {
  22589. height: math.unit(6, "feet"),
  22590. weight: math.unit(220, "lb"),
  22591. name: "Back",
  22592. image: {
  22593. source: "./media/characters/lynn-rhea/back.svg",
  22594. extra: 310 / 273
  22595. }
  22596. },
  22597. dicks: {
  22598. height: math.unit(0.9, "feet"),
  22599. name: "Dicks",
  22600. image: {
  22601. source: "./media/characters/lynn-rhea/dicks.svg"
  22602. }
  22603. },
  22604. slit: {
  22605. height: math.unit(0.4, "feet"),
  22606. name: "Slit",
  22607. image: {
  22608. source: "./media/characters/lynn-rhea/slit.svg"
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Micro",
  22615. height: math.unit(1, "inch")
  22616. },
  22617. {
  22618. name: "Macro",
  22619. height: math.unit(60, "feet"),
  22620. default: true
  22621. },
  22622. {
  22623. name: "Megamacro",
  22624. height: math.unit(2, "miles")
  22625. },
  22626. {
  22627. name: "Gigamacro",
  22628. height: math.unit(3, "earths")
  22629. },
  22630. {
  22631. name: "Galactic",
  22632. height: math.unit(0.8, "galaxies")
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22638. {
  22639. front: {
  22640. height: math.unit(1600, "feet"),
  22641. weight: math.unit(85758785169, "kg"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/valathos/front.svg",
  22645. extra: 1451 / 1339
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Macro",
  22652. height: math.unit(1600, "feet"),
  22653. default: true
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22659. {
  22660. front: {
  22661. height: math.unit(7 + 5 / 12, "feet"),
  22662. weight: math.unit(300, "lb"),
  22663. name: "Front",
  22664. image: {
  22665. source: "./media/characters/azula/front.svg",
  22666. extra: 3208 / 2880,
  22667. bottom: 80.2 / 3277
  22668. }
  22669. },
  22670. back: {
  22671. height: math.unit(7 + 5 / 12, "feet"),
  22672. weight: math.unit(300, "lb"),
  22673. name: "Back",
  22674. image: {
  22675. source: "./media/characters/azula/back.svg",
  22676. extra: 3169 / 2822,
  22677. bottom: 150.6 / 3321
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(7 + 5 / 12, "feet"),
  22685. default: true
  22686. },
  22687. {
  22688. name: "Big",
  22689. height: math.unit(20, "feet")
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22695. {
  22696. front: {
  22697. height: math.unit(5 + 1 / 12, "feet"),
  22698. weight: math.unit(110, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/rupert/front.svg",
  22702. extra: 1549 / 1495,
  22703. bottom: 54.2 / 1604.4
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(5 + 1 / 12, "feet"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22717. {
  22718. front: {
  22719. height: math.unit(8 + 4 / 12, "feet"),
  22720. weight: math.unit(350, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/sheera-castellar/front.svg",
  22724. extra: 1957 / 1894,
  22725. bottom: 26.97 / 1975.017
  22726. }
  22727. },
  22728. side: {
  22729. height: math.unit(8 + 4 / 12, "feet"),
  22730. weight: math.unit(350, "lb"),
  22731. name: "Side",
  22732. image: {
  22733. source: "./media/characters/sheera-castellar/side.svg",
  22734. extra: 1957 / 1894
  22735. }
  22736. },
  22737. back: {
  22738. height: math.unit(8 + 4 / 12, "feet"),
  22739. weight: math.unit(350, "lb"),
  22740. name: "Back",
  22741. image: {
  22742. source: "./media/characters/sheera-castellar/back.svg",
  22743. extra: 1957 / 1894
  22744. }
  22745. },
  22746. angled: {
  22747. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22748. weight: math.unit(350, "lb"),
  22749. name: "Angled",
  22750. image: {
  22751. source: "./media/characters/sheera-castellar/angled.svg",
  22752. extra: 1807 / 1707,
  22753. bottom: 68 / 1875
  22754. }
  22755. },
  22756. genitals: {
  22757. height: math.unit(2.2, "feet"),
  22758. name: "Genitals",
  22759. image: {
  22760. source: "./media/characters/sheera-castellar/genitals.svg"
  22761. }
  22762. },
  22763. taur: {
  22764. height: math.unit(10 + 6/12, "feet"),
  22765. name: "Taur",
  22766. image: {
  22767. source: "./media/characters/sheera-castellar/taur.svg",
  22768. extra: 2017/1909,
  22769. bottom: 185/2202
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(8 + 4 / 12, "feet")
  22777. },
  22778. {
  22779. name: "Macro",
  22780. height: math.unit(150, "feet"),
  22781. default: true
  22782. },
  22783. {
  22784. name: "Macro+",
  22785. height: math.unit(800, "feet")
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(6, "feet"),
  22794. weight: math.unit(150, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/jaipur/front.svg",
  22798. extra: 3860 / 3731,
  22799. bottom: 287 / 4140
  22800. }
  22801. },
  22802. back: {
  22803. height: math.unit(6, "feet"),
  22804. weight: math.unit(150, "lb"),
  22805. name: "Back",
  22806. image: {
  22807. source: "./media/characters/jaipur/back.svg",
  22808. extra: 4060 / 3930,
  22809. bottom: 151 / 4200
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Normal",
  22816. height: math.unit(1.85, "meters"),
  22817. default: true
  22818. },
  22819. {
  22820. name: "Macro",
  22821. height: math.unit(150, "meters")
  22822. },
  22823. {
  22824. name: "Macro+",
  22825. height: math.unit(0.5, "miles")
  22826. },
  22827. {
  22828. name: "Macro++",
  22829. height: math.unit(2.5, "miles")
  22830. },
  22831. {
  22832. name: "Macro+++",
  22833. height: math.unit(12, "miles")
  22834. },
  22835. {
  22836. name: "Macro++++",
  22837. height: math.unit(120, "miles")
  22838. },
  22839. {
  22840. name: "Macro+++++",
  22841. height: math.unit(1200, "miles")
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(6, "feet"),
  22850. weight: math.unit(150, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/sheila-wolf/front.svg",
  22854. extra: 1931 / 1808,
  22855. bottom: 29.5 / 1960
  22856. }
  22857. },
  22858. dick: {
  22859. height: math.unit(1.464, "feet"),
  22860. name: "Dick",
  22861. image: {
  22862. source: "./media/characters/sheila-wolf/dick.svg"
  22863. }
  22864. },
  22865. muzzle: {
  22866. height: math.unit(0.513, "feet"),
  22867. name: "Muzzle",
  22868. image: {
  22869. source: "./media/characters/sheila-wolf/muzzle.svg"
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Macro",
  22876. height: math.unit(70, "feet"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(32, "meters"),
  22886. weight: math.unit(300000, "kg"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/almor/front.svg",
  22890. extra: 1408 / 1322,
  22891. bottom: 94.6 / 1506.5
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Macro",
  22898. height: math.unit(32, "meters"),
  22899. default: true
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(7, "feet"),
  22908. weight: math.unit(200, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/silver/front.svg",
  22912. extra: 472.1 / 450.5,
  22913. bottom: 26.5 / 499.424
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(7, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Macro",
  22925. height: math.unit(800, "feet")
  22926. },
  22927. {
  22928. name: "Megamacro",
  22929. height: math.unit(250, "miles")
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(6, "feet"),
  22938. weight: math.unit(150, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/pliskin/front.svg",
  22942. extra: 1469 / 1359,
  22943. bottom: 70 / 1540
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Micro",
  22950. height: math.unit(3, "inches")
  22951. },
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(5 + 11 / 12, "feet"),
  22955. default: true
  22956. },
  22957. {
  22958. name: "Macro",
  22959. height: math.unit(120, "feet")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(6, "feet"),
  22968. weight: math.unit(150, "lb"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/sammy/front.svg",
  22972. extra: 1193 / 1089,
  22973. bottom: 30.5 / 1226
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Macro",
  22980. height: math.unit(1700, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Examacro",
  22985. height: math.unit(2.5e9, "lightyears")
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(21, "meters"),
  22994. weight: math.unit(12, "tonnes"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/kuru/front.svg",
  22998. extra: 4301 / 3785,
  22999. bottom: 371.3 / 4691
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(21, "meters"),
  23007. default: true
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23013. {
  23014. front: {
  23015. height: math.unit(23, "meters"),
  23016. weight: math.unit(12.2, "tonnes"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/rakka/front.svg",
  23020. extra: 4670 / 4169,
  23021. bottom: 301 / 4968.7
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Macro",
  23028. height: math.unit(23, "meters"),
  23029. default: true
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23035. {
  23036. front: {
  23037. height: math.unit(6, "feet"),
  23038. weight: math.unit(150, "lb"),
  23039. name: "Front",
  23040. image: {
  23041. source: "./media/characters/rhys-feline/front.svg",
  23042. extra: 2488 / 2308,
  23043. bottom: 35.67 / 2519.19
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Really Small",
  23050. height: math.unit(1, "nm")
  23051. },
  23052. {
  23053. name: "Micro",
  23054. height: math.unit(4, "inches")
  23055. },
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(4 + 10 / 12, "feet"),
  23059. default: true
  23060. },
  23061. {
  23062. name: "Macro",
  23063. height: math.unit(100, "feet")
  23064. },
  23065. {
  23066. name: "Megamacto",
  23067. height: math.unit(50, "miles")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23073. {
  23074. side: {
  23075. height: math.unit(30, "feet"),
  23076. weight: math.unit(35000, "kg"),
  23077. name: "Side",
  23078. image: {
  23079. source: "./media/characters/alydar/side.svg",
  23080. extra: 234 / 222,
  23081. bottom: 6.5 / 241
  23082. }
  23083. },
  23084. front: {
  23085. height: math.unit(30, "feet"),
  23086. weight: math.unit(35000, "kg"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/alydar/front.svg",
  23090. extra: 223.37 / 210.2,
  23091. bottom: 22.3 / 246.76
  23092. }
  23093. },
  23094. top: {
  23095. height: math.unit(64.54, "feet"),
  23096. weight: math.unit(35000, "kg"),
  23097. name: "Top",
  23098. image: {
  23099. source: "./media/characters/alydar/top.svg"
  23100. }
  23101. },
  23102. anthro: {
  23103. height: math.unit(30, "feet"),
  23104. weight: math.unit(9000, "kg"),
  23105. name: "Anthro",
  23106. image: {
  23107. source: "./media/characters/alydar/anthro.svg",
  23108. extra: 432 / 421,
  23109. bottom: 7.18 / 440
  23110. }
  23111. },
  23112. maw: {
  23113. height: math.unit(11.693, "feet"),
  23114. name: "Maw",
  23115. image: {
  23116. source: "./media/characters/alydar/maw.svg"
  23117. }
  23118. },
  23119. head: {
  23120. height: math.unit(11.693, "feet"),
  23121. name: "Head",
  23122. image: {
  23123. source: "./media/characters/alydar/head.svg"
  23124. }
  23125. },
  23126. headAlt: {
  23127. height: math.unit(12.861, "feet"),
  23128. name: "Head (Alt)",
  23129. image: {
  23130. source: "./media/characters/alydar/head-alt.svg"
  23131. }
  23132. },
  23133. wing: {
  23134. height: math.unit(20.712, "feet"),
  23135. name: "Wing",
  23136. image: {
  23137. source: "./media/characters/alydar/wing.svg"
  23138. }
  23139. },
  23140. wingFeather: {
  23141. height: math.unit(9.662, "feet"),
  23142. name: "Wing Feather",
  23143. image: {
  23144. source: "./media/characters/alydar/wing-feather.svg"
  23145. }
  23146. },
  23147. countourFeather: {
  23148. height: math.unit(4.154, "feet"),
  23149. name: "Contour Feather",
  23150. image: {
  23151. source: "./media/characters/alydar/contour-feather.svg"
  23152. }
  23153. },
  23154. },
  23155. [
  23156. {
  23157. name: "Diplomatic",
  23158. height: math.unit(13, "feet"),
  23159. default: true
  23160. },
  23161. {
  23162. name: "Small",
  23163. height: math.unit(30, "feet")
  23164. },
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(95, "feet"),
  23168. default: true
  23169. },
  23170. {
  23171. name: "Large",
  23172. height: math.unit(285, "feet")
  23173. },
  23174. {
  23175. name: "Incomprehensible",
  23176. height: math.unit(450, "megameters")
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23182. {
  23183. side: {
  23184. height: math.unit(11, "feet"),
  23185. weight: math.unit(1750, "kg"),
  23186. name: "Side",
  23187. image: {
  23188. source: "./media/characters/selicia/side.svg",
  23189. extra: 440 / 396,
  23190. bottom: 24.8 / 465.979
  23191. }
  23192. },
  23193. maw: {
  23194. height: math.unit(4.665, "feet"),
  23195. name: "Maw",
  23196. image: {
  23197. source: "./media/characters/selicia/maw.svg"
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(11, "feet"),
  23205. default: true
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23211. {
  23212. side: {
  23213. height: math.unit(2 + 6 / 12, "feet"),
  23214. weight: math.unit(30, "lb"),
  23215. name: "Side",
  23216. image: {
  23217. source: "./media/characters/layla/side.svg",
  23218. extra: 244 / 188,
  23219. bottom: 18.2 / 262.1
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(2 + 6 / 12, "feet"),
  23224. weight: math.unit(30, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/layla/back.svg",
  23228. extra: 308 / 241.5,
  23229. bottom: 8.9 / 316.8
  23230. }
  23231. },
  23232. cumming: {
  23233. height: math.unit(2 + 6 / 12, "feet"),
  23234. weight: math.unit(30, "lb"),
  23235. name: "Cumming",
  23236. image: {
  23237. source: "./media/characters/layla/cumming.svg",
  23238. extra: 342 / 279,
  23239. bottom: 595 / 938
  23240. }
  23241. },
  23242. dickFlaccid: {
  23243. height: math.unit(2.595, "feet"),
  23244. name: "Flaccid Genitals",
  23245. image: {
  23246. source: "./media/characters/layla/dick-flaccid.svg"
  23247. }
  23248. },
  23249. dickErect: {
  23250. height: math.unit(2.359, "feet"),
  23251. name: "Erect Genitals",
  23252. image: {
  23253. source: "./media/characters/layla/dick-erect.svg"
  23254. }
  23255. },
  23256. dragon: {
  23257. height: math.unit(40, "feet"),
  23258. name: "Dragon",
  23259. image: {
  23260. source: "./media/characters/layla/dragon.svg",
  23261. extra: 610/535,
  23262. bottom: 367/977
  23263. }
  23264. },
  23265. taur: {
  23266. height: math.unit(30, "feet"),
  23267. name: "Taur",
  23268. image: {
  23269. source: "./media/characters/layla/taur.svg",
  23270. extra: 1268/1199,
  23271. bottom: 112/1380
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Micro",
  23278. height: math.unit(1, "inch")
  23279. },
  23280. {
  23281. name: "Small",
  23282. height: math.unit(1, "foot")
  23283. },
  23284. {
  23285. name: "Normal",
  23286. height: math.unit(2 + 6 / 12, "feet"),
  23287. default: true
  23288. },
  23289. {
  23290. name: "Macro",
  23291. height: math.unit(200, "feet")
  23292. },
  23293. {
  23294. name: "Megamacro",
  23295. height: math.unit(1000, "miles")
  23296. },
  23297. {
  23298. name: "Planetary",
  23299. height: math.unit(8000, "miles")
  23300. },
  23301. {
  23302. name: "True Layla",
  23303. height: math.unit(200000 * 7, "multiverses")
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23309. {
  23310. back: {
  23311. height: math.unit(10.5, "feet"),
  23312. weight: math.unit(800, "lb"),
  23313. name: "Back",
  23314. image: {
  23315. source: "./media/characters/knox/back.svg",
  23316. extra: 1486 / 1089,
  23317. bottom: 107 / 1601.4
  23318. }
  23319. },
  23320. side: {
  23321. height: math.unit(10.5, "feet"),
  23322. weight: math.unit(800, "lb"),
  23323. name: "Side",
  23324. image: {
  23325. source: "./media/characters/knox/side.svg",
  23326. extra: 244 / 218,
  23327. bottom: 14 / 260
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Compact",
  23334. height: math.unit(10.5, "feet"),
  23335. default: true
  23336. },
  23337. {
  23338. name: "Dynamax",
  23339. height: math.unit(210, "feet")
  23340. },
  23341. {
  23342. name: "Full Macro",
  23343. height: math.unit(850, "feet")
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(6, "feet"),
  23352. weight: math.unit(152, "lb"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/shin-pikachu/front.svg",
  23356. extra: 1574 / 1480,
  23357. bottom: 53.3 / 1626
  23358. }
  23359. },
  23360. hand: {
  23361. height: math.unit(1.055, "feet"),
  23362. name: "Hand",
  23363. image: {
  23364. source: "./media/characters/shin-pikachu/hand.svg"
  23365. }
  23366. },
  23367. foot: {
  23368. height: math.unit(1.1, "feet"),
  23369. name: "Foot",
  23370. image: {
  23371. source: "./media/characters/shin-pikachu/foot.svg"
  23372. }
  23373. },
  23374. collar: {
  23375. height: math.unit(0.386, "feet"),
  23376. name: "Collar",
  23377. image: {
  23378. source: "./media/characters/shin-pikachu/collar.svg"
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Smallest",
  23385. height: math.unit(0.5, "inches")
  23386. },
  23387. {
  23388. name: "Micro",
  23389. height: math.unit(6, "inches")
  23390. },
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(6, "feet"),
  23394. default: true
  23395. },
  23396. {
  23397. name: "Macro",
  23398. height: math.unit(150, "feet")
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(28, "feet"),
  23407. weight: math.unit(10500, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/kayda/front.svg",
  23411. extra: 1536 / 1428,
  23412. bottom: 68.7 / 1603
  23413. }
  23414. },
  23415. back: {
  23416. height: math.unit(28, "feet"),
  23417. weight: math.unit(10500, "lb"),
  23418. name: "Back",
  23419. image: {
  23420. source: "./media/characters/kayda/back.svg",
  23421. extra: 1557 / 1464,
  23422. bottom: 39.5 / 1597.49
  23423. }
  23424. },
  23425. dick: {
  23426. height: math.unit(3.858, "feet"),
  23427. name: "Dick",
  23428. image: {
  23429. source: "./media/characters/kayda/dick.svg"
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Macro",
  23436. height: math.unit(28, "feet"),
  23437. default: true
  23438. },
  23439. ]
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(10 + 11 / 12, "feet"),
  23446. weight: math.unit(1400, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/brian/front.svg",
  23450. extra: 737 / 692,
  23451. bottom: 55.4 / 785
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Normal",
  23458. height: math.unit(10 + 11 / 12, "feet"),
  23459. default: true
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23465. {
  23466. front: {
  23467. height: math.unit(5 + 8 / 12, "feet"),
  23468. weight: math.unit(140, "lb"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/khemri/front.svg",
  23472. extra: 4780 / 4059,
  23473. bottom: 80.1 / 4859.25
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Micro",
  23480. height: math.unit(6, "inches")
  23481. },
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(5 + 8 / 12, "feet"),
  23485. default: true
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23491. {
  23492. front: {
  23493. height: math.unit(13, "feet"),
  23494. weight: math.unit(1700, "lb"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/felix-braveheart/front.svg",
  23498. extra: 1222 / 1157,
  23499. bottom: 53.2 / 1280
  23500. }
  23501. },
  23502. back: {
  23503. height: math.unit(13, "feet"),
  23504. weight: math.unit(1700, "lb"),
  23505. name: "Back",
  23506. image: {
  23507. source: "./media/characters/felix-braveheart/back.svg",
  23508. extra: 1277 / 1203,
  23509. bottom: 50.2 / 1327
  23510. }
  23511. },
  23512. feral: {
  23513. height: math.unit(6, "feet"),
  23514. weight: math.unit(400, "lb"),
  23515. name: "Feral",
  23516. image: {
  23517. source: "./media/characters/felix-braveheart/feral.svg",
  23518. extra: 682 / 625,
  23519. bottom: 6.9 / 688
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Normal",
  23526. height: math.unit(13, "feet"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23533. {
  23534. side: {
  23535. height: math.unit(5 + 11 / 12, "feet"),
  23536. weight: math.unit(1400, "lb"),
  23537. name: "Side",
  23538. image: {
  23539. source: "./media/characters/shadow-blade/side.svg",
  23540. extra: 1726 / 1267,
  23541. bottom: 58.4 / 1785
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Normal",
  23548. height: math.unit(5 + 11 / 12, "feet"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(1 + 6 / 12, "feet"),
  23558. weight: math.unit(25, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/karla-halldor/front.svg",
  23562. extra: 1459 / 1383,
  23563. bottom: 12 / 1472
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(1 + 6 / 12, "feet"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(6 + 2 / 12, "feet"),
  23580. weight: math.unit(160, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/ariam/front.svg",
  23584. extra: 714 / 617,
  23585. bottom: 23.4 / 737,
  23586. }
  23587. },
  23588. squatting: {
  23589. height: math.unit(4.1, "feet"),
  23590. weight: math.unit(160, "lb"),
  23591. name: "Squatting",
  23592. image: {
  23593. source: "./media/characters/ariam/squatting.svg",
  23594. extra: 2617 / 2112,
  23595. bottom: 61.2 / 2681,
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(6 + 2 / 12, "feet"),
  23603. default: true
  23604. },
  23605. {
  23606. name: "Normal+",
  23607. height: math.unit(4, "meters")
  23608. },
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(50, "meters")
  23612. },
  23613. {
  23614. name: "Macro+",
  23615. height: math.unit(100, "meters")
  23616. },
  23617. {
  23618. name: "Megamacro",
  23619. height: math.unit(20, "km")
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(1.67, "meters"),
  23628. weight: math.unit(140, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23632. extra: 438 / 410,
  23633. bottom: 0.75 / 439
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Shrunken",
  23640. height: math.unit(7.6, "cm")
  23641. },
  23642. {
  23643. name: "Human Scale",
  23644. height: math.unit(1.67, "meters")
  23645. },
  23646. {
  23647. name: "Wolxi Scale",
  23648. height: math.unit(36.7, "meters"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(1.73, "meters"),
  23658. weight: math.unit(240, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/izue-two-mothers/front.svg",
  23662. extra: 469 / 437,
  23663. bottom: 1.24 / 470.6
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Shrunken",
  23670. height: math.unit(7.86, "cm")
  23671. },
  23672. {
  23673. name: "Human Scale",
  23674. height: math.unit(1.73, "meters")
  23675. },
  23676. {
  23677. name: "Wolxi Scale",
  23678. height: math.unit(38, "meters"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(1.55, "meters"),
  23688. weight: math.unit(120, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/teeku-love-shack/front.svg",
  23692. extra: 387 / 362,
  23693. bottom: 1.51 / 388
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Shrunken",
  23700. height: math.unit(7, "cm")
  23701. },
  23702. {
  23703. name: "Human Scale",
  23704. height: math.unit(1.55, "meters")
  23705. },
  23706. {
  23707. name: "Wolxi Scale",
  23708. height: math.unit(34.1, "meters"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(1.83, "meters"),
  23718. weight: math.unit(135, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/dejma-the-red/front.svg",
  23722. extra: 480 / 458,
  23723. bottom: 1.8 / 482
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Shrunken",
  23730. height: math.unit(8.3, "cm")
  23731. },
  23732. {
  23733. name: "Human Scale",
  23734. height: math.unit(1.83, "meters")
  23735. },
  23736. {
  23737. name: "Wolxi Scale",
  23738. height: math.unit(40, "meters"),
  23739. default: true
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(1.78, "meters"),
  23748. weight: math.unit(65, "kg"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/aki/front.svg",
  23752. extra: 452 / 415
  23753. }
  23754. },
  23755. frontNsfw: {
  23756. height: math.unit(1.78, "meters"),
  23757. weight: math.unit(65, "kg"),
  23758. name: "Front (NSFW)",
  23759. image: {
  23760. source: "./media/characters/aki/front-nsfw.svg",
  23761. extra: 452 / 415
  23762. }
  23763. },
  23764. back: {
  23765. height: math.unit(1.78, "meters"),
  23766. weight: math.unit(65, "kg"),
  23767. name: "Back",
  23768. image: {
  23769. source: "./media/characters/aki/back.svg",
  23770. extra: 452 / 415
  23771. }
  23772. },
  23773. rump: {
  23774. height: math.unit(2.05, "feet"),
  23775. name: "Rump",
  23776. image: {
  23777. source: "./media/characters/aki/rump.svg"
  23778. }
  23779. },
  23780. dick: {
  23781. height: math.unit(0.95, "feet"),
  23782. name: "Dick",
  23783. image: {
  23784. source: "./media/characters/aki/dick.svg"
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Micro",
  23791. height: math.unit(15, "cm")
  23792. },
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(178, "cm"),
  23796. default: true
  23797. },
  23798. {
  23799. name: "Macro",
  23800. height: math.unit(214, "m")
  23801. },
  23802. {
  23803. name: "Macro+",
  23804. height: math.unit(534, "m")
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(5 + 5 / 12, "feet"),
  23813. weight: math.unit(120, "lb"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/ari/front.svg",
  23817. extra: 714.5 / 682,
  23818. bottom: 8 / 722.5
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Normal",
  23825. height: math.unit(5 + 5 / 12, "feet")
  23826. },
  23827. {
  23828. name: "Macro",
  23829. height: math.unit(100, "feet"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Megamacro",
  23834. height: math.unit(100, "miles")
  23835. },
  23836. {
  23837. name: "Gigamacro",
  23838. height: math.unit(80000, "miles")
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23844. {
  23845. side: {
  23846. height: math.unit(9, "feet"),
  23847. weight: math.unit(400, "kg"),
  23848. name: "Side",
  23849. image: {
  23850. source: "./media/characters/bolt/side.svg",
  23851. extra: 1126 / 896,
  23852. bottom: 60 / 1187.3,
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Micro",
  23859. height: math.unit(5, "inches")
  23860. },
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(9, "feet"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Macro",
  23868. height: math.unit(700, "feet")
  23869. },
  23870. {
  23871. name: "Max Size",
  23872. height: math.unit(1.52e22, "yottameters")
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(4.53, "meters"),
  23881. weight: math.unit(3, "tons"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/draekon-sylviar/front.svg",
  23885. extra: 1228 / 1068,
  23886. bottom: 41 / 1270
  23887. }
  23888. },
  23889. tail: {
  23890. height: math.unit(1.772, "meter"),
  23891. name: "Tail",
  23892. image: {
  23893. source: "./media/characters/draekon-sylviar/tail.svg"
  23894. }
  23895. },
  23896. head: {
  23897. height: math.unit(1.331, "meter"),
  23898. name: "Head",
  23899. image: {
  23900. source: "./media/characters/draekon-sylviar/head.svg"
  23901. }
  23902. },
  23903. hand: {
  23904. height: math.unit(0.564, "meter"),
  23905. name: "Hand",
  23906. image: {
  23907. source: "./media/characters/draekon-sylviar/hand.svg"
  23908. }
  23909. },
  23910. foot: {
  23911. height: math.unit(0.621, "meter"),
  23912. name: "Foot",
  23913. image: {
  23914. source: "./media/characters/draekon-sylviar/foot.svg",
  23915. bottom: 32 / 324
  23916. }
  23917. },
  23918. dick: {
  23919. height: math.unit(61, "cm"),
  23920. name: "Dick",
  23921. image: {
  23922. source: "./media/characters/draekon-sylviar/dick.svg"
  23923. }
  23924. },
  23925. dickseparated: {
  23926. height: math.unit(61, "cm"),
  23927. name: "Dick-separated",
  23928. image: {
  23929. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Small",
  23936. height: math.unit(4.53 / 2, "meters"),
  23937. default: true
  23938. },
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(4.53, "meters"),
  23942. default: true
  23943. },
  23944. {
  23945. name: "Large",
  23946. height: math.unit(4.53 * 2, "meters"),
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(6 + 2 / 12, "feet"),
  23955. weight: math.unit(180, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/brawler/front.svg",
  23959. extra: 3301 / 3027,
  23960. bottom: 138 / 3439
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(6 + 2 / 12, "feet"),
  23968. default: true
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23974. {
  23975. front: {
  23976. height: math.unit(11, "feet"),
  23977. weight: math.unit(1000, "lb"),
  23978. name: "Front",
  23979. image: {
  23980. source: "./media/characters/alex/front.svg",
  23981. bottom: 44.5 / 620
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Micro",
  23988. height: math.unit(5, "inches")
  23989. },
  23990. {
  23991. name: "Normal",
  23992. height: math.unit(11, "feet"),
  23993. default: true
  23994. },
  23995. {
  23996. name: "Macro",
  23997. height: math.unit(9.5e9, "feet")
  23998. },
  23999. {
  24000. name: "Max Size",
  24001. height: math.unit(1.4e283, "yottameters")
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24007. {
  24008. female: {
  24009. height: math.unit(29.9, "m"),
  24010. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24011. name: "Female",
  24012. image: {
  24013. source: "./media/characters/zenari/female.svg",
  24014. extra: 3281.6 / 3217,
  24015. bottom: 72.2 / 3353
  24016. }
  24017. },
  24018. male: {
  24019. height: math.unit(27.7, "m"),
  24020. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24021. name: "Male",
  24022. image: {
  24023. source: "./media/characters/zenari/male.svg",
  24024. extra: 3008 / 2991,
  24025. bottom: 54.6 / 3069
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(29.7, "meters"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24039. {
  24040. female: {
  24041. height: math.unit(23.8, "m"),
  24042. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24043. name: "Female",
  24044. image: {
  24045. source: "./media/characters/mactarian/female.svg",
  24046. extra: 2662 / 2569,
  24047. bottom: 73 / 2736
  24048. }
  24049. },
  24050. male: {
  24051. height: math.unit(23.8, "m"),
  24052. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24053. name: "Male",
  24054. image: {
  24055. source: "./media/characters/mactarian/male.svg",
  24056. extra: 2673 / 2600,
  24057. bottom: 76 / 2750
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Macro",
  24064. height: math.unit(23.8, "meters"),
  24065. default: true
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24071. {
  24072. female: {
  24073. height: math.unit(19.3, "m"),
  24074. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24075. name: "Female",
  24076. image: {
  24077. source: "./media/characters/umok/female.svg",
  24078. extra: 2186 / 2078,
  24079. bottom: 87 / 2277
  24080. }
  24081. },
  24082. male: {
  24083. height: math.unit(19.5, "m"),
  24084. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24085. name: "Male",
  24086. image: {
  24087. source: "./media/characters/umok/male.svg",
  24088. extra: 2233 / 2140,
  24089. bottom: 24.4 / 2258
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(19.3, "meters"),
  24097. default: true
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24103. {
  24104. female: {
  24105. height: math.unit(26.15, "m"),
  24106. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24107. name: "Female",
  24108. image: {
  24109. source: "./media/characters/joraxian/female.svg",
  24110. extra: 2912 / 2824,
  24111. bottom: 36 / 2956
  24112. }
  24113. },
  24114. male: {
  24115. height: math.unit(25.4, "m"),
  24116. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24117. name: "Male",
  24118. image: {
  24119. source: "./media/characters/joraxian/male.svg",
  24120. extra: 2877 / 2721,
  24121. bottom: 82 / 2967
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Macro",
  24128. height: math.unit(26.15, "meters"),
  24129. default: true
  24130. },
  24131. ]
  24132. ))
  24133. characterMakers.push(() => makeCharacter(
  24134. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24135. {
  24136. female: {
  24137. height: math.unit(21.6, "m"),
  24138. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24139. name: "Female",
  24140. image: {
  24141. source: "./media/characters/sthara/female.svg",
  24142. extra: 2516 / 2347,
  24143. bottom: 21.5 / 2537
  24144. }
  24145. },
  24146. male: {
  24147. height: math.unit(24, "m"),
  24148. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24149. name: "Male",
  24150. image: {
  24151. source: "./media/characters/sthara/male.svg",
  24152. extra: 2732 / 2607,
  24153. bottom: 23 / 2732
  24154. }
  24155. },
  24156. },
  24157. [
  24158. {
  24159. name: "Macro",
  24160. height: math.unit(21.6, "meters"),
  24161. default: true
  24162. },
  24163. ]
  24164. ))
  24165. characterMakers.push(() => makeCharacter(
  24166. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24167. {
  24168. front: {
  24169. height: math.unit(6 + 4 / 12, "feet"),
  24170. weight: math.unit(175, "lb"),
  24171. name: "Front",
  24172. image: {
  24173. source: "./media/characters/luka-bryzant/front.svg",
  24174. extra: 311 / 289,
  24175. bottom: 4 / 315
  24176. }
  24177. },
  24178. back: {
  24179. height: math.unit(6 + 4 / 12, "feet"),
  24180. weight: math.unit(175, "lb"),
  24181. name: "Back",
  24182. image: {
  24183. source: "./media/characters/luka-bryzant/back.svg",
  24184. extra: 311 / 289,
  24185. bottom: 3.8 / 313.7
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Micro",
  24192. height: math.unit(10, "inches")
  24193. },
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(6 + 4 / 12, "feet"),
  24197. default: true
  24198. },
  24199. {
  24200. name: "Large",
  24201. height: math.unit(12, "feet")
  24202. },
  24203. ]
  24204. ))
  24205. characterMakers.push(() => makeCharacter(
  24206. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24207. {
  24208. front: {
  24209. height: math.unit(5 + 7 / 12, "feet"),
  24210. weight: math.unit(185, "lb"),
  24211. name: "Front",
  24212. image: {
  24213. source: "./media/characters/aman-aquila/front.svg",
  24214. extra: 1013 / 976,
  24215. bottom: 45.6 / 1057
  24216. }
  24217. },
  24218. side: {
  24219. height: math.unit(5 + 7 / 12, "feet"),
  24220. weight: math.unit(185, "lb"),
  24221. name: "Side",
  24222. image: {
  24223. source: "./media/characters/aman-aquila/side.svg",
  24224. extra: 1054 / 1011,
  24225. bottom: 15 / 1070
  24226. }
  24227. },
  24228. back: {
  24229. height: math.unit(5 + 7 / 12, "feet"),
  24230. weight: math.unit(185, "lb"),
  24231. name: "Back",
  24232. image: {
  24233. source: "./media/characters/aman-aquila/back.svg",
  24234. extra: 1026 / 970,
  24235. bottom: 12 / 1039
  24236. }
  24237. },
  24238. head: {
  24239. height: math.unit(1.211, "feet"),
  24240. name: "Head",
  24241. image: {
  24242. source: "./media/characters/aman-aquila/head.svg",
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Minimicro",
  24249. height: math.unit(0.057, "inches")
  24250. },
  24251. {
  24252. name: "Micro",
  24253. height: math.unit(7, "inches")
  24254. },
  24255. {
  24256. name: "Mini",
  24257. height: math.unit(3 + 7 / 12, "feet")
  24258. },
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(5 + 7 / 12, "feet"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Macro",
  24266. height: math.unit(157 + 7 / 12, "feet")
  24267. },
  24268. {
  24269. name: "Megamacro",
  24270. height: math.unit(1557 + 7 / 12, "feet")
  24271. },
  24272. {
  24273. name: "Gigamacro",
  24274. height: math.unit(15557 + 7 / 12, "feet")
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(3 + 2 / 12, "inches"),
  24283. weight: math.unit(0.3, "ounces"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/hiphae/front.svg",
  24287. extra: 1931 / 1683,
  24288. bottom: 24 / 1955
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(3 + 1 / 2, "inches"),
  24296. default: true
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(5 + 10 / 12, "feet"),
  24305. weight: math.unit(165, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/nicky/front.svg",
  24309. extra: 3144 / 2886,
  24310. bottom: 45.6 / 3192
  24311. }
  24312. },
  24313. back: {
  24314. height: math.unit(5 + 10 / 12, "feet"),
  24315. weight: math.unit(165, "lb"),
  24316. name: "Back",
  24317. image: {
  24318. source: "./media/characters/nicky/back.svg",
  24319. extra: 3055 / 2804,
  24320. bottom: 28.4 / 3087
  24321. }
  24322. },
  24323. frontclothed: {
  24324. height: math.unit(5 + 10 / 12, "feet"),
  24325. weight: math.unit(165, "lb"),
  24326. name: "Front-clothed",
  24327. image: {
  24328. source: "./media/characters/nicky/front-clothed.svg",
  24329. extra: 3184.9 / 2926.9,
  24330. bottom: 86.5 / 3239.9
  24331. }
  24332. },
  24333. foot: {
  24334. height: math.unit(1.16, "feet"),
  24335. name: "Foot",
  24336. image: {
  24337. source: "./media/characters/nicky/foot.svg"
  24338. }
  24339. },
  24340. feet: {
  24341. height: math.unit(1.34, "feet"),
  24342. name: "Feet",
  24343. image: {
  24344. source: "./media/characters/nicky/feet.svg"
  24345. }
  24346. },
  24347. maw: {
  24348. height: math.unit(0.9, "feet"),
  24349. name: "Maw",
  24350. image: {
  24351. source: "./media/characters/nicky/maw.svg"
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(5 + 10 / 12, "feet"),
  24359. default: true
  24360. },
  24361. {
  24362. name: "Macro",
  24363. height: math.unit(60, "feet")
  24364. },
  24365. {
  24366. name: "Megamacro",
  24367. height: math.unit(1, "mile")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24373. {
  24374. side: {
  24375. height: math.unit(10, "feet"),
  24376. weight: math.unit(600, "lb"),
  24377. name: "Side",
  24378. image: {
  24379. source: "./media/characters/blair/side.svg",
  24380. bottom: 16.6 / 475,
  24381. extra: 458 / 431
  24382. }
  24383. },
  24384. },
  24385. [
  24386. {
  24387. name: "Micro",
  24388. height: math.unit(8, "inches")
  24389. },
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(10, "feet"),
  24393. default: true
  24394. },
  24395. {
  24396. name: "Macro",
  24397. height: math.unit(180, "feet")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(5 + 4 / 12, "feet"),
  24406. weight: math.unit(125, "lb"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/fisher/front.svg",
  24410. extra: 444 / 390,
  24411. bottom: 2 / 444.8
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Micro",
  24418. height: math.unit(4, "inches")
  24419. },
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(5 + 4 / 12, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Macro",
  24427. height: math.unit(100, "feet")
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24433. {
  24434. front: {
  24435. height: math.unit(6.71, "feet"),
  24436. weight: math.unit(200, "lb"),
  24437. capacity: math.unit(1000000, "people"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/gliss/front.svg",
  24441. extra: 2347 / 2231,
  24442. bottom: 113 / 2462
  24443. }
  24444. },
  24445. hammerspaceSize: {
  24446. height: math.unit(6.71 * 717, "feet"),
  24447. weight: math.unit(200, "lb"),
  24448. capacity: math.unit(1000000, "people"),
  24449. name: "Hammerspace Size",
  24450. image: {
  24451. source: "./media/characters/gliss/front.svg",
  24452. extra: 2347 / 2231,
  24453. bottom: 113 / 2462
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Normal",
  24460. height: math.unit(6.71, "feet"),
  24461. default: true
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24467. {
  24468. side: {
  24469. height: math.unit(1.44, "m"),
  24470. weight: math.unit(80, "kg"),
  24471. name: "Side",
  24472. image: {
  24473. source: "./media/characters/dune-anderson/side.svg",
  24474. bottom: 49 / 1426
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Wolf-sized",
  24481. height: math.unit(1.44, "meters")
  24482. },
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(5.05, "meters"),
  24486. default: true
  24487. },
  24488. {
  24489. name: "Big",
  24490. height: math.unit(14.4, "meters")
  24491. },
  24492. {
  24493. name: "Huge",
  24494. height: math.unit(144, "meters")
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(7, "feet"),
  24503. weight: math.unit(425, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/hind/front.svg",
  24507. extra: 2091 / 1860,
  24508. bottom: 129 / 2220
  24509. }
  24510. },
  24511. back: {
  24512. height: math.unit(7, "feet"),
  24513. weight: math.unit(425, "lb"),
  24514. name: "Back",
  24515. image: {
  24516. source: "./media/characters/hind/back.svg",
  24517. extra: 2091 / 1860,
  24518. bottom: 24.6 / 2309
  24519. }
  24520. },
  24521. tail: {
  24522. height: math.unit(2.8, "feet"),
  24523. name: "Tail",
  24524. image: {
  24525. source: "./media/characters/hind/tail.svg"
  24526. }
  24527. },
  24528. head: {
  24529. height: math.unit(2.55, "feet"),
  24530. name: "Head",
  24531. image: {
  24532. source: "./media/characters/hind/head.svg"
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "XS",
  24539. height: math.unit(0.7, "feet")
  24540. },
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(7, "feet"),
  24544. default: true
  24545. },
  24546. {
  24547. name: "XL",
  24548. height: math.unit(70, "feet")
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(6, "feet"),
  24557. weight: math.unit(150, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/dylan-skaven/front.svg",
  24561. extra: 2318 / 2063,
  24562. bottom: 93.4 / 2410
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Nano",
  24569. height: math.unit(1, "mm")
  24570. },
  24571. {
  24572. name: "Micro",
  24573. height: math.unit(1, "cm")
  24574. },
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(2.1, "meters"),
  24578. default: true
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(7 + 5 / 12, "feet"),
  24587. weight: math.unit(357, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/solex-draconov/front.svg",
  24591. extra: 1993 / 1865,
  24592. bottom: 117 / 2111
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Natural Height",
  24599. height: math.unit(7 + 5 / 12, "feet"),
  24600. default: true
  24601. },
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(350, "feet")
  24605. },
  24606. {
  24607. name: "Macro+",
  24608. height: math.unit(1000, "feet")
  24609. },
  24610. {
  24611. name: "Megamacro",
  24612. height: math.unit(20, "km")
  24613. },
  24614. {
  24615. name: "Megamacro+",
  24616. height: math.unit(1000, "km")
  24617. },
  24618. {
  24619. name: "Gigamacro",
  24620. height: math.unit(2.5, "Gm")
  24621. },
  24622. {
  24623. name: "Teramacro",
  24624. height: math.unit(15, "Tm")
  24625. },
  24626. {
  24627. name: "Galactic",
  24628. height: math.unit(30, "Zm")
  24629. },
  24630. {
  24631. name: "Universal",
  24632. height: math.unit(21000, "Ym")
  24633. },
  24634. {
  24635. name: "Omniversal",
  24636. height: math.unit(9.861e50, "Ym")
  24637. },
  24638. {
  24639. name: "Existential",
  24640. height: math.unit(1e300, "meters")
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24646. {
  24647. side: {
  24648. height: math.unit(25, "feet"),
  24649. weight: math.unit(90000, "lb"),
  24650. name: "Side",
  24651. image: {
  24652. source: "./media/characters/mandarax/side.svg",
  24653. extra: 614 / 332,
  24654. bottom: 55 / 630
  24655. }
  24656. },
  24657. head: {
  24658. height: math.unit(11.4, "feet"),
  24659. name: "Head",
  24660. image: {
  24661. source: "./media/characters/mandarax/head.svg"
  24662. }
  24663. },
  24664. belly: {
  24665. height: math.unit(33, "feet"),
  24666. name: "Belly",
  24667. capacity: math.unit(500, "people"),
  24668. image: {
  24669. source: "./media/characters/mandarax/belly.svg"
  24670. }
  24671. },
  24672. dick: {
  24673. height: math.unit(8.46, "feet"),
  24674. name: "Dick",
  24675. image: {
  24676. source: "./media/characters/mandarax/dick.svg"
  24677. }
  24678. },
  24679. top: {
  24680. height: math.unit(28, "meters"),
  24681. name: "Top",
  24682. image: {
  24683. source: "./media/characters/mandarax/top.svg"
  24684. }
  24685. },
  24686. },
  24687. [
  24688. {
  24689. name: "Normal",
  24690. height: math.unit(25, "feet"),
  24691. default: true
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24697. {
  24698. front: {
  24699. height: math.unit(5, "feet"),
  24700. weight: math.unit(90, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/pixil/front.svg",
  24704. extra: 2000 / 1618,
  24705. bottom: 12.3 / 2011
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(5, "feet"),
  24713. default: true
  24714. },
  24715. {
  24716. name: "Megamacro",
  24717. height: math.unit(10, "miles"),
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(7 + 2 / 12, "feet"),
  24726. weight: math.unit(200, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/angel/front.svg",
  24730. extra: 1830 / 1737,
  24731. bottom: 22.6 / 1854,
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(7 + 2 / 12, "feet"),
  24739. default: true
  24740. },
  24741. {
  24742. name: "Macro",
  24743. height: math.unit(1000, "feet")
  24744. },
  24745. {
  24746. name: "Megamacro",
  24747. height: math.unit(2, "miles")
  24748. },
  24749. {
  24750. name: "Gigamacro",
  24751. height: math.unit(20, "earths")
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(5, "feet"),
  24760. weight: math.unit(180, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/mekana/front.svg",
  24764. extra: 1671 / 1605,
  24765. bottom: 3.5 / 1691
  24766. }
  24767. },
  24768. side: {
  24769. height: math.unit(5, "feet"),
  24770. weight: math.unit(180, "lb"),
  24771. name: "Side",
  24772. image: {
  24773. source: "./media/characters/mekana/side.svg",
  24774. extra: 1671 / 1605,
  24775. bottom: 3.5 / 1691
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(5, "feet"),
  24780. weight: math.unit(180, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/mekana/back.svg",
  24784. extra: 1671 / 1605,
  24785. bottom: 3.5 / 1691
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(5, "feet"),
  24793. default: true
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(4 + 6 / 12, "feet"),
  24802. weight: math.unit(80, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/pixie/front.svg",
  24806. extra: 1924 / 1825,
  24807. bottom: 22.4 / 1946
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(4 + 6 / 12, "feet"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Macro",
  24819. height: math.unit(40, "feet")
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(2.1, "meters"),
  24828. weight: math.unit(200, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/the-lascivious/front.svg",
  24832. extra: 1 / 0.893,
  24833. bottom: 3.5 / 573.7
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Human Scale",
  24840. height: math.unit(2.1, "meters")
  24841. },
  24842. {
  24843. name: "Wolxi Scale",
  24844. height: math.unit(46.2, "m"),
  24845. default: true
  24846. },
  24847. {
  24848. name: "Boinker of Buildings",
  24849. height: math.unit(10, "km")
  24850. },
  24851. {
  24852. name: "Shagger of Skyscrapers",
  24853. height: math.unit(40, "km")
  24854. },
  24855. {
  24856. name: "Banger of Boroughs",
  24857. height: math.unit(4000, "km")
  24858. },
  24859. {
  24860. name: "Screwer of States",
  24861. height: math.unit(100000, "km")
  24862. },
  24863. {
  24864. name: "Pounder of Planets",
  24865. height: math.unit(2000000, "km")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(6, "feet"),
  24874. weight: math.unit(150, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/aj/front.svg",
  24878. extra: 2039 / 1562,
  24879. bottom: 40 / 2079
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(11 + 6 / 12, "feet"),
  24887. default: true
  24888. },
  24889. {
  24890. name: "Megamacro",
  24891. height: math.unit(60, "megameters")
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24897. {
  24898. side: {
  24899. height: math.unit(31 + 8 / 12, "feet"),
  24900. weight: math.unit(75000, "kg"),
  24901. name: "Side",
  24902. image: {
  24903. source: "./media/characters/koros/side.svg",
  24904. extra: 1442 / 1297,
  24905. bottom: 122.7 / 1562
  24906. }
  24907. },
  24908. dicksKingsCrown: {
  24909. height: math.unit(6, "feet"),
  24910. name: "Dicks (King's Crown)",
  24911. image: {
  24912. source: "./media/characters/koros/dicks-kings-crown.svg"
  24913. }
  24914. },
  24915. dicksTailSet: {
  24916. height: math.unit(3, "feet"),
  24917. name: "Dicks (Tail Set)",
  24918. image: {
  24919. source: "./media/characters/koros/dicks-tail-set.svg"
  24920. }
  24921. },
  24922. dickCumming: {
  24923. height: math.unit(7.98, "feet"),
  24924. name: "Dick (Cumming)",
  24925. image: {
  24926. source: "./media/characters/koros/dick-cumming.svg"
  24927. }
  24928. },
  24929. dicksBack: {
  24930. height: math.unit(5.9, "feet"),
  24931. name: "Dicks (Back)",
  24932. image: {
  24933. source: "./media/characters/koros/dicks-back.svg"
  24934. }
  24935. },
  24936. dicksFront: {
  24937. height: math.unit(3.72, "feet"),
  24938. name: "Dicks (Front)",
  24939. image: {
  24940. source: "./media/characters/koros/dicks-front.svg"
  24941. }
  24942. },
  24943. dicksPeeking: {
  24944. height: math.unit(3.0, "feet"),
  24945. name: "Dicks (Peeking)",
  24946. image: {
  24947. source: "./media/characters/koros/dicks-peeking.svg"
  24948. }
  24949. },
  24950. eye: {
  24951. height: math.unit(1.7, "feet"),
  24952. name: "Eye",
  24953. image: {
  24954. source: "./media/characters/koros/eye.svg"
  24955. }
  24956. },
  24957. headFront: {
  24958. height: math.unit(11.69, "feet"),
  24959. name: "Head (Front)",
  24960. image: {
  24961. source: "./media/characters/koros/head-front.svg"
  24962. }
  24963. },
  24964. headSide: {
  24965. height: math.unit(14, "feet"),
  24966. name: "Head (Side)",
  24967. image: {
  24968. source: "./media/characters/koros/head-side.svg"
  24969. }
  24970. },
  24971. leg: {
  24972. height: math.unit(17, "feet"),
  24973. name: "Leg",
  24974. image: {
  24975. source: "./media/characters/koros/leg.svg"
  24976. }
  24977. },
  24978. mawSide: {
  24979. height: math.unit(12.8, "feet"),
  24980. name: "Maw (Side)",
  24981. image: {
  24982. source: "./media/characters/koros/maw-side.svg"
  24983. }
  24984. },
  24985. mawSpitting: {
  24986. height: math.unit(17, "feet"),
  24987. name: "Maw (Spitting)",
  24988. image: {
  24989. source: "./media/characters/koros/maw-spitting.svg"
  24990. }
  24991. },
  24992. slit: {
  24993. height: math.unit(2.8, "feet"),
  24994. name: "Slit",
  24995. image: {
  24996. source: "./media/characters/koros/slit.svg"
  24997. }
  24998. },
  24999. stomach: {
  25000. height: math.unit(6.8, "feet"),
  25001. capacity: math.unit(20, "people"),
  25002. name: "Stomach",
  25003. image: {
  25004. source: "./media/characters/koros/stomach.svg"
  25005. }
  25006. },
  25007. wingspanBottom: {
  25008. height: math.unit(114, "feet"),
  25009. name: "Wingspan (Bottom)",
  25010. image: {
  25011. source: "./media/characters/koros/wingspan-bottom.svg"
  25012. }
  25013. },
  25014. wingspanTop: {
  25015. height: math.unit(104, "feet"),
  25016. name: "Wingspan (Top)",
  25017. image: {
  25018. source: "./media/characters/koros/wingspan-top.svg"
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Normal",
  25025. height: math.unit(31 + 8 / 12, "feet"),
  25026. default: true
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25032. {
  25033. front: {
  25034. height: math.unit(18 + 5 / 12, "feet"),
  25035. weight: math.unit(3750, "kg"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/vexx/front.svg",
  25039. extra: 426 / 396,
  25040. bottom: 31.5 / 458
  25041. }
  25042. },
  25043. maw: {
  25044. height: math.unit(6, "feet"),
  25045. name: "Maw",
  25046. image: {
  25047. source: "./media/characters/vexx/maw.svg"
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Normal",
  25054. height: math.unit(18 + 5 / 12, "feet"),
  25055. default: true
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25061. {
  25062. front: {
  25063. height: math.unit(17 + 6 / 12, "feet"),
  25064. weight: math.unit(150, "lb"),
  25065. name: "Front",
  25066. image: {
  25067. source: "./media/characters/baadra/front.svg",
  25068. extra: 3137 / 2890,
  25069. bottom: 168.4 / 3305
  25070. }
  25071. },
  25072. back: {
  25073. height: math.unit(17 + 6 / 12, "feet"),
  25074. weight: math.unit(150, "lb"),
  25075. name: "Back",
  25076. image: {
  25077. source: "./media/characters/baadra/back.svg",
  25078. extra: 3142 / 2890,
  25079. bottom: 220 / 3371
  25080. }
  25081. },
  25082. head: {
  25083. height: math.unit(5.45, "feet"),
  25084. name: "Head",
  25085. image: {
  25086. source: "./media/characters/baadra/head.svg"
  25087. }
  25088. },
  25089. headAngry: {
  25090. height: math.unit(4.95, "feet"),
  25091. name: "Head (Angry)",
  25092. image: {
  25093. source: "./media/characters/baadra/head-angry.svg"
  25094. }
  25095. },
  25096. headOpen: {
  25097. height: math.unit(6, "feet"),
  25098. name: "Head (Open)",
  25099. image: {
  25100. source: "./media/characters/baadra/head-open.svg"
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(17 + 6 / 12, "feet"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(7 + 3 / 12, "feet"),
  25117. weight: math.unit(180, "lb"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/juri/front.svg",
  25121. extra: 1401 / 1237,
  25122. bottom: 18.5 / 1418
  25123. }
  25124. },
  25125. side: {
  25126. height: math.unit(7 + 3 / 12, "feet"),
  25127. weight: math.unit(180, "lb"),
  25128. name: "Side",
  25129. image: {
  25130. source: "./media/characters/juri/side.svg",
  25131. extra: 1424 / 1242,
  25132. bottom: 18.5 / 1447
  25133. }
  25134. },
  25135. sitting: {
  25136. height: math.unit(6, "feet"),
  25137. weight: math.unit(180, "lb"),
  25138. name: "Sitting",
  25139. image: {
  25140. source: "./media/characters/juri/sitting.svg",
  25141. extra: 1270 / 1143,
  25142. bottom: 100 / 1343
  25143. }
  25144. },
  25145. back: {
  25146. height: math.unit(7 + 3 / 12, "feet"),
  25147. weight: math.unit(180, "lb"),
  25148. name: "Back",
  25149. image: {
  25150. source: "./media/characters/juri/back.svg",
  25151. extra: 1377 / 1240,
  25152. bottom: 23.7 / 1405
  25153. }
  25154. },
  25155. maw: {
  25156. height: math.unit(2.8, "feet"),
  25157. name: "Maw",
  25158. image: {
  25159. source: "./media/characters/juri/maw.svg"
  25160. }
  25161. },
  25162. stomach: {
  25163. height: math.unit(0.89, "feet"),
  25164. capacity: math.unit(4, "liters"),
  25165. name: "Stomach",
  25166. image: {
  25167. source: "./media/characters/juri/stomach.svg"
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(7 + 3 / 12, "feet"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25181. {
  25182. fox: {
  25183. height: math.unit(5 + 6 / 12, "feet"),
  25184. weight: math.unit(140, "lb"),
  25185. name: "Fox",
  25186. image: {
  25187. source: "./media/characters/maxene-sita/fox.svg",
  25188. extra: 146 / 138,
  25189. bottom: 2.1 / 148.19
  25190. }
  25191. },
  25192. foxLaying: {
  25193. height: math.unit(1.70, "feet"),
  25194. weight: math.unit(140, "lb"),
  25195. name: "Fox (Laying)",
  25196. image: {
  25197. source: "./media/characters/maxene-sita/fox-laying.svg",
  25198. extra: 910 / 572,
  25199. bottom: 71 / 981
  25200. }
  25201. },
  25202. kitsune: {
  25203. height: math.unit(10, "feet"),
  25204. weight: math.unit(800, "lb"),
  25205. name: "Kitsune",
  25206. image: {
  25207. source: "./media/characters/maxene-sita/kitsune.svg",
  25208. extra: 185 / 176,
  25209. bottom: 4.7 / 189.9
  25210. }
  25211. },
  25212. hellhound: {
  25213. height: math.unit(10, "feet"),
  25214. weight: math.unit(700, "lb"),
  25215. name: "Hellhound",
  25216. image: {
  25217. source: "./media/characters/maxene-sita/hellhound.svg",
  25218. extra: 1600 / 1545,
  25219. bottom: 81 / 1681
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(5 + 6 / 12, "feet"),
  25227. default: true
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25233. {
  25234. front: {
  25235. height: math.unit(3 + 4 / 12, "feet"),
  25236. weight: math.unit(70, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/maia/front.svg",
  25240. extra: 227 / 219.5,
  25241. bottom: 40 / 267
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(3 + 4 / 12, "feet"),
  25246. weight: math.unit(70, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/maia/back.svg",
  25250. extra: 237 / 225
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Normal",
  25257. height: math.unit(3 + 4 / 12, "feet"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(5 + 10 / 12, "feet"),
  25267. weight: math.unit(197, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/jabaro/front.svg",
  25271. extra: 225 / 216,
  25272. bottom: 5.06 / 230
  25273. }
  25274. },
  25275. back: {
  25276. height: math.unit(5 + 10 / 12, "feet"),
  25277. weight: math.unit(197, "lb"),
  25278. name: "Back",
  25279. image: {
  25280. source: "./media/characters/jabaro/back.svg",
  25281. extra: 225 / 219,
  25282. bottom: 1.9 / 227
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(5 + 10 / 12, "feet"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(5 + 8 / 12, "feet"),
  25299. weight: math.unit(139, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/risa/front.svg",
  25303. extra: 270 / 260,
  25304. bottom: 11.2 / 282
  25305. }
  25306. },
  25307. back: {
  25308. height: math.unit(5 + 8 / 12, "feet"),
  25309. weight: math.unit(139, "lb"),
  25310. name: "Back",
  25311. image: {
  25312. source: "./media/characters/risa/back.svg",
  25313. extra: 264 / 255,
  25314. bottom: 4 / 268
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Normal",
  25321. height: math.unit(5 + 8 / 12, "feet"),
  25322. default: true
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(2 + 11 / 12, "feet"),
  25331. weight: math.unit(30, "lb"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/weatley/front.svg",
  25335. bottom: 10.7 / 414,
  25336. extra: 403.5 / 362
  25337. }
  25338. },
  25339. back: {
  25340. height: math.unit(2 + 11 / 12, "feet"),
  25341. weight: math.unit(30, "lb"),
  25342. name: "Back",
  25343. image: {
  25344. source: "./media/characters/weatley/back.svg",
  25345. bottom: 10.7 / 414,
  25346. extra: 403.5 / 362
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Normal",
  25353. height: math.unit(2 + 11 / 12, "feet"),
  25354. default: true
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(5 + 2 / 12, "feet"),
  25363. weight: math.unit(50, "kg"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/mercury-crescent/front.svg",
  25367. extra: 1088 / 1033,
  25368. bottom: 18.9 / 1109
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(5 + 2 / 12, "feet"),
  25376. default: true
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(2, "feet"),
  25385. weight: math.unit(15, "kg"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/diamond-jones/front.svg",
  25389. bottom: 16 / 568
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(2, "feet"),
  25397. default: true
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(3, "feet"),
  25406. weight: math.unit(30, "kg"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/sweet-bit/front.svg",
  25410. extra: 675 / 567,
  25411. bottom: 27.7 / 703
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(3, "feet"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25425. {
  25426. side: {
  25427. height: math.unit(9.178, "feet"),
  25428. weight: math.unit(500, "lb"),
  25429. name: "Side",
  25430. image: {
  25431. source: "./media/characters/umbrazen/side.svg",
  25432. extra: 1730 / 1473,
  25433. bottom: 34.6 / 1765
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(9.178, "feet"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(10, "feet"),
  25450. weight: math.unit(750, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/arlist/front.svg",
  25454. extra: 961 / 778,
  25455. bottom: 6.2 / 986
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Normal",
  25462. height: math.unit(10, "feet"),
  25463. default: true
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25469. {
  25470. front: {
  25471. height: math.unit(5 + 1 / 12, "feet"),
  25472. weight: math.unit(110, "lb"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/aradel/front.svg",
  25476. extra: 324 / 303,
  25477. bottom: 3.6 / 329.4
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Normal",
  25484. height: math.unit(5 + 1 / 12, "feet"),
  25485. default: true
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25491. {
  25492. front: {
  25493. height: math.unit(3 + 8 / 12, "feet"),
  25494. weight: math.unit(50, "lb"),
  25495. name: "Front",
  25496. image: {
  25497. source: "./media/characters/serryn/front.svg",
  25498. extra: 1792 / 1656,
  25499. bottom: 43.5 / 1840
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(3 + 8 / 12, "feet"),
  25507. default: true
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Xavier Thyme" },
  25513. {
  25514. front: {
  25515. height: math.unit(7 + 10 / 12, "feet"),
  25516. weight: math.unit(255, "lb"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/xavier-thyme/front.svg",
  25520. extra: 3733 / 3642,
  25521. bottom: 131 / 3869
  25522. }
  25523. },
  25524. frontRaven: {
  25525. height: math.unit(7 + 10 / 12, "feet"),
  25526. weight: math.unit(255, "lb"),
  25527. name: "Front (Raven)",
  25528. image: {
  25529. source: "./media/characters/xavier-thyme/front-raven.svg",
  25530. extra: 4385 / 3642,
  25531. bottom: 131 / 4517
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(7 + 10 / 12, "feet"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(1.6, "m"),
  25548. weight: math.unit(50, "kg"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/kiki/front.svg",
  25552. extra: 4682 / 3610,
  25553. bottom: 115 / 4777
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(1.6, "meters"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(50, "m"),
  25570. weight: math.unit(500, "tonnes"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/ryoko/front.svg",
  25574. extra: 4632 / 3926,
  25575. bottom: 193 / 4823
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(50, "meters"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(30, "m"),
  25592. weight: math.unit(22, "tonnes"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/elio/front.svg",
  25596. extra: 4582 / 3720,
  25597. bottom: 236 / 4828
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(30, "meters"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(6 + 3 / 12, "feet"),
  25614. weight: math.unit(120, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/azura/front.svg",
  25618. extra: 1149 / 1135,
  25619. bottom: 45 / 1194
  25620. }
  25621. },
  25622. frontClothed: {
  25623. height: math.unit(6 + 3 / 12, "feet"),
  25624. weight: math.unit(120, "lb"),
  25625. name: "Front (Clothed)",
  25626. image: {
  25627. source: "./media/characters/azura/front-clothed.svg",
  25628. extra: 1149 / 1135,
  25629. bottom: 45 / 1194
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(6 + 3 / 12, "feet"),
  25637. default: true
  25638. },
  25639. {
  25640. name: "Macro",
  25641. height: math.unit(20 + 6 / 12, "feet")
  25642. },
  25643. {
  25644. name: "Megamacro",
  25645. height: math.unit(12, "miles")
  25646. },
  25647. {
  25648. name: "Gigamacro",
  25649. height: math.unit(10000, "miles")
  25650. },
  25651. {
  25652. name: "Teramacro",
  25653. height: math.unit(900000, "miles")
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25659. {
  25660. front: {
  25661. height: math.unit(12, "feet"),
  25662. weight: math.unit(1, "ton"),
  25663. capacity: math.unit(660000, "gallons"),
  25664. name: "Front",
  25665. image: {
  25666. source: "./media/characters/zeus/front.svg",
  25667. extra: 5005 / 4717,
  25668. bottom: 363 / 5388
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(12, "feet")
  25676. },
  25677. {
  25678. name: "Preferred Size",
  25679. height: math.unit(0.5, "miles"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Giga Horse",
  25684. height: math.unit(300, "miles")
  25685. },
  25686. {
  25687. name: "Riding Planets",
  25688. height: math.unit(30, "megameters")
  25689. },
  25690. {
  25691. name: "Cosmic Giant",
  25692. height: math.unit(3, "zettameters")
  25693. },
  25694. {
  25695. name: "Breeding God",
  25696. height: math.unit(9.92e22, "yottameters")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25702. {
  25703. side: {
  25704. height: math.unit(9, "feet"),
  25705. weight: math.unit(1500, "kg"),
  25706. name: "Side",
  25707. image: {
  25708. source: "./media/characters/fang/side.svg",
  25709. extra: 924 / 866,
  25710. bottom: 47.5 / 972.3
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(9, "feet"),
  25718. default: true
  25719. },
  25720. {
  25721. name: "Macro",
  25722. height: math.unit(75 + 6 / 12, "feet")
  25723. },
  25724. {
  25725. name: "Teramacro",
  25726. height: math.unit(50000, "miles")
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(10, "feet"),
  25735. weight: math.unit(2, "tons"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/rekhit/front.svg",
  25739. extra: 2796 / 2590,
  25740. bottom: 225 / 3022
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(10, "feet"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Macro",
  25752. height: math.unit(500, "feet")
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Dahlia Verrick" },
  25758. {
  25759. front: {
  25760. height: math.unit(7 + 6.451 / 12, "feet"),
  25761. weight: math.unit(310, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/dahlia-verrick/front.svg",
  25765. extra: 1488 / 1365,
  25766. bottom: 6.2 / 1495
  25767. }
  25768. },
  25769. back: {
  25770. height: math.unit(7 + 6.451 / 12, "feet"),
  25771. weight: math.unit(310, "lb"),
  25772. name: "Back",
  25773. image: {
  25774. source: "./media/characters/dahlia-verrick/back.svg",
  25775. extra: 1472 / 1351,
  25776. bottom: 5.28 / 1477
  25777. }
  25778. },
  25779. frontBusiness: {
  25780. height: math.unit(7 + 6.451 / 12, "feet"),
  25781. weight: math.unit(200, "lb"),
  25782. name: "Front (Business)",
  25783. image: {
  25784. source: "./media/characters/dahlia-verrick/front-business.svg",
  25785. extra: 1478 / 1381,
  25786. bottom: 5.5 / 1484
  25787. }
  25788. },
  25789. frontCasual: {
  25790. height: math.unit(7 + 6.451 / 12, "feet"),
  25791. weight: math.unit(200, "lb"),
  25792. name: "Front (Casual)",
  25793. image: {
  25794. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25795. extra: 1478 / 1381,
  25796. bottom: 5.5 / 1484
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Travel-Sized",
  25803. height: math.unit(7.45, "inches")
  25804. },
  25805. {
  25806. name: "Normal",
  25807. height: math.unit(7 + 6.451 / 12, "feet"),
  25808. default: true
  25809. },
  25810. {
  25811. name: "Hitting the Town",
  25812. height: math.unit(37 + 8 / 12, "feet")
  25813. },
  25814. {
  25815. name: "Stomp in the Suburbs",
  25816. height: math.unit(964 + 9.728 / 12, "feet")
  25817. },
  25818. {
  25819. name: "Sit on the City",
  25820. height: math.unit(61747 + 10.592 / 12, "feet")
  25821. },
  25822. {
  25823. name: "Glomp the Globe",
  25824. height: math.unit(252919327 + 4.832 / 12, "feet")
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(6 + 4 / 12, "feet"),
  25833. weight: math.unit(320, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/balina-mahigan/front.svg",
  25837. extra: 447 / 428,
  25838. bottom: 18 / 466
  25839. }
  25840. },
  25841. back: {
  25842. height: math.unit(6 + 4 / 12, "feet"),
  25843. weight: math.unit(320, "lb"),
  25844. name: "Back",
  25845. image: {
  25846. source: "./media/characters/balina-mahigan/back.svg",
  25847. extra: 445 / 428,
  25848. bottom: 4.07 / 448
  25849. }
  25850. },
  25851. arm: {
  25852. height: math.unit(1.88, "feet"),
  25853. name: "Arm",
  25854. image: {
  25855. source: "./media/characters/balina-mahigan/arm.svg"
  25856. }
  25857. },
  25858. backPort: {
  25859. height: math.unit(0.685, "feet"),
  25860. name: "Back Port",
  25861. image: {
  25862. source: "./media/characters/balina-mahigan/back-port.svg"
  25863. }
  25864. },
  25865. hoofpaw: {
  25866. height: math.unit(1.41, "feet"),
  25867. name: "Hoofpaw",
  25868. image: {
  25869. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25870. }
  25871. },
  25872. leftHandBack: {
  25873. height: math.unit(0.938, "feet"),
  25874. name: "Left Hand (Back)",
  25875. image: {
  25876. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25877. }
  25878. },
  25879. leftHandFront: {
  25880. height: math.unit(0.938, "feet"),
  25881. name: "Left Hand (Front)",
  25882. image: {
  25883. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25884. }
  25885. },
  25886. rightHandBack: {
  25887. height: math.unit(0.95, "feet"),
  25888. name: "Right Hand (Back)",
  25889. image: {
  25890. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25891. }
  25892. },
  25893. rightHandFront: {
  25894. height: math.unit(0.95, "feet"),
  25895. name: "Right Hand (Front)",
  25896. image: {
  25897. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(6 + 4 / 12, "feet"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25911. {
  25912. front: {
  25913. height: math.unit(6, "feet"),
  25914. weight: math.unit(320, "lb"),
  25915. name: "Front",
  25916. image: {
  25917. source: "./media/characters/balina-mejeri/front.svg",
  25918. extra: 517 / 488,
  25919. bottom: 44.2 / 561
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Normal",
  25926. height: math.unit(6 + 4 / 12, "feet")
  25927. },
  25928. {
  25929. name: "Business",
  25930. height: math.unit(155, "feet"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25937. {
  25938. kneeling: {
  25939. height: math.unit(6 + 4 / 12, "feet"),
  25940. weight: math.unit(300 * 20, "lb"),
  25941. name: "Kneeling",
  25942. image: {
  25943. source: "./media/characters/balbarian/kneeling.svg",
  25944. extra: 922 / 862,
  25945. bottom: 42.4 / 965
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(6 + 4 / 12, "feet")
  25953. },
  25954. {
  25955. name: "Treasured",
  25956. height: math.unit(18 + 9 / 12, "feet"),
  25957. default: true
  25958. },
  25959. {
  25960. name: "Macro",
  25961. height: math.unit(900, "feet")
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(6 + 4 / 12, "feet"),
  25970. weight: math.unit(325, "lb"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/balina-amarini/front.svg",
  25974. extra: 415 / 403,
  25975. bottom: 19 / 433.4
  25976. }
  25977. },
  25978. back: {
  25979. height: math.unit(6 + 4 / 12, "feet"),
  25980. weight: math.unit(325, "lb"),
  25981. name: "Back",
  25982. image: {
  25983. source: "./media/characters/balina-amarini/back.svg",
  25984. extra: 415 / 403,
  25985. bottom: 13.5 / 432
  25986. }
  25987. },
  25988. overdrive: {
  25989. height: math.unit(6 + 4 / 12, "feet"),
  25990. weight: math.unit(400, "lb"),
  25991. name: "Overdrive",
  25992. image: {
  25993. source: "./media/characters/balina-amarini/overdrive.svg",
  25994. extra: 269 / 259,
  25995. bottom: 12 / 282
  25996. }
  25997. },
  25998. },
  25999. [
  26000. {
  26001. name: "Boom",
  26002. height: math.unit(9 + 10 / 12, "feet"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Macro",
  26007. height: math.unit(280, "feet")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26013. {
  26014. goddess: {
  26015. height: math.unit(600, "feet"),
  26016. weight: math.unit(2000000, "tons"),
  26017. name: "Goddess",
  26018. image: {
  26019. source: "./media/characters/lady-kubwa/goddess.svg",
  26020. extra: 1240.5 / 1223,
  26021. bottom: 22 / 1263
  26022. }
  26023. },
  26024. goddesser: {
  26025. height: math.unit(900, "feet"),
  26026. weight: math.unit(20000000, "lb"),
  26027. name: "Goddess-er",
  26028. image: {
  26029. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26030. extra: 899 / 888,
  26031. bottom: 12.6 / 912
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Macro",
  26038. height: math.unit(600, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Megamacro",
  26043. height: math.unit(250, "miles")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(7 + 7 / 12, "feet"),
  26052. weight: math.unit(250, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/tala-grovehorn/front.svg",
  26056. extra: 2636 / 2525,
  26057. bottom: 147 / 2781
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(7 + 7 / 12, "feet"),
  26062. weight: math.unit(250, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/tala-grovehorn/back.svg",
  26066. extra: 2635 / 2539,
  26067. bottom: 100 / 2732.8
  26068. }
  26069. },
  26070. mouth: {
  26071. height: math.unit(1.15, "feet"),
  26072. name: "Mouth",
  26073. image: {
  26074. source: "./media/characters/tala-grovehorn/mouth.svg"
  26075. }
  26076. },
  26077. dick: {
  26078. height: math.unit(2.36, "feet"),
  26079. name: "Dick",
  26080. image: {
  26081. source: "./media/characters/tala-grovehorn/dick.svg"
  26082. }
  26083. },
  26084. slit: {
  26085. height: math.unit(0.61, "feet"),
  26086. name: "Slit",
  26087. image: {
  26088. source: "./media/characters/tala-grovehorn/slit.svg"
  26089. }
  26090. },
  26091. },
  26092. [
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(7 + 7 / 12, "feet"),
  26100. weight: math.unit(225, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/epona/front.svg",
  26104. extra: 2445 / 2290,
  26105. bottom: 251 / 2696
  26106. }
  26107. },
  26108. back: {
  26109. height: math.unit(7 + 7 / 12, "feet"),
  26110. weight: math.unit(225, "lb"),
  26111. name: "Back",
  26112. image: {
  26113. source: "./media/characters/epona/back.svg",
  26114. extra: 2546 / 2408,
  26115. bottom: 44 / 2589
  26116. }
  26117. },
  26118. genitals: {
  26119. height: math.unit(1.5, "feet"),
  26120. name: "Genitals",
  26121. image: {
  26122. source: "./media/characters/epona/genitals.svg"
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Normal",
  26129. height: math.unit(7 + 7 / 12, "feet"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(7, "feet"),
  26139. weight: math.unit(518, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/avia-bloodbourn/front.svg",
  26143. extra: 1466 / 1350,
  26144. bottom: 65 / 1527
  26145. }
  26146. },
  26147. },
  26148. [
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26153. {
  26154. front: {
  26155. height: math.unit(9.35, "feet"),
  26156. weight: math.unit(600, "lb"),
  26157. name: "Front",
  26158. image: {
  26159. source: "./media/characters/amera/front.svg",
  26160. extra: 891 / 818,
  26161. bottom: 30 / 922.7
  26162. }
  26163. },
  26164. back: {
  26165. height: math.unit(9.35, "feet"),
  26166. weight: math.unit(600, "lb"),
  26167. name: "Back",
  26168. image: {
  26169. source: "./media/characters/amera/back.svg",
  26170. extra: 876 / 824,
  26171. bottom: 6.8 / 884
  26172. }
  26173. },
  26174. dick: {
  26175. height: math.unit(2.14, "feet"),
  26176. name: "Dick",
  26177. image: {
  26178. source: "./media/characters/amera/dick.svg"
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(9.35, "feet"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26192. {
  26193. kneeling: {
  26194. height: math.unit(3 + 4 / 12, "feet"),
  26195. weight: math.unit(90, "lb"),
  26196. name: "Kneeling",
  26197. image: {
  26198. source: "./media/characters/rosewen/kneeling.svg",
  26199. extra: 1835 / 1571,
  26200. bottom: 27.7 / 1862
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Normal",
  26207. height: math.unit(3 + 4 / 12, "feet"),
  26208. default: true
  26209. },
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26214. {
  26215. front: {
  26216. height: math.unit(5 + 10 / 12, "feet"),
  26217. weight: math.unit(200, "lb"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/sabah/front.svg",
  26221. extra: 849 / 763,
  26222. bottom: 33.9 / 881
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(5 + 10 / 12, "feet"),
  26230. default: true
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26236. {
  26237. front: {
  26238. height: math.unit(3 + 5 / 12, "feet"),
  26239. weight: math.unit(40, "kg"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/purple-flame/front.svg",
  26243. extra: 1577 / 1412,
  26244. bottom: 97 / 1694
  26245. }
  26246. },
  26247. frontDressed: {
  26248. height: math.unit(3 + 5 / 12, "feet"),
  26249. weight: math.unit(40, "kg"),
  26250. name: "Front (Dressed)",
  26251. image: {
  26252. source: "./media/characters/purple-flame/front-dressed.svg",
  26253. extra: 1577 / 1412,
  26254. bottom: 97 / 1694
  26255. }
  26256. },
  26257. headphones: {
  26258. height: math.unit(0.85, "feet"),
  26259. name: "Headphones",
  26260. image: {
  26261. source: "./media/characters/purple-flame/headphones.svg"
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Really Small",
  26268. height: math.unit(5, "cm")
  26269. },
  26270. {
  26271. name: "Micro",
  26272. height: math.unit(1 + 5 / 12, "feet")
  26273. },
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(3 + 5 / 12, "feet"),
  26277. default: true
  26278. },
  26279. {
  26280. name: "Minimacro",
  26281. height: math.unit(125, "feet")
  26282. },
  26283. {
  26284. name: "Macro",
  26285. height: math.unit(0.5, "miles")
  26286. },
  26287. {
  26288. name: "Megamacro",
  26289. height: math.unit(50, "miles")
  26290. },
  26291. {
  26292. name: "Gigantic",
  26293. height: math.unit(750, "miles")
  26294. },
  26295. {
  26296. name: "Planetary",
  26297. height: math.unit(15000, "miles")
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(14, "feet"),
  26306. weight: math.unit(959, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/arsenal/front.svg",
  26310. extra: 2357 / 2157,
  26311. bottom: 93 / 2458
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(14, "feet"),
  26319. default: true
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26325. {
  26326. front: {
  26327. height: math.unit(6, "feet"),
  26328. weight: math.unit(150, "lb"),
  26329. name: "Front",
  26330. image: {
  26331. source: "./media/characters/adira/front.svg",
  26332. extra: 1078 / 1029,
  26333. bottom: 87 / 1166
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Micro",
  26340. height: math.unit(4, "inches"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(50, "feet")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(16, "feet"),
  26354. weight: math.unit(1000, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/grim/front.svg",
  26358. extra: 622 / 614,
  26359. bottom: 18.1 / 642
  26360. }
  26361. },
  26362. back: {
  26363. height: math.unit(16, "feet"),
  26364. weight: math.unit(1000, "lb"),
  26365. name: "Back",
  26366. image: {
  26367. source: "./media/characters/grim/back.svg",
  26368. extra: 610.6 / 602,
  26369. bottom: 40.8 / 652
  26370. }
  26371. },
  26372. hunched: {
  26373. height: math.unit(9.75, "feet"),
  26374. weight: math.unit(1000, "lb"),
  26375. name: "Hunched",
  26376. image: {
  26377. source: "./media/characters/grim/hunched.svg",
  26378. extra: 304 / 297,
  26379. bottom: 35.4 / 394
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(16, "feet"),
  26387. default: true
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26393. {
  26394. front: {
  26395. height: math.unit(2.3, "meters"),
  26396. weight: math.unit(300, "lb"),
  26397. name: "Front",
  26398. image: {
  26399. source: "./media/characters/sinja/front-sfw.svg",
  26400. extra: 1393 / 1294,
  26401. bottom: 70 / 1463
  26402. }
  26403. },
  26404. frontNsfw: {
  26405. height: math.unit(2.3, "meters"),
  26406. weight: math.unit(300, "lb"),
  26407. name: "Front (NSFW)",
  26408. image: {
  26409. source: "./media/characters/sinja/front-nsfw.svg",
  26410. extra: 1393 / 1294,
  26411. bottom: 70 / 1463
  26412. }
  26413. },
  26414. back: {
  26415. height: math.unit(2.3, "meters"),
  26416. weight: math.unit(300, "lb"),
  26417. name: "Back",
  26418. image: {
  26419. source: "./media/characters/sinja/back.svg",
  26420. extra: 1393 / 1294,
  26421. bottom: 70 / 1463
  26422. }
  26423. },
  26424. head: {
  26425. height: math.unit(1.771, "feet"),
  26426. name: "Head",
  26427. image: {
  26428. source: "./media/characters/sinja/head.svg"
  26429. }
  26430. },
  26431. slit: {
  26432. height: math.unit(0.8, "feet"),
  26433. name: "Slit",
  26434. image: {
  26435. source: "./media/characters/sinja/slit.svg"
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(2.3, "meters")
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(91, "meters"),
  26447. default: true
  26448. },
  26449. {
  26450. name: "Megamacro",
  26451. height: math.unit(91440, "meters")
  26452. },
  26453. {
  26454. name: "Gigamacro",
  26455. height: math.unit(60960000, "meters")
  26456. },
  26457. {
  26458. name: "Teramacro",
  26459. height: math.unit(9144000000, "meters")
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26465. {
  26466. front: {
  26467. height: math.unit(1.7, "meters"),
  26468. weight: math.unit(130, "lb"),
  26469. name: "Front",
  26470. image: {
  26471. source: "./media/characters/kyu/front.svg",
  26472. extra: 415 / 395,
  26473. bottom: 5 / 420
  26474. }
  26475. },
  26476. head: {
  26477. height: math.unit(1.75, "feet"),
  26478. name: "Head",
  26479. image: {
  26480. source: "./media/characters/kyu/head.svg"
  26481. }
  26482. },
  26483. foot: {
  26484. height: math.unit(0.81, "feet"),
  26485. name: "Foot",
  26486. image: {
  26487. source: "./media/characters/kyu/foot.svg"
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Normal",
  26494. height: math.unit(1.7, "meters")
  26495. },
  26496. {
  26497. name: "Macro",
  26498. height: math.unit(131, "feet"),
  26499. default: true
  26500. },
  26501. {
  26502. name: "Megamacro",
  26503. height: math.unit(91440, "meters")
  26504. },
  26505. {
  26506. name: "Gigamacro",
  26507. height: math.unit(60960000, "meters")
  26508. },
  26509. {
  26510. name: "Teramacro",
  26511. height: math.unit(9144000000, "meters")
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26517. {
  26518. front: {
  26519. height: math.unit(7 + 1 / 12, "feet"),
  26520. weight: math.unit(250, "lb"),
  26521. name: "Front",
  26522. image: {
  26523. source: "./media/characters/joey/front.svg",
  26524. extra: 1791 / 1537,
  26525. bottom: 28 / 1816
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Micro",
  26532. height: math.unit(3, "inches")
  26533. },
  26534. {
  26535. name: "Normal",
  26536. height: math.unit(7 + 1 / 12, "feet"),
  26537. default: true
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(165, "cm"),
  26546. weight: math.unit(140, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/sam-evans/front.svg",
  26550. extra: 3417 / 3230,
  26551. bottom: 41.3 / 3417
  26552. }
  26553. },
  26554. frontSixTails: {
  26555. height: math.unit(165, "cm"),
  26556. weight: math.unit(140, "lb"),
  26557. name: "Front-six-tails",
  26558. image: {
  26559. source: "./media/characters/sam-evans/front-six-tails.svg",
  26560. extra: 3417 / 3230,
  26561. bottom: 41.3 / 3417
  26562. }
  26563. },
  26564. back: {
  26565. height: math.unit(165, "cm"),
  26566. weight: math.unit(140, "lb"),
  26567. name: "Back",
  26568. image: {
  26569. source: "./media/characters/sam-evans/back.svg",
  26570. extra: 3227 / 3032,
  26571. bottom: 6.8 / 3234
  26572. }
  26573. },
  26574. face: {
  26575. height: math.unit(0.68, "feet"),
  26576. name: "Face",
  26577. image: {
  26578. source: "./media/characters/sam-evans/face.svg"
  26579. }
  26580. },
  26581. },
  26582. [
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(165, "cm"),
  26586. default: true
  26587. },
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(100, "meters")
  26591. },
  26592. {
  26593. name: "Macro+",
  26594. height: math.unit(800, "meters")
  26595. },
  26596. {
  26597. name: "Macro++",
  26598. height: math.unit(3, "km")
  26599. },
  26600. {
  26601. name: "Macro+++",
  26602. height: math.unit(30, "km")
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(10, "feet"),
  26611. weight: math.unit(750, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/juliet-a/front.svg",
  26615. extra: 1766 / 1720,
  26616. bottom: 43 / 1809
  26617. }
  26618. },
  26619. back: {
  26620. height: math.unit(10, "feet"),
  26621. weight: math.unit(750, "lb"),
  26622. name: "Back",
  26623. image: {
  26624. source: "./media/characters/juliet-a/back.svg",
  26625. extra: 1781 / 1734,
  26626. bottom: 35 / 1810,
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(10, "feet"),
  26634. default: true
  26635. },
  26636. {
  26637. name: "Dragon Form",
  26638. height: math.unit(250, "feet")
  26639. },
  26640. {
  26641. name: "Macro",
  26642. height: math.unit(1000, "feet")
  26643. },
  26644. {
  26645. name: "Megamacro",
  26646. height: math.unit(10000, "feet")
  26647. }
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26652. {
  26653. regular: {
  26654. height: math.unit(7 + 3 / 12, "feet"),
  26655. weight: math.unit(260, "lb"),
  26656. name: "Regular",
  26657. image: {
  26658. source: "./media/characters/wild/regular.svg",
  26659. extra: 97.45 / 92,
  26660. bottom: 6.8 / 104.3
  26661. }
  26662. },
  26663. biggums: {
  26664. height: math.unit(8 + 6 / 12, "feet"),
  26665. weight: math.unit(425, "lb"),
  26666. name: "Biggums",
  26667. image: {
  26668. source: "./media/characters/wild/biggums.svg",
  26669. extra: 97.45 / 92,
  26670. bottom: 7.5 / 132.34
  26671. }
  26672. },
  26673. mawRegular: {
  26674. height: math.unit(1.24, "feet"),
  26675. name: "Maw (Regular)",
  26676. image: {
  26677. source: "./media/characters/wild/maw.svg"
  26678. }
  26679. },
  26680. mawBiggums: {
  26681. height: math.unit(1.47, "feet"),
  26682. name: "Maw (Biggums)",
  26683. image: {
  26684. source: "./media/characters/wild/maw.svg"
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(7 + 3 / 12, "feet"),
  26692. default: true
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26698. {
  26699. front: {
  26700. height: math.unit(2.5, "meters"),
  26701. weight: math.unit(200, "kg"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/vidar/front.svg",
  26705. extra: 2994 / 2795,
  26706. bottom: 56 / 3061
  26707. }
  26708. },
  26709. back: {
  26710. height: math.unit(2.5, "meters"),
  26711. weight: math.unit(200, "kg"),
  26712. name: "Back",
  26713. image: {
  26714. source: "./media/characters/vidar/back.svg",
  26715. extra: 3131 / 2928,
  26716. bottom: 13.5 / 3141.5
  26717. }
  26718. },
  26719. feral: {
  26720. height: math.unit(2.5, "meters"),
  26721. weight: math.unit(2000, "kg"),
  26722. name: "Feral",
  26723. image: {
  26724. source: "./media/characters/vidar/feral.svg",
  26725. extra: 2790 / 1765,
  26726. bottom: 6 / 2796
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Normal",
  26733. height: math.unit(2.5, "meters"),
  26734. default: true
  26735. },
  26736. {
  26737. name: "Macro",
  26738. height: math.unit(100, "meters")
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(5 + 9 / 12, "feet"),
  26747. weight: math.unit(120, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/ash/front.svg",
  26751. extra: 2189 / 1961,
  26752. bottom: 5.2 / 2194
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Normal",
  26759. height: math.unit(5 + 9 / 12, "feet"),
  26760. default: true
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(9, "feet"),
  26769. weight: math.unit(10000, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/gygabite/front.svg",
  26773. bottom: 31.7 / 537.8,
  26774. extra: 505 / 370
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Normal",
  26781. height: math.unit(9, "feet"),
  26782. default: true
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(12, "feet"),
  26791. weight: math.unit(35000, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/p0tat0/front.svg",
  26795. extra: 1065 / 921,
  26796. bottom: 55.7 / 1121.25
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(12, "feet"),
  26804. default: true
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26810. {
  26811. side: {
  26812. height: math.unit(6.5, "feet"),
  26813. weight: math.unit(800, "lb"),
  26814. name: "Side",
  26815. image: {
  26816. source: "./media/characters/dusk/side.svg",
  26817. extra: 615 / 373,
  26818. bottom: 53 / 664
  26819. }
  26820. },
  26821. sitting: {
  26822. height: math.unit(7, "feet"),
  26823. weight: math.unit(800, "lb"),
  26824. name: "Sitting",
  26825. image: {
  26826. source: "./media/characters/dusk/sitting.svg",
  26827. extra: 753 / 425,
  26828. bottom: 33 / 774
  26829. }
  26830. },
  26831. head: {
  26832. height: math.unit(6.1, "feet"),
  26833. name: "Head",
  26834. image: {
  26835. source: "./media/characters/dusk/head.svg"
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(7, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(15, "feet"),
  26852. weight: math.unit(7000, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/jay-direwolf/front.svg",
  26856. extra: 1810 / 1732,
  26857. bottom: 66 / 1892
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(15, "feet"),
  26865. default: true
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(4 + 9 / 12, "feet"),
  26874. weight: math.unit(130, "lb"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/anchovie/front.svg",
  26878. extra: 382 / 350,
  26879. bottom: 25 / 409
  26880. }
  26881. },
  26882. back: {
  26883. height: math.unit(4 + 9 / 12, "feet"),
  26884. weight: math.unit(130, "lb"),
  26885. name: "Back",
  26886. image: {
  26887. source: "./media/characters/anchovie/back.svg",
  26888. extra: 385 / 352,
  26889. bottom: 16.6 / 402
  26890. }
  26891. },
  26892. frontDressed: {
  26893. height: math.unit(4 + 9 / 12, "feet"),
  26894. weight: math.unit(130, "lb"),
  26895. name: "Front (Dressed)",
  26896. image: {
  26897. source: "./media/characters/anchovie/front-dressed.svg",
  26898. extra: 382 / 350,
  26899. bottom: 25 / 409
  26900. }
  26901. },
  26902. backDressed: {
  26903. height: math.unit(4 + 9 / 12, "feet"),
  26904. weight: math.unit(130, "lb"),
  26905. name: "Back (Dressed)",
  26906. image: {
  26907. source: "./media/characters/anchovie/back-dressed.svg",
  26908. extra: 385 / 352,
  26909. bottom: 16.6 / 402
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Micro",
  26916. height: math.unit(6.4, "inches")
  26917. },
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(4 + 9 / 12, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(2, "meters"),
  26930. weight: math.unit(180, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/acidrenamon/front.svg",
  26934. extra: 987 / 890,
  26935. bottom: 22.8 / 1009
  26936. }
  26937. },
  26938. back: {
  26939. height: math.unit(2, "meters"),
  26940. weight: math.unit(180, "lb"),
  26941. name: "Back",
  26942. image: {
  26943. source: "./media/characters/acidrenamon/back.svg",
  26944. extra: 983 / 891,
  26945. bottom: 8.4 / 992
  26946. }
  26947. },
  26948. head: {
  26949. height: math.unit(1.92, "feet"),
  26950. name: "Head",
  26951. image: {
  26952. source: "./media/characters/acidrenamon/head.svg"
  26953. }
  26954. },
  26955. rump: {
  26956. height: math.unit(1.72, "feet"),
  26957. name: "Rump",
  26958. image: {
  26959. source: "./media/characters/acidrenamon/rump.svg"
  26960. }
  26961. },
  26962. tail: {
  26963. height: math.unit(4.2, "feet"),
  26964. name: "Tail",
  26965. image: {
  26966. source: "./media/characters/acidrenamon/tail.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(2, "meters"),
  26974. default: true
  26975. },
  26976. {
  26977. name: "Minimacro",
  26978. height: math.unit(7, "meters")
  26979. },
  26980. {
  26981. name: "Macro",
  26982. height: math.unit(200, "meters")
  26983. },
  26984. {
  26985. name: "Gigamacro",
  26986. height: math.unit(0.2, "earths")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(6, "feet"),
  26995. weight: math.unit(150, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/kenzie-lee/front.svg",
  26999. extra: 1525 / 1465,
  27000. bottom: 45 / 1570
  27001. }
  27002. },
  27003. side: {
  27004. height: math.unit(6, "feet"),
  27005. weight: math.unit(150, "lb"),
  27006. name: "Side",
  27007. image: {
  27008. source: "./media/characters/kenzie-lee/side.svg",
  27009. extra: 5505 / 5383,
  27010. bottom: 60 / 5573
  27011. }
  27012. },
  27013. paw: {
  27014. height: math.unit(0.57, "feet"),
  27015. name: "Paw",
  27016. image: {
  27017. source: "./media/characters/kenzie-lee/paw.svg"
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(152, "feet"),
  27025. default: true
  27026. },
  27027. {
  27028. name: "Megamacro",
  27029. height: math.unit(7, "miles")
  27030. },
  27031. {
  27032. name: "Gigamacro",
  27033. height: math.unit(8000, "miles")
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27039. {
  27040. side: {
  27041. height: math.unit(6, "feet"),
  27042. weight: math.unit(150, "lb"),
  27043. name: "Side",
  27044. image: {
  27045. source: "./media/characters/withers/side.svg",
  27046. extra: 1830 / 1728,
  27047. bottom: 96 / 1927
  27048. }
  27049. },
  27050. front: {
  27051. height: math.unit(6, "feet"),
  27052. weight: math.unit(150, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/withers/front.svg",
  27056. extra: 1514 / 1438,
  27057. bottom: 118 / 1632
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Macro",
  27064. height: math.unit(168, "feet"),
  27065. default: true
  27066. },
  27067. {
  27068. name: "Megamacro",
  27069. height: math.unit(15, "miles")
  27070. }
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(6 + 7 / 12, "feet"),
  27078. weight: math.unit(250, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/nemoskii/front.svg",
  27082. extra: 2270 / 1734,
  27083. bottom: 86 / 2354
  27084. }
  27085. },
  27086. back: {
  27087. height: math.unit(6 + 7 / 12, "feet"),
  27088. weight: math.unit(250, "lb"),
  27089. name: "Back",
  27090. image: {
  27091. source: "./media/characters/nemoskii/back.svg",
  27092. extra: 1845 / 1788,
  27093. bottom: 10.5 / 1852
  27094. }
  27095. },
  27096. head: {
  27097. height: math.unit(1.31, "feet"),
  27098. name: "Head",
  27099. image: {
  27100. source: "./media/characters/nemoskii/head.svg"
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Micro",
  27107. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27108. },
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(6 + 7 / 12, "feet"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Macro",
  27116. height: math.unit((6 + 7 / 12) * 150, "feet")
  27117. },
  27118. {
  27119. name: "Macro+",
  27120. height: math.unit((6 + 7 / 12) * 500, "feet")
  27121. },
  27122. {
  27123. name: "Megamacro",
  27124. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(1, "mile"),
  27133. weight: math.unit(265261.9, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/shui/front.svg",
  27137. extra: 1633 / 1564,
  27138. bottom: 91.5 / 1726
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Macro",
  27145. height: math.unit(1, "mile"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(12 + 6 / 12, "feet"),
  27155. weight: math.unit(1342, "lb"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/arokh-takakura/front.svg",
  27159. extra: 1089 / 1043,
  27160. bottom: 77.4 / 1176.7
  27161. }
  27162. },
  27163. back: {
  27164. height: math.unit(12 + 6 / 12, "feet"),
  27165. weight: math.unit(1342, "lb"),
  27166. name: "Back",
  27167. image: {
  27168. source: "./media/characters/arokh-takakura/back.svg",
  27169. extra: 1046 / 1019,
  27170. bottom: 102 / 1150
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Big",
  27177. height: math.unit(12 + 6 / 12, "feet"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(5 + 6 / 12, "feet"),
  27187. weight: math.unit(150, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/theo/front.svg",
  27191. extra: 1184 / 1131,
  27192. bottom: 7.4 / 1191
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Micro",
  27199. height: math.unit(5, "inches")
  27200. },
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(5 + 6 / 12, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(5 + 9 / 12, "feet"),
  27213. weight: math.unit(130, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/cecelia-swift/front.svg",
  27217. extra: 502 / 484,
  27218. bottom: 23 / 523
  27219. }
  27220. },
  27221. back: {
  27222. height: math.unit(5 + 9 / 12, "feet"),
  27223. weight: math.unit(130, "lb"),
  27224. name: "Back",
  27225. image: {
  27226. source: "./media/characters/cecelia-swift/back.svg",
  27227. extra: 499 / 485,
  27228. bottom: 12 / 511
  27229. }
  27230. },
  27231. head: {
  27232. height: math.unit(0.90, "feet"),
  27233. name: "Head",
  27234. image: {
  27235. source: "./media/characters/cecelia-swift/head.svg"
  27236. }
  27237. },
  27238. rump: {
  27239. height: math.unit(1.75, "feet"),
  27240. name: "Rump",
  27241. image: {
  27242. source: "./media/characters/cecelia-swift/rump.svg"
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(5 + 9 / 12, "feet"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Big",
  27254. height: math.unit(50, "feet")
  27255. },
  27256. {
  27257. name: "Macro",
  27258. height: math.unit(100, "feet")
  27259. },
  27260. {
  27261. name: "Macro+",
  27262. height: math.unit(500, "feet")
  27263. },
  27264. {
  27265. name: "Macro++",
  27266. height: math.unit(1000, "feet")
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27272. {
  27273. front: {
  27274. height: math.unit(6, "feet"),
  27275. weight: math.unit(150, "lb"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/kaunan/front.svg",
  27279. extra: 2890 / 2523,
  27280. bottom: 49 / 2939
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Macro",
  27287. height: math.unit(150, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(175, "cm"),
  27297. weight: math.unit(60, "kg"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/fei/front.svg",
  27301. extra: 2581 / 2400,
  27302. bottom: 82.2 / 2663
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Mortal",
  27309. height: math.unit(175, "cm")
  27310. },
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(3500, "m"),
  27314. default: true
  27315. },
  27316. {
  27317. name: "Stroll",
  27318. height: math.unit(17.5, "km")
  27319. },
  27320. {
  27321. name: "Showoff",
  27322. height: math.unit(175, "km")
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27328. {
  27329. front: {
  27330. height: math.unit(7, "feet"),
  27331. weight: math.unit(1000, "kg"),
  27332. name: "Front",
  27333. image: {
  27334. source: "./media/characters/edrax/front.svg",
  27335. extra: 2838 / 2550,
  27336. bottom: 130 / 2968
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Small",
  27343. height: math.unit(7, "feet")
  27344. },
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(1500, "meters")
  27348. },
  27349. {
  27350. name: "Mega",
  27351. height: math.unit(12000000, "km"),
  27352. default: true
  27353. },
  27354. {
  27355. name: "Megamacro",
  27356. height: math.unit(10600000, "lightyears")
  27357. },
  27358. {
  27359. name: "Hypermacro",
  27360. height: math.unit(256, "yottameters")
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(10, "feet"),
  27369. weight: math.unit(750, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/clove/front.svg",
  27373. extra: 2031 / 1860,
  27374. bottom: 47.8 / 2080
  27375. }
  27376. },
  27377. back: {
  27378. height: math.unit(10, "feet"),
  27379. weight: math.unit(750, "lb"),
  27380. name: "Back",
  27381. image: {
  27382. source: "./media/characters/clove/back.svg",
  27383. extra: 2025 / 1859,
  27384. bottom: 46 / 2071
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(10, "feet"),
  27392. default: true
  27393. },
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27398. {
  27399. front: {
  27400. height: math.unit(4, "feet"),
  27401. weight: math.unit(50, "lb"),
  27402. name: "Front",
  27403. image: {
  27404. source: "./media/characters/alex-rabbit/front.svg",
  27405. extra: 507 / 458,
  27406. bottom: 18.5 / 527
  27407. }
  27408. },
  27409. back: {
  27410. height: math.unit(4, "feet"),
  27411. weight: math.unit(50, "lb"),
  27412. name: "Back",
  27413. image: {
  27414. source: "./media/characters/alex-rabbit/back.svg",
  27415. extra: 502 / 460,
  27416. bottom: 18.9 / 521
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(4, "feet"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(1 + 3 / 12, "feet"),
  27433. weight: math.unit(80, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/zander-rose/front.svg",
  27437. extra: 916 / 797,
  27438. bottom: 17 / 933
  27439. }
  27440. },
  27441. back: {
  27442. height: math.unit(1 + 3 / 12, "feet"),
  27443. weight: math.unit(80, "lb"),
  27444. name: "Back",
  27445. image: {
  27446. source: "./media/characters/zander-rose/back.svg",
  27447. extra: 903 / 779,
  27448. bottom: 31 / 934
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(1 + 3 / 12, "feet"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27462. {
  27463. anthro: {
  27464. height: math.unit(6, "feet"),
  27465. weight: math.unit(150, "lb"),
  27466. name: "Anthro",
  27467. image: {
  27468. source: "./media/characters/razz/anthro.svg",
  27469. extra: 1437 / 1343,
  27470. bottom: 48 / 1485
  27471. }
  27472. },
  27473. feral: {
  27474. height: math.unit(6, "feet"),
  27475. weight: math.unit(150, "lb"),
  27476. name: "Feral",
  27477. image: {
  27478. source: "./media/characters/razz/feral.svg",
  27479. extra: 2569 / 1385,
  27480. bottom: 95 / 2664
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(6, "feet"),
  27488. default: true
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(9 + 4 / 12, "feet"),
  27497. weight: math.unit(500, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/morrigan/front.svg",
  27501. extra: 2707 / 2579,
  27502. bottom: 156 / 2863
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(9 + 4 / 12, "feet"),
  27510. default: true
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(5, "stories"),
  27519. weight: math.unit(4000, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/jenene/front.svg",
  27523. extra: 1780 / 1710,
  27524. bottom: 57 / 1837
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(5, "stories"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(6, "feet"),
  27541. weight: math.unit(150, "lb"),
  27542. name: "Front",
  27543. image: {
  27544. source: "./media/characters/vix-archaser/front.svg",
  27545. extra: 2767 / 2562,
  27546. bottom: 36 / 2803
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Micro",
  27553. height: math.unit(1, "foot")
  27554. },
  27555. {
  27556. name: "Normal",
  27557. height: math.unit(6 + 5 / 12, "feet")
  27558. },
  27559. {
  27560. name: "Minimacro",
  27561. height: math.unit(500, "feet")
  27562. },
  27563. {
  27564. name: "Macro",
  27565. height: math.unit(4, "miles")
  27566. },
  27567. {
  27568. name: "Megamacro",
  27569. height: math.unit(250, "miles"),
  27570. default: true
  27571. },
  27572. {
  27573. name: "Gigamacro",
  27574. height: math.unit(1, "universe")
  27575. },
  27576. {
  27577. name: "Endgame",
  27578. height: math.unit(100, "multiverses")
  27579. }
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27584. {
  27585. taurSfw: {
  27586. height: math.unit(10, "meters"),
  27587. weight: math.unit(17500, "kg"),
  27588. name: "Taur",
  27589. image: {
  27590. source: "./media/characters/faey/taur-sfw.svg",
  27591. extra: 1200 / 968,
  27592. bottom: 41 / 1241
  27593. }
  27594. },
  27595. chestmaw: {
  27596. height: math.unit(2.01, "meters"),
  27597. name: "Chestmaw",
  27598. image: {
  27599. source: "./media/characters/faey/chestmaw.svg"
  27600. }
  27601. },
  27602. foot: {
  27603. height: math.unit(2.43, "meters"),
  27604. name: "Foot",
  27605. image: {
  27606. source: "./media/characters/faey/foot.svg"
  27607. }
  27608. },
  27609. jaws: {
  27610. height: math.unit(1.66, "meters"),
  27611. name: "Jaws",
  27612. image: {
  27613. source: "./media/characters/faey/jaws.svg"
  27614. }
  27615. },
  27616. tongues: {
  27617. height: math.unit(2.01, "meters"),
  27618. name: "Tongues",
  27619. image: {
  27620. source: "./media/characters/faey/tongues.svg"
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Small",
  27627. height: math.unit(10, "meters"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Big",
  27632. height: math.unit(500000, "km")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(7, "feet"),
  27641. weight: math.unit(275, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/roku/front.svg",
  27645. extra: 903 / 878,
  27646. bottom: 37 / 940
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(7, "feet"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Macro",
  27658. height: math.unit(500, "feet")
  27659. },
  27660. {
  27661. name: "Megamacro",
  27662. height: math.unit(200, "miles")
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27668. {
  27669. front: {
  27670. height: math.unit(6 + 2 / 12, "feet"),
  27671. weight: math.unit(150, "lb"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/lira/front.svg",
  27675. extra: 1727 / 1605,
  27676. bottom: 26 / 1753
  27677. }
  27678. },
  27679. back: {
  27680. height: math.unit(6 + 2 / 12, "feet"),
  27681. weight: math.unit(150, "lb"),
  27682. name: "Back",
  27683. image: {
  27684. source: "./media/characters/lira/back.svg",
  27685. extra: 1713/1621,
  27686. bottom: 20/1733
  27687. }
  27688. },
  27689. hand: {
  27690. height: math.unit(0.75, "feet"),
  27691. name: "Hand",
  27692. image: {
  27693. source: "./media/characters/lira/hand.svg"
  27694. }
  27695. },
  27696. maw: {
  27697. height: math.unit(0.65, "feet"),
  27698. name: "Maw",
  27699. image: {
  27700. source: "./media/characters/lira/maw.svg"
  27701. }
  27702. },
  27703. pawDigi: {
  27704. height: math.unit(1.6, "feet"),
  27705. name: "Paw Digi",
  27706. image: {
  27707. source: "./media/characters/lira/paw-digi.svg"
  27708. }
  27709. },
  27710. pawPlanti: {
  27711. height: math.unit(1.4, "feet"),
  27712. name: "Paw Planti",
  27713. image: {
  27714. source: "./media/characters/lira/paw-planti.svg"
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(6 + 2 / 12, "feet"),
  27722. default: true
  27723. },
  27724. {
  27725. name: "Macro",
  27726. height: math.unit(100, "feet")
  27727. },
  27728. {
  27729. name: "Macro²",
  27730. height: math.unit(1600, "feet")
  27731. },
  27732. {
  27733. name: "Planetary",
  27734. height: math.unit(20, "earths")
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(6, "feet"),
  27743. weight: math.unit(150, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/hadjet/front.svg",
  27747. extra: 1480 / 1346,
  27748. bottom: 26 / 1506
  27749. }
  27750. },
  27751. frontNsfw: {
  27752. height: math.unit(6, "feet"),
  27753. weight: math.unit(150, "lb"),
  27754. name: "Front (NSFW)",
  27755. image: {
  27756. source: "./media/characters/hadjet/front-nsfw.svg",
  27757. extra: 1440 / 1358,
  27758. bottom: 52 / 1492
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Macro",
  27765. height: math.unit(10, "stories"),
  27766. default: true
  27767. },
  27768. {
  27769. name: "Megamacro",
  27770. height: math.unit(1.5, "miles")
  27771. },
  27772. {
  27773. name: "Megamacro+",
  27774. height: math.unit(5, "miles")
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27780. {
  27781. side: {
  27782. height: math.unit(106, "feet"),
  27783. weight: math.unit(500, "tonnes"),
  27784. name: "Side",
  27785. image: {
  27786. source: "./media/characters/kodran/side.svg",
  27787. extra: 553 / 480,
  27788. bottom: 33 / 586
  27789. }
  27790. },
  27791. front: {
  27792. height: math.unit(132, "feet"),
  27793. weight: math.unit(500, "tonnes"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/kodran/front.svg",
  27797. extra: 667 / 643,
  27798. bottom: 42 / 709
  27799. }
  27800. },
  27801. flying: {
  27802. height: math.unit(350, "feet"),
  27803. weight: math.unit(500, "tonnes"),
  27804. name: "Flying",
  27805. image: {
  27806. source: "./media/characters/kodran/flying.svg"
  27807. }
  27808. },
  27809. foot: {
  27810. height: math.unit(33, "feet"),
  27811. name: "Foot",
  27812. image: {
  27813. source: "./media/characters/kodran/foot.svg"
  27814. }
  27815. },
  27816. footFront: {
  27817. height: math.unit(19, "feet"),
  27818. name: "Foot (Front)",
  27819. image: {
  27820. source: "./media/characters/kodran/foot-front.svg",
  27821. extra: 261 / 261,
  27822. bottom: 91 / 352
  27823. }
  27824. },
  27825. headFront: {
  27826. height: math.unit(53, "feet"),
  27827. name: "Head (Front)",
  27828. image: {
  27829. source: "./media/characters/kodran/head-front.svg"
  27830. }
  27831. },
  27832. headSide: {
  27833. height: math.unit(65, "feet"),
  27834. name: "Head (Side)",
  27835. image: {
  27836. source: "./media/characters/kodran/head-side.svg"
  27837. }
  27838. },
  27839. throat: {
  27840. height: math.unit(79, "feet"),
  27841. name: "Throat",
  27842. image: {
  27843. source: "./media/characters/kodran/throat.svg"
  27844. }
  27845. },
  27846. },
  27847. [
  27848. {
  27849. name: "Large",
  27850. height: math.unit(106, "feet"),
  27851. default: true
  27852. },
  27853. ]
  27854. ))
  27855. characterMakers.push(() => makeCharacter(
  27856. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27857. {
  27858. side: {
  27859. height: math.unit(11, "feet"),
  27860. weight: math.unit(150, "lb"),
  27861. name: "Side",
  27862. image: {
  27863. source: "./media/characters/pyxaron/side.svg",
  27864. extra: 305 / 195,
  27865. bottom: 17 / 322
  27866. }
  27867. },
  27868. },
  27869. [
  27870. {
  27871. name: "Normal",
  27872. height: math.unit(11, "feet"),
  27873. default: true
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27879. {
  27880. front: {
  27881. height: math.unit(6, "feet"),
  27882. weight: math.unit(150, "lb"),
  27883. name: "Front",
  27884. image: {
  27885. source: "./media/characters/meep/front.svg",
  27886. extra: 88 / 80,
  27887. bottom: 6 / 94
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Fun Sized",
  27894. height: math.unit(2, "inches"),
  27895. default: true
  27896. },
  27897. {
  27898. name: "Friend Sized",
  27899. height: math.unit(8, "inches")
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27905. {
  27906. front: {
  27907. height: math.unit(15, "feet"),
  27908. weight: math.unit(2500, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/holly-rabbit/front.svg",
  27912. extra: 1433 / 1233,
  27913. bottom: 125 / 1558
  27914. }
  27915. },
  27916. dick: {
  27917. height: math.unit(4.6, "feet"),
  27918. name: "Dick",
  27919. image: {
  27920. source: "./media/characters/holly-rabbit/dick.svg"
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Normal",
  27927. height: math.unit(15, "feet"),
  27928. default: true
  27929. },
  27930. {
  27931. name: "Macro",
  27932. height: math.unit(250, "feet")
  27933. },
  27934. {
  27935. name: "Macro+",
  27936. height: math.unit(2500, "feet")
  27937. },
  27938. ]
  27939. ))
  27940. characterMakers.push(() => makeCharacter(
  27941. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27942. {
  27943. front: {
  27944. height: math.unit(3.02, "meters"),
  27945. weight: math.unit(500, "kg"),
  27946. name: "Front",
  27947. image: {
  27948. source: "./media/characters/drena/front.svg",
  27949. extra: 282 / 243,
  27950. bottom: 8 / 290
  27951. }
  27952. },
  27953. side: {
  27954. height: math.unit(3.02, "meters"),
  27955. weight: math.unit(500, "kg"),
  27956. name: "Side",
  27957. image: {
  27958. source: "./media/characters/drena/side.svg",
  27959. extra: 280 / 245,
  27960. bottom: 10 / 290
  27961. }
  27962. },
  27963. back: {
  27964. height: math.unit(3.02, "meters"),
  27965. weight: math.unit(500, "kg"),
  27966. name: "Back",
  27967. image: {
  27968. source: "./media/characters/drena/back.svg",
  27969. extra: 278 / 243,
  27970. bottom: 2 / 280
  27971. }
  27972. },
  27973. foot: {
  27974. height: math.unit(0.75, "meters"),
  27975. name: "Foot",
  27976. image: {
  27977. source: "./media/characters/drena/foot.svg"
  27978. }
  27979. },
  27980. maw: {
  27981. height: math.unit(0.82, "meters"),
  27982. name: "Maw",
  27983. image: {
  27984. source: "./media/characters/drena/maw.svg"
  27985. }
  27986. },
  27987. rump: {
  27988. height: math.unit(0.93, "meters"),
  27989. name: "Rump",
  27990. image: {
  27991. source: "./media/characters/drena/rump.svg"
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(3.02, "meters"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(6 + 4 / 12, "feet"),
  28008. weight: math.unit(250, "lb"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/remmyzilla/front.svg",
  28012. extra: 4033 / 3588,
  28013. bottom: 123 / 4156
  28014. }
  28015. },
  28016. back: {
  28017. height: math.unit(6 + 4 / 12, "feet"),
  28018. weight: math.unit(250, "lb"),
  28019. name: "Back",
  28020. image: {
  28021. source: "./media/characters/remmyzilla/back.svg",
  28022. extra: 2687 / 2555,
  28023. bottom: 48 / 2735
  28024. }
  28025. },
  28026. frontFancy: {
  28027. height: math.unit(6 + 4 / 12, "feet"),
  28028. weight: math.unit(250, "lb"),
  28029. name: "Front (Fancy)",
  28030. image: {
  28031. source: "./media/characters/remmyzilla/front-fancy.svg",
  28032. extra: 4119 / 3419,
  28033. bottom: 237 / 4356
  28034. }
  28035. },
  28036. paw: {
  28037. height: math.unit(1.73, "feet"),
  28038. name: "Paw",
  28039. image: {
  28040. source: "./media/characters/remmyzilla/paw.svg"
  28041. }
  28042. },
  28043. maw: {
  28044. height: math.unit(1.73, "feet"),
  28045. name: "Maw",
  28046. image: {
  28047. source: "./media/characters/remmyzilla/maw.svg"
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(6 + 4 / 12, "feet")
  28055. },
  28056. {
  28057. name: "Minimacro",
  28058. height: math.unit(12 + 8 / 12, "feet")
  28059. },
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(640, "feet"),
  28063. default: true
  28064. },
  28065. {
  28066. name: "Megamacro",
  28067. height: math.unit(6400, "feet")
  28068. },
  28069. {
  28070. name: "Gigamacro",
  28071. height: math.unit(64000, "miles")
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28077. {
  28078. front: {
  28079. height: math.unit(2.5, "meters"),
  28080. weight: math.unit(300, "lb"),
  28081. name: "Front",
  28082. image: {
  28083. source: "./media/characters/lawrence/front.svg",
  28084. extra: 357 / 335,
  28085. bottom: 30 / 387
  28086. }
  28087. },
  28088. back: {
  28089. height: math.unit(2.5, "meters"),
  28090. weight: math.unit(300, "lb"),
  28091. name: "Back",
  28092. image: {
  28093. source: "./media/characters/lawrence/back.svg",
  28094. extra: 357 / 338,
  28095. bottom: 16 / 373
  28096. }
  28097. },
  28098. head: {
  28099. height: math.unit(0.9, "meter"),
  28100. name: "Head",
  28101. image: {
  28102. source: "./media/characters/lawrence/head.svg"
  28103. }
  28104. },
  28105. maw: {
  28106. height: math.unit(0.7, "meter"),
  28107. name: "Maw",
  28108. image: {
  28109. source: "./media/characters/lawrence/maw.svg"
  28110. }
  28111. },
  28112. footBottom: {
  28113. height: math.unit(0.5, "meter"),
  28114. name: "Foot (Bottom)",
  28115. image: {
  28116. source: "./media/characters/lawrence/foot-bottom.svg"
  28117. }
  28118. },
  28119. footTop: {
  28120. height: math.unit(0.5, "meter"),
  28121. name: "Foot (Top)",
  28122. image: {
  28123. source: "./media/characters/lawrence/foot-top.svg"
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Normal",
  28130. height: math.unit(2.5, "meters"),
  28131. default: true
  28132. },
  28133. {
  28134. name: "Macro",
  28135. height: math.unit(95, "meters")
  28136. },
  28137. {
  28138. name: "Megamacro",
  28139. height: math.unit(150, "km")
  28140. },
  28141. ]
  28142. ))
  28143. characterMakers.push(() => makeCharacter(
  28144. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28145. {
  28146. front: {
  28147. height: math.unit(4.2, "meters"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/sydney/front.svg",
  28151. extra: 1323 / 1277,
  28152. bottom: 111 / 1434
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(4.2, "meters"),
  28160. default: true
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28166. {
  28167. back: {
  28168. height: math.unit(201, "feet"),
  28169. name: "Back",
  28170. image: {
  28171. source: "./media/characters/jessica/back.svg",
  28172. extra: 273 / 259,
  28173. bottom: 7 / 280
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(201, "feet"),
  28181. default: true
  28182. },
  28183. {
  28184. name: "Megamacro",
  28185. height: math.unit(8, "miles")
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28191. {
  28192. side: {
  28193. height: math.unit(320, "cm"),
  28194. name: "Side",
  28195. image: {
  28196. source: "./media/characters/victoria/side.svg",
  28197. extra: 778 / 346,
  28198. bottom: 56 / 834
  28199. }
  28200. },
  28201. maw: {
  28202. height: math.unit(5.9, "feet"),
  28203. name: "Maw",
  28204. image: {
  28205. source: "./media/characters/victoria/maw.svg"
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(320, "cm"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28219. {
  28220. front: {
  28221. height: math.unit(5 + 6 / 12, "feet"),
  28222. name: "Front",
  28223. image: {
  28224. source: "./media/characters/cat/front.svg",
  28225. extra: 1374 / 1257,
  28226. bottom: 59 / 1433
  28227. }
  28228. },
  28229. back: {
  28230. height: math.unit(5 + 6 / 12, "feet"),
  28231. name: "Back",
  28232. image: {
  28233. source: "./media/characters/cat/back.svg",
  28234. extra: 1337 / 1226,
  28235. bottom: 34 / 1371
  28236. }
  28237. },
  28238. taur: {
  28239. height: math.unit(7, "feet"),
  28240. name: "Taur",
  28241. image: {
  28242. source: "./media/characters/cat/taur.svg",
  28243. extra: 1345 / 1231,
  28244. bottom: 66 / 1411
  28245. }
  28246. },
  28247. lucario: {
  28248. height: math.unit(4, "feet"),
  28249. name: "Lucario",
  28250. image: {
  28251. source: "./media/characters/cat/lucario.svg",
  28252. extra: 1470 / 1318,
  28253. bottom: 65 / 1535
  28254. }
  28255. },
  28256. megaLucario: {
  28257. height: math.unit(4, "feet"),
  28258. name: "Mega Lucario",
  28259. image: {
  28260. source: "./media/characters/cat/mega-lucario.svg",
  28261. extra: 1515 / 1319,
  28262. bottom: 63 / 1578
  28263. }
  28264. },
  28265. nickit: {
  28266. height: math.unit(2, "feet"),
  28267. name: "Nickit",
  28268. image: {
  28269. source: "./media/characters/cat/nickit.svg",
  28270. extra: 1980 / 1585,
  28271. bottom: 102 / 2082
  28272. }
  28273. },
  28274. lopunnyFront: {
  28275. height: math.unit(5, "feet"),
  28276. name: "Lopunny (Front)",
  28277. image: {
  28278. source: "./media/characters/cat/lopunny-front.svg",
  28279. extra: 1782 / 1469,
  28280. bottom: 38 / 1820
  28281. }
  28282. },
  28283. lopunnyBack: {
  28284. height: math.unit(5, "feet"),
  28285. name: "Lopunny (Back)",
  28286. image: {
  28287. source: "./media/characters/cat/lopunny-back.svg",
  28288. extra: 1660 / 1490,
  28289. bottom: 25 / 1685
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Really small",
  28296. height: math.unit(1, "nm")
  28297. },
  28298. {
  28299. name: "Micro",
  28300. height: math.unit(5, "inches")
  28301. },
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(5 + 6 / 12, "feet"),
  28305. default: true
  28306. },
  28307. {
  28308. name: "Macro",
  28309. height: math.unit(50, "feet")
  28310. },
  28311. {
  28312. name: "Macro+",
  28313. height: math.unit(150, "feet")
  28314. },
  28315. {
  28316. name: "Megamacro",
  28317. height: math.unit(100, "miles")
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(63.4, "meters"),
  28326. weight: math.unit(3.28349e+6, "kilograms"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/kirina-violet/front.svg",
  28330. extra: 2812 / 2725,
  28331. bottom: 0 / 2812
  28332. }
  28333. },
  28334. back: {
  28335. height: math.unit(63.4, "meters"),
  28336. weight: math.unit(3.28349e+6, "kilograms"),
  28337. name: "Back",
  28338. image: {
  28339. source: "./media/characters/kirina-violet/back.svg",
  28340. extra: 2812 / 2725,
  28341. bottom: 0 / 2812
  28342. }
  28343. },
  28344. mouth: {
  28345. height: math.unit(4.35, "meters"),
  28346. name: "Mouth",
  28347. image: {
  28348. source: "./media/characters/kirina-violet/mouth.svg"
  28349. }
  28350. },
  28351. paw: {
  28352. height: math.unit(5.6, "meters"),
  28353. name: "Paw",
  28354. image: {
  28355. source: "./media/characters/kirina-violet/paw.svg"
  28356. }
  28357. },
  28358. tail: {
  28359. height: math.unit(18, "meters"),
  28360. name: "Tail",
  28361. image: {
  28362. source: "./media/characters/kirina-violet/tail.svg"
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Macro",
  28369. height: math.unit(63.4, "meters"),
  28370. default: true
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(60, "feet"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/cat-gigachu/front.svg",
  28382. extra: 1024 / 780,
  28383. bottom: 23 / 1047
  28384. }
  28385. },
  28386. back: {
  28387. height: math.unit(60, "feet"),
  28388. name: "Back",
  28389. image: {
  28390. source: "./media/characters/cat-gigachu/back.svg",
  28391. extra: 1024 / 780,
  28392. bottom: 23 / 1047
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Dynamax",
  28399. height: math.unit(60, "feet"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(6, "feet"),
  28409. weight: math.unit(150, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/sfaiyan/front.svg",
  28413. extra: 999 / 978,
  28414. bottom: 5 / 1004
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(1.82, "meters")
  28422. },
  28423. {
  28424. name: "Giant",
  28425. height: math.unit(2.27, "km"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(179, "cm"),
  28435. weight: math.unit(100, "kg"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/raunehkeli/front.svg",
  28439. extra: 1934 / 1926,
  28440. bottom: 0 / 1934
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(179, "cm")
  28448. },
  28449. {
  28450. name: "Maximum",
  28451. height: math.unit(575, "meters"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(6, "feet"),
  28461. weight: math.unit(150, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28465. extra: 2625 / 2518,
  28466. bottom: 60 / 2685
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(6 + 2 / 12, "feet")
  28474. },
  28475. {
  28476. name: "Macro",
  28477. height: math.unit(1180, "feet"),
  28478. default: true
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(5 + 6 / 12, "feet"),
  28487. weight: math.unit(108, "lb"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/lilith-zott/front.svg",
  28491. extra: 2510 / 2238,
  28492. bottom: 100 / 2610
  28493. }
  28494. },
  28495. frontDressed: {
  28496. height: math.unit(5 + 6 / 12, "feet"),
  28497. weight: math.unit(108, "lb"),
  28498. name: "Front (Dressed)",
  28499. image: {
  28500. source: "./media/characters/lilith-zott/front-dressed.svg",
  28501. extra: 2510 / 2238,
  28502. bottom: 100 / 2610
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Normal",
  28509. height: math.unit(5 + 6 / 12, "feet")
  28510. },
  28511. {
  28512. name: "Macro",
  28513. height: math.unit(1030, "feet"),
  28514. default: true
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(6, "feet"),
  28523. weight: math.unit(150, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28527. extra: 2567 / 2435,
  28528. bottom: 39 / 2606
  28529. }
  28530. },
  28531. frontSuper: {
  28532. height: math.unit(6, "feet"),
  28533. name: "Front (Super)",
  28534. image: {
  28535. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28536. extra: 2567 / 2435,
  28537. bottom: 39 / 2606
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(5 + 10 / 12, "feet")
  28545. },
  28546. {
  28547. name: "Macro",
  28548. height: math.unit(1100, "feet"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(100, "miles"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/sona/front.svg",
  28561. extra: 2433 / 2201,
  28562. bottom: 53 / 2486
  28563. }
  28564. },
  28565. foot: {
  28566. height: math.unit(16.1, "miles"),
  28567. name: "Foot",
  28568. image: {
  28569. source: "./media/characters/sona/foot.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Macro",
  28576. height: math.unit(100, "miles"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(6, "feet"),
  28586. weight: math.unit(150, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/bailey/front.svg",
  28590. extra: 1778 / 1724,
  28591. bottom: 30 / 1808
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Micro",
  28598. height: math.unit(4, "inches")
  28599. },
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(5 + 5 / 12, "feet"),
  28603. default: true
  28604. },
  28605. {
  28606. name: "Macro",
  28607. height: math.unit(250, "feet")
  28608. },
  28609. {
  28610. name: "Megamacro",
  28611. height: math.unit(100, "miles")
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(5 + 2 / 12, "feet"),
  28620. weight: math.unit(120, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/snaps/front.svg",
  28624. extra: 2370 / 2177,
  28625. bottom: 48 / 2418
  28626. }
  28627. },
  28628. back: {
  28629. height: math.unit(5 + 2 / 12, "feet"),
  28630. weight: math.unit(120, "lb"),
  28631. name: "Back",
  28632. image: {
  28633. source: "./media/characters/snaps/back.svg",
  28634. extra: 2408 / 2258,
  28635. bottom: 15 / 2423
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Micro",
  28642. height: math.unit(9, "inches")
  28643. },
  28644. {
  28645. name: "Normal",
  28646. height: math.unit(5 + 2 / 12, "feet"),
  28647. default: true
  28648. },
  28649. {
  28650. name: "Mini Macro",
  28651. height: math.unit(10, "feet")
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28657. {
  28658. front: {
  28659. height: math.unit(1.8, "meters"),
  28660. weight: math.unit(85, "kg"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/azteck/front.svg",
  28664. extra: 2815 / 2625,
  28665. bottom: 89 / 2904
  28666. }
  28667. },
  28668. back: {
  28669. height: math.unit(1.8, "meters"),
  28670. weight: math.unit(85, "kg"),
  28671. name: "Back",
  28672. image: {
  28673. source: "./media/characters/azteck/back.svg",
  28674. extra: 2856 / 2648,
  28675. bottom: 85 / 2941
  28676. }
  28677. },
  28678. frontDressed: {
  28679. height: math.unit(1.8, "meters"),
  28680. weight: math.unit(85, "kg"),
  28681. name: "Front (Dressed)",
  28682. image: {
  28683. source: "./media/characters/azteck/front-dressed.svg",
  28684. extra: 2147 / 2003,
  28685. bottom: 68 / 2215
  28686. }
  28687. },
  28688. head: {
  28689. height: math.unit(0.47, "meters"),
  28690. weight: math.unit(85, "kg"),
  28691. name: "Head",
  28692. image: {
  28693. source: "./media/characters/azteck/head.svg"
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Bite sized",
  28700. height: math.unit(16, "cm")
  28701. },
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(1.8, "meters"),
  28705. default: true
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28711. {
  28712. front: {
  28713. height: math.unit(6, "feet"),
  28714. weight: math.unit(150, "lb"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/pidge/front.svg",
  28718. extra: 620 / 588,
  28719. bottom: 9 / 629
  28720. }
  28721. },
  28722. back: {
  28723. height: math.unit(6, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/pidge/back.svg",
  28728. extra: 620 / 588,
  28729. bottom: 9 / 629
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Macro",
  28736. height: math.unit(1, "mile"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(6, "feet"),
  28746. weight: math.unit(150, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/en/front.svg",
  28750. extra: 1697 / 1563,
  28751. bottom: 103 / 1800
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(6, "feet"),
  28756. weight: math.unit(150, "lb"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/en/back.svg",
  28760. extra: 1700 / 1570,
  28761. bottom: 51 / 1751
  28762. }
  28763. },
  28764. frontDressed: {
  28765. height: math.unit(6, "feet"),
  28766. weight: math.unit(150, "lb"),
  28767. name: "Front (Dressed)",
  28768. image: {
  28769. source: "./media/characters/en/front-dressed.svg",
  28770. extra: 1697 / 1563,
  28771. bottom: 103 / 1800
  28772. }
  28773. },
  28774. backDressed: {
  28775. height: math.unit(6, "feet"),
  28776. weight: math.unit(150, "lb"),
  28777. name: "Back (Dressed)",
  28778. image: {
  28779. source: "./media/characters/en/back-dressed.svg",
  28780. extra: 1700 / 1570,
  28781. bottom: 51 / 1751
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Macro",
  28788. height: math.unit(210, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(6, "feet"),
  28798. weight: math.unit(150, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/haze-orris/front.svg",
  28802. extra: 3975 / 3525,
  28803. bottom: 137 / 4112
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Micro",
  28810. height: math.unit(150, "mm"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/casselene-yaro/front.svg",
  28824. extra: 4721 / 4541,
  28825. bottom: 82 / 4803
  28826. }
  28827. },
  28828. back: {
  28829. height: math.unit(6, "feet"),
  28830. weight: math.unit(150, "lb"),
  28831. name: "Back",
  28832. image: {
  28833. source: "./media/characters/casselene-yaro/back.svg",
  28834. extra: 4569 / 4377,
  28835. bottom: 69 / 4638
  28836. }
  28837. },
  28838. frontDressed: {
  28839. height: math.unit(6, "feet"),
  28840. weight: math.unit(150, "lb"),
  28841. name: "Front-dressed",
  28842. image: {
  28843. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28844. extra: 4721 / 4541,
  28845. bottom: 82 / 4803
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Macro",
  28852. height: math.unit(190, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(6, "feet"),
  28862. weight: math.unit(150, "lb"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/myra-rue-delore/front.svg",
  28866. extra: 1340 / 1308,
  28867. bottom: 67 / 1407
  28868. }
  28869. },
  28870. back: {
  28871. height: math.unit(6, "feet"),
  28872. weight: math.unit(150, "lb"),
  28873. name: "Back",
  28874. image: {
  28875. source: "./media/characters/myra-rue-delore/back.svg",
  28876. extra: 1341 / 1310,
  28877. bottom: 40 / 1381
  28878. }
  28879. },
  28880. frontDressed: {
  28881. height: math.unit(6, "feet"),
  28882. weight: math.unit(150, "lb"),
  28883. name: "Front (Dressed)",
  28884. image: {
  28885. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28886. extra: 1340 / 1308,
  28887. bottom: 67 / 1407
  28888. }
  28889. },
  28890. },
  28891. [
  28892. {
  28893. name: "Macro",
  28894. height: math.unit(150, "feet"),
  28895. default: true
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(10, "feet"),
  28904. weight: math.unit(15015, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/fem!plat/front.svg",
  28908. extra: 2799 / 2604,
  28909. bottom: 149 / 2948
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(10, "feet"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(100, "feet")
  28922. },
  28923. {
  28924. name: "Megamacro",
  28925. height: math.unit(1000, "feet")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(15 + 5 / 12, "feet"),
  28934. weight: math.unit(4600, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/neapolitan-ananassa/front.svg",
  28938. extra: 2903 / 2736,
  28939. bottom: 0 / 2903
  28940. }
  28941. },
  28942. side: {
  28943. height: math.unit(15 + 5 / 12, "feet"),
  28944. weight: math.unit(4600, "lb"),
  28945. name: "Side",
  28946. image: {
  28947. source: "./media/characters/neapolitan-ananassa/side.svg",
  28948. extra: 2925 / 2719,
  28949. bottom: 0 / 2925
  28950. }
  28951. },
  28952. back: {
  28953. height: math.unit(15 + 5 / 12, "feet"),
  28954. weight: math.unit(4600, "lb"),
  28955. name: "Back",
  28956. image: {
  28957. source: "./media/characters/neapolitan-ananassa/back.svg",
  28958. extra: 2903 / 2736,
  28959. bottom: 0 / 2903
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Normal",
  28966. height: math.unit(15 + 5 / 12, "feet"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Post-Millenium",
  28971. height: math.unit(35 + 5 / 12, "feet")
  28972. },
  28973. {
  28974. name: "Post-Era",
  28975. height: math.unit(450 + 5 / 12, "feet")
  28976. },
  28977. ]
  28978. ))
  28979. characterMakers.push(() => makeCharacter(
  28980. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28981. {
  28982. front: {
  28983. height: math.unit(300, "meters"),
  28984. weight: math.unit(125000, "tonnes"),
  28985. name: "Front",
  28986. image: {
  28987. source: "./media/characters/pazuzu/front.svg",
  28988. extra: 877 / 794,
  28989. bottom: 47 / 924
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Macro",
  28996. height: math.unit(300, "meters"),
  28997. default: true
  28998. },
  28999. ]
  29000. ))
  29001. characterMakers.push(() => makeCharacter(
  29002. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29003. {
  29004. side: {
  29005. height: math.unit(10 + 7 / 12, "feet"),
  29006. weight: math.unit(2.5, "tons"),
  29007. name: "Side",
  29008. image: {
  29009. source: "./media/characters/aasha/side.svg",
  29010. extra: 1345 / 1245,
  29011. bottom: 111 / 1456
  29012. }
  29013. },
  29014. back: {
  29015. height: math.unit(10 + 7 / 12, "feet"),
  29016. weight: math.unit(2.5, "tons"),
  29017. name: "Back",
  29018. image: {
  29019. source: "./media/characters/aasha/back.svg",
  29020. extra: 1133 / 1057,
  29021. bottom: 257 / 1390
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(10 + 7 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(6 + 3 / 12, "feet"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/nevan/front.svg",
  29041. extra: 704 / 704,
  29042. bottom: 28 / 732
  29043. }
  29044. },
  29045. back: {
  29046. height: math.unit(6 + 3 / 12, "feet"),
  29047. name: "Back",
  29048. image: {
  29049. source: "./media/characters/nevan/back.svg",
  29050. extra: 714 / 714,
  29051. bottom: 21 / 735
  29052. }
  29053. },
  29054. frontFlaccid: {
  29055. height: math.unit(6 + 3 / 12, "feet"),
  29056. name: "Front (Flaccid)",
  29057. image: {
  29058. source: "./media/characters/nevan/front-flaccid.svg",
  29059. extra: 704 / 704,
  29060. bottom: 28 / 732
  29061. }
  29062. },
  29063. frontErect: {
  29064. height: math.unit(6 + 3 / 12, "feet"),
  29065. name: "Front (Erect)",
  29066. image: {
  29067. source: "./media/characters/nevan/front-erect.svg",
  29068. extra: 704 / 704,
  29069. bottom: 28 / 732
  29070. }
  29071. },
  29072. backFlaccid: {
  29073. height: math.unit(6 + 3 / 12, "feet"),
  29074. name: "Back (Flaccid)",
  29075. image: {
  29076. source: "./media/characters/nevan/back-flaccid.svg",
  29077. extra: 714 / 714,
  29078. bottom: 21 / 735
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(6 + 3 / 12, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(4, "feet"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/arhan/front.svg",
  29098. extra: 3368 / 3133,
  29099. bottom: 0 / 3368
  29100. }
  29101. },
  29102. side: {
  29103. height: math.unit(4, "feet"),
  29104. name: "Side",
  29105. image: {
  29106. source: "./media/characters/arhan/side.svg",
  29107. extra: 3347 / 3105,
  29108. bottom: 0 / 3347
  29109. }
  29110. },
  29111. tongue: {
  29112. height: math.unit(1.42, "feet"),
  29113. name: "Tongue",
  29114. image: {
  29115. source: "./media/characters/arhan/tongue.svg"
  29116. }
  29117. },
  29118. head: {
  29119. height: math.unit(0.85, "feet"),
  29120. name: "Head",
  29121. image: {
  29122. source: "./media/characters/arhan/head.svg"
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(4, "feet"),
  29130. default: true
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(5 + 7.5 / 12, "feet"),
  29139. weight: math.unit(120, "lb"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/digi-duncan/front.svg",
  29143. extra: 330 / 326,
  29144. bottom: 16 / 346
  29145. }
  29146. },
  29147. side: {
  29148. height: math.unit(5 + 7.5 / 12, "feet"),
  29149. weight: math.unit(120, "lb"),
  29150. name: "Side",
  29151. image: {
  29152. source: "./media/characters/digi-duncan/side.svg",
  29153. extra: 341 / 337,
  29154. bottom: 1 / 342
  29155. }
  29156. },
  29157. back: {
  29158. height: math.unit(5 + 7.5 / 12, "feet"),
  29159. weight: math.unit(120, "lb"),
  29160. name: "Back",
  29161. image: {
  29162. source: "./media/characters/digi-duncan/back.svg",
  29163. extra: 330 / 326,
  29164. bottom: 12 / 342
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Speck",
  29171. height: math.unit(0.25, "mm")
  29172. },
  29173. {
  29174. name: "Micro",
  29175. height: math.unit(5, "mm")
  29176. },
  29177. {
  29178. name: "Tiny",
  29179. height: math.unit(0.5, "inches"),
  29180. default: true
  29181. },
  29182. {
  29183. name: "Human",
  29184. height: math.unit(5 + 7.5 / 12, "feet")
  29185. },
  29186. {
  29187. name: "Minigiant",
  29188. height: math.unit(8 + 5.25, "feet")
  29189. },
  29190. {
  29191. name: "Giant",
  29192. height: math.unit(2000, "feet")
  29193. },
  29194. {
  29195. name: "Mega",
  29196. height: math.unit(371.1, "miles")
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(2, "meters"),
  29205. weight: math.unit(350, "kg"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29209. extra: 898 / 838,
  29210. bottom: 9 / 907
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Micro",
  29217. height: math.unit(8, "meters")
  29218. },
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(50, "meters"),
  29222. default: true
  29223. },
  29224. {
  29225. name: "Macro",
  29226. height: math.unit(500, "meters")
  29227. },
  29228. ]
  29229. ))
  29230. characterMakers.push(() => makeCharacter(
  29231. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29232. {
  29233. front: {
  29234. height: math.unit(6 + 6 / 12, "feet"),
  29235. name: "Front",
  29236. image: {
  29237. source: "./media/characters/khardesh/front.svg",
  29238. extra: 888 / 797,
  29239. bottom: 25 / 913
  29240. }
  29241. },
  29242. },
  29243. [
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(6 + 6 / 12, "feet"),
  29247. default: true
  29248. },
  29249. {
  29250. name: "Normal+",
  29251. height: math.unit(4, "meters")
  29252. },
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(50, "meters")
  29256. },
  29257. {
  29258. name: "Macro+",
  29259. height: math.unit(100, "meters")
  29260. },
  29261. {
  29262. name: "Megamacro",
  29263. height: math.unit(20, "km")
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29269. {
  29270. front: {
  29271. height: math.unit(6, "feet"),
  29272. weight: math.unit(150, "lb"),
  29273. name: "Front",
  29274. image: {
  29275. source: "./media/characters/kosho/front.svg",
  29276. extra: 1847 / 1847,
  29277. bottom: 86 / 1933
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Second-stage micro",
  29284. height: math.unit(0.5, "inches")
  29285. },
  29286. {
  29287. name: "First-stage micro",
  29288. height: math.unit(6, "inches")
  29289. },
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(6, "feet"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "First-stage macro",
  29297. height: math.unit(72, "feet")
  29298. },
  29299. {
  29300. name: "Second-stage macro",
  29301. height: math.unit(864, "feet")
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29307. {
  29308. normal: {
  29309. height: math.unit(4 + 6 / 12, "feet"),
  29310. name: "Normal",
  29311. image: {
  29312. source: "./media/characters/hydra/normal.svg",
  29313. extra: 2833 / 2634,
  29314. bottom: 68 / 2901
  29315. }
  29316. },
  29317. smol: {
  29318. height: math.unit(0.705, "inches"),
  29319. name: "Smol",
  29320. image: {
  29321. source: "./media/characters/hydra/smol.svg",
  29322. extra: 2715 / 2540,
  29323. bottom: 0 / 2715
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(4 + 6 / 12, "feet"),
  29331. default: true
  29332. }
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(0.6, "cm"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/daz/front.svg",
  29343. extra: 1682 / 1164,
  29344. bottom: 42 / 1724
  29345. }
  29346. },
  29347. },
  29348. [
  29349. {
  29350. name: "Normal",
  29351. height: math.unit(0.6, "cm"),
  29352. default: true
  29353. },
  29354. ]
  29355. ))
  29356. characterMakers.push(() => makeCharacter(
  29357. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29358. {
  29359. front: {
  29360. height: math.unit(6, "feet"),
  29361. weight: math.unit(235, "lb"),
  29362. name: "Front",
  29363. image: {
  29364. source: "./media/characters/theo-pangolin/front.svg",
  29365. extra: 1996 / 1969,
  29366. bottom: 115 / 2111
  29367. }
  29368. },
  29369. back: {
  29370. height: math.unit(6, "feet"),
  29371. weight: math.unit(235, "lb"),
  29372. name: "Back",
  29373. image: {
  29374. source: "./media/characters/theo-pangolin/back.svg",
  29375. extra: 1979 / 1979,
  29376. bottom: 40 / 2019
  29377. }
  29378. },
  29379. feral: {
  29380. height: math.unit(2, "feet"),
  29381. weight: math.unit(30, "lb"),
  29382. name: "Feral",
  29383. image: {
  29384. source: "./media/characters/theo-pangolin/feral.svg",
  29385. extra: 803 / 791,
  29386. bottom: 181 / 984
  29387. }
  29388. },
  29389. footFive: {
  29390. height: math.unit(1.43, "feet"),
  29391. name: "Foot (Five Toes)",
  29392. image: {
  29393. source: "./media/characters/theo-pangolin/foot-five.svg"
  29394. }
  29395. },
  29396. footFour: {
  29397. height: math.unit(1.43, "feet"),
  29398. name: "Foot (Four Toes)",
  29399. image: {
  29400. source: "./media/characters/theo-pangolin/foot-four.svg"
  29401. }
  29402. },
  29403. handFour: {
  29404. height: math.unit(0.81, "feet"),
  29405. name: "Hand (Four Fingers)",
  29406. image: {
  29407. source: "./media/characters/theo-pangolin/hand-four.svg"
  29408. }
  29409. },
  29410. handThree: {
  29411. height: math.unit(0.81, "feet"),
  29412. name: "Hand (Three Fingers)",
  29413. image: {
  29414. source: "./media/characters/theo-pangolin/hand-three.svg"
  29415. }
  29416. },
  29417. headFront: {
  29418. height: math.unit(1.37, "feet"),
  29419. name: "Head (Front)",
  29420. image: {
  29421. source: "./media/characters/theo-pangolin/head-front.svg"
  29422. }
  29423. },
  29424. headSide: {
  29425. height: math.unit(1.43, "feet"),
  29426. name: "Head (Side)",
  29427. image: {
  29428. source: "./media/characters/theo-pangolin/head-side.svg"
  29429. }
  29430. },
  29431. tongue: {
  29432. height: math.unit(2.29, "feet"),
  29433. name: "Tongue",
  29434. image: {
  29435. source: "./media/characters/theo-pangolin/tongue.svg"
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Normal",
  29442. height: math.unit(6, "feet")
  29443. },
  29444. {
  29445. name: "Macro",
  29446. height: math.unit(400, "feet"),
  29447. default: true
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29453. {
  29454. front: {
  29455. height: math.unit(6, "inches"),
  29456. weight: math.unit(0.036, "kg"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/renée/front.svg",
  29460. extra: 900 / 886,
  29461. bottom: 8 / 908
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Nano",
  29468. height: math.unit(1, "nm")
  29469. },
  29470. {
  29471. name: "Micro",
  29472. height: math.unit(1, "mm")
  29473. },
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(6, "inches")
  29477. },
  29478. {
  29479. name: "Macro",
  29480. height: math.unit(2000, "feet"),
  29481. default: true
  29482. },
  29483. {
  29484. name: "Megamacro",
  29485. height: math.unit(2, "km")
  29486. },
  29487. {
  29488. name: "Gigamacro",
  29489. height: math.unit(2000, "km")
  29490. },
  29491. {
  29492. name: "Teramacro",
  29493. height: math.unit(250000, "km")
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(4, "meters"),
  29502. weight: math.unit(150, "kg"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/caledvwlch/front.svg",
  29506. extra: 1760 / 1551,
  29507. bottom: 28 / 1788
  29508. }
  29509. },
  29510. side: {
  29511. height: math.unit(4, "meters"),
  29512. weight: math.unit(150, "kg"),
  29513. name: "Side",
  29514. image: {
  29515. source: "./media/characters/caledvwlch/side.svg",
  29516. extra: 1605 / 1536,
  29517. bottom: 31 / 1636
  29518. }
  29519. },
  29520. back: {
  29521. height: math.unit(4, "meters"),
  29522. weight: math.unit(150, "kg"),
  29523. name: "Back",
  29524. image: {
  29525. source: "./media/characters/caledvwlch/back.svg",
  29526. extra: 1635 / 1565,
  29527. bottom: 27 / 1662
  29528. }
  29529. },
  29530. },
  29531. [
  29532. {
  29533. name: "\"Incognito\"",
  29534. height: math.unit(4, "meters")
  29535. },
  29536. {
  29537. name: "Small rampage",
  29538. height: math.unit(600, "meters")
  29539. },
  29540. {
  29541. name: "Mega",
  29542. height: math.unit(30, "km")
  29543. },
  29544. {
  29545. name: "Home-size",
  29546. height: math.unit(50, "km"),
  29547. default: true
  29548. },
  29549. {
  29550. name: "Giga",
  29551. height: math.unit(300, "km")
  29552. },
  29553. {
  29554. name: "Lounging",
  29555. height: math.unit(11000, "km")
  29556. },
  29557. {
  29558. name: "Planet snacking",
  29559. height: math.unit(2000000, "km")
  29560. },
  29561. ]
  29562. ))
  29563. characterMakers.push(() => makeCharacter(
  29564. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29565. {
  29566. front: {
  29567. height: math.unit(6, "feet"),
  29568. weight: math.unit(215, "lb"),
  29569. name: "Front",
  29570. image: {
  29571. source: "./media/characters/sapphire-svell/front.svg",
  29572. extra: 495 / 455,
  29573. bottom: 20 / 515
  29574. }
  29575. },
  29576. back: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(216, "lb"),
  29579. name: "Back",
  29580. image: {
  29581. source: "./media/characters/sapphire-svell/back.svg",
  29582. extra: 497 / 477,
  29583. bottom: 7 / 504
  29584. }
  29585. },
  29586. maw: {
  29587. height: math.unit(1.57, "feet"),
  29588. name: "Maw",
  29589. image: {
  29590. source: "./media/characters/sapphire-svell/maw.svg"
  29591. }
  29592. },
  29593. foot: {
  29594. height: math.unit(1.07, "feet"),
  29595. name: "Foot",
  29596. image: {
  29597. source: "./media/characters/sapphire-svell/foot.svg"
  29598. }
  29599. },
  29600. toering: {
  29601. height: math.unit(1.7, "inch"),
  29602. name: "Toering",
  29603. image: {
  29604. source: "./media/characters/sapphire-svell/toering.svg"
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(300, "feet"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Augmented",
  29616. height: math.unit(1250, "feet")
  29617. },
  29618. {
  29619. name: "Unleashed",
  29620. height: math.unit(3000, "feet")
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29626. {
  29627. side: {
  29628. height: math.unit(2 + 3 / 12, "feet"),
  29629. weight: math.unit(110, "lb"),
  29630. name: "Side",
  29631. image: {
  29632. source: "./media/characters/glitch-flux/side.svg",
  29633. extra: 997 / 805,
  29634. bottom: 20 / 1017
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(2 + 3 / 12, "feet"),
  29642. default: true
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(4, "meters"),
  29651. name: "Front",
  29652. image: {
  29653. source: "./media/characters/mid/front.svg",
  29654. extra: 507 / 476,
  29655. bottom: 17 / 524
  29656. }
  29657. },
  29658. back: {
  29659. height: math.unit(4, "meters"),
  29660. name: "Back",
  29661. image: {
  29662. source: "./media/characters/mid/back.svg",
  29663. extra: 519 / 487,
  29664. bottom: 7 / 526
  29665. }
  29666. },
  29667. stuck: {
  29668. height: math.unit(2.2, "meters"),
  29669. name: "Stuck",
  29670. image: {
  29671. source: "./media/characters/mid/stuck.svg",
  29672. extra: 1951 / 1869,
  29673. bottom: 88 / 2039
  29674. }
  29675. }
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(4, "meters"),
  29681. default: true
  29682. },
  29683. {
  29684. name: "Big",
  29685. height: math.unit(10, "meters")
  29686. },
  29687. {
  29688. name: "Macro",
  29689. height: math.unit(800, "meters")
  29690. },
  29691. {
  29692. name: "Megamacro",
  29693. height: math.unit(100, "km")
  29694. },
  29695. {
  29696. name: "Overgrown",
  29697. height: math.unit(1, "parsec")
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(2.5, "meters"),
  29706. weight: math.unit(225, "kg"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/iris/front.svg",
  29710. extra: 3348 / 3251,
  29711. bottom: 205 / 3553
  29712. }
  29713. },
  29714. maw: {
  29715. height: math.unit(0.56, "meter"),
  29716. name: "Maw",
  29717. image: {
  29718. source: "./media/characters/iris/maw.svg"
  29719. }
  29720. },
  29721. },
  29722. [
  29723. {
  29724. name: "Mewter cat",
  29725. height: math.unit(1.2, "meters")
  29726. },
  29727. {
  29728. name: "Minimacro",
  29729. height: math.unit(2.5, "meters"),
  29730. default: true
  29731. },
  29732. {
  29733. name: "Macro",
  29734. height: math.unit(180, "meters")
  29735. },
  29736. {
  29737. name: "Megamacro",
  29738. height: math.unit(2746, "meters")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(6, "feet"),
  29747. weight: math.unit(135, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/axel/front.svg",
  29751. extra: 908 / 908,
  29752. bottom: 58 / 966
  29753. }
  29754. },
  29755. side: {
  29756. height: math.unit(6, "feet"),
  29757. weight: math.unit(135, "lb"),
  29758. name: "Side",
  29759. image: {
  29760. source: "./media/characters/axel/side.svg",
  29761. extra: 958 / 958,
  29762. bottom: 11 / 969
  29763. }
  29764. },
  29765. back: {
  29766. height: math.unit(6, "feet"),
  29767. weight: math.unit(135, "lb"),
  29768. name: "Back",
  29769. image: {
  29770. source: "./media/characters/axel/back.svg",
  29771. extra: 887 / 887,
  29772. bottom: 34 / 921
  29773. }
  29774. },
  29775. head: {
  29776. height: math.unit(1.07, "feet"),
  29777. name: "Head",
  29778. image: {
  29779. source: "./media/characters/axel/head.svg"
  29780. }
  29781. },
  29782. beak: {
  29783. height: math.unit(1.4, "feet"),
  29784. name: "Beak",
  29785. image: {
  29786. source: "./media/characters/axel/beak.svg"
  29787. }
  29788. },
  29789. beakSide: {
  29790. height: math.unit(1.4, "feet"),
  29791. name: "Beak Side",
  29792. image: {
  29793. source: "./media/characters/axel/beak-side.svg"
  29794. }
  29795. },
  29796. sheath: {
  29797. height: math.unit(0.5, "feet"),
  29798. name: "Sheath",
  29799. image: {
  29800. source: "./media/characters/axel/sheath.svg"
  29801. }
  29802. },
  29803. dick: {
  29804. height: math.unit(0.98, "feet"),
  29805. name: "Dick",
  29806. image: {
  29807. source: "./media/characters/axel/dick.svg"
  29808. }
  29809. },
  29810. },
  29811. [
  29812. {
  29813. name: "Macro",
  29814. height: math.unit(68, "meters"),
  29815. default: true
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(3.5, "meters"),
  29824. weight: math.unit(1200, "kg"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/joanna/front.svg",
  29828. extra: 1596 / 1488,
  29829. bottom: 29 / 1625
  29830. }
  29831. },
  29832. back: {
  29833. height: math.unit(3.5, "meters"),
  29834. weight: math.unit(1200, "kg"),
  29835. name: "Back",
  29836. image: {
  29837. source: "./media/characters/joanna/back.svg",
  29838. extra: 1594 / 1495,
  29839. bottom: 26 / 1620
  29840. }
  29841. },
  29842. frontShorts: {
  29843. height: math.unit(3.5, "meters"),
  29844. weight: math.unit(1200, "kg"),
  29845. name: "Front (Shorts)",
  29846. image: {
  29847. source: "./media/characters/joanna/front-shorts.svg",
  29848. extra: 1596 / 1488,
  29849. bottom: 29 / 1625
  29850. }
  29851. },
  29852. frontBiker: {
  29853. height: math.unit(3.5, "meters"),
  29854. weight: math.unit(1200, "kg"),
  29855. name: "Front (Biker)",
  29856. image: {
  29857. source: "./media/characters/joanna/front-biker.svg",
  29858. extra: 1596 / 1488,
  29859. bottom: 29 / 1625
  29860. }
  29861. },
  29862. backBiker: {
  29863. height: math.unit(3.5, "meters"),
  29864. weight: math.unit(1200, "kg"),
  29865. name: "Back (Biker)",
  29866. image: {
  29867. source: "./media/characters/joanna/back-biker.svg",
  29868. extra: 1594 / 1495,
  29869. bottom: 88 / 1682
  29870. }
  29871. },
  29872. bikeLeft: {
  29873. height: math.unit(2.4, "meters"),
  29874. weight: math.unit(1600, "kg"),
  29875. name: "Bike (Left)",
  29876. image: {
  29877. source: "./media/characters/joanna/bike-left.svg",
  29878. extra: 720 / 720,
  29879. bottom: 8 / 728
  29880. }
  29881. },
  29882. bikeRight: {
  29883. height: math.unit(2.4, "meters"),
  29884. weight: math.unit(1600, "kg"),
  29885. name: "Bike (Right)",
  29886. image: {
  29887. source: "./media/characters/joanna/bike-right.svg",
  29888. extra: 720 / 720,
  29889. bottom: 8 / 728
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Incognito",
  29896. height: math.unit(3.5, "meters")
  29897. },
  29898. {
  29899. name: "Casual Big",
  29900. height: math.unit(200, "meters")
  29901. },
  29902. {
  29903. name: "Macro",
  29904. height: math.unit(600, "meters")
  29905. },
  29906. {
  29907. name: "Original",
  29908. height: math.unit(20, "km"),
  29909. default: true
  29910. },
  29911. {
  29912. name: "Giga",
  29913. height: math.unit(400, "km")
  29914. },
  29915. {
  29916. name: "Lounging",
  29917. height: math.unit(1500, "km")
  29918. },
  29919. {
  29920. name: "Planetary",
  29921. height: math.unit(200000, "km")
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(6, "feet"),
  29930. weight: math.unit(150, "lb"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/hugo-sigil/front.svg",
  29934. extra: 522 / 500,
  29935. bottom: 2 / 524
  29936. }
  29937. },
  29938. back: {
  29939. height: math.unit(6, "feet"),
  29940. weight: math.unit(150, "lb"),
  29941. name: "Back",
  29942. image: {
  29943. source: "./media/characters/hugo-sigil/back.svg",
  29944. extra: 519 / 495,
  29945. bottom: 5 / 524
  29946. }
  29947. },
  29948. maw: {
  29949. height: math.unit(1.4, "feet"),
  29950. weight: math.unit(150, "lb"),
  29951. name: "Maw",
  29952. image: {
  29953. source: "./media/characters/hugo-sigil/maw.svg"
  29954. }
  29955. },
  29956. feet: {
  29957. height: math.unit(1.56, "feet"),
  29958. weight: math.unit(150, "lb"),
  29959. name: "Feet",
  29960. image: {
  29961. source: "./media/characters/hugo-sigil/feet.svg",
  29962. extra: 177 / 177,
  29963. bottom: 12 / 189
  29964. }
  29965. },
  29966. },
  29967. [
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(6, "feet")
  29971. },
  29972. {
  29973. name: "Macro",
  29974. height: math.unit(200, "feet"),
  29975. default: true
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(6, "feet"),
  29984. weight: math.unit(150, "lb"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/peri/front.svg",
  29988. extra: 2354 / 2233,
  29989. bottom: 49 / 2403
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Really Small",
  29996. height: math.unit(1, "nm")
  29997. },
  29998. {
  29999. name: "Micro",
  30000. height: math.unit(4, "inches")
  30001. },
  30002. {
  30003. name: "Normal",
  30004. height: math.unit(7, "inches"),
  30005. default: true
  30006. },
  30007. {
  30008. name: "Macro",
  30009. height: math.unit(400, "feet")
  30010. },
  30011. {
  30012. name: "Megamacro",
  30013. height: math.unit(100, "miles")
  30014. },
  30015. ]
  30016. ))
  30017. characterMakers.push(() => makeCharacter(
  30018. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30019. {
  30020. frontSlim: {
  30021. height: math.unit(7, "feet"),
  30022. name: "Front (Slim)",
  30023. image: {
  30024. source: "./media/characters/issilora/front-slim.svg",
  30025. extra: 529 / 449,
  30026. bottom: 53 / 582
  30027. }
  30028. },
  30029. sideSlim: {
  30030. height: math.unit(7, "feet"),
  30031. name: "Side (Slim)",
  30032. image: {
  30033. source: "./media/characters/issilora/side-slim.svg",
  30034. extra: 570 / 480,
  30035. bottom: 30 / 600
  30036. }
  30037. },
  30038. backSlim: {
  30039. height: math.unit(7, "feet"),
  30040. name: "Back (Slim)",
  30041. image: {
  30042. source: "./media/characters/issilora/back-slim.svg",
  30043. extra: 537 / 455,
  30044. bottom: 46 / 583
  30045. }
  30046. },
  30047. frontBuff: {
  30048. height: math.unit(7, "feet"),
  30049. name: "Front (Buff)",
  30050. image: {
  30051. source: "./media/characters/issilora/front-buff.svg",
  30052. extra: 2310 / 2035,
  30053. bottom: 335 / 2645
  30054. }
  30055. },
  30056. head: {
  30057. height: math.unit(1.94, "feet"),
  30058. name: "Head",
  30059. image: {
  30060. source: "./media/characters/issilora/head.svg"
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Minimum",
  30067. height: math.unit(7, "feet")
  30068. },
  30069. {
  30070. name: "Comfortable",
  30071. height: math.unit(17, "feet")
  30072. },
  30073. {
  30074. name: "Fun Size",
  30075. height: math.unit(47, "feet")
  30076. },
  30077. {
  30078. name: "Natural Macro",
  30079. height: math.unit(137, "feet"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Maximum Kaiju",
  30084. height: math.unit(397, "feet")
  30085. },
  30086. ]
  30087. ))
  30088. characterMakers.push(() => makeCharacter(
  30089. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30090. {
  30091. front: {
  30092. height: math.unit(50 + 9/12, "feet"),
  30093. weight: math.unit(32.8, "tons"),
  30094. name: "Front",
  30095. image: {
  30096. source: "./media/characters/irb'iiritaahn/front.svg",
  30097. extra: 1878/1826,
  30098. bottom: 326/2204
  30099. }
  30100. },
  30101. back: {
  30102. height: math.unit(50 + 9/12, "feet"),
  30103. weight: math.unit(32.8, "tons"),
  30104. name: "Back",
  30105. image: {
  30106. source: "./media/characters/irb'iiritaahn/back.svg",
  30107. extra: 2052/2018,
  30108. bottom: 152/2204
  30109. }
  30110. },
  30111. head: {
  30112. height: math.unit(12.86, "feet"),
  30113. name: "Head",
  30114. image: {
  30115. source: "./media/characters/irb'iiritaahn/head.svg"
  30116. }
  30117. },
  30118. maw: {
  30119. height: math.unit(9.66, "feet"),
  30120. name: "Maw",
  30121. image: {
  30122. source: "./media/characters/irb'iiritaahn/maw.svg"
  30123. }
  30124. },
  30125. frontDick: {
  30126. height: math.unit(8.78461, "feet"),
  30127. name: "Front Dick",
  30128. image: {
  30129. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30130. }
  30131. },
  30132. rearDick: {
  30133. height: math.unit(8.78461, "feet"),
  30134. name: "Rear Dick",
  30135. image: {
  30136. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30137. }
  30138. },
  30139. rearDickUnfolded: {
  30140. height: math.unit(8.78, "feet"),
  30141. name: "Rear Dick (Unfolded)",
  30142. image: {
  30143. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30144. }
  30145. },
  30146. wings: {
  30147. height: math.unit(43, "feet"),
  30148. name: "Wings",
  30149. image: {
  30150. source: "./media/characters/irb'iiritaahn/wings.svg"
  30151. }
  30152. },
  30153. },
  30154. [
  30155. {
  30156. name: "Macro",
  30157. height: math.unit(50 + 9/12, "feet"),
  30158. default: true
  30159. },
  30160. ]
  30161. ))
  30162. characterMakers.push(() => makeCharacter(
  30163. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30164. {
  30165. front: {
  30166. height: math.unit(205, "cm"),
  30167. weight: math.unit(102, "kg"),
  30168. name: "Front",
  30169. image: {
  30170. source: "./media/characters/irbisgreif/front.svg",
  30171. extra: 785/706,
  30172. bottom: 13/798
  30173. }
  30174. },
  30175. back: {
  30176. height: math.unit(205, "cm"),
  30177. weight: math.unit(102, "kg"),
  30178. name: "Back",
  30179. image: {
  30180. source: "./media/characters/irbisgreif/back.svg",
  30181. extra: 713/701,
  30182. bottom: 26/739
  30183. }
  30184. },
  30185. frontDressed: {
  30186. height: math.unit(216, "cm"),
  30187. weight: math.unit(102, "kg"),
  30188. name: "Front-dressed",
  30189. image: {
  30190. source: "./media/characters/irbisgreif/front-dressed.svg",
  30191. extra: 902/776,
  30192. bottom: 14/916
  30193. }
  30194. },
  30195. sideDressed: {
  30196. height: math.unit(195, "cm"),
  30197. weight: math.unit(102, "kg"),
  30198. name: "Side-dressed",
  30199. image: {
  30200. source: "./media/characters/irbisgreif/side-dressed.svg",
  30201. extra: 788/688,
  30202. bottom: 21/809
  30203. }
  30204. },
  30205. backDressed: {
  30206. height: math.unit(216, "cm"),
  30207. weight: math.unit(102, "kg"),
  30208. name: "Back-dressed",
  30209. image: {
  30210. source: "./media/characters/irbisgreif/back-dressed.svg",
  30211. extra: 901/783,
  30212. bottom: 10/911
  30213. }
  30214. },
  30215. dick: {
  30216. height: math.unit(0.49, "feet"),
  30217. name: "Dick",
  30218. image: {
  30219. source: "./media/characters/irbisgreif/dick.svg"
  30220. }
  30221. },
  30222. wingTop: {
  30223. height: math.unit(1.93 , "feet"),
  30224. name: "Wing-top",
  30225. image: {
  30226. source: "./media/characters/irbisgreif/wing-top.svg"
  30227. }
  30228. },
  30229. wingBottom: {
  30230. height: math.unit(1.93 , "feet"),
  30231. name: "Wing-bottom",
  30232. image: {
  30233. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(216, "cm"),
  30241. default: true
  30242. },
  30243. ]
  30244. ))
  30245. characterMakers.push(() => makeCharacter(
  30246. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30247. {
  30248. front: {
  30249. height: math.unit(6, "feet"),
  30250. weight: math.unit(150, "lb"),
  30251. name: "Front",
  30252. image: {
  30253. source: "./media/characters/pride/front.svg",
  30254. extra: 1299/1230,
  30255. bottom: 18/1317
  30256. }
  30257. },
  30258. },
  30259. [
  30260. {
  30261. name: "Normal",
  30262. height: math.unit(7, "feet")
  30263. },
  30264. {
  30265. name: "Mini-macro",
  30266. height: math.unit(11, "feet")
  30267. },
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(15, "meters"),
  30271. default: true
  30272. },
  30273. {
  30274. name: "Macro+",
  30275. height: math.unit(40, "meters")
  30276. },
  30277. ]
  30278. ))
  30279. characterMakers.push(() => makeCharacter(
  30280. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30281. {
  30282. front: {
  30283. height: math.unit(4 + 2 / 12, "feet"),
  30284. weight: math.unit(95, "lb"),
  30285. name: "Front",
  30286. image: {
  30287. source: "./media/characters/vaelophis-nyx/front.svg",
  30288. extra: 2532/2330,
  30289. bottom: 0/2532
  30290. }
  30291. },
  30292. back: {
  30293. height: math.unit(4 + 2 / 12, "feet"),
  30294. weight: math.unit(95, "lb"),
  30295. name: "Back",
  30296. image: {
  30297. source: "./media/characters/vaelophis-nyx/back.svg",
  30298. extra: 2484/2361,
  30299. bottom: 0/2484
  30300. }
  30301. },
  30302. feralSide: {
  30303. height: math.unit(2 + 1/12, "feet"),
  30304. weight: math.unit(20, "lb"),
  30305. name: "Feral (Side)",
  30306. image: {
  30307. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30308. extra: 1721/1581,
  30309. bottom: 70/1791
  30310. }
  30311. },
  30312. feralLazing: {
  30313. height: math.unit(1.08, "feet"),
  30314. weight: math.unit(20, "lb"),
  30315. name: "Feral (Lazing)",
  30316. image: {
  30317. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30318. extra: 822/822,
  30319. bottom: 248/1070
  30320. }
  30321. },
  30322. ear: {
  30323. height: math.unit(0.416, "feet"),
  30324. name: "Ear",
  30325. image: {
  30326. source: "./media/characters/vaelophis-nyx/ear.svg"
  30327. }
  30328. },
  30329. eye: {
  30330. height: math.unit(0.0748, "feet"),
  30331. name: "Eye",
  30332. image: {
  30333. source: "./media/characters/vaelophis-nyx/eye.svg"
  30334. }
  30335. },
  30336. mouth: {
  30337. height: math.unit(0.378, "feet"),
  30338. name: "Mouth",
  30339. image: {
  30340. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30341. }
  30342. },
  30343. spade: {
  30344. height: math.unit(0.55, "feet"),
  30345. name: "Spade",
  30346. image: {
  30347. source: "./media/characters/vaelophis-nyx/spade.svg"
  30348. }
  30349. },
  30350. },
  30351. [
  30352. {
  30353. name: "Normal",
  30354. height: math.unit(4 + 2/12, "feet"),
  30355. default: true
  30356. },
  30357. ]
  30358. ))
  30359. characterMakers.push(() => makeCharacter(
  30360. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30361. {
  30362. front: {
  30363. height: math.unit(7, "feet"),
  30364. weight: math.unit(231, "lb"),
  30365. name: "Front",
  30366. image: {
  30367. source: "./media/characters/flux/front.svg",
  30368. extra: 919/871,
  30369. bottom: 0/919
  30370. }
  30371. },
  30372. back: {
  30373. height: math.unit(7, "feet"),
  30374. weight: math.unit(231, "lb"),
  30375. name: "Back",
  30376. image: {
  30377. source: "./media/characters/flux/back.svg",
  30378. extra: 1040/992,
  30379. bottom: 0/1040
  30380. }
  30381. },
  30382. frontDressed: {
  30383. height: math.unit(7, "feet"),
  30384. weight: math.unit(231, "lb"),
  30385. name: "Front (Dressed)",
  30386. image: {
  30387. source: "./media/characters/flux/front-dressed.svg",
  30388. extra: 919/871,
  30389. bottom: 0/919
  30390. }
  30391. },
  30392. feralSide: {
  30393. height: math.unit(5, "feet"),
  30394. weight: math.unit(150, "lb"),
  30395. name: "Feral (Side)",
  30396. image: {
  30397. source: "./media/characters/flux/feral-side.svg",
  30398. extra: 598/528,
  30399. bottom: 28/626
  30400. }
  30401. },
  30402. head: {
  30403. height: math.unit(1.585, "feet"),
  30404. name: "Head",
  30405. image: {
  30406. source: "./media/characters/flux/head.svg"
  30407. }
  30408. },
  30409. headSide: {
  30410. height: math.unit(1.74, "feet"),
  30411. name: "Head (Side)",
  30412. image: {
  30413. source: "./media/characters/flux/head-side.svg"
  30414. }
  30415. },
  30416. headSideFire: {
  30417. height: math.unit(1.76, "feet"),
  30418. name: "Head (Side, Fire)",
  30419. image: {
  30420. source: "./media/characters/flux/head-side-fire.svg"
  30421. }
  30422. },
  30423. },
  30424. [
  30425. {
  30426. name: "Normal",
  30427. height: math.unit(7, "feet"),
  30428. default: true
  30429. },
  30430. ]
  30431. ))
  30432. characterMakers.push(() => makeCharacter(
  30433. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30434. {
  30435. front: {
  30436. height: math.unit(9, "feet"),
  30437. weight: math.unit(1012, "lb"),
  30438. name: "Front",
  30439. image: {
  30440. source: "./media/characters/ulfra-lupae/front.svg",
  30441. extra: 1083/1011,
  30442. bottom: 67/1150
  30443. }
  30444. },
  30445. },
  30446. [
  30447. {
  30448. name: "Micro",
  30449. height: math.unit(6, "inches")
  30450. },
  30451. {
  30452. name: "Socializing",
  30453. height: math.unit(6 + 5/12, "feet")
  30454. },
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(9, "feet"),
  30458. default: true
  30459. },
  30460. {
  30461. name: "Macro",
  30462. height: math.unit(150, "feet")
  30463. },
  30464. ]
  30465. ))
  30466. characterMakers.push(() => makeCharacter(
  30467. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30468. {
  30469. front: {
  30470. height: math.unit(5 + 2/12, "feet"),
  30471. weight: math.unit(120, "lb"),
  30472. name: "Front",
  30473. image: {
  30474. source: "./media/characters/timber/front.svg",
  30475. extra: 2814/2705,
  30476. bottom: 181/2995
  30477. }
  30478. },
  30479. },
  30480. [
  30481. {
  30482. name: "Normal",
  30483. height: math.unit(5 + 2/12, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(5 + 7/12, "feet"),
  30493. weight: math.unit(220, "lb"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/nicki/front.svg",
  30497. extra: 453/419,
  30498. bottom: 7/460
  30499. }
  30500. },
  30501. frontAlt: {
  30502. height: math.unit(5 + 7/12, "feet"),
  30503. weight: math.unit(220, "lb"),
  30504. name: "Front-alt",
  30505. image: {
  30506. source: "./media/characters/nicki/front-alt.svg",
  30507. extra: 435/411,
  30508. bottom: 12/447
  30509. }
  30510. },
  30511. back: {
  30512. height: math.unit(5 + 7/12, "feet"),
  30513. weight: math.unit(220, "lb"),
  30514. name: "Back",
  30515. image: {
  30516. source: "./media/characters/nicki/back.svg",
  30517. extra: 440/413,
  30518. bottom: 19/459
  30519. }
  30520. },
  30521. taur: {
  30522. height: math.unit(7 + 6/12, "feet"),
  30523. weight: math.unit(700, "lb"),
  30524. name: "Taur",
  30525. image: {
  30526. source: "./media/characters/nicki/taur.svg",
  30527. extra: 975/773,
  30528. bottom: 0/975
  30529. }
  30530. },
  30531. frontNsfw: {
  30532. height: math.unit(5 + 7/12, "feet"),
  30533. weight: math.unit(220, "lb"),
  30534. name: "Front (NSFW)",
  30535. image: {
  30536. source: "./media/characters/nicki/front-nsfw.svg",
  30537. extra: 453/419,
  30538. bottom: 7/460
  30539. }
  30540. },
  30541. frontNsfwAlt: {
  30542. height: math.unit(5 + 7/12, "feet"),
  30543. weight: math.unit(220, "lb"),
  30544. name: "Front (Alt, NSFW)",
  30545. image: {
  30546. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30547. extra: 435/411,
  30548. bottom: 12/447
  30549. }
  30550. },
  30551. backNsfw: {
  30552. height: math.unit(5 + 7/12, "feet"),
  30553. weight: math.unit(220, "lb"),
  30554. name: "Back (NSFW)",
  30555. image: {
  30556. source: "./media/characters/nicki/back-nsfw.svg",
  30557. extra: 440/413,
  30558. bottom: 19/459
  30559. }
  30560. },
  30561. head: {
  30562. height: math.unit(2.1, "feet"),
  30563. name: "Head",
  30564. image: {
  30565. source: "./media/characters/nicki/head.svg"
  30566. }
  30567. },
  30568. paw: {
  30569. height: math.unit(1.88, "feet"),
  30570. name: "Paw",
  30571. image: {
  30572. source: "./media/characters/nicki/paw.svg"
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Normal",
  30579. height: math.unit(5 + 7/12, "feet"),
  30580. default: true
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30586. {
  30587. front: {
  30588. height: math.unit(7 + 10/12, "feet"),
  30589. weight: math.unit(3.5, "tons"),
  30590. name: "Front",
  30591. image: {
  30592. source: "./media/characters/lee/front.svg",
  30593. extra: 1773/1615,
  30594. bottom: 86/1859
  30595. }
  30596. },
  30597. hand: {
  30598. height: math.unit(1.78, "feet"),
  30599. name: "Hand",
  30600. image: {
  30601. source: "./media/characters/lee/hand.svg"
  30602. }
  30603. },
  30604. maw: {
  30605. height: math.unit(1.18, "feet"),
  30606. name: "Maw",
  30607. image: {
  30608. source: "./media/characters/lee/maw.svg"
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(7 + 10/12, "feet"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30622. {
  30623. front: {
  30624. height: math.unit(9, "feet"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/guti/front.svg",
  30628. extra: 4551/4355,
  30629. bottom: 123/4674
  30630. }
  30631. },
  30632. tongue: {
  30633. height: math.unit(1, "feet"),
  30634. name: "Tongue",
  30635. image: {
  30636. source: "./media/characters/guti/tongue.svg"
  30637. }
  30638. },
  30639. paw: {
  30640. height: math.unit(1.18, "feet"),
  30641. name: "Paw",
  30642. image: {
  30643. source: "./media/characters/guti/paw.svg"
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(9, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30657. {
  30658. side: {
  30659. height: math.unit(5, "meters"),
  30660. name: "Side",
  30661. image: {
  30662. source: "./media/characters/vesper/side.svg",
  30663. extra: 1605/1518,
  30664. bottom: 0/1605
  30665. }
  30666. },
  30667. },
  30668. [
  30669. {
  30670. name: "Small",
  30671. height: math.unit(5, "meters")
  30672. },
  30673. {
  30674. name: "Sage",
  30675. height: math.unit(100, "meters"),
  30676. default: true
  30677. },
  30678. {
  30679. name: "Fun Size",
  30680. height: math.unit(600, "meters")
  30681. },
  30682. {
  30683. name: "Goddess",
  30684. height: math.unit(20000, "km")
  30685. },
  30686. {
  30687. name: "Maximum",
  30688. height: math.unit(5, "galaxies")
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30694. {
  30695. front: {
  30696. height: math.unit(6 + 3/12, "feet"),
  30697. weight: math.unit(190, "lb"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/gawain/front.svg",
  30701. extra: 2222/2139,
  30702. bottom: 90/2312
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(6 + 3/12, "feet"),
  30707. weight: math.unit(190, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/gawain/back.svg",
  30711. extra: 2199/2111,
  30712. bottom: 73/2272
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(6 + 3/12, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30726. {
  30727. side: {
  30728. height: math.unit(3.5, "meters"),
  30729. weight: math.unit(16000, "lb"),
  30730. name: "Side",
  30731. image: {
  30732. source: "./media/characters/dascalti/side.svg",
  30733. extra: 392/273,
  30734. bottom: 47/439
  30735. }
  30736. },
  30737. breath: {
  30738. height: math.unit(7.4, "feet"),
  30739. name: "Breath",
  30740. image: {
  30741. source: "./media/characters/dascalti/breath.svg"
  30742. }
  30743. },
  30744. fed: {
  30745. height: math.unit(3.6, "meters"),
  30746. weight: math.unit(16000, "lb"),
  30747. name: "Fed",
  30748. image: {
  30749. source: "./media/characters/dascalti/fed.svg",
  30750. extra: 1419/820,
  30751. bottom: 95/1514
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(3.5, "meters"),
  30759. default: true
  30760. },
  30761. ]
  30762. ))
  30763. characterMakers.push(() => makeCharacter(
  30764. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30765. {
  30766. front: {
  30767. height: math.unit(3 + 5/12, "feet"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/mauve/front.svg",
  30771. extra: 1126/1033,
  30772. bottom: 65/1191
  30773. }
  30774. },
  30775. side: {
  30776. height: math.unit(3 + 5/12, "feet"),
  30777. name: "Side",
  30778. image: {
  30779. source: "./media/characters/mauve/side.svg",
  30780. extra: 1089/1001,
  30781. bottom: 29/1118
  30782. }
  30783. },
  30784. back: {
  30785. height: math.unit(3 + 5/12, "feet"),
  30786. name: "Back",
  30787. image: {
  30788. source: "./media/characters/mauve/back.svg",
  30789. extra: 1173/1053,
  30790. bottom: 109/1282
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Normal",
  30797. height: math.unit(3 + 5/12, "feet"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(6 + 3/12, "feet"),
  30807. weight: math.unit(430, "lb"),
  30808. name: "Front",
  30809. image: {
  30810. source: "./media/characters/carlos/front.svg",
  30811. extra: 1964/1913,
  30812. bottom: 70/2034
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(6 + 3/12, "feet"),
  30820. default: true
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30826. {
  30827. back: {
  30828. height: math.unit(5 + 10/12, "feet"),
  30829. weight: math.unit(200, "lb"),
  30830. name: "Back",
  30831. image: {
  30832. source: "./media/characters/jax/back.svg",
  30833. extra: 764/739,
  30834. bottom: 25/789
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Normal",
  30841. height: math.unit(5 + 10/12, "feet"),
  30842. default: true
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(8, "feet"),
  30851. weight: math.unit(250, "lb"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/eikthynir/front.svg",
  30855. extra: 1332/1166,
  30856. bottom: 82/1414
  30857. }
  30858. },
  30859. back: {
  30860. height: math.unit(8, "feet"),
  30861. weight: math.unit(250, "lb"),
  30862. name: "Back",
  30863. image: {
  30864. source: "./media/characters/eikthynir/back.svg",
  30865. extra: 1342/1190,
  30866. bottom: 19/1361
  30867. }
  30868. },
  30869. dick: {
  30870. height: math.unit(2.35, "feet"),
  30871. name: "Dick",
  30872. image: {
  30873. source: "./media/characters/eikthynir/dick.svg"
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(8, "feet"),
  30881. default: true
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30887. {
  30888. front: {
  30889. height: math.unit(99, "meters"),
  30890. weight: math.unit(13000, "tons"),
  30891. name: "Front",
  30892. image: {
  30893. source: "./media/characters/zlmos/front.svg",
  30894. extra: 2202/1992,
  30895. bottom: 315/2517
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Macro",
  30902. height: math.unit(99, "meters"),
  30903. default: true
  30904. },
  30905. ]
  30906. ))
  30907. characterMakers.push(() => makeCharacter(
  30908. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30909. {
  30910. front: {
  30911. height: math.unit(6 + 5/12, "feet"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/purri/front.svg",
  30915. extra: 1698/1610,
  30916. bottom: 32/1730
  30917. }
  30918. },
  30919. frontAlt: {
  30920. height: math.unit(6 + 5/12, "feet"),
  30921. name: "Front (Alt)",
  30922. image: {
  30923. source: "./media/characters/purri/front-alt.svg",
  30924. extra: 450/420,
  30925. bottom: 26/476
  30926. }
  30927. },
  30928. boots: {
  30929. height: math.unit(5.5, "feet"),
  30930. name: "Boots",
  30931. image: {
  30932. source: "./media/characters/purri/boots.svg",
  30933. extra: 905/853,
  30934. bottom: 18/923
  30935. }
  30936. },
  30937. lying: {
  30938. height: math.unit(2, "feet"),
  30939. name: "Lying",
  30940. image: {
  30941. source: "./media/characters/purri/lying.svg",
  30942. extra: 940/843,
  30943. bottom: 146/1086
  30944. }
  30945. },
  30946. devious: {
  30947. height: math.unit(1.77, "feet"),
  30948. name: "Devious",
  30949. image: {
  30950. source: "./media/characters/purri/devious.svg",
  30951. extra: 1440/1155,
  30952. bottom: 147/1587
  30953. }
  30954. },
  30955. bean: {
  30956. height: math.unit(1.94, "feet"),
  30957. name: "Bean",
  30958. image: {
  30959. source: "./media/characters/purri/bean.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Micro",
  30966. height: math.unit(1, "mm")
  30967. },
  30968. {
  30969. name: "Normal",
  30970. height: math.unit(6 + 5/12, "feet"),
  30971. default: true
  30972. },
  30973. {
  30974. name: "Macro :3c",
  30975. height: math.unit(2, "miles")
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(6 + 2/12, "feet"),
  30984. weight: math.unit(250, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/moonlight/front.svg",
  30988. extra: 1044/908,
  30989. bottom: 56/1100
  30990. }
  30991. },
  30992. feral: {
  30993. height: math.unit(3 + 1/12, "feet"),
  30994. weight: math.unit(50, "kg"),
  30995. name: "Feral",
  30996. image: {
  30997. source: "./media/characters/moonlight/feral.svg",
  30998. extra: 3705/2791,
  30999. bottom: 145/3850
  31000. }
  31001. },
  31002. paw: {
  31003. height: math.unit(1, "feet"),
  31004. name: "Paw",
  31005. image: {
  31006. source: "./media/characters/moonlight/paw.svg"
  31007. }
  31008. },
  31009. paws: {
  31010. height: math.unit(0.98, "feet"),
  31011. name: "Paws",
  31012. image: {
  31013. source: "./media/characters/moonlight/paws.svg",
  31014. extra: 939/939,
  31015. bottom: 50/989
  31016. }
  31017. },
  31018. mouth: {
  31019. height: math.unit(0.48, "feet"),
  31020. name: "Mouth",
  31021. image: {
  31022. source: "./media/characters/moonlight/mouth.svg"
  31023. }
  31024. },
  31025. dick: {
  31026. height: math.unit(1.46, "feet"),
  31027. name: "Dick",
  31028. image: {
  31029. source: "./media/characters/moonlight/dick.svg"
  31030. }
  31031. },
  31032. },
  31033. [
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(6 + 2/12, "feet"),
  31037. default: true
  31038. },
  31039. {
  31040. name: "Macro",
  31041. height: math.unit(300, "feet")
  31042. },
  31043. {
  31044. name: "Macro+",
  31045. height: math.unit(1, "mile")
  31046. },
  31047. {
  31048. name: "Mt. Moon",
  31049. height: math.unit(5, "miles")
  31050. },
  31051. {
  31052. name: "Megamacro",
  31053. height: math.unit(15, "miles")
  31054. },
  31055. ]
  31056. ))
  31057. characterMakers.push(() => makeCharacter(
  31058. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31059. {
  31060. back: {
  31061. height: math.unit(6, "feet"),
  31062. weight: math.unit(150, "lb"),
  31063. name: "Back",
  31064. image: {
  31065. source: "./media/characters/sylen/back.svg",
  31066. extra: 1335/1273,
  31067. bottom: 107/1442
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(5 + 5/12, "feet")
  31075. },
  31076. {
  31077. name: "Megamacro",
  31078. height: math.unit(3, "miles"),
  31079. default: true
  31080. },
  31081. ]
  31082. ))
  31083. characterMakers.push(() => makeCharacter(
  31084. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31085. {
  31086. front: {
  31087. height: math.unit(6, "feet"),
  31088. weight: math.unit(190, "lb"),
  31089. name: "Front",
  31090. image: {
  31091. source: "./media/characters/huttser/front.svg",
  31092. extra: 1152/1058,
  31093. bottom: 23/1175
  31094. }
  31095. },
  31096. side: {
  31097. height: math.unit(6, "feet"),
  31098. weight: math.unit(190, "lb"),
  31099. name: "Side",
  31100. image: {
  31101. source: "./media/characters/huttser/side.svg",
  31102. extra: 1174/1065,
  31103. bottom: 18/1192
  31104. }
  31105. },
  31106. back: {
  31107. height: math.unit(6, "feet"),
  31108. weight: math.unit(190, "lb"),
  31109. name: "Back",
  31110. image: {
  31111. source: "./media/characters/huttser/back.svg",
  31112. extra: 1158/1056,
  31113. bottom: 12/1170
  31114. }
  31115. },
  31116. },
  31117. [
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31122. {
  31123. side: {
  31124. height: math.unit(12 + 9/12, "feet"),
  31125. weight: math.unit(15000, "lb"),
  31126. name: "Side",
  31127. image: {
  31128. source: "./media/characters/faan/side.svg",
  31129. extra: 2747/2697,
  31130. bottom: 0/2747
  31131. }
  31132. },
  31133. front: {
  31134. height: math.unit(12 + 9/12, "feet"),
  31135. weight: math.unit(15000, "lb"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/faan/front.svg",
  31139. extra: 607/571,
  31140. bottom: 24/631
  31141. }
  31142. },
  31143. head: {
  31144. height: math.unit(2.85, "feet"),
  31145. name: "Head",
  31146. image: {
  31147. source: "./media/characters/faan/head.svg"
  31148. }
  31149. },
  31150. headAlt: {
  31151. height: math.unit(3.13, "feet"),
  31152. name: "Head-alt",
  31153. image: {
  31154. source: "./media/characters/faan/head-alt.svg"
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(12 + 9/12, "feet"),
  31162. default: true
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(6, "feet"),
  31171. weight: math.unit(300, "lb"),
  31172. name: "Front",
  31173. image: {
  31174. source: "./media/characters/tanio/front.svg",
  31175. extra: 711/673,
  31176. bottom: 25/736
  31177. }
  31178. },
  31179. },
  31180. [
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(6, "feet"),
  31184. default: true
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(3, "inches"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/noboru/front.svg",
  31196. extra: 1039/932,
  31197. bottom: 18/1057
  31198. }
  31199. },
  31200. },
  31201. [
  31202. {
  31203. name: "Micro",
  31204. height: math.unit(3, "inches"),
  31205. default: true
  31206. },
  31207. ]
  31208. ))
  31209. characterMakers.push(() => makeCharacter(
  31210. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31211. {
  31212. front: {
  31213. height: math.unit(1.85, "meters"),
  31214. weight: math.unit(80, "kg"),
  31215. name: "Front",
  31216. image: {
  31217. source: "./media/characters/daniel-barrett/front.svg",
  31218. extra: 355/337,
  31219. bottom: 9/364
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Pico",
  31226. height: math.unit(0.0433, "mm")
  31227. },
  31228. {
  31229. name: "Nano",
  31230. height: math.unit(1.5, "mm")
  31231. },
  31232. {
  31233. name: "Micro",
  31234. height: math.unit(5.3, "cm"),
  31235. default: true
  31236. },
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(1.85, "meters")
  31240. },
  31241. {
  31242. name: "Macro",
  31243. height: math.unit(64.7, "meters")
  31244. },
  31245. {
  31246. name: "Megamacro",
  31247. height: math.unit(2.26, "km")
  31248. },
  31249. {
  31250. name: "Gigamacro",
  31251. height: math.unit(79, "km")
  31252. },
  31253. {
  31254. name: "Teramacro",
  31255. height: math.unit(2765, "km")
  31256. },
  31257. {
  31258. name: "Petamacro",
  31259. height: math.unit(96678, "km")
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(30, "meters"),
  31268. weight: math.unit(400, "tons"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/zeel/front.svg",
  31272. extra: 2599/2599,
  31273. bottom: 226/2825
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Macro",
  31280. height: math.unit(30, "meters"),
  31281. default: true
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31287. {
  31288. front: {
  31289. height: math.unit(6 + 7/12, "feet"),
  31290. weight: math.unit(210, "lb"),
  31291. name: "Front",
  31292. image: {
  31293. source: "./media/characters/tarn/front.svg",
  31294. extra: 3517/3220,
  31295. bottom: 91/3608
  31296. }
  31297. },
  31298. back: {
  31299. height: math.unit(6 + 7/12, "feet"),
  31300. weight: math.unit(210, "lb"),
  31301. name: "Back",
  31302. image: {
  31303. source: "./media/characters/tarn/back.svg",
  31304. extra: 3566/3241,
  31305. bottom: 34/3600
  31306. }
  31307. },
  31308. dick: {
  31309. height: math.unit(1.65, "feet"),
  31310. name: "Dick",
  31311. image: {
  31312. source: "./media/characters/tarn/dick.svg"
  31313. }
  31314. },
  31315. paw: {
  31316. height: math.unit(1.80, "feet"),
  31317. name: "Paw",
  31318. image: {
  31319. source: "./media/characters/tarn/paw.svg"
  31320. }
  31321. },
  31322. tongue: {
  31323. height: math.unit(0.97, "feet"),
  31324. name: "Tongue",
  31325. image: {
  31326. source: "./media/characters/tarn/tongue.svg"
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Micro",
  31333. height: math.unit(4, "inches")
  31334. },
  31335. {
  31336. name: "Normal",
  31337. height: math.unit(6 + 7/12, "feet"),
  31338. default: true
  31339. },
  31340. {
  31341. name: "Macro",
  31342. height: math.unit(300, "feet")
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(5 + 7/12, "feet"),
  31351. weight: math.unit(80, "kg"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31355. extra: 3023/2865,
  31356. bottom: 33/3056
  31357. }
  31358. },
  31359. back: {
  31360. height: math.unit(5 + 7/12, "feet"),
  31361. weight: math.unit(80, "kg"),
  31362. name: "Back",
  31363. image: {
  31364. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31365. extra: 3020/2886,
  31366. bottom: 30/3050
  31367. }
  31368. },
  31369. dick: {
  31370. height: math.unit(0.98, "feet"),
  31371. name: "Dick",
  31372. image: {
  31373. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31374. }
  31375. },
  31376. anatomy: {
  31377. height: math.unit(2.86, "feet"),
  31378. name: "Anatomy",
  31379. image: {
  31380. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Really Small",
  31387. height: math.unit(2, "inches")
  31388. },
  31389. {
  31390. name: "Micro",
  31391. height: math.unit(5.583, "inches")
  31392. },
  31393. {
  31394. name: "Normal",
  31395. height: math.unit(5 + 7/12, "feet"),
  31396. default: true
  31397. },
  31398. {
  31399. name: "Macro",
  31400. height: math.unit(67, "feet")
  31401. },
  31402. {
  31403. name: "Megamacro",
  31404. height: math.unit(134, "feet")
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31410. {
  31411. front: {
  31412. height: math.unit(9, "feet"),
  31413. weight: math.unit(120, "lb"),
  31414. name: "Front",
  31415. image: {
  31416. source: "./media/characters/sally/front.svg",
  31417. extra: 1506/1349,
  31418. bottom: 66/1572
  31419. }
  31420. },
  31421. },
  31422. [
  31423. {
  31424. name: "Normal",
  31425. height: math.unit(9, "feet"),
  31426. default: true
  31427. },
  31428. ]
  31429. ))
  31430. characterMakers.push(() => makeCharacter(
  31431. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31432. {
  31433. front: {
  31434. height: math.unit(8, "feet"),
  31435. weight: math.unit(900, "lb"),
  31436. name: "Front",
  31437. image: {
  31438. source: "./media/characters/owen/front.svg",
  31439. extra: 1761/1657,
  31440. bottom: 74/1835
  31441. }
  31442. },
  31443. side: {
  31444. height: math.unit(8, "feet"),
  31445. weight: math.unit(900, "lb"),
  31446. name: "Side",
  31447. image: {
  31448. source: "./media/characters/owen/side.svg",
  31449. extra: 1797/1734,
  31450. bottom: 30/1827
  31451. }
  31452. },
  31453. back: {
  31454. height: math.unit(8, "feet"),
  31455. weight: math.unit(900, "lb"),
  31456. name: "Back",
  31457. image: {
  31458. source: "./media/characters/owen/back.svg",
  31459. extra: 1796/1706,
  31460. bottom: 59/1855
  31461. }
  31462. },
  31463. maw: {
  31464. height: math.unit(1.76, "feet"),
  31465. name: "Maw",
  31466. image: {
  31467. source: "./media/characters/owen/maw.svg"
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(8, "feet"),
  31475. default: true
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31481. {
  31482. front: {
  31483. height: math.unit(4, "feet"),
  31484. weight: math.unit(400, "lb"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/ryth/front.svg",
  31488. extra: 876/691,
  31489. bottom: 25/901
  31490. }
  31491. },
  31492. goia: {
  31493. height: math.unit(12, "feet"),
  31494. weight: math.unit(10800, "lb"),
  31495. name: "Goia",
  31496. image: {
  31497. source: "./media/characters/ryth/goia.svg",
  31498. extra: 3450/3198,
  31499. bottom: 61/3511
  31500. }
  31501. },
  31502. },
  31503. [
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(4, "feet"),
  31507. default: true
  31508. },
  31509. ]
  31510. ))
  31511. characterMakers.push(() => makeCharacter(
  31512. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31513. {
  31514. front: {
  31515. height: math.unit(7, "feet"),
  31516. weight: math.unit(180, "lb"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/necrolance/front.svg",
  31520. extra: 1062/947,
  31521. bottom: 41/1103
  31522. }
  31523. },
  31524. back: {
  31525. height: math.unit(7, "feet"),
  31526. weight: math.unit(180, "lb"),
  31527. name: "Back",
  31528. image: {
  31529. source: "./media/characters/necrolance/back.svg",
  31530. extra: 1045/984,
  31531. bottom: 14/1059
  31532. }
  31533. },
  31534. wing: {
  31535. height: math.unit(2.67, "feet"),
  31536. name: "Wing",
  31537. image: {
  31538. source: "./media/characters/necrolance/wing.svg"
  31539. }
  31540. },
  31541. },
  31542. [
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(7, "feet"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31552. {
  31553. front: {
  31554. height: math.unit(76, "meters"),
  31555. weight: math.unit(30000, "tons"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/tyler/front.svg",
  31559. extra: 1640/1640,
  31560. bottom: 114/1754
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Macro",
  31567. height: math.unit(76, "meters"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(4 + 11/12, "feet"),
  31577. weight: math.unit(132, "lb"),
  31578. name: "Front",
  31579. image: {
  31580. source: "./media/characters/icey/front.svg",
  31581. extra: 2750/2550,
  31582. bottom: 33/2783
  31583. }
  31584. },
  31585. back: {
  31586. height: math.unit(4 + 11/12, "feet"),
  31587. weight: math.unit(132, "lb"),
  31588. name: "Back",
  31589. image: {
  31590. source: "./media/characters/icey/back.svg",
  31591. extra: 2624/2481,
  31592. bottom: 35/2659
  31593. }
  31594. },
  31595. },
  31596. [
  31597. {
  31598. name: "Normal",
  31599. height: math.unit(4 + 11/12, "feet"),
  31600. default: true
  31601. },
  31602. ]
  31603. ))
  31604. characterMakers.push(() => makeCharacter(
  31605. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31606. {
  31607. front: {
  31608. height: math.unit(100, "feet"),
  31609. weight: math.unit(0, "lb"),
  31610. name: "Front",
  31611. image: {
  31612. source: "./media/characters/smile/front.svg",
  31613. extra: 2983/2912,
  31614. bottom: 162/3145
  31615. }
  31616. },
  31617. back: {
  31618. height: math.unit(100, "feet"),
  31619. weight: math.unit(0, "lb"),
  31620. name: "Back",
  31621. image: {
  31622. source: "./media/characters/smile/back.svg",
  31623. extra: 3143/3031,
  31624. bottom: 91/3234
  31625. }
  31626. },
  31627. head: {
  31628. height: math.unit(26.3, "feet"),
  31629. weight: math.unit(0, "lb"),
  31630. name: "Head",
  31631. image: {
  31632. source: "./media/characters/smile/head.svg"
  31633. }
  31634. },
  31635. collar: {
  31636. height: math.unit(5.3, "feet"),
  31637. weight: math.unit(0, "lb"),
  31638. name: "Collar",
  31639. image: {
  31640. source: "./media/characters/smile/collar.svg"
  31641. }
  31642. },
  31643. },
  31644. [
  31645. {
  31646. name: "Macro",
  31647. height: math.unit(100, "feet"),
  31648. default: true
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31654. {
  31655. dragon: {
  31656. height: math.unit(26, "feet"),
  31657. weight: math.unit(36, "tons"),
  31658. name: "Dragon",
  31659. image: {
  31660. source: "./media/characters/arimphae/dragon.svg",
  31661. extra: 1574/983,
  31662. bottom: 357/1931
  31663. }
  31664. },
  31665. drake: {
  31666. height: math.unit(9, "feet"),
  31667. weight: math.unit(1.5, "tons"),
  31668. name: "Drake",
  31669. image: {
  31670. source: "./media/characters/arimphae/drake.svg",
  31671. extra: 1120/925,
  31672. bottom: 435/1555
  31673. }
  31674. },
  31675. },
  31676. [
  31677. {
  31678. name: "Small",
  31679. height: math.unit(26*5/9, "feet")
  31680. },
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(26, "feet"),
  31684. default: true
  31685. },
  31686. ]
  31687. ))
  31688. characterMakers.push(() => makeCharacter(
  31689. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31690. {
  31691. front: {
  31692. height: math.unit(8 + 9/12, "feet"),
  31693. name: "Front",
  31694. image: {
  31695. source: "./media/characters/xander/front.svg",
  31696. extra: 848/673,
  31697. bottom: 62/910
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(8 + 9/12, "feet"),
  31705. default: true
  31706. },
  31707. {
  31708. name: "Gaze Grabber",
  31709. height: math.unit(13 + 8/12, "feet")
  31710. },
  31711. {
  31712. name: "Jaw Dropper",
  31713. height: math.unit(27, "feet")
  31714. },
  31715. {
  31716. name: "Show Stopper",
  31717. height: math.unit(136, "feet")
  31718. },
  31719. {
  31720. name: "Superstar",
  31721. height: math.unit(1.9e6, "miles")
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31727. {
  31728. side: {
  31729. height: math.unit(2100, "feet"),
  31730. name: "Side",
  31731. image: {
  31732. source: "./media/characters/osiris/side.svg",
  31733. extra: 1105/939,
  31734. bottom: 167/1272
  31735. }
  31736. },
  31737. },
  31738. [
  31739. {
  31740. name: "Macro",
  31741. height: math.unit(2100, "feet"),
  31742. default: true
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31748. {
  31749. front: {
  31750. height: math.unit(6 + 8/12, "feet"),
  31751. weight: math.unit(225, "lb"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/rhys-londe/front.svg",
  31755. extra: 2258/2141,
  31756. bottom: 188/2446
  31757. }
  31758. },
  31759. back: {
  31760. height: math.unit(6 + 8/12, "feet"),
  31761. weight: math.unit(225, "lb"),
  31762. name: "Back",
  31763. image: {
  31764. source: "./media/characters/rhys-londe/back.svg",
  31765. extra: 2237/2137,
  31766. bottom: 63/2300
  31767. }
  31768. },
  31769. frontNsfw: {
  31770. height: math.unit(6 + 8/12, "feet"),
  31771. weight: math.unit(225, "lb"),
  31772. name: "Front (NSFW)",
  31773. image: {
  31774. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31775. extra: 2258/2141,
  31776. bottom: 188/2446
  31777. }
  31778. },
  31779. backNsfw: {
  31780. height: math.unit(6 + 8/12, "feet"),
  31781. weight: math.unit(225, "lb"),
  31782. name: "Back (NSFW)",
  31783. image: {
  31784. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31785. extra: 2237/2137,
  31786. bottom: 63/2300
  31787. }
  31788. },
  31789. dick: {
  31790. height: math.unit(30, "inches"),
  31791. name: "Dick",
  31792. image: {
  31793. source: "./media/characters/rhys-londe/dick.svg"
  31794. }
  31795. },
  31796. maw: {
  31797. height: math.unit(1.6, "feet"),
  31798. name: "Maw",
  31799. image: {
  31800. source: "./media/characters/rhys-londe/maw.svg"
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(6 + 8/12, "feet"),
  31808. default: true
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31814. {
  31815. front: {
  31816. height: math.unit(3 + 10/12, "feet"),
  31817. weight: math.unit(90, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/taivas-ensim/front.svg",
  31821. extra: 1327/1216,
  31822. bottom: 96/1423
  31823. }
  31824. },
  31825. back: {
  31826. height: math.unit(3 + 10/12, "feet"),
  31827. weight: math.unit(90, "lb"),
  31828. name: "Back",
  31829. image: {
  31830. source: "./media/characters/taivas-ensim/back.svg",
  31831. extra: 1355/1247,
  31832. bottom: 11/1366
  31833. }
  31834. },
  31835. frontNsfw: {
  31836. height: math.unit(3 + 10/12, "feet"),
  31837. weight: math.unit(90, "lb"),
  31838. name: "Front (NSFW)",
  31839. image: {
  31840. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31841. extra: 1327/1216,
  31842. bottom: 96/1423
  31843. }
  31844. },
  31845. backNsfw: {
  31846. height: math.unit(3 + 10/12, "feet"),
  31847. weight: math.unit(90, "lb"),
  31848. name: "Back (NSFW)",
  31849. image: {
  31850. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31851. extra: 1355/1247,
  31852. bottom: 11/1366
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(3 + 10/12, "feet"),
  31860. default: true
  31861. },
  31862. ]
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31866. {
  31867. front: {
  31868. height: math.unit(9 + 6/12, "feet"),
  31869. weight: math.unit(940, "lb"),
  31870. name: "Front",
  31871. image: {
  31872. source: "./media/characters/byliss/front.svg",
  31873. extra: 1327/1290,
  31874. bottom: 82/1409
  31875. }
  31876. },
  31877. back: {
  31878. height: math.unit(9 + 6/12, "feet"),
  31879. weight: math.unit(940, "lb"),
  31880. name: "Back",
  31881. image: {
  31882. source: "./media/characters/byliss/back.svg",
  31883. extra: 1376/1349,
  31884. bottom: 9/1385
  31885. }
  31886. },
  31887. frontNsfw: {
  31888. height: math.unit(9 + 6/12, "feet"),
  31889. weight: math.unit(940, "lb"),
  31890. name: "Front (NSFW)",
  31891. image: {
  31892. source: "./media/characters/byliss/front-nsfw.svg",
  31893. extra: 1327/1290,
  31894. bottom: 82/1409
  31895. }
  31896. },
  31897. backNsfw: {
  31898. height: math.unit(9 + 6/12, "feet"),
  31899. weight: math.unit(940, "lb"),
  31900. name: "Back (NSFW)",
  31901. image: {
  31902. source: "./media/characters/byliss/back-nsfw.svg",
  31903. extra: 1376/1349,
  31904. bottom: 9/1385
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(9 + 6/12, "feet"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(5 + 2/12, "feet"),
  31921. weight: math.unit(200, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/noraly/front.svg",
  31925. extra: 4985/4773,
  31926. bottom: 150/5135
  31927. }
  31928. },
  31929. full: {
  31930. height: math.unit(5 + 2/12, "feet"),
  31931. weight: math.unit(164, "lb"),
  31932. name: "Full",
  31933. image: {
  31934. source: "./media/characters/noraly/full.svg",
  31935. extra: 1114/1059,
  31936. bottom: 35/1149
  31937. }
  31938. },
  31939. fuller: {
  31940. height: math.unit(5 + 2/12, "feet"),
  31941. weight: math.unit(230, "lb"),
  31942. name: "Fuller",
  31943. image: {
  31944. source: "./media/characters/noraly/fuller.svg",
  31945. extra: 1114/1059,
  31946. bottom: 35/1149
  31947. }
  31948. },
  31949. fullest: {
  31950. height: math.unit(5 + 2/12, "feet"),
  31951. weight: math.unit(300, "lb"),
  31952. name: "Fullest",
  31953. image: {
  31954. source: "./media/characters/noraly/fullest.svg",
  31955. extra: 1114/1059,
  31956. bottom: 35/1149
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(5 + 2/12, "feet"),
  31964. default: true
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31970. {
  31971. front: {
  31972. height: math.unit(5 + 2/12, "feet"),
  31973. weight: math.unit(210, "lb"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/pera/front.svg",
  31977. extra: 1560/1531,
  31978. bottom: 165/1725
  31979. }
  31980. },
  31981. back: {
  31982. height: math.unit(5 + 2/12, "feet"),
  31983. weight: math.unit(210, "lb"),
  31984. name: "Back",
  31985. image: {
  31986. source: "./media/characters/pera/back.svg",
  31987. extra: 1523/1493,
  31988. bottom: 152/1675
  31989. }
  31990. },
  31991. dick: {
  31992. height: math.unit(2.4, "feet"),
  31993. name: "Dick",
  31994. image: {
  31995. source: "./media/characters/pera/dick.svg"
  31996. }
  31997. },
  31998. },
  31999. [
  32000. {
  32001. name: "Normal",
  32002. height: math.unit(5 + 2/12, "feet"),
  32003. default: true
  32004. },
  32005. ]
  32006. ))
  32007. characterMakers.push(() => makeCharacter(
  32008. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32009. {
  32010. front: {
  32011. height: math.unit(12, "feet"),
  32012. weight: math.unit(3200, "lb"),
  32013. name: "Front",
  32014. image: {
  32015. source: "./media/characters/julian/front.svg",
  32016. extra: 2962/2701,
  32017. bottom: 184/3146
  32018. }
  32019. },
  32020. maw: {
  32021. height: math.unit(5.35, "feet"),
  32022. name: "Maw",
  32023. image: {
  32024. source: "./media/characters/julian/maw.svg"
  32025. }
  32026. },
  32027. paw: {
  32028. height: math.unit(3.07, "feet"),
  32029. name: "Paw",
  32030. image: {
  32031. source: "./media/characters/julian/paw.svg"
  32032. }
  32033. },
  32034. },
  32035. [
  32036. {
  32037. name: "Default",
  32038. height: math.unit(12, "feet"),
  32039. default: true
  32040. },
  32041. {
  32042. name: "Big",
  32043. height: math.unit(50, "feet")
  32044. },
  32045. {
  32046. name: "Really Big",
  32047. height: math.unit(1, "mile")
  32048. },
  32049. {
  32050. name: "Extremely Big",
  32051. height: math.unit(100, "miles")
  32052. },
  32053. {
  32054. name: "Planet Hugger",
  32055. height: math.unit(200, "megameters")
  32056. },
  32057. {
  32058. name: "Unreasonably Big",
  32059. height: math.unit(1e300, "meters")
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32065. {
  32066. solgooleo: {
  32067. height: math.unit(4, "meters"),
  32068. weight: math.unit(6000*1.5, "kg"),
  32069. volume: math.unit(6000, "liters"),
  32070. name: "Solgooleo",
  32071. image: {
  32072. source: "./media/characters/pi/solgooleo.svg",
  32073. extra: 388/331,
  32074. bottom: 29/417
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Normal",
  32081. height: math.unit(4, "meters"),
  32082. default: true
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32088. {
  32089. front: {
  32090. height: math.unit(8 + 2/12, "feet"),
  32091. weight: math.unit(4, "tons"),
  32092. name: "Front",
  32093. image: {
  32094. source: "./media/characters/shaun/front.svg",
  32095. extra: 1550/1505,
  32096. bottom: 353/1903
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Lorg",
  32103. height: math.unit(8 + 2/12, "feet"),
  32104. default: true
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32110. {
  32111. front: {
  32112. height: math.unit(7, "feet"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/sini/front.svg",
  32116. extra: 726/678,
  32117. bottom: 35/761
  32118. }
  32119. },
  32120. back: {
  32121. height: math.unit(7, "feet"),
  32122. name: "Back",
  32123. image: {
  32124. source: "./media/characters/sini/back.svg",
  32125. extra: 743/701,
  32126. bottom: 12/755
  32127. }
  32128. },
  32129. mawAnthro: {
  32130. height: math.unit(2.14, "feet"),
  32131. name: "Maw (Anthro)",
  32132. image: {
  32133. source: "./media/characters/sini/maw-anthro.svg"
  32134. }
  32135. },
  32136. dick: {
  32137. height: math.unit(1.45, "feet"),
  32138. name: "Dick (Anthro)",
  32139. image: {
  32140. source: "./media/characters/sini/dick-anthro.svg"
  32141. }
  32142. },
  32143. feral: {
  32144. height: math.unit(13, "feet"),
  32145. name: "Feral",
  32146. image: {
  32147. source: "./media/characters/sini/feral.svg",
  32148. extra: 814/605,
  32149. bottom: 11/825
  32150. }
  32151. },
  32152. mawFeral: {
  32153. height: math.unit(4.6, "feet"),
  32154. name: "Maw-feral",
  32155. image: {
  32156. source: "./media/characters/sini/maw-feral.svg"
  32157. }
  32158. },
  32159. footFeral: {
  32160. height: math.unit(4.2, "feet"),
  32161. name: "Foot-feral",
  32162. image: {
  32163. source: "./media/characters/sini/foot-feral.svg"
  32164. }
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Normal",
  32170. height: math.unit(7, "feet"),
  32171. default: true
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32177. {
  32178. side: {
  32179. height: math.unit(13, "meters"),
  32180. weight: math.unit(9072, "kg"),
  32181. name: "Side",
  32182. image: {
  32183. source: "./media/characters/raylldo/side.svg",
  32184. extra: 403/344,
  32185. bottom: 42/445
  32186. }
  32187. },
  32188. leaping: {
  32189. height: math.unit(12.3, "meters"),
  32190. weight: math.unit(9072, "kg"),
  32191. name: "Leaping",
  32192. image: {
  32193. source: "./media/characters/raylldo/leaping.svg",
  32194. extra: 470/249,
  32195. bottom: 13/483
  32196. }
  32197. },
  32198. flying: {
  32199. height: math.unit(18, "meters"),
  32200. weight: math.unit(9072, "kg"),
  32201. name: "Flying",
  32202. image: {
  32203. source: "./media/characters/raylldo/flying.svg"
  32204. }
  32205. },
  32206. head: {
  32207. height: math.unit(5.85, "meters"),
  32208. name: "Head",
  32209. image: {
  32210. source: "./media/characters/raylldo/head.svg"
  32211. }
  32212. },
  32213. maw: {
  32214. height: math.unit(5.32, "meters"),
  32215. name: "Maw",
  32216. image: {
  32217. source: "./media/characters/raylldo/maw.svg"
  32218. }
  32219. },
  32220. eye: {
  32221. height: math.unit(0.54, "meters"),
  32222. name: "Eye",
  32223. image: {
  32224. source: "./media/characters/raylldo/eye.svg"
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(13, "meters"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32238. {
  32239. anthroFront: {
  32240. height: math.unit(9, "feet"),
  32241. weight: math.unit(600, "lb"),
  32242. name: "Anthro (Front)",
  32243. image: {
  32244. source: "./media/characters/glint/anthro-front.svg",
  32245. extra: 1097/1018,
  32246. bottom: 28/1125
  32247. }
  32248. },
  32249. anthroBack: {
  32250. height: math.unit(9, "feet"),
  32251. weight: math.unit(600, "lb"),
  32252. name: "Anthro (Back)",
  32253. image: {
  32254. source: "./media/characters/glint/anthro-back.svg",
  32255. extra: 1154/997,
  32256. bottom: 36/1190
  32257. }
  32258. },
  32259. feral: {
  32260. height: math.unit(11, "feet"),
  32261. weight: math.unit(50000, "lb"),
  32262. name: "Feral",
  32263. image: {
  32264. source: "./media/characters/glint/feral.svg",
  32265. extra: 3035/1585,
  32266. bottom: 1169/4204
  32267. }
  32268. },
  32269. dickAnthro: {
  32270. height: math.unit(0.7, "meters"),
  32271. name: "Dick (Anthro)",
  32272. image: {
  32273. source: "./media/characters/glint/dick-anthro.svg"
  32274. }
  32275. },
  32276. dickFeral: {
  32277. height: math.unit(2.65, "meters"),
  32278. name: "Dick (Feral)",
  32279. image: {
  32280. source: "./media/characters/glint/dick-feral.svg"
  32281. }
  32282. },
  32283. slitHidden: {
  32284. height: math.unit(5.85, "meters"),
  32285. name: "Slit (Hidden)",
  32286. image: {
  32287. source: "./media/characters/glint/slit-hidden.svg"
  32288. }
  32289. },
  32290. slitErect: {
  32291. height: math.unit(5.85, "meters"),
  32292. name: "Slit (Erect)",
  32293. image: {
  32294. source: "./media/characters/glint/slit-erect.svg"
  32295. }
  32296. },
  32297. mawAnthro: {
  32298. height: math.unit(0.63, "meters"),
  32299. name: "Maw (Anthro)",
  32300. image: {
  32301. source: "./media/characters/glint/maw.svg"
  32302. }
  32303. },
  32304. mawFeral: {
  32305. height: math.unit(2.89, "meters"),
  32306. name: "Maw (Feral)",
  32307. image: {
  32308. source: "./media/characters/glint/maw.svg"
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(9, "feet"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32322. {
  32323. side: {
  32324. height: math.unit(15, "feet"),
  32325. weight: math.unit(5000, "kg"),
  32326. name: "Side",
  32327. image: {
  32328. source: "./media/characters/kairne/side.svg",
  32329. extra: 979/811,
  32330. bottom: 13/992
  32331. }
  32332. },
  32333. front: {
  32334. height: math.unit(15, "feet"),
  32335. weight: math.unit(5000, "kg"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/kairne/front.svg",
  32339. extra: 908/814,
  32340. bottom: 26/934
  32341. }
  32342. },
  32343. sideNsfw: {
  32344. height: math.unit(15, "feet"),
  32345. weight: math.unit(5000, "kg"),
  32346. name: "Side (NSFW)",
  32347. image: {
  32348. source: "./media/characters/kairne/side-nsfw.svg",
  32349. extra: 979/811,
  32350. bottom: 13/992
  32351. }
  32352. },
  32353. frontNsfw: {
  32354. height: math.unit(15, "feet"),
  32355. weight: math.unit(5000, "kg"),
  32356. name: "Front (NSFW)",
  32357. image: {
  32358. source: "./media/characters/kairne/front-nsfw.svg",
  32359. extra: 908/814,
  32360. bottom: 26/934
  32361. }
  32362. },
  32363. dickCaged: {
  32364. height: math.unit(0.65, "meters"),
  32365. name: "Dick-caged",
  32366. image: {
  32367. source: "./media/characters/kairne/dick-caged.svg"
  32368. }
  32369. },
  32370. dick: {
  32371. height: math.unit(0.79, "meters"),
  32372. name: "Dick",
  32373. image: {
  32374. source: "./media/characters/kairne/dick.svg"
  32375. }
  32376. },
  32377. genitals: {
  32378. height: math.unit(1.29, "meters"),
  32379. name: "Genitals",
  32380. image: {
  32381. source: "./media/characters/kairne/genitals.svg"
  32382. }
  32383. },
  32384. maw: {
  32385. height: math.unit(1.73, "meters"),
  32386. name: "Maw",
  32387. image: {
  32388. source: "./media/characters/kairne/maw.svg"
  32389. }
  32390. },
  32391. },
  32392. [
  32393. {
  32394. name: "Normal",
  32395. height: math.unit(15, "feet"),
  32396. default: true
  32397. },
  32398. ]
  32399. ))
  32400. characterMakers.push(() => makeCharacter(
  32401. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32402. {
  32403. front: {
  32404. height: math.unit(5 + 8/12, "feet"),
  32405. weight: math.unit(139, "lb"),
  32406. name: "Front",
  32407. image: {
  32408. source: "./media/characters/biscuit-jackal/front.svg",
  32409. extra: 2106/1961,
  32410. bottom: 58/2164
  32411. }
  32412. },
  32413. back: {
  32414. height: math.unit(5 + 8/12, "feet"),
  32415. weight: math.unit(139, "lb"),
  32416. name: "Back",
  32417. image: {
  32418. source: "./media/characters/biscuit-jackal/back.svg",
  32419. extra: 2132/1976,
  32420. bottom: 57/2189
  32421. }
  32422. },
  32423. werejackal: {
  32424. height: math.unit(6 + 3/12, "feet"),
  32425. weight: math.unit(188, "lb"),
  32426. name: "Werejackal",
  32427. image: {
  32428. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32429. extra: 2373/2178,
  32430. bottom: 53/2426
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(5 + 8/12, "feet"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(140, "cm"),
  32447. weight: math.unit(45, "kg"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/tayra-white/front.svg",
  32451. extra: 2229/2192,
  32452. bottom: 75/2304
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Normal",
  32459. height: math.unit(140, "cm"),
  32460. default: true
  32461. },
  32462. ]
  32463. ))
  32464. characterMakers.push(() => makeCharacter(
  32465. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32466. {
  32467. front: {
  32468. height: math.unit(4 + 5/12, "feet"),
  32469. name: "Front",
  32470. image: {
  32471. source: "./media/characters/scoop/front.svg",
  32472. extra: 1257/1136,
  32473. bottom: 69/1326
  32474. }
  32475. },
  32476. back: {
  32477. height: math.unit(4 + 5/12, "feet"),
  32478. name: "Back",
  32479. image: {
  32480. source: "./media/characters/scoop/back.svg",
  32481. extra: 1321/1152,
  32482. bottom: 32/1353
  32483. }
  32484. },
  32485. maw: {
  32486. height: math.unit(0.68, "feet"),
  32487. name: "Maw",
  32488. image: {
  32489. source: "./media/characters/scoop/maw.svg"
  32490. }
  32491. },
  32492. },
  32493. [
  32494. {
  32495. name: "Really Small",
  32496. height: math.unit(1, "mm")
  32497. },
  32498. {
  32499. name: "Micro",
  32500. height: math.unit(1, "inch")
  32501. },
  32502. {
  32503. name: "Normal",
  32504. height: math.unit(4 + 5/12, "feet"),
  32505. default: true
  32506. },
  32507. {
  32508. name: "Macro",
  32509. height: math.unit(200, "feet")
  32510. },
  32511. {
  32512. name: "Megamacro",
  32513. height: math.unit(3240, "feet")
  32514. },
  32515. {
  32516. name: "Teramacro",
  32517. height: math.unit(2500, "miles")
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32523. {
  32524. front: {
  32525. height: math.unit(15 + 7/12, "feet"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/saphinara/front.svg",
  32529. extra: 604/546,
  32530. bottom: 19/623
  32531. }
  32532. },
  32533. side: {
  32534. height: math.unit(15 + 7/12, "feet"),
  32535. name: "Side",
  32536. image: {
  32537. source: "./media/characters/saphinara/side.svg",
  32538. extra: 605/547,
  32539. bottom: 6/611
  32540. }
  32541. },
  32542. back: {
  32543. height: math.unit(15 + 7/12, "feet"),
  32544. name: "Back",
  32545. image: {
  32546. source: "./media/characters/saphinara/back.svg",
  32547. extra: 591/531,
  32548. bottom: 13/604
  32549. }
  32550. },
  32551. frontTail: {
  32552. height: math.unit(15 + 7/12, "feet"),
  32553. name: "Front (Full Tail)",
  32554. image: {
  32555. source: "./media/characters/saphinara/front-tail.svg",
  32556. extra: 748/547,
  32557. bottom: 66/814
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Normal",
  32564. height: math.unit(15 + 7/12, "feet"),
  32565. default: true
  32566. },
  32567. {
  32568. name: "Angry",
  32569. height: math.unit(30 + 6/12, "feet")
  32570. },
  32571. {
  32572. name: "Enraged",
  32573. height: math.unit(102 + 1/12, "feet")
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(6 + 8/12, "feet"),
  32582. weight: math.unit(300, "lb"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/jrain/front.svg",
  32586. extra: 3039/2865,
  32587. bottom: 399/3438
  32588. }
  32589. },
  32590. back: {
  32591. height: math.unit(6 + 8/12, "feet"),
  32592. weight: math.unit(300, "lb"),
  32593. name: "Back",
  32594. image: {
  32595. source: "./media/characters/jrain/back.svg",
  32596. extra: 3089/2938,
  32597. bottom: 172/3261
  32598. }
  32599. },
  32600. head: {
  32601. height: math.unit(2.14, "feet"),
  32602. name: "Head",
  32603. image: {
  32604. source: "./media/characters/jrain/head.svg"
  32605. }
  32606. },
  32607. maw: {
  32608. height: math.unit(1.77, "feet"),
  32609. name: "Maw",
  32610. image: {
  32611. source: "./media/characters/jrain/maw.svg"
  32612. }
  32613. },
  32614. leftHand: {
  32615. height: math.unit(1.1, "feet"),
  32616. name: "Left Hand",
  32617. image: {
  32618. source: "./media/characters/jrain/left-hand.svg"
  32619. }
  32620. },
  32621. rightHand: {
  32622. height: math.unit(1.1, "feet"),
  32623. name: "Right Hand",
  32624. image: {
  32625. source: "./media/characters/jrain/right-hand.svg"
  32626. }
  32627. },
  32628. eye: {
  32629. height: math.unit(0.35, "feet"),
  32630. name: "Eye",
  32631. image: {
  32632. source: "./media/characters/jrain/eye.svg"
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Normal",
  32639. height: math.unit(6 + 8/12, "feet"),
  32640. default: true
  32641. },
  32642. {
  32643. name: "Casually Large",
  32644. height: math.unit(25, "feet")
  32645. },
  32646. {
  32647. name: "Giant",
  32648. height: math.unit(100, "feet")
  32649. },
  32650. {
  32651. name: "Kaiju",
  32652. height: math.unit(300, "feet")
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32658. {
  32659. dragon: {
  32660. height: math.unit(5, "meters"),
  32661. name: "Dragon",
  32662. image: {
  32663. source: "./media/characters/sabrina/dragon.svg",
  32664. extra: 3670 / 2365,
  32665. bottom: 333 / 4003
  32666. }
  32667. },
  32668. gryphon: {
  32669. height: math.unit(3, "meters"),
  32670. name: "Gryphon",
  32671. image: {
  32672. source: "./media/characters/sabrina/gryphon.svg",
  32673. extra: 1576 / 945,
  32674. bottom: 71 / 1647
  32675. }
  32676. },
  32677. snake: {
  32678. height: math.unit(12, "meters"),
  32679. name: "Snake",
  32680. image: {
  32681. source: "./media/characters/sabrina/snake.svg",
  32682. extra: 1758 / 1320,
  32683. bottom: 186 / 1944
  32684. }
  32685. },
  32686. collar: {
  32687. height: math.unit(1.86, "meters"),
  32688. name: "Collar",
  32689. image: {
  32690. source: "./media/characters/sabrina/collar.svg"
  32691. }
  32692. },
  32693. eye: {
  32694. height: math.unit(0.53, "meters"),
  32695. name: "Eye",
  32696. image: {
  32697. source: "./media/characters/sabrina/eye.svg"
  32698. }
  32699. },
  32700. foot: {
  32701. height: math.unit(1.86, "meters"),
  32702. name: "Foot",
  32703. image: {
  32704. source: "./media/characters/sabrina/foot.svg"
  32705. }
  32706. },
  32707. hand: {
  32708. height: math.unit(1.32, "meters"),
  32709. name: "Hand",
  32710. image: {
  32711. source: "./media/characters/sabrina/hand.svg"
  32712. }
  32713. },
  32714. head: {
  32715. height: math.unit(2.44, "meters"),
  32716. name: "Head",
  32717. image: {
  32718. source: "./media/characters/sabrina/head.svg"
  32719. }
  32720. },
  32721. headAngry: {
  32722. height: math.unit(2.44, "meters"),
  32723. name: "Head (Angry))",
  32724. image: {
  32725. source: "./media/characters/sabrina/head-angry.svg"
  32726. }
  32727. },
  32728. maw: {
  32729. height: math.unit(1.65, "meters"),
  32730. name: "Maw",
  32731. image: {
  32732. source: "./media/characters/sabrina/maw.svg"
  32733. }
  32734. },
  32735. spikes: {
  32736. height: math.unit(1.69, "meters"),
  32737. name: "Spikes",
  32738. image: {
  32739. source: "./media/characters/sabrina/spikes.svg"
  32740. }
  32741. },
  32742. stomach: {
  32743. height: math.unit(1.15, "meters"),
  32744. name: "Stomach",
  32745. image: {
  32746. source: "./media/characters/sabrina/stomach.svg"
  32747. }
  32748. },
  32749. tongue: {
  32750. height: math.unit(1.27, "meters"),
  32751. name: "Tongue",
  32752. image: {
  32753. source: "./media/characters/sabrina/tongue.svg"
  32754. }
  32755. },
  32756. wingDorsal: {
  32757. height: math.unit(4.85, "meters"),
  32758. name: "Wing (Dorsal)",
  32759. image: {
  32760. source: "./media/characters/sabrina/wing-dorsal.svg"
  32761. }
  32762. },
  32763. wingVentral: {
  32764. height: math.unit(4.85, "meters"),
  32765. name: "Wing (Ventral)",
  32766. image: {
  32767. source: "./media/characters/sabrina/wing-ventral.svg"
  32768. }
  32769. },
  32770. },
  32771. [
  32772. {
  32773. name: "Normal",
  32774. height: math.unit(5, "meters"),
  32775. default: true
  32776. },
  32777. ]
  32778. ))
  32779. characterMakers.push(() => makeCharacter(
  32780. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32781. {
  32782. frontMaid: {
  32783. height: math.unit(5 + 5/12, "feet"),
  32784. weight: math.unit(130, "lb"),
  32785. name: "Front (Maid)",
  32786. image: {
  32787. source: "./media/characters/midnight-tales/front-maid.svg",
  32788. extra: 489/454,
  32789. bottom: 61/550
  32790. }
  32791. },
  32792. frontFormal: {
  32793. height: math.unit(5 + 5/12, "feet"),
  32794. weight: math.unit(130, "lb"),
  32795. name: "Front (Formal)",
  32796. image: {
  32797. source: "./media/characters/midnight-tales/front-formal.svg",
  32798. extra: 489/454,
  32799. bottom: 61/550
  32800. }
  32801. },
  32802. back: {
  32803. height: math.unit(5 + 5/12, "feet"),
  32804. weight: math.unit(130, "lb"),
  32805. name: "Back",
  32806. image: {
  32807. source: "./media/characters/midnight-tales/back.svg",
  32808. extra: 498/456,
  32809. bottom: 33/531
  32810. }
  32811. },
  32812. frontBeast: {
  32813. height: math.unit(40, "feet"),
  32814. weight: math.unit(64000, "lb"),
  32815. name: "Front (Beast)",
  32816. image: {
  32817. source: "./media/characters/midnight-tales/front-beast.svg",
  32818. extra: 927/860,
  32819. bottom: 53/980
  32820. }
  32821. },
  32822. backBeast: {
  32823. height: math.unit(40, "feet"),
  32824. weight: math.unit(64000, "lb"),
  32825. name: "Back (Beast)",
  32826. image: {
  32827. source: "./media/characters/midnight-tales/back-beast.svg",
  32828. extra: 929/855,
  32829. bottom: 16/945
  32830. }
  32831. },
  32832. footBeast: {
  32833. height: math.unit(6.7, "feet"),
  32834. name: "Foot (Beast)",
  32835. image: {
  32836. source: "./media/characters/midnight-tales/foot-beast.svg"
  32837. }
  32838. },
  32839. headBeast: {
  32840. height: math.unit(8, "feet"),
  32841. name: "Head (Beast)",
  32842. image: {
  32843. source: "./media/characters/midnight-tales/head-beast.svg"
  32844. }
  32845. },
  32846. },
  32847. [
  32848. {
  32849. name: "Normal",
  32850. height: math.unit(5 + 5 / 12, "feet"),
  32851. default: true
  32852. },
  32853. {
  32854. name: "Macro",
  32855. height: math.unit(25, "feet")
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32861. {
  32862. front: {
  32863. height: math.unit(5 + 10/12, "feet"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/argon/front.svg",
  32867. extra: 2009/1935,
  32868. bottom: 118/2127
  32869. }
  32870. },
  32871. back: {
  32872. height: math.unit(5 + 10/12, "feet"),
  32873. name: "Back",
  32874. image: {
  32875. source: "./media/characters/argon/back.svg",
  32876. extra: 2047/1992,
  32877. bottom: 20/2067
  32878. }
  32879. },
  32880. frontDressed: {
  32881. height: math.unit(5 + 10/12, "feet"),
  32882. name: "Front (Dressed)",
  32883. image: {
  32884. source: "./media/characters/argon/front-dressed.svg",
  32885. extra: 2009/1935,
  32886. bottom: 118/2127
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Normal",
  32893. height: math.unit(5 + 10/12, "feet"),
  32894. default: true
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(8 + 6/12, "feet"),
  32903. weight: math.unit(1150, "lb"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/kichi/front.svg",
  32907. extra: 1267/1164,
  32908. bottom: 61/1328
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(8 + 6/12, "feet"),
  32913. weight: math.unit(1150, "lb"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/kichi/back.svg",
  32917. extra: 1273/1166,
  32918. bottom: 33/1306
  32919. }
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(8 + 6/12, "feet"),
  32926. default: true
  32927. },
  32928. ]
  32929. ))
  32930. characterMakers.push(() => makeCharacter(
  32931. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32932. {
  32933. front: {
  32934. height: math.unit(6, "feet"),
  32935. weight: math.unit(210, "lb"),
  32936. name: "Front",
  32937. image: {
  32938. source: "./media/characters/manetel-greyscale/front.svg",
  32939. extra: 350/312,
  32940. bottom: 8/358
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Micro",
  32947. height: math.unit(2, "inches")
  32948. },
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(6, "feet"),
  32952. default: true
  32953. },
  32954. {
  32955. name: "Minimacro",
  32956. height: math.unit(17, "feet")
  32957. },
  32958. {
  32959. name: "Macro",
  32960. height: math.unit(117, "feet")
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32966. {
  32967. side: {
  32968. height: math.unit(5 + 1/12, "feet"),
  32969. weight: math.unit(418, "lb"),
  32970. name: "Side",
  32971. image: {
  32972. source: "./media/characters/softpurr/side.svg",
  32973. extra: 1993/1945,
  32974. bottom: 134/2127
  32975. }
  32976. },
  32977. front: {
  32978. height: math.unit(5 + 1/12, "feet"),
  32979. weight: math.unit(418, "lb"),
  32980. name: "Front",
  32981. image: {
  32982. source: "./media/characters/softpurr/front.svg",
  32983. extra: 1950/1856,
  32984. bottom: 174/2124
  32985. }
  32986. },
  32987. paw: {
  32988. height: math.unit(1, "feet"),
  32989. name: "Paw",
  32990. image: {
  32991. source: "./media/characters/softpurr/paw.svg"
  32992. }
  32993. },
  32994. },
  32995. [
  32996. {
  32997. name: "Normal",
  32998. height: math.unit(5 + 1/12, "feet"),
  32999. default: true
  33000. },
  33001. ]
  33002. ))
  33003. characterMakers.push(() => makeCharacter(
  33004. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33005. {
  33006. front: {
  33007. height: math.unit(260, "meters"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/anahita/front.svg",
  33011. extra: 665/635,
  33012. bottom: 89/754
  33013. }
  33014. },
  33015. },
  33016. [
  33017. {
  33018. name: "Macro",
  33019. height: math.unit(260, "meters"),
  33020. default: true
  33021. },
  33022. ]
  33023. ))
  33024. characterMakers.push(() => makeCharacter(
  33025. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33026. {
  33027. front: {
  33028. height: math.unit(4 + 10/12, "feet"),
  33029. weight: math.unit(160, "lb"),
  33030. name: "Front",
  33031. image: {
  33032. source: "./media/characters/chip-mouse/front.svg",
  33033. extra: 3528/3408,
  33034. bottom: 0/3528
  33035. }
  33036. },
  33037. frontNsfw: {
  33038. height: math.unit(4 + 10/12, "feet"),
  33039. weight: math.unit(160, "lb"),
  33040. name: "Front (NSFW)",
  33041. image: {
  33042. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33043. extra: 3528/3408,
  33044. bottom: 0/3528
  33045. }
  33046. },
  33047. },
  33048. [
  33049. {
  33050. name: "Normal",
  33051. height: math.unit(4 + 10/12, "feet"),
  33052. default: true
  33053. },
  33054. ]
  33055. ))
  33056. characterMakers.push(() => makeCharacter(
  33057. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33058. {
  33059. side: {
  33060. height: math.unit(10, "feet"),
  33061. weight: math.unit(14000, "lb"),
  33062. name: "Side",
  33063. image: {
  33064. source: "./media/characters/kremm/side.svg",
  33065. extra: 1390/1053,
  33066. bottom: 90/1480
  33067. }
  33068. },
  33069. gut: {
  33070. height: math.unit(5.8, "feet"),
  33071. name: "Gut",
  33072. image: {
  33073. source: "./media/characters/kremm/gut.svg"
  33074. }
  33075. },
  33076. ass: {
  33077. height: math.unit(6.1, "feet"),
  33078. name: "Ass",
  33079. image: {
  33080. source: "./media/characters/kremm/ass.svg"
  33081. }
  33082. },
  33083. jaws: {
  33084. height: math.unit(2.2, "feet"),
  33085. name: "Jaws",
  33086. image: {
  33087. source: "./media/characters/kremm/jaws.svg"
  33088. }
  33089. },
  33090. dick: {
  33091. height: math.unit(4.26, "feet"),
  33092. name: "Dick",
  33093. image: {
  33094. source: "./media/characters/kremm/dick.svg"
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Normal",
  33101. height: math.unit(10, "feet"),
  33102. default: true
  33103. },
  33104. ]
  33105. ))
  33106. characterMakers.push(() => makeCharacter(
  33107. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33108. {
  33109. front: {
  33110. height: math.unit(30, "stories"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/kai/front.svg",
  33114. extra: 1892/1718,
  33115. bottom: 162/2054
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Macro",
  33122. height: math.unit(30, "stories"),
  33123. default: true
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33129. {
  33130. front: {
  33131. height: math.unit(6 + 4/12, "feet"),
  33132. weight: math.unit(145, "lb"),
  33133. name: "Front",
  33134. image: {
  33135. source: "./media/characters/sykes/front.svg",
  33136. extra: 1321 / 1187,
  33137. bottom: 66 / 1387
  33138. }
  33139. },
  33140. back: {
  33141. height: math.unit(6 + 4/12, "feet"),
  33142. weight: math.unit(145, "lb"),
  33143. name: "Back",
  33144. image: {
  33145. source: "./media/characters/sykes/back.svg",
  33146. extra: 1326/1181,
  33147. bottom: 31/1357
  33148. }
  33149. },
  33150. handBack: {
  33151. height: math.unit(0.9, "feet"),
  33152. name: "Hand (Back)",
  33153. image: {
  33154. source: "./media/characters/sykes/hand-back.svg"
  33155. }
  33156. },
  33157. handFront: {
  33158. height: math.unit(0.839, "feet"),
  33159. name: "Hand (Front)",
  33160. image: {
  33161. source: "./media/characters/sykes/hand-front.svg"
  33162. }
  33163. },
  33164. leftFoot: {
  33165. height: math.unit(1.2, "feet"),
  33166. name: "Foot (Left)",
  33167. image: {
  33168. source: "./media/characters/sykes/foot-left.svg"
  33169. }
  33170. },
  33171. rightFoot: {
  33172. height: math.unit(1.2, "feet"),
  33173. name: "Foot (Right)",
  33174. image: {
  33175. source: "./media/characters/sykes/foot-right.svg"
  33176. }
  33177. },
  33178. maw: {
  33179. height: math.unit(1.93, "feet"),
  33180. name: "Maw",
  33181. image: {
  33182. source: "./media/characters/sykes/maw.svg"
  33183. }
  33184. },
  33185. teeth: {
  33186. height: math.unit(0.51, "feet"),
  33187. name: "Teeth",
  33188. image: {
  33189. source: "./media/characters/sykes/teeth.svg"
  33190. }
  33191. },
  33192. tongue: {
  33193. height: math.unit(2.13, "feet"),
  33194. name: "Tongue",
  33195. image: {
  33196. source: "./media/characters/sykes/tongue.svg"
  33197. }
  33198. },
  33199. uvula: {
  33200. height: math.unit(0.16, "feet"),
  33201. name: "Uvula",
  33202. image: {
  33203. source: "./media/characters/sykes/uvula.svg"
  33204. }
  33205. },
  33206. collar: {
  33207. height: math.unit(0.287, "feet"),
  33208. name: "Collar",
  33209. image: {
  33210. source: "./media/characters/sykes/collar.svg"
  33211. }
  33212. },
  33213. },
  33214. [
  33215. {
  33216. name: "Shrunken",
  33217. height: math.unit(5, "inches")
  33218. },
  33219. {
  33220. name: "Normal",
  33221. height: math.unit(6 + 4 / 12, "feet"),
  33222. default: true
  33223. },
  33224. {
  33225. name: "Big",
  33226. height: math.unit(15, "feet")
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33232. {
  33233. front: {
  33234. height: math.unit(5 + 8/12, "feet"),
  33235. weight: math.unit(190, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/oven-otter/front.svg",
  33239. extra: 1809/1740,
  33240. bottom: 181/1990
  33241. }
  33242. },
  33243. back: {
  33244. height: math.unit(5 + 8/12, "feet"),
  33245. weight: math.unit(190, "lb"),
  33246. name: "Back",
  33247. image: {
  33248. source: "./media/characters/oven-otter/back.svg",
  33249. extra: 1709/1635,
  33250. bottom: 118/1827
  33251. }
  33252. },
  33253. hand: {
  33254. height: math.unit(1.07, "feet"),
  33255. name: "Hand",
  33256. image: {
  33257. source: "./media/characters/oven-otter/hand.svg"
  33258. }
  33259. },
  33260. beans: {
  33261. height: math.unit(1.74, "feet"),
  33262. name: "Beans",
  33263. image: {
  33264. source: "./media/characters/oven-otter/beans.svg"
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Micro",
  33271. height: math.unit(0.5, "inches")
  33272. },
  33273. {
  33274. name: "Normal",
  33275. height: math.unit(5 + 8/12, "feet"),
  33276. default: true
  33277. },
  33278. {
  33279. name: "Macro",
  33280. height: math.unit(250, "feet")
  33281. },
  33282. {
  33283. name: "Really High",
  33284. height: math.unit(420, "feet")
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33290. {
  33291. front: {
  33292. height: math.unit(5, "meters"),
  33293. weight: math.unit(292000000000000, "kg"),
  33294. name: "Front",
  33295. image: {
  33296. source: "./media/characters/devourer/front.svg",
  33297. extra: 1800/1733,
  33298. bottom: 211/2011
  33299. }
  33300. },
  33301. maw: {
  33302. height: math.unit(1.1, "meter"),
  33303. name: "Maw",
  33304. image: {
  33305. source: "./media/characters/devourer/maw.svg"
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Small",
  33312. height: math.unit(3, "meters")
  33313. },
  33314. {
  33315. name: "Large",
  33316. height: math.unit(5, "meters"),
  33317. default: true
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33323. {
  33324. front: {
  33325. height: math.unit(6, "feet"),
  33326. weight: math.unit(400, "lb"),
  33327. name: "Front",
  33328. image: {
  33329. source: "./media/characters/ellarby/front.svg",
  33330. extra: 1909/1763,
  33331. bottom: 80/1989
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(6, "feet"),
  33336. weight: math.unit(400, "lb"),
  33337. name: "Back",
  33338. image: {
  33339. source: "./media/characters/ellarby/back.svg",
  33340. extra: 1914/1784,
  33341. bottom: 172/2086
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "Mischief",
  33348. height: math.unit(18, "inches")
  33349. },
  33350. {
  33351. name: "Trouble",
  33352. height: math.unit(12, "feet")
  33353. },
  33354. {
  33355. name: "Havoc",
  33356. height: math.unit(200, "feet"),
  33357. default: true
  33358. },
  33359. {
  33360. name: "Pandemonium",
  33361. height: math.unit(1, "mile")
  33362. },
  33363. {
  33364. name: "Catastrophe",
  33365. height: math.unit(100, "miles")
  33366. },
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33371. {
  33372. front: {
  33373. height: math.unit(4.7, "meters"),
  33374. weight: math.unit(6500, "kg"),
  33375. name: "Front",
  33376. image: {
  33377. source: "./media/characters/vex/front.svg",
  33378. extra: 1288/1140,
  33379. bottom: 100/1388
  33380. }
  33381. },
  33382. },
  33383. [
  33384. {
  33385. name: "Normal",
  33386. height: math.unit(4.7, "meters"),
  33387. default: true
  33388. },
  33389. ]
  33390. ))
  33391. characterMakers.push(() => makeCharacter(
  33392. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33393. {
  33394. normal: {
  33395. height: math.unit(6, "feet"),
  33396. weight: math.unit(350, "lb"),
  33397. name: "Normal",
  33398. image: {
  33399. source: "./media/characters/teshy/normal.svg",
  33400. extra: 1795/1735,
  33401. bottom: 16/1811
  33402. }
  33403. },
  33404. monsterFront: {
  33405. height: math.unit(12, "feet"),
  33406. weight: math.unit(4700, "lb"),
  33407. name: "Monster (Front)",
  33408. image: {
  33409. source: "./media/characters/teshy/monster-front.svg",
  33410. extra: 2042/2034,
  33411. bottom: 128/2170
  33412. }
  33413. },
  33414. monsterSide: {
  33415. height: math.unit(12, "feet"),
  33416. weight: math.unit(4700, "lb"),
  33417. name: "Monster (Side)",
  33418. image: {
  33419. source: "./media/characters/teshy/monster-side.svg",
  33420. extra: 2067/2056,
  33421. bottom: 70/2137
  33422. }
  33423. },
  33424. monsterBack: {
  33425. height: math.unit(12, "feet"),
  33426. weight: math.unit(4700, "lb"),
  33427. name: "Monster (Back)",
  33428. image: {
  33429. source: "./media/characters/teshy/monster-back.svg",
  33430. extra: 1921/1914,
  33431. bottom: 171/2092
  33432. }
  33433. },
  33434. },
  33435. [
  33436. {
  33437. name: "Normal",
  33438. height: math.unit(6, "feet"),
  33439. default: true
  33440. },
  33441. ]
  33442. ))
  33443. characterMakers.push(() => makeCharacter(
  33444. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33445. {
  33446. front: {
  33447. height: math.unit(6, "feet"),
  33448. name: "Front",
  33449. image: {
  33450. source: "./media/characters/ramey/front.svg",
  33451. extra: 790/787,
  33452. bottom: 27/817
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Normal",
  33459. height: math.unit(6, "feet"),
  33460. default: true
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(5 + 5/12, "feet"),
  33469. weight: math.unit(120, "lb"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/phirae/front.svg",
  33473. extra: 2491/2436,
  33474. bottom: 38/2529
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(5 + 5/12, "feet"),
  33482. default: true
  33483. },
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(6, "feet"),
  33491. weight: math.unit(150, "lb"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/stagglas/front.svg",
  33495. extra: 962/882,
  33496. bottom: 53/1015
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(5 + 3/12, "feet"),
  33504. default: true
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33510. {
  33511. front: {
  33512. height: math.unit(5 + 4/12, "feet"),
  33513. weight: math.unit(145, "lb"),
  33514. name: "Front",
  33515. image: {
  33516. source: "./media/characters/starra/front.svg",
  33517. extra: 1790/1691,
  33518. bottom: 91/1881
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Normal",
  33525. height: math.unit(5 + 4/12, "feet"),
  33526. default: true
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33532. {
  33533. front: {
  33534. height: math.unit(2.2, "meters"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33538. extra: 1194/1005,
  33539. bottom: 25/1219
  33540. }
  33541. },
  33542. },
  33543. [
  33544. {
  33545. name: "Normal",
  33546. height: math.unit(2.2, "meters"),
  33547. default: true
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33553. {
  33554. side: {
  33555. height: math.unit(8 + 2/12, "feet"),
  33556. weight: math.unit(1240, "lb"),
  33557. name: "Side",
  33558. image: {
  33559. source: "./media/characters/mika-valentine/side.svg",
  33560. extra: 2670/2501,
  33561. bottom: 250/2920
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(8 + 2/12, "feet"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(7 + 2/12, "feet"),
  33578. name: "Front",
  33579. image: {
  33580. source: "./media/characters/xoltol/front.svg",
  33581. extra: 2212/2124,
  33582. bottom: 84/2296
  33583. }
  33584. },
  33585. side: {
  33586. height: math.unit(7 + 2/12, "feet"),
  33587. name: "Side",
  33588. image: {
  33589. source: "./media/characters/xoltol/side.svg",
  33590. extra: 2273/2197,
  33591. bottom: 26/2299
  33592. }
  33593. },
  33594. hand: {
  33595. height: math.unit(2.5, "feet"),
  33596. name: "Hand",
  33597. image: {
  33598. source: "./media/characters/xoltol/hand.svg"
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Small-ish",
  33605. height: math.unit(5 + 11/12, "feet")
  33606. },
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(7 + 2/12, "feet")
  33610. },
  33611. {
  33612. name: "\"Macro\"",
  33613. height: math.unit(14 + 9/12, "feet"),
  33614. default: true
  33615. },
  33616. {
  33617. name: "Alternate Height",
  33618. height: math.unit(20, "feet")
  33619. },
  33620. {
  33621. name: "Actually Macro",
  33622. height: math.unit(100, "feet")
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33628. {
  33629. front: {
  33630. height: math.unit(5 + 2/12, "feet"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/kotetsu-redwood/front.svg",
  33634. extra: 1053/942,
  33635. bottom: 60/1113
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(5 + 2/12, "feet"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(2.4, "meters"),
  33652. weight: math.unit(125, "kg"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/lilith/front.svg",
  33656. extra: 1590/1513,
  33657. bottom: 203/1793
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Humanoid",
  33664. height: math.unit(2.4, "meters")
  33665. },
  33666. {
  33667. name: "Normal",
  33668. height: math.unit(6, "meters"),
  33669. default: true
  33670. },
  33671. {
  33672. name: "Largest",
  33673. height: math.unit(55, "meters")
  33674. },
  33675. ]
  33676. ))
  33677. characterMakers.push(() => makeCharacter(
  33678. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33679. {
  33680. front: {
  33681. height: math.unit(8 + 4/12, "feet"),
  33682. weight: math.unit(535, "lb"),
  33683. name: "Front",
  33684. image: {
  33685. source: "./media/characters/beh'kah-bolger/front.svg",
  33686. extra: 1660/1603,
  33687. bottom: 37/1697
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(8 + 4/12, "feet"),
  33695. default: true
  33696. },
  33697. {
  33698. name: "Kaiju",
  33699. height: math.unit(250, "feet")
  33700. },
  33701. {
  33702. name: "Still Growing",
  33703. height: math.unit(10, "miles")
  33704. },
  33705. {
  33706. name: "Continental",
  33707. height: math.unit(5000, "miles")
  33708. },
  33709. {
  33710. name: "Final Form",
  33711. height: math.unit(2500000, "miles")
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33717. {
  33718. front: {
  33719. height: math.unit(7 + 2/12, "feet"),
  33720. weight: math.unit(230, "kg"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/tatyana-milewska/front.svg",
  33724. extra: 1199/1150,
  33725. bottom: 86/1285
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(7 + 2/12, "feet"),
  33733. default: true
  33734. },
  33735. {
  33736. name: "Big",
  33737. height: math.unit(12, "feet")
  33738. },
  33739. {
  33740. name: "Minimacro",
  33741. height: math.unit(20, "feet")
  33742. },
  33743. {
  33744. name: "Macro",
  33745. height: math.unit(120, "feet")
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(7 + 8/12, "feet"),
  33754. weight: math.unit(152, "kg"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/helen-arri/front.svg",
  33758. extra: 440/423,
  33759. bottom: 14/454
  33760. }
  33761. },
  33762. back: {
  33763. height: math.unit(7 + 8/12, "feet"),
  33764. weight: math.unit(152, "kg"),
  33765. name: "Back",
  33766. image: {
  33767. source: "./media/characters/helen-arri/back.svg",
  33768. extra: 443/426,
  33769. bottom: 8/451
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(7 + 8/12, "feet"),
  33777. default: true
  33778. },
  33779. {
  33780. name: "Big",
  33781. height: math.unit(14, "feet")
  33782. },
  33783. {
  33784. name: "Minimacro",
  33785. height: math.unit(24, "feet")
  33786. },
  33787. {
  33788. name: "Macro",
  33789. height: math.unit(140, "feet")
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(6, "meters"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/ehanu-rehu/front.svg",
  33801. extra: 1800/1800,
  33802. bottom: 59/1859
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Normal",
  33809. height: math.unit(6, "meters"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(7 + 3/12, "feet"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/renholder/front.svg",
  33822. extra: 3096/2960,
  33823. bottom: 250/3346
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Normal Bat",
  33830. height: math.unit(7 + 3/12, "feet"),
  33831. default: true
  33832. },
  33833. {
  33834. name: "Slightly Tall Bat",
  33835. height: math.unit(100, "feet")
  33836. },
  33837. {
  33838. name: "Big Bat",
  33839. height: math.unit(1000, "feet")
  33840. },
  33841. {
  33842. name: "City-Sized Bat",
  33843. height: math.unit(200000, "feet")
  33844. },
  33845. {
  33846. name: "Bigger Bat",
  33847. height: math.unit(10000, "miles")
  33848. },
  33849. {
  33850. name: "Solar Sized Bat",
  33851. height: math.unit(100, "AU")
  33852. },
  33853. {
  33854. name: "Galactic Bat",
  33855. height: math.unit(200000, "lightyears")
  33856. },
  33857. {
  33858. name: "Universally Known Bat",
  33859. height: math.unit(1, "universe")
  33860. },
  33861. ]
  33862. ))
  33863. characterMakers.push(() => makeCharacter(
  33864. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33865. {
  33866. front: {
  33867. height: math.unit(6 + 11/12, "feet"),
  33868. weight: math.unit(250, "lb"),
  33869. name: "Front",
  33870. image: {
  33871. source: "./media/characters/cookiecat/front.svg",
  33872. extra: 893/827,
  33873. bottom: 14/907
  33874. }
  33875. },
  33876. },
  33877. [
  33878. {
  33879. name: "Micro",
  33880. height: math.unit(3, "inches")
  33881. },
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(6 + 11/12, "feet"),
  33885. default: true
  33886. },
  33887. {
  33888. name: "Macro",
  33889. height: math.unit(100, "feet")
  33890. },
  33891. {
  33892. name: "Macro+",
  33893. height: math.unit(404, "feet")
  33894. },
  33895. {
  33896. name: "Megamacro",
  33897. height: math.unit(165, "miles")
  33898. },
  33899. {
  33900. name: "Planetary",
  33901. height: math.unit(4600, "miles")
  33902. },
  33903. ]
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33907. {
  33908. front: {
  33909. height: math.unit(10 + 3/12, "feet"),
  33910. weight: math.unit(1500, "lb"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/tux-kusanagi/front.svg",
  33914. extra: 944/840,
  33915. bottom: 39/983
  33916. }
  33917. },
  33918. back: {
  33919. height: math.unit(10 + 3/12, "feet"),
  33920. weight: math.unit(1500, "lb"),
  33921. name: "Back",
  33922. image: {
  33923. source: "./media/characters/tux-kusanagi/back.svg",
  33924. extra: 941/842,
  33925. bottom: 28/969
  33926. }
  33927. },
  33928. rump: {
  33929. height: math.unit(5.25, "feet"),
  33930. name: "Rump",
  33931. image: {
  33932. source: "./media/characters/tux-kusanagi/rump.svg"
  33933. }
  33934. },
  33935. beak: {
  33936. height: math.unit(1.54, "feet"),
  33937. name: "Beak",
  33938. image: {
  33939. source: "./media/characters/tux-kusanagi/beak.svg"
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Normal",
  33946. height: math.unit(10 + 3/12, "feet"),
  33947. default: true
  33948. },
  33949. ]
  33950. ))
  33951. characterMakers.push(() => makeCharacter(
  33952. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33953. {
  33954. front: {
  33955. height: math.unit(58, "feet"),
  33956. weight: math.unit(200, "tons"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/uzarmazari/front.svg",
  33960. extra: 1575/1455,
  33961. bottom: 152/1727
  33962. }
  33963. },
  33964. back: {
  33965. height: math.unit(58, "feet"),
  33966. weight: math.unit(200, "tons"),
  33967. name: "Back",
  33968. image: {
  33969. source: "./media/characters/uzarmazari/back.svg",
  33970. extra: 1585/1510,
  33971. bottom: 157/1742
  33972. }
  33973. },
  33974. head: {
  33975. height: math.unit(26, "feet"),
  33976. name: "Head",
  33977. image: {
  33978. source: "./media/characters/uzarmazari/head.svg"
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(58, "feet"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33992. {
  33993. side: {
  33994. height: math.unit(15, "feet"),
  33995. name: "Side",
  33996. image: {
  33997. source: "./media/characters/akitu/side.svg",
  33998. extra: 1421/1321,
  33999. bottom: 157/1578
  34000. }
  34001. },
  34002. front: {
  34003. height: math.unit(15, "feet"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/akitu/front.svg",
  34007. extra: 1435/1326,
  34008. bottom: 232/1667
  34009. }
  34010. },
  34011. },
  34012. [
  34013. {
  34014. name: "Normal",
  34015. height: math.unit(15, "feet"),
  34016. default: true
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34022. {
  34023. front: {
  34024. height: math.unit(10 + 8/12, "feet"),
  34025. name: "Front",
  34026. image: {
  34027. source: "./media/characters/azalie-croixland/front.svg",
  34028. extra: 1972/1856,
  34029. bottom: 31/2003
  34030. }
  34031. },
  34032. },
  34033. [
  34034. {
  34035. name: "Original Height",
  34036. height: math.unit(5 + 4/12, "feet")
  34037. },
  34038. {
  34039. name: "Normal Height",
  34040. height: math.unit(10 + 8/12, "feet"),
  34041. default: true
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34047. {
  34048. side: {
  34049. height: math.unit(7 + 1/12, "feet"),
  34050. weight: math.unit(245, "lb"),
  34051. name: "Side",
  34052. image: {
  34053. source: "./media/characters/kavus-kazian/side.svg",
  34054. extra: 349/342,
  34055. bottom: 15/364
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Normal",
  34062. height: math.unit(7 + 1/12, "feet"),
  34063. default: true
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34069. {
  34070. normal: {
  34071. height: math.unit(5 + 11/12, "feet"),
  34072. name: "Normal",
  34073. image: {
  34074. source: "./media/characters/moonlight-rose/normal.svg",
  34075. extra: 1979/1835,
  34076. bottom: 14/1993
  34077. }
  34078. },
  34079. demon: {
  34080. height: math.unit(5, "km"),
  34081. name: "Demon",
  34082. image: {
  34083. source: "./media/characters/moonlight-rose/demon.svg",
  34084. extra: 986/916,
  34085. bottom: 28/1014
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "\"Natural\" height",
  34092. height: math.unit(5 + 11/12, "feet")
  34093. },
  34094. {
  34095. name: "Comfortable Size",
  34096. height: math.unit(40, "meters")
  34097. },
  34098. {
  34099. name: "Common Size",
  34100. height: math.unit(50, "km"),
  34101. default: true
  34102. },
  34103. {
  34104. name: "Demonic",
  34105. height: math.unit(1.24415e+21, "meters")
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(16, "feet"),
  34114. weight: math.unit(610, "kg"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/huckle/front.svg",
  34118. extra: 1731/1625,
  34119. bottom: 33/1764
  34120. }
  34121. },
  34122. back: {
  34123. height: math.unit(16, "feet"),
  34124. weight: math.unit(610, "kg"),
  34125. name: "Back",
  34126. image: {
  34127. source: "./media/characters/huckle/back.svg",
  34128. extra: 1738/1651,
  34129. bottom: 37/1775
  34130. }
  34131. },
  34132. laughing: {
  34133. height: math.unit(3.75, "feet"),
  34134. name: "Laughing",
  34135. image: {
  34136. source: "./media/characters/huckle/laughing.svg"
  34137. }
  34138. },
  34139. angry: {
  34140. height: math.unit(4.15, "feet"),
  34141. name: "Angry",
  34142. image: {
  34143. source: "./media/characters/huckle/angry.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(16, "feet"),
  34151. default: true
  34152. },
  34153. {
  34154. name: "Mini Macro",
  34155. height: math.unit(463, "feet")
  34156. },
  34157. {
  34158. name: "Macro",
  34159. height: math.unit(1680, "meters")
  34160. },
  34161. {
  34162. name: "Mega Macro",
  34163. height: math.unit(175, "km")
  34164. },
  34165. {
  34166. name: "Terra Macro",
  34167. height: math.unit(32, "gigameters")
  34168. },
  34169. {
  34170. name: "Multiverse+",
  34171. height: math.unit(2.56e23, "yottameters")
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34177. {
  34178. front: {
  34179. height: math.unit(6 + 9/12, "feet"),
  34180. weight: math.unit(280, "lb"),
  34181. name: "Front",
  34182. image: {
  34183. source: "./media/characters/candy/front.svg",
  34184. extra: 234/217,
  34185. bottom: 11/245
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Really Small",
  34192. height: math.unit(0.1, "nm")
  34193. },
  34194. {
  34195. name: "Micro",
  34196. height: math.unit(2, "inches")
  34197. },
  34198. {
  34199. name: "Normal",
  34200. height: math.unit(6 + 9/12, "feet"),
  34201. default: true
  34202. },
  34203. {
  34204. name: "Small Macro",
  34205. height: math.unit(69, "feet")
  34206. },
  34207. {
  34208. name: "Macro",
  34209. height: math.unit(160, "feet")
  34210. },
  34211. {
  34212. name: "Megamacro",
  34213. height: math.unit(22000, "miles")
  34214. },
  34215. {
  34216. name: "Gigamacro",
  34217. height: math.unit(50000, "miles")
  34218. },
  34219. ]
  34220. ))
  34221. characterMakers.push(() => makeCharacter(
  34222. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34223. {
  34224. front: {
  34225. height: math.unit(4, "feet"),
  34226. weight: math.unit(90, "lb"),
  34227. name: "Front",
  34228. image: {
  34229. source: "./media/characters/joey-mcdonald/front.svg",
  34230. extra: 1059/852,
  34231. bottom: 33/1092
  34232. }
  34233. },
  34234. back: {
  34235. height: math.unit(4, "feet"),
  34236. weight: math.unit(90, "lb"),
  34237. name: "Back",
  34238. image: {
  34239. source: "./media/characters/joey-mcdonald/back.svg",
  34240. extra: 1077/879,
  34241. bottom: 5/1082
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Normal",
  34248. height: math.unit(4, "feet"),
  34249. default: true
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34255. {
  34256. front: {
  34257. height: math.unit(12 + 6/12, "feet"),
  34258. name: "Front",
  34259. image: {
  34260. source: "./media/characters/kass-lockheed/front.svg",
  34261. extra: 354/343,
  34262. bottom: 9/363
  34263. }
  34264. },
  34265. back: {
  34266. height: math.unit(12 + 6/12, "feet"),
  34267. name: "Back",
  34268. image: {
  34269. source: "./media/characters/kass-lockheed/back.svg",
  34270. extra: 364/352,
  34271. bottom: 3/367
  34272. }
  34273. },
  34274. dick: {
  34275. height: math.unit(3.12, "feet"),
  34276. name: "Dick",
  34277. image: {
  34278. source: "./media/characters/kass-lockheed/dick.svg"
  34279. }
  34280. },
  34281. head: {
  34282. height: math.unit(2.6, "feet"),
  34283. name: "Head",
  34284. image: {
  34285. source: "./media/characters/kass-lockheed/head.svg"
  34286. }
  34287. },
  34288. bleh: {
  34289. height: math.unit(2.85, "feet"),
  34290. name: "Bleh",
  34291. image: {
  34292. source: "./media/characters/kass-lockheed/bleh.svg"
  34293. }
  34294. },
  34295. smug: {
  34296. height: math.unit(2.85, "feet"),
  34297. name: "Smug",
  34298. image: {
  34299. source: "./media/characters/kass-lockheed/smug.svg"
  34300. }
  34301. },
  34302. },
  34303. [
  34304. {
  34305. name: "Normal",
  34306. height: math.unit(12 + 6/12, "feet"),
  34307. default: true
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(6 + 2/12, "feet"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/taylor/front.svg",
  34319. extra: 639/495,
  34320. bottom: 12/651
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(6 + 2/12, "feet"),
  34328. default: true
  34329. },
  34330. {
  34331. name: "Big",
  34332. height: math.unit(15, "feet")
  34333. },
  34334. {
  34335. name: "Lorg",
  34336. height: math.unit(80, "feet")
  34337. },
  34338. {
  34339. name: "Too Lorg",
  34340. height: math.unit(120, "feet")
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34346. {
  34347. front: {
  34348. height: math.unit(15, "feet"),
  34349. name: "Front",
  34350. image: {
  34351. source: "./media/characters/kaizer/front.svg",
  34352. extra: 1612/1436,
  34353. bottom: 43/1655
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Normal",
  34360. height: math.unit(15, "feet"),
  34361. default: true
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34367. {
  34368. front: {
  34369. height: math.unit(2, "feet"),
  34370. weight: math.unit(30, "lb"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/sandy/front.svg",
  34374. extra: 1439/1307,
  34375. bottom: 194/1633
  34376. }
  34377. },
  34378. },
  34379. [
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(2, "feet"),
  34383. default: true
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34389. {
  34390. front: {
  34391. height: math.unit(3, "feet"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/mellvi/front.svg",
  34395. extra: 1831/1630,
  34396. bottom: 58/1889
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(3, "feet"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(5 + 11/12, "feet"),
  34413. weight: math.unit(200, "lb"),
  34414. name: "Front",
  34415. image: {
  34416. source: "./media/characters/shirou/front.svg",
  34417. extra: 2491/2383,
  34418. bottom: 189/2680
  34419. }
  34420. },
  34421. back: {
  34422. height: math.unit(5 + 11/12, "feet"),
  34423. weight: math.unit(200, "lb"),
  34424. name: "Back",
  34425. image: {
  34426. source: "./media/characters/shirou/back.svg",
  34427. extra: 2554/2450,
  34428. bottom: 76/2630
  34429. }
  34430. },
  34431. },
  34432. [
  34433. {
  34434. name: "Normal",
  34435. height: math.unit(5 + 11/12, "feet"),
  34436. default: true
  34437. },
  34438. ]
  34439. ))
  34440. characterMakers.push(() => makeCharacter(
  34441. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34442. {
  34443. front: {
  34444. height: math.unit(6 + 3/12, "feet"),
  34445. weight: math.unit(177, "lb"),
  34446. name: "Front",
  34447. image: {
  34448. source: "./media/characters/noryu/front.svg",
  34449. extra: 973/885,
  34450. bottom: 10/983
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(6 + 3/12, "feet"),
  34458. default: true
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34464. {
  34465. front: {
  34466. height: math.unit(5 + 6/12, "feet"),
  34467. weight: math.unit(170, "lb"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/mevolas-rubenido/front.svg",
  34471. extra: 2109/1901,
  34472. bottom: 96/2205
  34473. }
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(5 + 6/12, "feet"),
  34480. default: true
  34481. },
  34482. ]
  34483. ))
  34484. characterMakers.push(() => makeCharacter(
  34485. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34486. {
  34487. front: {
  34488. height: math.unit(100, "feet"),
  34489. name: "Front",
  34490. image: {
  34491. source: "./media/characters/dee/front.svg",
  34492. extra: 2153/2036,
  34493. bottom: 59/2212
  34494. }
  34495. },
  34496. back: {
  34497. height: math.unit(100, "feet"),
  34498. name: "Back",
  34499. image: {
  34500. source: "./media/characters/dee/back.svg",
  34501. extra: 2183/2058,
  34502. bottom: 75/2258
  34503. }
  34504. },
  34505. foot: {
  34506. height: math.unit(19.43, "feet"),
  34507. name: "Foot",
  34508. image: {
  34509. source: "./media/characters/dee/foot.svg"
  34510. }
  34511. },
  34512. hoof: {
  34513. height: math.unit(20.6, "feet"),
  34514. name: "Hoof",
  34515. image: {
  34516. source: "./media/characters/dee/hoof.svg"
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Macro",
  34523. height: math.unit(100, "feet"),
  34524. default: true
  34525. },
  34526. ]
  34527. ))
  34528. characterMakers.push(() => makeCharacter(
  34529. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34530. {
  34531. front: {
  34532. height: math.unit(5 + 6/12, "feet"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/teh/front.svg",
  34536. extra: 1002/847,
  34537. bottom: 62/1064
  34538. }
  34539. },
  34540. },
  34541. [
  34542. {
  34543. name: "Normal",
  34544. height: math.unit(5 + 6/12, "feet"),
  34545. default: true
  34546. },
  34547. ]
  34548. ))
  34549. characterMakers.push(() => makeCharacter(
  34550. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34551. {
  34552. side: {
  34553. height: math.unit(6 + 1/12, "feet"),
  34554. weight: math.unit(204, "lb"),
  34555. name: "Side",
  34556. image: {
  34557. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34558. extra: 974/775,
  34559. bottom: 169/1143
  34560. }
  34561. },
  34562. sitting: {
  34563. height: math.unit(6 + 2/12, "feet"),
  34564. weight: math.unit(204, "lb"),
  34565. name: "Sitting",
  34566. image: {
  34567. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34568. extra: 1175/964,
  34569. bottom: 378/1553
  34570. }
  34571. },
  34572. },
  34573. [
  34574. {
  34575. name: "Normal",
  34576. height: math.unit(6 + 1/12, "feet"),
  34577. default: true
  34578. },
  34579. ]
  34580. ))
  34581. characterMakers.push(() => makeCharacter(
  34582. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34583. {
  34584. front: {
  34585. height: math.unit(6, "inches"),
  34586. name: "Front",
  34587. image: {
  34588. source: "./media/characters/tululi/front.svg",
  34589. extra: 1997/1876,
  34590. bottom: 20/2017
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(6, "inches"),
  34598. default: true
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(4 + 1/12, "feet"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/star/front.svg",
  34610. extra: 1493/1189,
  34611. bottom: 48/1541
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(4 + 1/12, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(6 + 3/12, "feet"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/comet/front.svg",
  34631. extra: 1681/1462,
  34632. bottom: 26/1707
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(6 + 3/12, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(950, "feet"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/vortex/front.svg",
  34652. extra: 1497/1434,
  34653. bottom: 56/1553
  34654. }
  34655. },
  34656. maw: {
  34657. height: math.unit(285, "feet"),
  34658. name: "Maw",
  34659. image: {
  34660. source: "./media/characters/vortex/maw.svg"
  34661. }
  34662. },
  34663. },
  34664. [
  34665. {
  34666. name: "Macro",
  34667. height: math.unit(950, "feet"),
  34668. default: true
  34669. },
  34670. ]
  34671. ))
  34672. characterMakers.push(() => makeCharacter(
  34673. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34674. {
  34675. front: {
  34676. height: math.unit(600, "feet"),
  34677. weight: math.unit(0.02, "grams"),
  34678. name: "Front",
  34679. image: {
  34680. source: "./media/characters/doodle/front.svg",
  34681. extra: 1578/1413,
  34682. bottom: 37/1615
  34683. }
  34684. },
  34685. },
  34686. [
  34687. {
  34688. name: "Macro",
  34689. height: math.unit(600, "feet"),
  34690. default: true
  34691. },
  34692. ]
  34693. ))
  34694. characterMakers.push(() => makeCharacter(
  34695. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34696. {
  34697. front: {
  34698. height: math.unit(6 + 6/12, "feet"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/jai/front.svg",
  34702. extra: 1645/1534,
  34703. bottom: 115/1760
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(6 + 6/12, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(6 + 8/12, "feet"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/pixel/front.svg",
  34723. extra: 1900/1735,
  34724. bottom: 63/1963
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(6 + 8/12, "feet"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(4 + 11/12, "feet"),
  34741. weight: math.unit(111, "lb"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/rhett/front.svg",
  34745. extra: 1682/1586,
  34746. bottom: 92/1774
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Mini",
  34753. height: math.unit(1 + 1/12, "feet")
  34754. },
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(4 + 11/12, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(3 + 3/12, "feet"),
  34767. name: "Front",
  34768. image: {
  34769. source: "./media/characters/penny/front.svg",
  34770. extra: 1406/1311,
  34771. bottom: 26/1432
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(3 + 3/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(4 + 11/12, "feet"),
  34788. name: "Front",
  34789. image: {
  34790. source: "./media/characters/monty/front.svg",
  34791. extra: 1479/1209,
  34792. bottom: 0/1479
  34793. }
  34794. },
  34795. },
  34796. [
  34797. {
  34798. name: "Normal",
  34799. height: math.unit(4 + 11/12, "feet"),
  34800. default: true
  34801. },
  34802. ]
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34806. {
  34807. front: {
  34808. height: math.unit(8 + 4/12, "feet"),
  34809. name: "Front",
  34810. image: {
  34811. source: "./media/characters/sterling/front.svg",
  34812. extra: 1420/1236,
  34813. bottom: 27/1447
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(8 + 4/12, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34827. {
  34828. front: {
  34829. height: math.unit(15, "feet"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/marble/front.svg",
  34833. extra: 973/937,
  34834. bottom: 32/1005
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Normal",
  34841. height: math.unit(15, "feet"),
  34842. default: true
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34848. {
  34849. front: {
  34850. height: math.unit(3, "inches"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/powder/front.svg",
  34854. extra: 1504/1334,
  34855. bottom: 518/2022
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(3, "inches"),
  34863. default: true
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34869. {
  34870. front: {
  34871. height: math.unit(4 + 5/12, "feet"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/joey-raccoon/front.svg",
  34875. extra: 1273/1197,
  34876. bottom: 0/1273
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(4 + 5/12, "feet"),
  34884. default: true
  34885. },
  34886. ]
  34887. ))
  34888. characterMakers.push(() => makeCharacter(
  34889. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34890. {
  34891. front: {
  34892. height: math.unit(8 + 4/12, "feet"),
  34893. name: "Front",
  34894. image: {
  34895. source: "./media/characters/vick/front.svg",
  34896. extra: 2187/2118,
  34897. bottom: 47/2234
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(8 + 4/12, "feet"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34911. {
  34912. front: {
  34913. height: math.unit(5 + 5/12, "feet"),
  34914. name: "Front",
  34915. image: {
  34916. source: "./media/characters/mitsy/front.svg",
  34917. extra: 1842/1695,
  34918. bottom: 0/1842
  34919. }
  34920. },
  34921. },
  34922. [
  34923. {
  34924. name: "Normal",
  34925. height: math.unit(5 + 5/12, "feet"),
  34926. default: true
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34932. {
  34933. front: {
  34934. height: math.unit(6 + 3/12, "feet"),
  34935. name: "Front",
  34936. image: {
  34937. source: "./media/characters/silvy/front.svg",
  34938. extra: 1995/1836,
  34939. bottom: 225/2220
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(6 + 3/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(3 + 8/12, "feet"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/rodney/front.svg",
  34959. extra: 1956/1747,
  34960. bottom: 31/1987
  34961. }
  34962. },
  34963. frontDressed: {
  34964. height: math.unit(2.9, "feet"),
  34965. name: "Front (Dressed)",
  34966. image: {
  34967. source: "./media/characters/rodney/front-dressed.svg",
  34968. extra: 1382/1241,
  34969. bottom: 385/1767
  34970. }
  34971. },
  34972. },
  34973. [
  34974. {
  34975. name: "Normal",
  34976. height: math.unit(3 + 8/12, "feet"),
  34977. default: true
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(5 + 9/12, "feet"),
  34986. weight: math.unit(194, "lbs"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/zakail-sudekai/front.svg",
  34990. extra: 2696/2533,
  34991. bottom: 248/2944
  34992. }
  34993. },
  34994. maw: {
  34995. height: math.unit(1.35, "feet"),
  34996. name: "Maw",
  34997. image: {
  34998. source: "./media/characters/zakail-sudekai/maw.svg"
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(5 + 9/12, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35012. {
  35013. front: {
  35014. height: math.unit(8 + 4/12, "feet"),
  35015. weight: math.unit(1200, "lb"),
  35016. name: "Front",
  35017. image: {
  35018. source: "./media/characters/eleanor/front.svg",
  35019. extra: 1226/1192,
  35020. bottom: 52/1278
  35021. }
  35022. },
  35023. back: {
  35024. height: math.unit(8 + 4/12, "feet"),
  35025. weight: math.unit(1200, "lb"),
  35026. name: "Back",
  35027. image: {
  35028. source: "./media/characters/eleanor/back.svg",
  35029. extra: 1242/1184,
  35030. bottom: 60/1302
  35031. }
  35032. },
  35033. head: {
  35034. height: math.unit(2.62, "feet"),
  35035. name: "Head",
  35036. image: {
  35037. source: "./media/characters/eleanor/head.svg"
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(8 + 4/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(8 + 4/12, "feet"),
  35054. weight: math.unit(750, "lb"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/tanya/front.svg",
  35058. extra: 1749/1615,
  35059. bottom: 33/1782
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(8 + 4/12, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(5, "feet"),
  35076. weight: math.unit(225, "lb"),
  35077. name: "Front",
  35078. image: {
  35079. source: "./media/characters/cindy/front.svg",
  35080. extra: 1320/1250,
  35081. bottom: 42/1362
  35082. }
  35083. },
  35084. frontDressed: {
  35085. height: math.unit(5, "feet"),
  35086. weight: math.unit(225, "lb"),
  35087. name: "Front (Dressed)",
  35088. image: {
  35089. source: "./media/characters/cindy/front-dressed.svg",
  35090. extra: 1320/1250,
  35091. bottom: 42/1362
  35092. }
  35093. },
  35094. back: {
  35095. height: math.unit(5, "feet"),
  35096. weight: math.unit(225, "lb"),
  35097. name: "Back",
  35098. image: {
  35099. source: "./media/characters/cindy/back.svg",
  35100. extra: 1384/1346,
  35101. bottom: 14/1398
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(5, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(6 + 9/12, "feet"),
  35118. weight: math.unit(440, "lb"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/wilbur-owen/front.svg",
  35122. extra: 1575/1448,
  35123. bottom: 72/1647
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(6 + 9/12, "feet"),
  35128. weight: math.unit(440, "lb"),
  35129. name: "Back",
  35130. image: {
  35131. source: "./media/characters/wilbur-owen/back.svg",
  35132. extra: 1578/1445,
  35133. bottom: 36/1614
  35134. }
  35135. },
  35136. },
  35137. [
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(6 + 9/12, "feet"),
  35141. default: true
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35147. {
  35148. front: {
  35149. height: math.unit(6 + 5/12, "feet"),
  35150. weight: math.unit(650, "lb"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/keegan/front.svg",
  35154. extra: 2387/2198,
  35155. bottom: 33/2420
  35156. }
  35157. },
  35158. side: {
  35159. height: math.unit(6 + 5/12, "feet"),
  35160. weight: math.unit(650, "lb"),
  35161. name: "Side",
  35162. image: {
  35163. source: "./media/characters/keegan/side.svg",
  35164. extra: 2390/2202,
  35165. bottom: 47/2437
  35166. }
  35167. },
  35168. back: {
  35169. height: math.unit(6 + 5/12, "feet"),
  35170. weight: math.unit(650, "lb"),
  35171. name: "Back",
  35172. image: {
  35173. source: "./media/characters/keegan/back.svg",
  35174. extra: 2418/2268,
  35175. bottom: 15/2433
  35176. }
  35177. },
  35178. frontSfw: {
  35179. height: math.unit(6 + 5/12, "feet"),
  35180. weight: math.unit(650, "lb"),
  35181. name: "Front (SFW)",
  35182. image: {
  35183. source: "./media/characters/keegan/front-sfw.svg",
  35184. extra: 2387/2198,
  35185. bottom: 33/2420
  35186. }
  35187. },
  35188. beans: {
  35189. height: math.unit(1.85, "feet"),
  35190. name: "Beans",
  35191. image: {
  35192. source: "./media/characters/keegan/beans.svg"
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(6 + 5/12, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(9, "feet"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/colton/front.svg",
  35212. extra: 1589/1326,
  35213. bottom: 139/1728
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(9, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(2 + 9/12, "feet"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/bora/front.svg",
  35233. extra: 1265/1250,
  35234. bottom: 24/1289
  35235. }
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(2 + 9/12, "feet"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(8, "feet"),
  35251. name: "Front",
  35252. image: {
  35253. source: "./media/characters/myu-myu/front.svg",
  35254. extra: 1949/1857,
  35255. bottom: 90/2039
  35256. }
  35257. },
  35258. },
  35259. [
  35260. {
  35261. name: "Normal",
  35262. height: math.unit(8, "feet"),
  35263. default: true
  35264. },
  35265. {
  35266. name: "Big",
  35267. height: math.unit(15, "feet")
  35268. },
  35269. {
  35270. name: "BIG",
  35271. height: math.unit(25, "feet")
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35277. {
  35278. side: {
  35279. height: math.unit(7 + 5/12, "feet"),
  35280. weight: math.unit(2800, "lb"),
  35281. name: "Side",
  35282. image: {
  35283. source: "./media/characters/haloren/side.svg",
  35284. extra: 1793/409,
  35285. bottom: 59/1852
  35286. }
  35287. },
  35288. frontPaw: {
  35289. height: math.unit(2.36, "feet"),
  35290. name: "Front paw",
  35291. image: {
  35292. source: "./media/characters/haloren/front-paw.svg"
  35293. }
  35294. },
  35295. hindPaw: {
  35296. height: math.unit(3.18, "feet"),
  35297. name: "Hind paw",
  35298. image: {
  35299. source: "./media/characters/haloren/hind-paw.svg"
  35300. }
  35301. },
  35302. maw: {
  35303. height: math.unit(5.05, "feet"),
  35304. name: "Maw",
  35305. image: {
  35306. source: "./media/characters/haloren/maw.svg"
  35307. }
  35308. },
  35309. dick: {
  35310. height: math.unit(2.90, "feet"),
  35311. name: "Dick",
  35312. image: {
  35313. source: "./media/characters/haloren/dick.svg"
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(7 + 5/12, "feet"),
  35321. default: true
  35322. },
  35323. {
  35324. name: "Enhanced",
  35325. height: math.unit(14 + 3/12, "feet")
  35326. },
  35327. ]
  35328. ))
  35329. characterMakers.push(() => makeCharacter(
  35330. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35331. {
  35332. front: {
  35333. height: math.unit(171, "cm"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/kimmy/front.svg",
  35337. extra: 1491/1435,
  35338. bottom: 53/1544
  35339. }
  35340. },
  35341. },
  35342. [
  35343. {
  35344. name: "Small",
  35345. height: math.unit(9, "cm")
  35346. },
  35347. {
  35348. name: "Normal",
  35349. height: math.unit(171, "cm"),
  35350. default: true
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(8, "feet"),
  35359. weight: math.unit(300, "lb"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/galeboomer/front.svg",
  35363. extra: 4651/4415,
  35364. bottom: 162/4813
  35365. }
  35366. },
  35367. back: {
  35368. height: math.unit(8, "feet"),
  35369. weight: math.unit(300, "lb"),
  35370. name: "Back",
  35371. image: {
  35372. source: "./media/characters/galeboomer/back.svg",
  35373. extra: 4544/4314,
  35374. bottom: 16/4560
  35375. }
  35376. },
  35377. frontAlt: {
  35378. height: math.unit(8, "feet"),
  35379. weight: math.unit(300, "lb"),
  35380. name: "Front (Alt)",
  35381. image: {
  35382. source: "./media/characters/galeboomer/front-alt.svg",
  35383. extra: 4458/4228,
  35384. bottom: 68/4526
  35385. }
  35386. },
  35387. maw: {
  35388. height: math.unit(1.2, "feet"),
  35389. name: "Maw",
  35390. image: {
  35391. source: "./media/characters/galeboomer/maw.svg"
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(8, "feet"),
  35399. default: true
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35405. {
  35406. front: {
  35407. height: math.unit(5 + 9/12, "feet"),
  35408. weight: math.unit(120, "lb"),
  35409. name: "Front",
  35410. image: {
  35411. source: "./media/characters/chyr/front.svg",
  35412. extra: 1323/1254,
  35413. bottom: 63/1386
  35414. }
  35415. },
  35416. back: {
  35417. height: math.unit(5 + 9/12, "feet"),
  35418. weight: math.unit(120, "lb"),
  35419. name: "Back",
  35420. image: {
  35421. source: "./media/characters/chyr/back.svg",
  35422. extra: 1323/1252,
  35423. bottom: 48/1371
  35424. }
  35425. },
  35426. },
  35427. [
  35428. {
  35429. name: "Normal",
  35430. height: math.unit(5 + 9/12, "feet"),
  35431. default: true
  35432. },
  35433. ]
  35434. ))
  35435. characterMakers.push(() => makeCharacter(
  35436. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35437. {
  35438. front: {
  35439. height: math.unit(7, "feet"),
  35440. weight: math.unit(310, "lb"),
  35441. name: "Front",
  35442. image: {
  35443. source: "./media/characters/solarus/front.svg",
  35444. extra: 2415/2021,
  35445. bottom: 103/2518
  35446. }
  35447. },
  35448. back: {
  35449. height: math.unit(7, "feet"),
  35450. weight: math.unit(310, "lb"),
  35451. name: "Back",
  35452. image: {
  35453. source: "./media/characters/solarus/back.svg",
  35454. extra: 2463/2089,
  35455. bottom: 79/2542
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(7, "feet"),
  35463. default: true
  35464. },
  35465. ]
  35466. ))
  35467. characterMakers.push(() => makeCharacter(
  35468. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35469. {
  35470. front: {
  35471. height: math.unit(16, "feet"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35475. extra: 1844/1780,
  35476. bottom: 58/1902
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(16, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(11 + 6/12, "feet"),
  35493. weight: math.unit(1366, "lb"),
  35494. name: "Front",
  35495. image: {
  35496. source: "./media/characters/lexor/front.svg",
  35497. extra: 1560/1481,
  35498. bottom: 211/1771
  35499. }
  35500. },
  35501. back: {
  35502. height: math.unit(11 + 6/12, "feet"),
  35503. weight: math.unit(1366, "lb"),
  35504. name: "Back",
  35505. image: {
  35506. source: "./media/characters/lexor/back.svg",
  35507. extra: 1614/1533,
  35508. bottom: 76/1690
  35509. }
  35510. },
  35511. maw: {
  35512. height: math.unit(3, "feet"),
  35513. name: "Maw",
  35514. image: {
  35515. source: "./media/characters/lexor/maw.svg"
  35516. }
  35517. },
  35518. dick: {
  35519. height: math.unit(2.59, "feet"),
  35520. name: "Dick",
  35521. image: {
  35522. source: "./media/characters/lexor/dick.svg"
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(11 + 6/12, "feet"),
  35530. default: true
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35536. {
  35537. front: {
  35538. height: math.unit(5 + 8/12, "feet"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/magnum/front.svg",
  35542. extra: 942/855,
  35543. bottom: 26/968
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(5 + 8/12, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(18 + 4/12, "feet"),
  35560. weight: math.unit(1500, "kg"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/solas-sharpsman/front.svg",
  35564. extra: 1698/1589,
  35565. bottom: 0/1698
  35566. }
  35567. },
  35568. },
  35569. [
  35570. {
  35571. name: "Normal",
  35572. height: math.unit(18 + 4/12, "feet"),
  35573. default: true
  35574. },
  35575. ]
  35576. ))
  35577. characterMakers.push(() => makeCharacter(
  35578. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35579. {
  35580. front: {
  35581. height: math.unit(5 + 5/12, "feet"),
  35582. weight: math.unit(180, "lb"),
  35583. name: "Front",
  35584. image: {
  35585. source: "./media/characters/october/front.svg",
  35586. extra: 1800/1650,
  35587. bottom: 0/1800
  35588. }
  35589. },
  35590. frontNsfw: {
  35591. height: math.unit(5 + 5/12, "feet"),
  35592. weight: math.unit(180, "lb"),
  35593. name: "Front (NSFW)",
  35594. image: {
  35595. source: "./media/characters/october/front-nsfw.svg",
  35596. extra: 1392/1307,
  35597. bottom: 42/1434
  35598. }
  35599. },
  35600. },
  35601. [
  35602. {
  35603. name: "Normal",
  35604. height: math.unit(5 + 5/12, "feet"),
  35605. default: true
  35606. },
  35607. ]
  35608. ))
  35609. characterMakers.push(() => makeCharacter(
  35610. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35611. {
  35612. front: {
  35613. height: math.unit(8 + 6/12, "feet"),
  35614. name: "Front",
  35615. image: {
  35616. source: "./media/characters/essynkardi/front.svg",
  35617. extra: 1914/1846,
  35618. bottom: 22/1936
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(8 + 6/12, "feet"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35632. {
  35633. front: {
  35634. height: math.unit(6 + 6/12, "feet"),
  35635. weight: math.unit(7, "lb"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/icky/front.svg",
  35639. extra: 813/782,
  35640. bottom: 66/879
  35641. }
  35642. },
  35643. back: {
  35644. height: math.unit(6 + 6/12, "feet"),
  35645. weight: math.unit(7, "lb"),
  35646. name: "Back",
  35647. image: {
  35648. source: "./media/characters/icky/back.svg",
  35649. extra: 754/735,
  35650. bottom: 56/810
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(6 + 6/12, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(15, "feet"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/rojas/front.svg",
  35670. extra: 1462/1408,
  35671. bottom: 95/1557
  35672. }
  35673. },
  35674. back: {
  35675. height: math.unit(15, "feet"),
  35676. name: "Back",
  35677. image: {
  35678. source: "./media/characters/rojas/back.svg",
  35679. extra: 1023/954,
  35680. bottom: 28/1051
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(15, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Alek Dryagan", species: ["sea-monster", "human"], tags: ["anthro"] },
  35694. {
  35695. frontHuman: {
  35696. height: math.unit(5 + 7/12, "feet"),
  35697. name: "Front (Human)",
  35698. image: {
  35699. source: "./media/characters/alek-dryagan/front-human.svg",
  35700. extra: 1687/1667,
  35701. bottom: 69/1756
  35702. }
  35703. },
  35704. backHuman: {
  35705. height: math.unit(5 + 7/12, "feet"),
  35706. name: "Back (Human)",
  35707. image: {
  35708. source: "./media/characters/alek-dryagan/back-human.svg",
  35709. extra: 1670/1649,
  35710. bottom: 65/1735
  35711. }
  35712. },
  35713. frontDemi: {
  35714. height: math.unit(65, "feet"),
  35715. name: "Front (Demi)",
  35716. image: {
  35717. source: "./media/characters/alek-dryagan/front-demi.svg",
  35718. extra: 1669/1642,
  35719. bottom: 49/1718
  35720. }
  35721. },
  35722. backDemi: {
  35723. height: math.unit(65, "feet"),
  35724. name: "Back (Demi)",
  35725. image: {
  35726. source: "./media/characters/alek-dryagan/back-demi.svg",
  35727. extra: 1658/1637,
  35728. bottom: 40/1698
  35729. }
  35730. },
  35731. mawHuman: {
  35732. height: math.unit(0.3, "feet"),
  35733. name: "Maw (Human)",
  35734. image: {
  35735. source: "./media/characters/alek-dryagan/maw-human.svg"
  35736. }
  35737. },
  35738. mawDemi: {
  35739. height: math.unit(3.8, "feet"),
  35740. name: "Maw (Demi)",
  35741. image: {
  35742. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(5 + 7/12, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Gen", species: ["cat", "human"], tags: ["anthro"] },
  35756. {
  35757. frontHuman: {
  35758. height: math.unit(5 + 2/12, "feet"),
  35759. name: "Front (Human)",
  35760. image: {
  35761. source: "./media/characters/gen/front-human.svg",
  35762. extra: 1627/1538,
  35763. bottom: 71/1698
  35764. }
  35765. },
  35766. backHuman: {
  35767. height: math.unit(5 + 2/12, "feet"),
  35768. name: "Back (Human)",
  35769. image: {
  35770. source: "./media/characters/gen/back-human.svg",
  35771. extra: 1638/1548,
  35772. bottom: 69/1707
  35773. }
  35774. },
  35775. frontDemi: {
  35776. height: math.unit(5 + 2/12, "feet"),
  35777. name: "Front (Demi)",
  35778. image: {
  35779. source: "./media/characters/gen/front-demi.svg",
  35780. extra: 1627/1538,
  35781. bottom: 71/1698
  35782. }
  35783. },
  35784. backDemi: {
  35785. height: math.unit(5 + 2/12, "feet"),
  35786. name: "Back (Demi)",
  35787. image: {
  35788. source: "./media/characters/gen/back-demi.svg",
  35789. extra: 1638/1548,
  35790. bottom: 69/1707
  35791. }
  35792. },
  35793. },
  35794. [
  35795. {
  35796. name: "Normal",
  35797. height: math.unit(5 + 2/12, "feet"),
  35798. default: true
  35799. },
  35800. ]
  35801. ))
  35802. //characters
  35803. function makeCharacters() {
  35804. const results = [];
  35805. characterMakers.forEach(character => {
  35806. results.push(character());
  35807. });
  35808. return results;
  35809. }