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

36996 строки
930 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. "demi": {
  1584. name: "Demi",
  1585. parents: ["human"]
  1586. },
  1587. "stegosaurus": {
  1588. name: "Stegosaurus",
  1589. parents: ["dinosaur"]
  1590. },
  1591. "computer-virus": {
  1592. name: "Computer Virus",
  1593. parents: ["program"]
  1594. },
  1595. "program": {
  1596. name: "Program",
  1597. parents: ["construct"]
  1598. },
  1599. }
  1600. //species
  1601. function getSpeciesInfo(speciesList) {
  1602. let result = new Set();
  1603. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1604. result.add(entry)
  1605. });
  1606. return Array.from(result);
  1607. };
  1608. function getSpeciesInfoHelper(species) {
  1609. if (!speciesData[species]) {
  1610. console.warn(species + " doesn't exist");
  1611. return [];
  1612. }
  1613. if (speciesData[species].parents) {
  1614. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1615. } else {
  1616. return [species];
  1617. }
  1618. }
  1619. characterMakers.push(() => makeCharacter(
  1620. {
  1621. name: "Fen",
  1622. species: ["crux"],
  1623. description: {
  1624. title: "Bio",
  1625. text: "Very furry. Sheds on everything."
  1626. },
  1627. tags: [
  1628. "anthro",
  1629. "goo"
  1630. ]
  1631. },
  1632. {
  1633. back: {
  1634. height: math.unit(2.2428, "meter"),
  1635. weight: math.unit(124.738, "kg"),
  1636. name: "Back",
  1637. image: {
  1638. source: "./media/characters/fen/back.svg",
  1639. extra: 2024 / 1867,
  1640. bottom: 13 / 2037
  1641. },
  1642. info: {
  1643. description: {
  1644. mode: "append",
  1645. text: "\n\nHe is not currently looking at you."
  1646. }
  1647. }
  1648. },
  1649. full: {
  1650. height: math.unit(1.34, "meter"),
  1651. weight: math.unit(225, "kg"),
  1652. name: "Full",
  1653. image: {
  1654. source: "./media/characters/fen/full.svg"
  1655. },
  1656. info: {
  1657. description: {
  1658. mode: "append",
  1659. text: "\n\nMunch."
  1660. }
  1661. }
  1662. },
  1663. kneeling: {
  1664. height: math.unit(5.4, "feet"),
  1665. weight: math.unit(124.738, "kg"),
  1666. name: "Kneeling",
  1667. image: {
  1668. source: "./media/characters/fen/kneeling.svg",
  1669. extra: 563 / 507
  1670. }
  1671. },
  1672. goo: {
  1673. height: math.unit(2.8, "feet"),
  1674. weight: math.unit(125, "kg"),
  1675. capacity: math.unit(1, "people"),
  1676. name: "Goo",
  1677. image: {
  1678. source: "./media/characters/fen/goo.svg",
  1679. bottom: 116 / 613
  1680. }
  1681. },
  1682. lounging: {
  1683. height: math.unit(6.5, "feet"),
  1684. weight: math.unit(125, "kg"),
  1685. name: "Lounging",
  1686. image: {
  1687. source: "./media/characters/fen/lounging.svg"
  1688. }
  1689. },
  1690. },
  1691. [
  1692. {
  1693. name: "Normal",
  1694. height: math.unit(2.2428, "meter")
  1695. },
  1696. {
  1697. name: "Big",
  1698. height: math.unit(12, "feet")
  1699. },
  1700. {
  1701. name: "Minimacro",
  1702. height: math.unit(40, "feet"),
  1703. default: true,
  1704. info: {
  1705. description: {
  1706. mode: "append",
  1707. text: "\n\nTOO DAMN BIG"
  1708. }
  1709. }
  1710. },
  1711. {
  1712. name: "Macro",
  1713. height: math.unit(100, "feet"),
  1714. info: {
  1715. description: {
  1716. mode: "append",
  1717. text: "\n\nTOO DAMN BIG"
  1718. }
  1719. }
  1720. },
  1721. {
  1722. name: "Macro+",
  1723. height: math.unit(300, "feet")
  1724. },
  1725. {
  1726. name: "Megamacro",
  1727. height: math.unit(2, "miles")
  1728. }
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(183, "cm"),
  1736. weight: math.unit(80, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/sofia-fluttertail/front.svg",
  1740. bottom: 0.01,
  1741. extra: 2154 / 2081
  1742. }
  1743. },
  1744. frontAlt: {
  1745. height: math.unit(183, "cm"),
  1746. weight: math.unit(80, "kg"),
  1747. name: "Front (alt)",
  1748. image: {
  1749. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1750. }
  1751. },
  1752. back: {
  1753. height: math.unit(183, "cm"),
  1754. weight: math.unit(80, "kg"),
  1755. name: "Back",
  1756. image: {
  1757. source: "./media/characters/sofia-fluttertail/back.svg"
  1758. }
  1759. },
  1760. kneeling: {
  1761. height: math.unit(125, "cm"),
  1762. weight: math.unit(80, "kg"),
  1763. name: "Kneeling",
  1764. image: {
  1765. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1766. extra: 1033 / 977,
  1767. bottom: 23.7 / 1057
  1768. }
  1769. },
  1770. maw: {
  1771. height: math.unit(183 / 5, "cm"),
  1772. name: "Maw",
  1773. image: {
  1774. source: "./media/characters/sofia-fluttertail/maw.svg"
  1775. }
  1776. },
  1777. mawcloseup: {
  1778. height: math.unit(183 / 5 * 0.41, "cm"),
  1779. name: "Maw (Closeup)",
  1780. image: {
  1781. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1782. }
  1783. },
  1784. paws: {
  1785. height: math.unit(1.17, "feet"),
  1786. name: "Paws",
  1787. image: {
  1788. source: "./media/characters/sofia-fluttertail/paws.svg",
  1789. extra: 851 / 851,
  1790. bottom: 17 / 868
  1791. }
  1792. },
  1793. },
  1794. [
  1795. {
  1796. name: "Normal",
  1797. height: math.unit(1.83, "meter")
  1798. },
  1799. {
  1800. name: "Size Thief",
  1801. height: math.unit(18, "feet")
  1802. },
  1803. {
  1804. name: "50 Foot Collie",
  1805. height: math.unit(50, "feet")
  1806. },
  1807. {
  1808. name: "Macro",
  1809. height: math.unit(96, "feet"),
  1810. default: true
  1811. },
  1812. {
  1813. name: "Megamerger",
  1814. height: math.unit(650, "feet")
  1815. },
  1816. ]
  1817. ))
  1818. characterMakers.push(() => makeCharacter(
  1819. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1820. {
  1821. front: {
  1822. height: math.unit(7, "feet"),
  1823. weight: math.unit(100, "kg"),
  1824. name: "Front",
  1825. image: {
  1826. source: "./media/characters/march/front.svg",
  1827. extra: 1,
  1828. bottom: 0.015
  1829. }
  1830. },
  1831. foot: {
  1832. height: math.unit(0.9, "feet"),
  1833. name: "Foot",
  1834. image: {
  1835. source: "./media/characters/march/foot.svg"
  1836. }
  1837. },
  1838. },
  1839. [
  1840. {
  1841. name: "Normal",
  1842. height: math.unit(7.9, "feet")
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(220, "meters")
  1847. },
  1848. {
  1849. name: "Megamacro",
  1850. height: math.unit(2.98, "km"),
  1851. default: true
  1852. },
  1853. {
  1854. name: "Gigamacro",
  1855. height: math.unit(15963, "km")
  1856. },
  1857. {
  1858. name: "Teramacro",
  1859. height: math.unit(2980000000, "km")
  1860. },
  1861. {
  1862. name: "Examacro",
  1863. height: math.unit(250, "parsecs")
  1864. },
  1865. ]
  1866. ))
  1867. characterMakers.push(() => makeCharacter(
  1868. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1869. {
  1870. front: {
  1871. height: math.unit(6, "feet"),
  1872. weight: math.unit(60, "kg"),
  1873. name: "Front",
  1874. image: {
  1875. source: "./media/characters/noir/front.svg",
  1876. extra: 1,
  1877. bottom: 0.032
  1878. }
  1879. },
  1880. },
  1881. [
  1882. {
  1883. name: "Normal",
  1884. height: math.unit(6.6, "feet")
  1885. },
  1886. {
  1887. name: "Macro",
  1888. height: math.unit(500, "feet")
  1889. },
  1890. {
  1891. name: "Megamacro",
  1892. height: math.unit(2.5, "km"),
  1893. default: true
  1894. },
  1895. {
  1896. name: "Gigamacro",
  1897. height: math.unit(22500, "km")
  1898. },
  1899. {
  1900. name: "Teramacro",
  1901. height: math.unit(2500000000, "km")
  1902. },
  1903. {
  1904. name: "Examacro",
  1905. height: math.unit(200, "parsecs")
  1906. },
  1907. ]
  1908. ))
  1909. characterMakers.push(() => makeCharacter(
  1910. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1911. {
  1912. front: {
  1913. height: math.unit(7, "feet"),
  1914. weight: math.unit(100, "kg"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/okuri/front.svg",
  1918. extra: 1,
  1919. bottom: 0.037
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(7, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/okuri/back.svg",
  1928. extra: 1,
  1929. bottom: 0.007
  1930. }
  1931. },
  1932. },
  1933. [
  1934. {
  1935. name: "Megamacro",
  1936. height: math.unit(100, "miles"),
  1937. default: true
  1938. },
  1939. ]
  1940. ))
  1941. characterMakers.push(() => makeCharacter(
  1942. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1943. {
  1944. front: {
  1945. height: math.unit(7, "feet"),
  1946. weight: math.unit(100, "kg"),
  1947. name: "Front",
  1948. image: {
  1949. source: "./media/characters/manny/front.svg",
  1950. extra: 1,
  1951. bottom: 0.06
  1952. }
  1953. },
  1954. back: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(100, "kg"),
  1957. name: "Back",
  1958. image: {
  1959. source: "./media/characters/manny/back.svg",
  1960. extra: 1,
  1961. bottom: 0.014
  1962. }
  1963. },
  1964. },
  1965. [
  1966. {
  1967. name: "Normal",
  1968. height: math.unit(7, "feet"),
  1969. },
  1970. {
  1971. name: "Macro",
  1972. height: math.unit(78, "feet"),
  1973. default: true
  1974. },
  1975. {
  1976. name: "Macro+",
  1977. height: math.unit(300, "meters")
  1978. },
  1979. {
  1980. name: "Macro++",
  1981. height: math.unit(2400, "meters")
  1982. },
  1983. {
  1984. name: "Megamacro",
  1985. height: math.unit(5167, "meters")
  1986. },
  1987. {
  1988. name: "Gigamacro",
  1989. height: math.unit(41769, "miles")
  1990. },
  1991. ]
  1992. ))
  1993. characterMakers.push(() => makeCharacter(
  1994. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1995. {
  1996. front: {
  1997. height: math.unit(7, "feet"),
  1998. weight: math.unit(100, "kg"),
  1999. name: "Front",
  2000. image: {
  2001. source: "./media/characters/adake/front-1.svg"
  2002. }
  2003. },
  2004. frontAlt: {
  2005. height: math.unit(7, "feet"),
  2006. weight: math.unit(100, "kg"),
  2007. name: "Front (Alt)",
  2008. image: {
  2009. source: "./media/characters/adake/front-2.svg",
  2010. extra: 1,
  2011. bottom: 0.01
  2012. }
  2013. },
  2014. back: {
  2015. height: math.unit(7, "feet"),
  2016. weight: math.unit(100, "kg"),
  2017. name: "Back",
  2018. image: {
  2019. source: "./media/characters/adake/back.svg",
  2020. }
  2021. },
  2022. kneel: {
  2023. height: math.unit(5.385, "feet"),
  2024. weight: math.unit(100, "kg"),
  2025. name: "Kneeling",
  2026. image: {
  2027. source: "./media/characters/adake/kneel.svg",
  2028. bottom: 0.052
  2029. }
  2030. },
  2031. },
  2032. [
  2033. {
  2034. name: "Normal",
  2035. height: math.unit(7, "feet"),
  2036. },
  2037. {
  2038. name: "Macro",
  2039. height: math.unit(78, "feet"),
  2040. default: true
  2041. },
  2042. {
  2043. name: "Macro+",
  2044. height: math.unit(300, "meters")
  2045. },
  2046. {
  2047. name: "Macro++",
  2048. height: math.unit(2400, "meters")
  2049. },
  2050. {
  2051. name: "Megamacro",
  2052. height: math.unit(5167, "meters")
  2053. },
  2054. {
  2055. name: "Gigamacro",
  2056. height: math.unit(41769, "miles")
  2057. },
  2058. ]
  2059. ))
  2060. characterMakers.push(() => makeCharacter(
  2061. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2062. {
  2063. front: {
  2064. height: math.unit(1.65, "meters"),
  2065. weight: math.unit(50, "kg"),
  2066. name: "Front",
  2067. image: {
  2068. source: "./media/characters/elijah/front.svg",
  2069. extra: 858 / 830,
  2070. bottom: 95.5 / 953.8559
  2071. }
  2072. },
  2073. back: {
  2074. height: math.unit(1.65, "meters"),
  2075. weight: math.unit(50, "kg"),
  2076. name: "Back",
  2077. image: {
  2078. source: "./media/characters/elijah/back.svg",
  2079. extra: 895 / 850,
  2080. bottom: 5.3 / 897.956
  2081. }
  2082. },
  2083. frontNsfw: {
  2084. height: math.unit(1.65, "meters"),
  2085. weight: math.unit(50, "kg"),
  2086. name: "Front (NSFW)",
  2087. image: {
  2088. source: "./media/characters/elijah/front-nsfw.svg",
  2089. extra: 858 / 830,
  2090. bottom: 95.5 / 953.8559
  2091. }
  2092. },
  2093. backNsfw: {
  2094. height: math.unit(1.65, "meters"),
  2095. weight: math.unit(50, "kg"),
  2096. name: "Back (NSFW)",
  2097. image: {
  2098. source: "./media/characters/elijah/back-nsfw.svg",
  2099. extra: 895 / 850,
  2100. bottom: 5.3 / 897.956
  2101. }
  2102. },
  2103. dick: {
  2104. height: math.unit(1, "feet"),
  2105. name: "Dick",
  2106. image: {
  2107. source: "./media/characters/elijah/dick.svg"
  2108. }
  2109. },
  2110. beakOpen: {
  2111. height: math.unit(1.25, "feet"),
  2112. name: "Beak (Open)",
  2113. image: {
  2114. source: "./media/characters/elijah/beak-open.svg"
  2115. }
  2116. },
  2117. beakShut: {
  2118. height: math.unit(1.25, "feet"),
  2119. name: "Beak (Shut)",
  2120. image: {
  2121. source: "./media/characters/elijah/beak-shut.svg"
  2122. }
  2123. },
  2124. footFlexing: {
  2125. height: math.unit(1.61, "feet"),
  2126. name: "Foot (Flexing)",
  2127. image: {
  2128. source: "./media/characters/elijah/foot-flexing.svg"
  2129. }
  2130. },
  2131. footStepping: {
  2132. height: math.unit(1.44, "feet"),
  2133. name: "Foot (Stepping)",
  2134. image: {
  2135. source: "./media/characters/elijah/foot-stepping.svg"
  2136. }
  2137. },
  2138. plantigradeLeg: {
  2139. height: math.unit(2.34, "feet"),
  2140. name: "Plantigrade Leg",
  2141. image: {
  2142. source: "./media/characters/elijah/plantigrade-leg.svg"
  2143. }
  2144. },
  2145. plantigradeFootLeft: {
  2146. height: math.unit(0.9, "feet"),
  2147. name: "Plantigrade Foot (Left)",
  2148. image: {
  2149. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2150. }
  2151. },
  2152. plantigradeFootRight: {
  2153. height: math.unit(0.9, "feet"),
  2154. name: "Plantigrade Foot (Right)",
  2155. image: {
  2156. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(1.65, "meters")
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(55, "meters"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(105, "meters")
  2173. },
  2174. ]
  2175. ))
  2176. characterMakers.push(() => makeCharacter(
  2177. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2178. {
  2179. front: {
  2180. height: math.unit(11, "feet"),
  2181. weight: math.unit(320, "kg"),
  2182. name: "Front",
  2183. image: {
  2184. source: "./media/characters/rai/front.svg",
  2185. extra: 1802/1696,
  2186. bottom: 68/1870
  2187. }
  2188. },
  2189. frontDressed: {
  2190. height: math.unit(11, "feet"),
  2191. weight: math.unit(320, "kg"),
  2192. name: "Front (Dressed)",
  2193. image: {
  2194. source: "./media/characters/rai/front-dressed.svg",
  2195. extra: 1802/1696,
  2196. bottom: 68/1870
  2197. }
  2198. },
  2199. side: {
  2200. height: math.unit(11, "feet"),
  2201. weight: math.unit(320, "kg"),
  2202. name: "Side",
  2203. image: {
  2204. source: "./media/characters/rai/side.svg",
  2205. extra: 1789/1710,
  2206. bottom: 115/1904
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(11, "feet"),
  2211. weight: math.unit(320, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/rai/back.svg",
  2215. extra: 1770/1707,
  2216. bottom: 28/1798
  2217. }
  2218. },
  2219. feral: {
  2220. height: math.unit(11, "feet"),
  2221. weight: math.unit(640, "kg"),
  2222. name: "Feral",
  2223. image: {
  2224. source: "./media/characters/rai/feral.svg",
  2225. extra: 1035/642,
  2226. bottom: 86/1121
  2227. }
  2228. },
  2229. dragon: {
  2230. height: math.unit(23, "feet"),
  2231. weight: math.unit(50000, "lb"),
  2232. name: "Dragon",
  2233. image: {
  2234. source: "./media/characters/rai/dragon.svg",
  2235. extra: 2498 / 2030,
  2236. bottom: 85.2 / 2584
  2237. }
  2238. },
  2239. maw: {
  2240. height: math.unit(6 / 3.81416, "feet"),
  2241. name: "Maw",
  2242. image: {
  2243. source: "./media/characters/rai/maw.svg"
  2244. }
  2245. },
  2246. },
  2247. [
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(11, "feet")
  2251. },
  2252. {
  2253. name: "Macro",
  2254. height: math.unit(302, "feet"),
  2255. default: true
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2261. {
  2262. frontDressed: {
  2263. height: math.unit(216, "feet"),
  2264. weight: math.unit(7000000, "lb"),
  2265. name: "Front (Dressed)",
  2266. image: {
  2267. source: "./media/characters/jazzy/front-dressed.svg",
  2268. extra: 2738 / 2651,
  2269. bottom: 41.8 / 2786
  2270. }
  2271. },
  2272. backDressed: {
  2273. height: math.unit(216, "feet"),
  2274. weight: math.unit(7000000, "lb"),
  2275. name: "Back (Dressed)",
  2276. image: {
  2277. source: "./media/characters/jazzy/back-dressed.svg",
  2278. extra: 2775 / 2673,
  2279. bottom: 36.8 / 2817
  2280. }
  2281. },
  2282. front: {
  2283. height: math.unit(216, "feet"),
  2284. weight: math.unit(7000000, "lb"),
  2285. name: "Front",
  2286. image: {
  2287. source: "./media/characters/jazzy/front.svg",
  2288. extra: 2738 / 2651,
  2289. bottom: 41.8 / 2786
  2290. }
  2291. },
  2292. back: {
  2293. height: math.unit(216, "feet"),
  2294. weight: math.unit(7000000, "lb"),
  2295. name: "Back",
  2296. image: {
  2297. source: "./media/characters/jazzy/back.svg",
  2298. extra: 2775 / 2673,
  2299. bottom: 36.8 / 2817
  2300. }
  2301. },
  2302. maw: {
  2303. height: math.unit(20, "feet"),
  2304. name: "Maw",
  2305. image: {
  2306. source: "./media/characters/jazzy/maw.svg"
  2307. }
  2308. },
  2309. paws: {
  2310. height: math.unit(27.5, "feet"),
  2311. name: "Paws",
  2312. image: {
  2313. source: "./media/characters/jazzy/paws.svg"
  2314. }
  2315. },
  2316. eye: {
  2317. height: math.unit(4.4, "feet"),
  2318. name: "Eye",
  2319. image: {
  2320. source: "./media/characters/jazzy/eye.svg"
  2321. }
  2322. },
  2323. droneOffense: {
  2324. height: math.unit(9.5, "inches"),
  2325. name: "Drone (Offense)",
  2326. image: {
  2327. source: "./media/characters/jazzy/drone-offense.svg"
  2328. }
  2329. },
  2330. droneRecon: {
  2331. height: math.unit(9.5, "inches"),
  2332. name: "Drone (Recon)",
  2333. image: {
  2334. source: "./media/characters/jazzy/drone-recon.svg"
  2335. }
  2336. },
  2337. droneDefense: {
  2338. height: math.unit(9.5, "inches"),
  2339. name: "Drone (Defense)",
  2340. image: {
  2341. source: "./media/characters/jazzy/drone-defense.svg"
  2342. }
  2343. },
  2344. },
  2345. [
  2346. {
  2347. name: "Macro",
  2348. height: math.unit(216, "feet"),
  2349. default: true
  2350. },
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2355. {
  2356. front: {
  2357. height: math.unit(9 + 6/12, "feet"),
  2358. weight: math.unit(700, "lb"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/flamm/front.svg",
  2362. extra: 1751/1632,
  2363. bottom: 46/1797
  2364. }
  2365. },
  2366. buff: {
  2367. height: math.unit(9 + 6/12, "feet"),
  2368. weight: math.unit(950, "lb"),
  2369. name: "Buff",
  2370. image: {
  2371. source: "./media/characters/flamm/buff.svg",
  2372. extra: 3018/2874,
  2373. bottom: 221/3239
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(9.5, "feet")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(200, "feet"),
  2385. default: true
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(5 + 3/12, "feet"),
  2394. weight: math.unit(60, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/zephiro/front.svg",
  2398. extra: 2309 / 2162,
  2399. bottom: 0.069
  2400. }
  2401. },
  2402. side: {
  2403. height: math.unit(5 + 3/12, "feet"),
  2404. weight: math.unit(60, "kg"),
  2405. name: "Side",
  2406. image: {
  2407. source: "./media/characters/zephiro/side.svg",
  2408. extra: 2403 / 2279,
  2409. bottom: 0.015
  2410. }
  2411. },
  2412. back: {
  2413. height: math.unit(5 + 3/12, "feet"),
  2414. weight: math.unit(60, "kg"),
  2415. name: "Back",
  2416. image: {
  2417. source: "./media/characters/zephiro/back.svg",
  2418. extra: 2373 / 2244,
  2419. bottom: 0.013
  2420. }
  2421. },
  2422. hand: {
  2423. height: math.unit(0.68, "feet"),
  2424. name: "Hand",
  2425. image: {
  2426. source: "./media/characters/zephiro/hand.svg"
  2427. }
  2428. },
  2429. paw: {
  2430. height: math.unit(1, "feet"),
  2431. name: "Paw",
  2432. image: {
  2433. source: "./media/characters/zephiro/paw.svg"
  2434. }
  2435. },
  2436. beans: {
  2437. height: math.unit(0.93, "feet"),
  2438. name: "Beans",
  2439. image: {
  2440. source: "./media/characters/zephiro/beans.svg"
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Micro",
  2447. height: math.unit(3, "inches")
  2448. },
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(5 + 3 / 12, "feet"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Macro",
  2456. height: math.unit(118, "feet")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(5, "feet"),
  2465. weight: math.unit(90, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/fory/front.svg",
  2469. extra: 2862 / 2674,
  2470. bottom: 180 / 3043.8
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(5, "feet"),
  2475. weight: math.unit(90, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/fory/back.svg",
  2479. extra: 2962 / 2791,
  2480. bottom: 106 / 3071.8
  2481. }
  2482. },
  2483. foot: {
  2484. height: math.unit(2.14, "feet"),
  2485. name: "Foot",
  2486. image: {
  2487. source: "./media/characters/fory/foot.svg"
  2488. }
  2489. },
  2490. },
  2491. [
  2492. {
  2493. name: "Normal",
  2494. height: math.unit(5, "feet")
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(50, "feet"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Megamacro",
  2503. height: math.unit(10, "miles")
  2504. },
  2505. {
  2506. name: "Gigamacro",
  2507. height: math.unit(5, "earths")
  2508. },
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2513. {
  2514. front: {
  2515. height: math.unit(7, "feet"),
  2516. weight: math.unit(90, "kg"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/kurrikage/front.svg",
  2520. extra: 1,
  2521. bottom: 0.035
  2522. }
  2523. },
  2524. back: {
  2525. height: math.unit(7, "feet"),
  2526. weight: math.unit(90, "lb"),
  2527. name: "Back",
  2528. image: {
  2529. source: "./media/characters/kurrikage/back.svg"
  2530. }
  2531. },
  2532. paw: {
  2533. height: math.unit(1.5, "feet"),
  2534. name: "Paw",
  2535. image: {
  2536. source: "./media/characters/kurrikage/paw.svg"
  2537. }
  2538. },
  2539. staff: {
  2540. height: math.unit(6.7, "feet"),
  2541. name: "Staff",
  2542. image: {
  2543. source: "./media/characters/kurrikage/staff.svg"
  2544. }
  2545. },
  2546. peek: {
  2547. height: math.unit(1.05, "feet"),
  2548. name: "Peeking",
  2549. image: {
  2550. source: "./media/characters/kurrikage/peek.svg",
  2551. bottom: 0.08
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(12, "feet"),
  2559. default: true
  2560. },
  2561. {
  2562. name: "Big",
  2563. height: math.unit(20, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(500, "feet")
  2568. },
  2569. {
  2570. name: "Megamacro",
  2571. height: math.unit(20, "miles")
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2577. {
  2578. front: {
  2579. height: math.unit(6, "feet"),
  2580. weight: math.unit(75, "kg"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/shingo/front.svg",
  2584. extra: 706/681,
  2585. bottom: 11/717
  2586. }
  2587. },
  2588. frontAlt: {
  2589. height: math.unit(6, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Front (Alt)",
  2592. image: {
  2593. source: "./media/characters/shingo/front-alt.svg",
  2594. extra: 3511 / 3338,
  2595. bottom: 0.005
  2596. }
  2597. },
  2598. paw: {
  2599. height: math.unit(1, "feet"),
  2600. name: "Paw",
  2601. image: {
  2602. source: "./media/characters/shingo/paw.svg"
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Micro",
  2609. height: math.unit(4, "inches")
  2610. },
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(6, "feet"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(108, "feet")
  2619. },
  2620. {
  2621. name: "Macro+",
  2622. height: math.unit(1500, "feet")
  2623. },
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2628. {
  2629. side: {
  2630. height: math.unit(6, "feet"),
  2631. weight: math.unit(75, "kg"),
  2632. name: "Side",
  2633. image: {
  2634. source: "./media/characters/aigey/side.svg"
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Macro",
  2641. height: math.unit(200, "feet"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(100, "miles")
  2647. },
  2648. ]
  2649. )
  2650. )
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2653. {
  2654. front: {
  2655. height: math.unit(5 + 5 / 12, "feet"),
  2656. weight: math.unit(75, "kg"),
  2657. name: "Front",
  2658. image: {
  2659. source: "./media/characters/natasha/front.svg",
  2660. extra: 859 / 824,
  2661. bottom: 23 / 879.6
  2662. }
  2663. },
  2664. frontNsfw: {
  2665. height: math.unit(5 + 5 / 12, "feet"),
  2666. weight: math.unit(75, "kg"),
  2667. name: "Front (NSFW)",
  2668. image: {
  2669. source: "./media/characters/natasha/front-nsfw.svg",
  2670. extra: 859 / 824,
  2671. bottom: 23 / 879.6
  2672. }
  2673. },
  2674. frontErect: {
  2675. height: math.unit(5 + 5 / 12, "feet"),
  2676. weight: math.unit(75, "kg"),
  2677. name: "Front (Erect)",
  2678. image: {
  2679. source: "./media/characters/natasha/front-erect.svg",
  2680. extra: 859 / 824,
  2681. bottom: 23 / 879.6
  2682. }
  2683. },
  2684. back: {
  2685. height: math.unit(5 + 5 / 12, "feet"),
  2686. weight: math.unit(75, "kg"),
  2687. name: "Back",
  2688. image: {
  2689. source: "./media/characters/natasha/back.svg",
  2690. extra: 887.9 / 852.6,
  2691. bottom: 9.7 / 896.4
  2692. }
  2693. },
  2694. backAlt: {
  2695. height: math.unit(5 + 5 / 12, "feet"),
  2696. weight: math.unit(75, "kg"),
  2697. name: "Back (Alt)",
  2698. image: {
  2699. source: "./media/characters/natasha/back-alt.svg",
  2700. extra: 1236.7 / 1192,
  2701. bottom: 22.3 / 1258.2
  2702. }
  2703. },
  2704. dick: {
  2705. height: math.unit(1.772, "feet"),
  2706. name: "Dick",
  2707. image: {
  2708. source: "./media/characters/natasha/dick.svg"
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(0.250, "meters"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/natasha/paw.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Normal",
  2722. height: math.unit(5 + 5 / 12, "feet")
  2723. },
  2724. {
  2725. name: "Large",
  2726. height: math.unit(12, "feet")
  2727. },
  2728. {
  2729. name: "Macro",
  2730. height: math.unit(100, "feet"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Macro+",
  2735. height: math.unit(260, "feet")
  2736. },
  2737. {
  2738. name: "Macro++",
  2739. height: math.unit(1, "mile")
  2740. },
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2745. {
  2746. front: {
  2747. height: math.unit(6, "feet"),
  2748. weight: math.unit(75, "kg"),
  2749. name: "Front",
  2750. image: {
  2751. source: "./media/characters/malik/front.svg"
  2752. }
  2753. },
  2754. side: {
  2755. height: math.unit(6, "feet"),
  2756. weight: math.unit(75, "kg"),
  2757. name: "Side",
  2758. image: {
  2759. source: "./media/characters/malik/side.svg",
  2760. extra: 1.1539
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(6, "feet"),
  2765. weight: math.unit(75, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/malik/back.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(156, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Macro+",
  2780. height: math.unit(1188, "feet")
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/sefer/front.svg",
  2793. extra: 848 / 659,
  2794. bottom: 28.3 / 876.442
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/sefer/back.svg",
  2803. extra: 864 / 695,
  2804. bottom: 10 / 871
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Front (Dressed)",
  2811. image: {
  2812. source: "./media/characters/sefer/front-dressed.svg",
  2813. extra: 839 / 653,
  2814. bottom: 37.6 / 878
  2815. }
  2816. },
  2817. },
  2818. [
  2819. {
  2820. name: "Normal",
  2821. height: math.unit(6, "feet"),
  2822. default: true
  2823. },
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2828. {
  2829. body: {
  2830. height: math.unit(2.2428, "meter"),
  2831. weight: math.unit(124.738, "kg"),
  2832. name: "Body",
  2833. image: {
  2834. extra: 1225 / 1050,
  2835. source: "./media/characters/north/front.svg"
  2836. }
  2837. }
  2838. },
  2839. [
  2840. {
  2841. name: "Micro",
  2842. height: math.unit(4, "inches")
  2843. },
  2844. {
  2845. name: "Macro",
  2846. height: math.unit(63, "meters")
  2847. },
  2848. {
  2849. name: "Megamacro",
  2850. height: math.unit(101, "miles"),
  2851. default: true
  2852. }
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2857. {
  2858. angled: {
  2859. height: math.unit(4, "meter"),
  2860. weight: math.unit(150, "kg"),
  2861. name: "Angled",
  2862. image: {
  2863. source: "./media/characters/talan/angled-sfw.svg",
  2864. bottom: 29 / 3734
  2865. }
  2866. },
  2867. angledNsfw: {
  2868. height: math.unit(4, "meter"),
  2869. weight: math.unit(150, "kg"),
  2870. name: "Angled (NSFW)",
  2871. image: {
  2872. source: "./media/characters/talan/angled-nsfw.svg",
  2873. bottom: 29 / 3734
  2874. }
  2875. },
  2876. frontNsfw: {
  2877. height: math.unit(4, "meter"),
  2878. weight: math.unit(150, "kg"),
  2879. name: "Front (NSFW)",
  2880. image: {
  2881. source: "./media/characters/talan/front-nsfw.svg",
  2882. bottom: 29 / 3734
  2883. }
  2884. },
  2885. sideNsfw: {
  2886. height: math.unit(4, "meter"),
  2887. weight: math.unit(150, "kg"),
  2888. name: "Side (NSFW)",
  2889. image: {
  2890. source: "./media/characters/talan/side-nsfw.svg",
  2891. bottom: 29 / 3734
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(4, "meter"),
  2896. weight: math.unit(150, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/talan/back.svg"
  2900. }
  2901. },
  2902. dickBottom: {
  2903. height: math.unit(0.621, "meter"),
  2904. name: "Dick (Bottom)",
  2905. image: {
  2906. source: "./media/characters/talan/dick-bottom.svg"
  2907. }
  2908. },
  2909. dickTop: {
  2910. height: math.unit(0.621, "meter"),
  2911. name: "Dick (Top)",
  2912. image: {
  2913. source: "./media/characters/talan/dick-top.svg"
  2914. }
  2915. },
  2916. dickSide: {
  2917. height: math.unit(0.305, "meter"),
  2918. name: "Dick (Side)",
  2919. image: {
  2920. source: "./media/characters/talan/dick-side.svg"
  2921. }
  2922. },
  2923. dickFront: {
  2924. height: math.unit(0.305, "meter"),
  2925. name: "Dick (Front)",
  2926. image: {
  2927. source: "./media/characters/talan/dick-front.svg"
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(4, "meters")
  2935. },
  2936. {
  2937. name: "Macro",
  2938. height: math.unit(100, "meters")
  2939. },
  2940. {
  2941. name: "Megamacro",
  2942. height: math.unit(2, "miles"),
  2943. default: true
  2944. },
  2945. {
  2946. name: "Gigamacro",
  2947. height: math.unit(5000, "miles")
  2948. },
  2949. {
  2950. name: "Teramacro",
  2951. height: math.unit(100, "parsecs")
  2952. }
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(2, "meter"),
  2960. weight: math.unit(90, "kg"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/gael'rathus/front.svg"
  2964. }
  2965. },
  2966. frontAlt: {
  2967. height: math.unit(2, "meter"),
  2968. weight: math.unit(90, "kg"),
  2969. name: "Front (alt)",
  2970. image: {
  2971. source: "./media/characters/gael'rathus/front-alt.svg"
  2972. }
  2973. },
  2974. frontAlt2: {
  2975. height: math.unit(2, "meter"),
  2976. weight: math.unit(90, "kg"),
  2977. name: "Front (alt 2)",
  2978. image: {
  2979. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2980. }
  2981. }
  2982. },
  2983. [
  2984. {
  2985. name: "Normal",
  2986. height: math.unit(9, "feet"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Large",
  2991. height: math.unit(25, "feet")
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(0.25, "miles")
  2996. },
  2997. {
  2998. name: "Megamacro",
  2999. height: math.unit(10, "miles")
  3000. }
  3001. ]
  3002. ))
  3003. characterMakers.push(() => makeCharacter(
  3004. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3005. {
  3006. side: {
  3007. height: math.unit(2, "meter"),
  3008. weight: math.unit(140, "kg"),
  3009. name: "Side",
  3010. image: {
  3011. source: "./media/characters/sosha/side.svg",
  3012. bottom: 0.042
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Normal",
  3019. height: math.unit(12, "feet"),
  3020. default: true
  3021. }
  3022. ]
  3023. ))
  3024. characterMakers.push(() => makeCharacter(
  3025. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3026. {
  3027. side: {
  3028. height: math.unit(5 + 5 / 12, "feet"),
  3029. weight: math.unit(170, "kg"),
  3030. name: "Side",
  3031. image: {
  3032. source: "./media/characters/runnola/side.svg",
  3033. extra: 741 / 448,
  3034. bottom: 0.05
  3035. }
  3036. },
  3037. },
  3038. [
  3039. {
  3040. name: "Small",
  3041. height: math.unit(3, "feet")
  3042. },
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(5 + 5 / 12, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Big",
  3050. height: math.unit(10, "feet")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(50, "kg"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/kurribird/front.svg",
  3063. bottom: 0.015
  3064. }
  3065. },
  3066. frontAlt: {
  3067. height: math.unit(1.5, "meter"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front (Alt)",
  3070. image: {
  3071. source: "./media/characters/kurribird/front-alt.svg",
  3072. extra: 1.45
  3073. }
  3074. },
  3075. },
  3076. [
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(7, "feet")
  3080. },
  3081. {
  3082. name: "Big",
  3083. height: math.unit(12, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. {
  3091. name: "Megamacro",
  3092. height: math.unit(2, "miles")
  3093. }
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3098. {
  3099. front: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(80, "kg"),
  3102. name: "Front",
  3103. image: {
  3104. source: "./media/characters/elbial/front.svg",
  3105. extra: 1643 / 1556,
  3106. bottom: 60.2 / 1696
  3107. }
  3108. },
  3109. side: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(80, "kg"),
  3112. name: "Side",
  3113. image: {
  3114. source: "./media/characters/elbial/side.svg",
  3115. extra: 1630 / 1565,
  3116. bottom: 71.5 / 1697
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(80, "kg"),
  3122. name: "Back",
  3123. image: {
  3124. source: "./media/characters/elbial/back.svg",
  3125. extra: 1668 / 1595,
  3126. bottom: 5.6 / 1672
  3127. }
  3128. },
  3129. frontDressed: {
  3130. height: math.unit(2, "meter"),
  3131. weight: math.unit(80, "kg"),
  3132. name: "Front (Dressed)",
  3133. image: {
  3134. source: "./media/characters/elbial/front-dressed.svg",
  3135. extra: 1653 / 1584,
  3136. bottom: 57 / 1708
  3137. }
  3138. },
  3139. genitals: {
  3140. height: math.unit(2 / 3.367, "meter"),
  3141. name: "Genitals",
  3142. image: {
  3143. source: "./media/characters/elbial/genitals.svg"
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Large",
  3150. height: math.unit(100, "feet")
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(500, "feet"),
  3155. default: true
  3156. },
  3157. {
  3158. name: "Megamacro",
  3159. height: math.unit(10, "miles")
  3160. },
  3161. {
  3162. name: "Gigamacro",
  3163. height: math.unit(25000, "miles")
  3164. },
  3165. {
  3166. name: "Full-Size",
  3167. height: math.unit(8000000, "gigaparsecs")
  3168. }
  3169. ]
  3170. ))
  3171. characterMakers.push(() => makeCharacter(
  3172. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3173. {
  3174. front: {
  3175. height: math.unit(2, "meter"),
  3176. weight: math.unit(60, "kg"),
  3177. name: "Front",
  3178. image: {
  3179. source: "./media/characters/noah/front.svg"
  3180. }
  3181. },
  3182. talons: {
  3183. height: math.unit(0.315, "meter"),
  3184. name: "Talons",
  3185. image: {
  3186. source: "./media/characters/noah/talons.svg"
  3187. }
  3188. }
  3189. },
  3190. [
  3191. {
  3192. name: "Large",
  3193. height: math.unit(50, "feet")
  3194. },
  3195. {
  3196. name: "Macro",
  3197. height: math.unit(750, "feet"),
  3198. default: true
  3199. },
  3200. {
  3201. name: "Megamacro",
  3202. height: math.unit(50, "miles")
  3203. },
  3204. {
  3205. name: "Gigamacro",
  3206. height: math.unit(100000, "miles")
  3207. },
  3208. {
  3209. name: "Full-Size",
  3210. height: math.unit(3000000000, "miles")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(80, "kg"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/natalya/front.svg"
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(80, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/natalya/back.svg"
  3231. }
  3232. }
  3233. },
  3234. [
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(150, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Megamacro",
  3242. height: math.unit(5, "miles")
  3243. },
  3244. {
  3245. name: "Full-Size",
  3246. height: math.unit(600, "kiloparsecs")
  3247. }
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(2, "meter"),
  3255. weight: math.unit(50, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/erestrebah/front.svg",
  3259. extra: 208 / 193,
  3260. bottom: 0.055
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(2, "meter"),
  3265. weight: math.unit(50, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/erestrebah/back.svg",
  3269. extra: 1.3
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(10, "feet")
  3277. },
  3278. {
  3279. name: "Large",
  3280. height: math.unit(50, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(300, "feet")
  3286. },
  3287. {
  3288. name: "Macro+",
  3289. height: math.unit(750, "feet")
  3290. },
  3291. {
  3292. name: "Megamacro",
  3293. height: math.unit(3, "miles")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(80, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/jennifer/front.svg",
  3306. bottom: 0.11,
  3307. extra: 1.16
  3308. }
  3309. },
  3310. frontAlt: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(80, "kg"),
  3313. name: "Front (Alt)",
  3314. image: {
  3315. source: "./media/characters/jennifer/front-alt.svg"
  3316. }
  3317. }
  3318. },
  3319. [
  3320. {
  3321. name: "Canon Height",
  3322. height: math.unit(120, "feet"),
  3323. default: true
  3324. },
  3325. {
  3326. name: "Macro+",
  3327. height: math.unit(300, "feet")
  3328. },
  3329. {
  3330. name: "Megamacro",
  3331. height: math.unit(20000, "feet")
  3332. }
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(50, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/kalista/front.svg",
  3344. extra: 1947 / 1700,
  3345. bottom: 76.6 / 1412.98
  3346. }
  3347. },
  3348. back: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(50, "kg"),
  3351. name: "Back",
  3352. image: {
  3353. source: "./media/characters/kalista/back.svg",
  3354. extra: 1366 / 1156,
  3355. bottom: 33.9 / 1362.78
  3356. }
  3357. }
  3358. },
  3359. [
  3360. {
  3361. name: "Uncomfortably Small",
  3362. height: math.unit(10, "feet")
  3363. },
  3364. {
  3365. name: "Small",
  3366. height: math.unit(30, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(100, "feet"),
  3371. default: true
  3372. },
  3373. {
  3374. name: "Macro+",
  3375. height: math.unit(2000, "feet")
  3376. },
  3377. {
  3378. name: "True Form",
  3379. height: math.unit(8924, "miles")
  3380. }
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(120, "kg"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/ggv/front.svg"
  3392. }
  3393. },
  3394. side: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(120, "kg"),
  3397. name: "Side",
  3398. image: {
  3399. source: "./media/characters/ggv/side.svg"
  3400. }
  3401. }
  3402. },
  3403. [
  3404. {
  3405. name: "Extremely Puny",
  3406. height: math.unit(9 + 5 / 12, "feet")
  3407. },
  3408. {
  3409. name: "Horribly Small",
  3410. height: math.unit(47.7, "miles"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Reasonably Sized",
  3415. height: math.unit(25000, "parsecs")
  3416. },
  3417. {
  3418. name: "Slightly Uncompressed",
  3419. height: math.unit(7.77e31, "parsecs")
  3420. },
  3421. {
  3422. name: "Omniversal",
  3423. height: math.unit(1e300, "meters")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(2, "meter"),
  3432. weight: math.unit(75, "lb"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/napalm/front.svg"
  3436. }
  3437. },
  3438. back: {
  3439. height: math.unit(2, "meter"),
  3440. weight: math.unit(75, "lb"),
  3441. name: "Back",
  3442. image: {
  3443. source: "./media/characters/napalm/back.svg"
  3444. }
  3445. }
  3446. },
  3447. [
  3448. {
  3449. name: "Standard",
  3450. height: math.unit(55, "feet"),
  3451. default: true
  3452. }
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(7 + 5 / 6, "feet"),
  3460. weight: math.unit(325, "lb"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/asana/front.svg",
  3464. extra: 1133 / 1060,
  3465. bottom: 15.2 / 1148.6
  3466. }
  3467. },
  3468. back: {
  3469. height: math.unit(7 + 5 / 6, "feet"),
  3470. weight: math.unit(325, "lb"),
  3471. name: "Back",
  3472. image: {
  3473. source: "./media/characters/asana/back.svg",
  3474. extra: 1114 / 1043,
  3475. bottom: 5 / 1120
  3476. }
  3477. },
  3478. dressedDark: {
  3479. height: math.unit(7 + 5 / 6, "feet"),
  3480. weight: math.unit(325, "lb"),
  3481. name: "Dressed (Dark)",
  3482. image: {
  3483. source: "./media/characters/asana/dressed-dark.svg",
  3484. extra: 1133 / 1060,
  3485. bottom: 15.2 / 1148.6
  3486. }
  3487. },
  3488. dressedLight: {
  3489. height: math.unit(7 + 5 / 6, "feet"),
  3490. weight: math.unit(325, "lb"),
  3491. name: "Dressed (Light)",
  3492. image: {
  3493. source: "./media/characters/asana/dressed-light.svg",
  3494. extra: 1133 / 1060,
  3495. bottom: 15.2 / 1148.6
  3496. }
  3497. },
  3498. },
  3499. [
  3500. {
  3501. name: "Standard",
  3502. height: math.unit(7 + 5 / 6, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Large",
  3507. height: math.unit(10, "meters")
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(2500, "meters")
  3512. },
  3513. {
  3514. name: "Megamacro",
  3515. height: math.unit(5e6, "meters")
  3516. },
  3517. {
  3518. name: "Examacro",
  3519. height: math.unit(5e12, "lightyears")
  3520. },
  3521. {
  3522. name: "Max Size",
  3523. height: math.unit(1e31, "lightyears")
  3524. }
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3529. {
  3530. front: {
  3531. height: math.unit(2, "meter"),
  3532. weight: math.unit(60, "kg"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/ebony/front.svg",
  3536. bottom: 0.03,
  3537. extra: 1045 / 810 + 0.03
  3538. }
  3539. },
  3540. side: {
  3541. height: math.unit(2, "meter"),
  3542. weight: math.unit(60, "kg"),
  3543. name: "Side",
  3544. image: {
  3545. source: "./media/characters/ebony/side.svg",
  3546. bottom: 0.03,
  3547. extra: 1045 / 810 + 0.03
  3548. }
  3549. },
  3550. back: {
  3551. height: math.unit(2, "meter"),
  3552. weight: math.unit(60, "kg"),
  3553. name: "Back",
  3554. image: {
  3555. source: "./media/characters/ebony/back.svg",
  3556. bottom: 0.01,
  3557. extra: 1045 / 810 + 0.01
  3558. }
  3559. },
  3560. },
  3561. [
  3562. // TODO check why I did this lol
  3563. {
  3564. name: "Standard",
  3565. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3566. default: true
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(200, "feet")
  3571. },
  3572. {
  3573. name: "Gigamacro",
  3574. height: math.unit(13000, "km")
  3575. }
  3576. ]
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3580. {
  3581. front: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(175, "lb"),
  3584. name: "Front",
  3585. image: {
  3586. source: "./media/characters/mountain/front.svg",
  3587. extra: 972 / 955,
  3588. bottom: 64 / 1036.6
  3589. }
  3590. },
  3591. back: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(175, "lb"),
  3594. name: "Back",
  3595. image: {
  3596. source: "./media/characters/mountain/back.svg",
  3597. extra: 970 / 950,
  3598. bottom: 28.25 / 999
  3599. }
  3600. },
  3601. },
  3602. [
  3603. {
  3604. name: "Large",
  3605. height: math.unit(20, "meters")
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(300, "meters")
  3610. },
  3611. {
  3612. name: "Gigamacro",
  3613. height: math.unit(10000, "km"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Examacro",
  3618. height: math.unit(10e9, "lightyears")
  3619. }
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(8, "feet"),
  3627. weight: math.unit(500, "lb"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/rick/front.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Normal",
  3637. height: math.unit(8, "feet"),
  3638. default: true
  3639. },
  3640. {
  3641. name: "Macro",
  3642. height: math.unit(5, "km")
  3643. }
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(8, "feet"),
  3651. weight: math.unit(120, "lb"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/ona/front.svg"
  3655. }
  3656. },
  3657. frontAlt: {
  3658. height: math.unit(8, "feet"),
  3659. weight: math.unit(120, "lb"),
  3660. name: "Front (Alt)",
  3661. image: {
  3662. source: "./media/characters/ona/front-alt.svg"
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(8, "feet"),
  3667. weight: math.unit(120, "lb"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/ona/back.svg"
  3671. }
  3672. },
  3673. foot: {
  3674. height: math.unit(1.1, "feet"),
  3675. name: "Foot",
  3676. image: {
  3677. source: "./media/characters/ona/foot.svg"
  3678. }
  3679. }
  3680. },
  3681. [
  3682. {
  3683. name: "Megamacro",
  3684. height: math.unit(70, "km"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Gigamacro",
  3689. height: math.unit(681818, "miles")
  3690. },
  3691. {
  3692. name: "Examacro",
  3693. height: math.unit(3800000, "lightyears")
  3694. },
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3699. {
  3700. front: {
  3701. height: math.unit(12, "feet"),
  3702. weight: math.unit(3000, "lb"),
  3703. name: "Front",
  3704. image: {
  3705. source: "./media/characters/mech/front.svg",
  3706. extra: 2900 / 2770,
  3707. bottom: 110 / 3010
  3708. }
  3709. },
  3710. back: {
  3711. height: math.unit(12, "feet"),
  3712. weight: math.unit(3000, "lb"),
  3713. name: "Back",
  3714. image: {
  3715. source: "./media/characters/mech/back.svg",
  3716. extra: 3011 / 2890,
  3717. bottom: 94 / 3105
  3718. }
  3719. },
  3720. maw: {
  3721. height: math.unit(3.07, "feet"),
  3722. name: "Maw",
  3723. image: {
  3724. source: "./media/characters/mech/maw.svg"
  3725. }
  3726. },
  3727. head: {
  3728. height: math.unit(2.82, "feet"),
  3729. name: "Head",
  3730. image: {
  3731. source: "./media/characters/mech/head.svg"
  3732. }
  3733. },
  3734. dick: {
  3735. height: math.unit(1.43, "feet"),
  3736. name: "Dick",
  3737. image: {
  3738. source: "./media/characters/mech/dick.svg"
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(12, "feet")
  3746. },
  3747. {
  3748. name: "Macro",
  3749. height: math.unit(300, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Macro+",
  3754. height: math.unit(1500, "feet")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(1.3, "meter"),
  3763. weight: math.unit(30, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/gregory/front.svg",
  3767. }
  3768. }
  3769. },
  3770. [
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(1.3, "meter"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(20, "meter")
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(2.8, "meter"),
  3787. weight: math.unit(200, "kg"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/elory/front.svg",
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Normal",
  3797. height: math.unit(2.8, "meter"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(38, "meter")
  3803. }
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(470, "feet"),
  3811. weight: math.unit(924, "tons"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/angelpatamon/front.svg",
  3815. }
  3816. }
  3817. },
  3818. [
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(470, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Deity Size I",
  3826. height: math.unit(28651.2, "km")
  3827. },
  3828. {
  3829. name: "Deity Size II",
  3830. height: math.unit(171907.2, "km")
  3831. }
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3836. {
  3837. side: {
  3838. height: math.unit(7.2, "meter"),
  3839. weight: math.unit(8.2, "tons"),
  3840. name: "Side",
  3841. image: {
  3842. source: "./media/characters/cryae/side.svg",
  3843. extra: 3500 / 1500
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Normal",
  3850. height: math.unit(7.2, "meter"),
  3851. default: true
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(175, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/xera/front.svg",
  3864. extra: 2377 / 1972,
  3865. bottom: 75.5 / 2452
  3866. }
  3867. },
  3868. side: {
  3869. height: math.unit(6, "feet"),
  3870. weight: math.unit(175, "lb"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/xera/side.svg",
  3874. extra: 2345 / 2019,
  3875. bottom: 39.7 / 2384
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(6, "feet"),
  3880. weight: math.unit(175, "lb"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/xera/back.svg",
  3884. extra: 2095 / 1984,
  3885. bottom: 67 / 2166
  3886. }
  3887. },
  3888. },
  3889. [
  3890. {
  3891. name: "Small",
  3892. height: math.unit(10, "feet")
  3893. },
  3894. {
  3895. name: "Macro",
  3896. height: math.unit(500, "meters"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Macro+",
  3901. height: math.unit(10, "km")
  3902. },
  3903. {
  3904. name: "Gigamacro",
  3905. height: math.unit(25000, "km")
  3906. },
  3907. {
  3908. name: "Teramacro",
  3909. height: math.unit(3e6, "km")
  3910. }
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3915. {
  3916. front: {
  3917. height: math.unit(6, "feet"),
  3918. weight: math.unit(175, "lb"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/nebula/front.svg",
  3922. extra: 2566 / 2362,
  3923. bottom: 81 / 2644
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Small",
  3930. height: math.unit(4.5, "meters")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(1500, "meters"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(150, "km")
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(27000, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(225, "lb"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/abysgar/front.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Small",
  3962. height: math.unit(4.5, "meters")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(1250, "meters"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Megamacro",
  3971. height: math.unit(125, "km")
  3972. },
  3973. {
  3974. name: "Gigamacro",
  3975. height: math.unit(26000, "km")
  3976. }
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(180, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/yakuz/front.svg"
  3988. }
  3989. }
  3990. },
  3991. [
  3992. {
  3993. name: "Small",
  3994. height: math.unit(5, "meters")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(1500, "meters"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(200, "km")
  4004. },
  4005. {
  4006. name: "Gigamacro",
  4007. height: math.unit(100000, "km")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(175, "lb"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/mirova/front.svg",
  4020. extra: 3334 / 3071,
  4021. bottom: 42 / 3375.6
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Small",
  4028. height: math.unit(5, "meters")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(900, "meters"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(135, "km")
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(20000, "km")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4047. {
  4048. side: {
  4049. height: math.unit(28.35, "feet"),
  4050. weight: math.unit(99.75, "tons"),
  4051. name: "Side",
  4052. image: {
  4053. source: "./media/characters/asana-mech/side.svg",
  4054. extra: 923 / 699,
  4055. bottom: 50 / 975
  4056. }
  4057. },
  4058. chaingun: {
  4059. height: math.unit(7, "feet"),
  4060. weight: math.unit(2400, "lb"),
  4061. name: "Chaingun",
  4062. image: {
  4063. source: "./media/characters/asana-mech/chaingun.svg"
  4064. }
  4065. },
  4066. laser: {
  4067. height: math.unit(7.12, "feet"),
  4068. weight: math.unit(2000, "lb"),
  4069. name: "Laser",
  4070. image: {
  4071. source: "./media/characters/asana-mech/laser.svg"
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Normal",
  4078. height: math.unit(28.35, "feet"),
  4079. default: true
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(2500, "feet")
  4084. },
  4085. {
  4086. name: "Megamacro",
  4087. height: math.unit(25, "miles")
  4088. },
  4089. {
  4090. name: "Examacro",
  4091. height: math.unit(6e8, "lightyears")
  4092. },
  4093. ]
  4094. ))
  4095. characterMakers.push(() => makeCharacter(
  4096. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4097. {
  4098. front: {
  4099. height: math.unit(5, "meters"),
  4100. weight: math.unit(1000, "kg"),
  4101. name: "Front",
  4102. image: {
  4103. source: "./media/characters/asche/front.svg",
  4104. extra: 1258 / 1190,
  4105. bottom: 47 / 1305
  4106. }
  4107. },
  4108. frontUnderwear: {
  4109. height: math.unit(5, "meters"),
  4110. weight: math.unit(1000, "kg"),
  4111. name: "Front (Underwear)",
  4112. image: {
  4113. source: "./media/characters/asche/front-underwear.svg",
  4114. extra: 1258 / 1190,
  4115. bottom: 47 / 1305
  4116. }
  4117. },
  4118. frontDressed: {
  4119. height: math.unit(5, "meters"),
  4120. weight: math.unit(1000, "kg"),
  4121. name: "Front (Dressed)",
  4122. image: {
  4123. source: "./media/characters/asche/front-dressed.svg",
  4124. extra: 1258 / 1190,
  4125. bottom: 47 / 1305
  4126. }
  4127. },
  4128. frontArmor: {
  4129. height: math.unit(5, "meters"),
  4130. weight: math.unit(1000, "kg"),
  4131. name: "Front (Armored)",
  4132. image: {
  4133. source: "./media/characters/asche/front-armored.svg",
  4134. extra: 1374 / 1308,
  4135. bottom: 23 / 1397
  4136. }
  4137. },
  4138. mp724: {
  4139. height: math.unit(0.96, "meters"),
  4140. weight: math.unit(38, "kg"),
  4141. name: "H&K MP724",
  4142. image: {
  4143. source: "./media/characters/asche/h&k-mp724.svg"
  4144. }
  4145. },
  4146. side: {
  4147. height: math.unit(5, "meters"),
  4148. weight: math.unit(1000, "kg"),
  4149. name: "Side",
  4150. image: {
  4151. source: "./media/characters/asche/side.svg",
  4152. extra: 1717 / 1609,
  4153. bottom: 0.005
  4154. }
  4155. },
  4156. back: {
  4157. height: math.unit(5, "meters"),
  4158. weight: math.unit(1000, "kg"),
  4159. name: "Back",
  4160. image: {
  4161. source: "./media/characters/asche/back.svg",
  4162. extra: 1570 / 1501
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "DEFCON 5",
  4169. height: math.unit(5, "meters")
  4170. },
  4171. {
  4172. name: "DEFCON 4",
  4173. height: math.unit(500, "meters"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "DEFCON 3",
  4178. height: math.unit(5, "km")
  4179. },
  4180. {
  4181. name: "DEFCON 2",
  4182. height: math.unit(500, "km")
  4183. },
  4184. {
  4185. name: "DEFCON 1",
  4186. height: math.unit(500000, "km")
  4187. },
  4188. {
  4189. name: "DEFCON 0",
  4190. height: math.unit(3, "gigaparsecs")
  4191. },
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4196. {
  4197. front: {
  4198. height: math.unit(2, "meters"),
  4199. weight: math.unit(76, "kg"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/gale/front.svg"
  4203. }
  4204. },
  4205. frontAlt1: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(76, "kg"),
  4208. name: "Front (Alt 1)",
  4209. image: {
  4210. source: "./media/characters/gale/front-alt-1.svg"
  4211. }
  4212. },
  4213. frontAlt2: {
  4214. height: math.unit(2, "meters"),
  4215. weight: math.unit(76, "kg"),
  4216. name: "Front (Alt 2)",
  4217. image: {
  4218. source: "./media/characters/gale/front-alt-2.svg"
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(7, "feet")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(150, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Macro+",
  4234. height: math.unit(300, "feet")
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(2, "meters"),
  4243. weight: math.unit(76, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/draylen/front.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(150, "feet"),
  4254. default: true
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(7 + 9 / 12, "feet"),
  4263. weight: math.unit(379, "lbs"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/chez/front.svg"
  4267. }
  4268. },
  4269. side: {
  4270. height: math.unit(7 + 9 / 12, "feet"),
  4271. weight: math.unit(379, "lbs"),
  4272. name: "Side",
  4273. image: {
  4274. source: "./media/characters/chez/side.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(7 + 9 / 12, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "God King",
  4286. height: math.unit(9750000, "meters")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(6, "feet"),
  4295. weight: math.unit(275, "lbs"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/kaylum/front.svg",
  4299. bottom: 0.01,
  4300. extra: 1166 / 1031
  4301. }
  4302. },
  4303. frontWingless: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(275, "lbs"),
  4306. name: "Front (Wingless)",
  4307. image: {
  4308. source: "./media/characters/kaylum/front-wingless.svg",
  4309. bottom: 0.01,
  4310. extra: 1117 / 1031
  4311. }
  4312. }
  4313. },
  4314. [
  4315. {
  4316. name: "Normal",
  4317. height: math.unit(3.05, "meters")
  4318. },
  4319. {
  4320. name: "Master",
  4321. height: math.unit(5.5, "meters")
  4322. },
  4323. {
  4324. name: "Rampage",
  4325. height: math.unit(19, "meters")
  4326. },
  4327. {
  4328. name: "Macro Lite",
  4329. height: math.unit(37, "meters")
  4330. },
  4331. {
  4332. name: "Hyper Predator",
  4333. height: math.unit(61, "meters")
  4334. },
  4335. {
  4336. name: "Macro",
  4337. height: math.unit(138, "meters"),
  4338. default: true
  4339. }
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4344. {
  4345. front: {
  4346. height: math.unit(6, "feet"),
  4347. weight: math.unit(150, "lbs"),
  4348. name: "Front",
  4349. image: {
  4350. source: "./media/characters/geta/front.svg"
  4351. }
  4352. }
  4353. },
  4354. [
  4355. {
  4356. name: "Micro",
  4357. height: math.unit(3, "inches"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Normal",
  4362. height: math.unit(5 + 5 / 12, "feet")
  4363. }
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4368. {
  4369. front: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(300, "lbs"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/tyrnn/front.svg"
  4375. }
  4376. }
  4377. },
  4378. [
  4379. {
  4380. name: "Main Height",
  4381. height: math.unit(355, "feet"),
  4382. default: true
  4383. },
  4384. {
  4385. name: "Fave. Height",
  4386. height: math.unit(2400, "feet")
  4387. }
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4392. {
  4393. front: {
  4394. height: math.unit(6, "feet"),
  4395. weight: math.unit(300, "lbs"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/appledectomy/front.svg"
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Macro",
  4405. height: math.unit(2500, "feet")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(50, "miles"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Gigamacro",
  4414. height: math.unit(5000, "miles")
  4415. },
  4416. {
  4417. name: "Teramacro",
  4418. height: math.unit(250000, "miles")
  4419. },
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(200, "lbs"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/vulpes/front.svg",
  4431. extra: 573 / 543,
  4432. bottom: 0.033
  4433. }
  4434. },
  4435. side: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(200, "lbs"),
  4438. name: "Side",
  4439. image: {
  4440. source: "./media/characters/vulpes/side.svg",
  4441. extra: 577 / 549,
  4442. bottom: 11 / 588
  4443. }
  4444. },
  4445. back: {
  4446. height: math.unit(6, "feet"),
  4447. weight: math.unit(200, "lbs"),
  4448. name: "Back",
  4449. image: {
  4450. source: "./media/characters/vulpes/back.svg",
  4451. extra: 573 / 549,
  4452. bottom: 20 / 593
  4453. }
  4454. },
  4455. feet: {
  4456. height: math.unit(1.276, "feet"),
  4457. name: "Feet",
  4458. image: {
  4459. source: "./media/characters/vulpes/feet.svg"
  4460. }
  4461. },
  4462. maw: {
  4463. height: math.unit(1.18, "feet"),
  4464. name: "Maw",
  4465. image: {
  4466. source: "./media/characters/vulpes/maw.svg"
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Micro",
  4473. height: math.unit(2, "inches")
  4474. },
  4475. {
  4476. name: "Normal",
  4477. height: math.unit(6.3, "feet")
  4478. },
  4479. {
  4480. name: "Macro",
  4481. height: math.unit(850, "feet")
  4482. },
  4483. {
  4484. name: "Megamacro",
  4485. height: math.unit(7500, "feet"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "Gigamacro",
  4490. height: math.unit(570000, "miles")
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4496. {
  4497. front: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(210, "lbs"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/rain-fallen/front.svg"
  4503. }
  4504. },
  4505. side: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(210, "lbs"),
  4508. name: "Side",
  4509. image: {
  4510. source: "./media/characters/rain-fallen/side.svg"
  4511. }
  4512. },
  4513. back: {
  4514. height: math.unit(6, "feet"),
  4515. weight: math.unit(210, "lbs"),
  4516. name: "Back",
  4517. image: {
  4518. source: "./media/characters/rain-fallen/back.svg"
  4519. }
  4520. },
  4521. feral: {
  4522. height: math.unit(9, "feet"),
  4523. weight: math.unit(700, "lbs"),
  4524. name: "Feral",
  4525. image: {
  4526. source: "./media/characters/rain-fallen/feral.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Meddling with Mortals",
  4533. height: math.unit(8 + 8/12, "feet")
  4534. },
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(5, "meter")
  4538. },
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(150, "meter"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(278e6, "meter")
  4547. },
  4548. {
  4549. name: "Gigamacro",
  4550. height: math.unit(2e9, "meter")
  4551. },
  4552. {
  4553. name: "Teramacro",
  4554. height: math.unit(8e12, "meter")
  4555. },
  4556. {
  4557. name: "Devourer",
  4558. height: math.unit(14, "zettameters")
  4559. },
  4560. {
  4561. name: "Scarlet King",
  4562. height: math.unit(18, "yottameters")
  4563. },
  4564. {
  4565. name: "Void",
  4566. height: math.unit(1e88, "yottameters")
  4567. }
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4572. {
  4573. standing: {
  4574. height: math.unit(6, "feet"),
  4575. weight: math.unit(180, "lbs"),
  4576. name: "Standing",
  4577. image: {
  4578. source: "./media/characters/zaakira/standing.svg",
  4579. extra: 1599/1504,
  4580. bottom: 39/1638
  4581. }
  4582. },
  4583. laying: {
  4584. height: math.unit(3, "feet"),
  4585. weight: math.unit(180, "lbs"),
  4586. name: "Laying",
  4587. image: {
  4588. source: "./media/characters/zaakira/laying.svg"
  4589. }
  4590. },
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(12, "feet")
  4596. },
  4597. {
  4598. name: "Macro",
  4599. height: math.unit(279, "feet"),
  4600. default: true
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4606. {
  4607. femSfw: {
  4608. height: math.unit(8, "feet"),
  4609. weight: math.unit(350, "lb"),
  4610. name: "Fem",
  4611. image: {
  4612. source: "./media/characters/sigvald/fem-sfw.svg",
  4613. extra: 182 / 164,
  4614. bottom: 8.7 / 190.5
  4615. }
  4616. },
  4617. femNsfw: {
  4618. height: math.unit(8, "feet"),
  4619. weight: math.unit(350, "lb"),
  4620. name: "Fem (NSFW)",
  4621. image: {
  4622. source: "./media/characters/sigvald/fem-nsfw.svg",
  4623. extra: 182 / 164,
  4624. bottom: 8.7 / 190.5
  4625. }
  4626. },
  4627. maleNsfw: {
  4628. height: math.unit(8, "feet"),
  4629. weight: math.unit(350, "lb"),
  4630. name: "Male (NSFW)",
  4631. image: {
  4632. source: "./media/characters/sigvald/male-nsfw.svg",
  4633. extra: 182 / 164,
  4634. bottom: 8.7 / 190.5
  4635. }
  4636. },
  4637. hermNsfw: {
  4638. height: math.unit(8, "feet"),
  4639. weight: math.unit(350, "lb"),
  4640. name: "Herm (NSFW)",
  4641. image: {
  4642. source: "./media/characters/sigvald/herm-nsfw.svg",
  4643. extra: 182 / 164,
  4644. bottom: 8.7 / 190.5
  4645. }
  4646. },
  4647. dick: {
  4648. height: math.unit(2.36, "feet"),
  4649. name: "Dick",
  4650. image: {
  4651. source: "./media/characters/sigvald/dick.svg"
  4652. }
  4653. },
  4654. eye: {
  4655. height: math.unit(0.31, "feet"),
  4656. name: "Eye",
  4657. image: {
  4658. source: "./media/characters/sigvald/eye.svg"
  4659. }
  4660. },
  4661. mouth: {
  4662. height: math.unit(0.92, "feet"),
  4663. name: "Mouth",
  4664. image: {
  4665. source: "./media/characters/sigvald/mouth.svg"
  4666. }
  4667. },
  4668. paws: {
  4669. height: math.unit(2.2, "feet"),
  4670. name: "Paws",
  4671. image: {
  4672. source: "./media/characters/sigvald/paws.svg"
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(8, "feet")
  4680. },
  4681. {
  4682. name: "Large",
  4683. height: math.unit(12, "feet")
  4684. },
  4685. {
  4686. name: "Larger",
  4687. height: math.unit(20, "feet")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(150, "feet")
  4692. },
  4693. {
  4694. name: "Macro+",
  4695. height: math.unit(200, "feet"),
  4696. default: true
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4702. {
  4703. side: {
  4704. height: math.unit(12, "feet"),
  4705. weight: math.unit(2000, "kg"),
  4706. name: "Side",
  4707. image: {
  4708. source: "./media/characters/scott/side.svg",
  4709. extra: 754 / 724,
  4710. bottom: 0.069
  4711. }
  4712. },
  4713. upright: {
  4714. height: math.unit(12, "feet"),
  4715. weight: math.unit(2000, "kg"),
  4716. name: "Upright",
  4717. image: {
  4718. source: "./media/characters/scott/upright.svg",
  4719. extra: 3881 / 3722,
  4720. bottom: 0.05
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(12, "feet"),
  4728. default: true
  4729. },
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4734. {
  4735. side: {
  4736. height: math.unit(8, "meters"),
  4737. weight: math.unit(84755, "lbs"),
  4738. name: "Side",
  4739. image: {
  4740. source: "./media/characters/tobias/side.svg",
  4741. extra: 1474 / 1096,
  4742. bottom: 38.9 / 1513.1235
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(8, "meters"),
  4750. default: true
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4756. {
  4757. front: {
  4758. height: math.unit(5.5, "feet"),
  4759. weight: math.unit(400, "lbs"),
  4760. name: "Front",
  4761. image: {
  4762. source: "./media/characters/kieran/front.svg",
  4763. extra: 2694 / 2364,
  4764. bottom: 217 / 2908
  4765. }
  4766. },
  4767. side: {
  4768. height: math.unit(5.5, "feet"),
  4769. weight: math.unit(400, "lbs"),
  4770. name: "Side",
  4771. image: {
  4772. source: "./media/characters/kieran/side.svg",
  4773. extra: 875 / 777,
  4774. bottom: 84.6 / 959
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(5.5, "feet"),
  4782. default: true
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4788. {
  4789. side: {
  4790. height: math.unit(2, "meters"),
  4791. weight: math.unit(70, "kg"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/sanya/side.svg",
  4795. bottom: 0.02,
  4796. extra: 1.02
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Small",
  4803. height: math.unit(2, "meters")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3, "meters")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(16, "meters"),
  4812. default: true
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(2, "meters"),
  4821. weight: math.unit(120, "kg"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/miranda/front.svg",
  4825. extra: 195 / 185,
  4826. bottom: 10.9 / 206.5
  4827. }
  4828. },
  4829. back: {
  4830. height: math.unit(2, "meters"),
  4831. weight: math.unit(120, "kg"),
  4832. name: "Back",
  4833. image: {
  4834. source: "./media/characters/miranda/back.svg",
  4835. extra: 201 / 193,
  4836. bottom: 2.3 / 203.7
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(10, "feet"),
  4844. default: true
  4845. }
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "James", species: ["deer"], tags: ["anthro"] },
  4850. {
  4851. side: {
  4852. height: math.unit(2, "meters"),
  4853. weight: math.unit(100, "kg"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/james/front.svg",
  4857. extra: 10 / 8.5
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Normal",
  4864. height: math.unit(8.5, "feet"),
  4865. default: true
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4871. {
  4872. side: {
  4873. height: math.unit(9.5, "feet"),
  4874. weight: math.unit(2500, "lbs"),
  4875. name: "Side",
  4876. image: {
  4877. source: "./media/characters/heather/side.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(9.5, "feet"),
  4885. default: true
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4891. {
  4892. side: {
  4893. height: math.unit(6.5, "feet"),
  4894. weight: math.unit(400, "lbs"),
  4895. name: "Side",
  4896. image: {
  4897. source: "./media/characters/lukas/side.svg",
  4898. extra: 7.25 / 6.5
  4899. }
  4900. },
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(6.5, "feet"),
  4906. default: true
  4907. }
  4908. ]
  4909. ))
  4910. characterMakers.push(() => makeCharacter(
  4911. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4912. {
  4913. side: {
  4914. height: math.unit(5, "feet"),
  4915. weight: math.unit(3000, "lbs"),
  4916. name: "Side",
  4917. image: {
  4918. source: "./media/characters/louise/side.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(5, "feet"),
  4926. default: true
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4932. {
  4933. side: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(150, "lbs"),
  4936. name: "Side",
  4937. image: {
  4938. source: "./media/characters/ramona/side.svg"
  4939. }
  4940. },
  4941. },
  4942. [
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(5.3, "meters"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(20, "stories")
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(50, "stories")
  4955. },
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4960. {
  4961. standing: {
  4962. height: math.unit(5.75, "feet"),
  4963. weight: math.unit(160, "lbs"),
  4964. name: "Standing",
  4965. image: {
  4966. source: "./media/characters/deerpuff/standing.svg",
  4967. extra: 682 / 624
  4968. }
  4969. },
  4970. sitting: {
  4971. height: math.unit(5.75 / 1.79, "feet"),
  4972. weight: math.unit(160, "lbs"),
  4973. name: "Sitting",
  4974. image: {
  4975. source: "./media/characters/deerpuff/sitting.svg",
  4976. bottom: 44 / 400,
  4977. extra: 1
  4978. }
  4979. },
  4980. taurLaying: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(400, "lbs"),
  4983. name: "Taur (Laying)",
  4984. image: {
  4985. source: "./media/characters/deerpuff/taur-laying.svg"
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Puffball",
  4992. height: math.unit(6, "inches")
  4993. },
  4994. {
  4995. name: "Normalpuff",
  4996. height: math.unit(5.75, "feet")
  4997. },
  4998. {
  4999. name: "Macropuff",
  5000. height: math.unit(1500, "feet"),
  5001. default: true
  5002. },
  5003. {
  5004. name: "Megapuff",
  5005. height: math.unit(500, "miles")
  5006. },
  5007. {
  5008. name: "Gigapuff",
  5009. height: math.unit(250000, "miles")
  5010. },
  5011. {
  5012. name: "Omegapuff",
  5013. height: math.unit(1000, "lightyears")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5019. {
  5020. stomping: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(170, "lbs"),
  5023. name: "Stomping",
  5024. image: {
  5025. source: "./media/characters/vivian/stomping.svg"
  5026. }
  5027. },
  5028. sitting: {
  5029. height: math.unit(6 / 1.75, "feet"),
  5030. weight: math.unit(170, "lbs"),
  5031. name: "Sitting",
  5032. image: {
  5033. source: "./media/characters/vivian/sitting.svg",
  5034. bottom: 1 / 6.4,
  5035. extra: 1,
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(7, "feet"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(10, "stories")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(30, "stories")
  5052. },
  5053. {
  5054. name: "Megamacro",
  5055. height: math.unit(10, "miles")
  5056. },
  5057. {
  5058. name: "Megamacro+",
  5059. height: math.unit(2750000, "meters")
  5060. },
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5065. {
  5066. front: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(160, "lbs"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/prince/front.svg",
  5072. extra: 3400 / 3000
  5073. }
  5074. },
  5075. jumping: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(160, "lbs"),
  5078. name: "Jumping",
  5079. image: {
  5080. source: "./media/characters/prince/jump.svg",
  5081. extra: 2555 / 2134
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(7.75, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Not cute",
  5093. height: math.unit(17, "feet")
  5094. },
  5095. {
  5096. name: "I said NOT",
  5097. height: math.unit(91, "feet")
  5098. },
  5099. {
  5100. name: "Please stop",
  5101. height: math.unit(560, "feet")
  5102. },
  5103. {
  5104. name: "What have you done",
  5105. height: math.unit(2200, "feet")
  5106. },
  5107. {
  5108. name: "Deer God",
  5109. height: math.unit(3.6, "miles")
  5110. },
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5115. {
  5116. standing: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(300, "lbs"),
  5119. name: "Standing",
  5120. image: {
  5121. source: "./media/characters/psymon/standing.svg",
  5122. extra: 1888 / 1810,
  5123. bottom: 0.05
  5124. }
  5125. },
  5126. slithering: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(300, "lbs"),
  5129. name: "Slithering",
  5130. image: {
  5131. source: "./media/characters/psymon/slithering.svg",
  5132. extra: 1330 / 1224
  5133. }
  5134. },
  5135. slitheringAlt: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(300, "lbs"),
  5138. name: "Slithering (Alt)",
  5139. image: {
  5140. source: "./media/characters/psymon/slithering-alt.svg",
  5141. extra: 1330 / 1224
  5142. }
  5143. },
  5144. },
  5145. [
  5146. {
  5147. name: "Normal",
  5148. height: math.unit(11.25, "feet"),
  5149. default: true
  5150. },
  5151. {
  5152. name: "Large",
  5153. height: math.unit(27, "feet")
  5154. },
  5155. {
  5156. name: "Giant",
  5157. height: math.unit(87, "feet")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(365, "feet")
  5162. },
  5163. {
  5164. name: "Megamacro",
  5165. height: math.unit(3, "miles")
  5166. },
  5167. {
  5168. name: "World Serpent",
  5169. height: math.unit(8000, "miles")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(180, "lbs"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/daimos/front.svg",
  5182. extra: 4160 / 3897,
  5183. bottom: 0.021
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(8, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Big Dog",
  5195. height: math.unit(22, "feet")
  5196. },
  5197. {
  5198. name: "Macro",
  5199. height: math.unit(127, "feet")
  5200. },
  5201. {
  5202. name: "Megamacro",
  5203. height: math.unit(3600, "feet")
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5209. {
  5210. side: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(180, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/blake/side.svg",
  5216. extra: 1212 / 1120,
  5217. bottom: 0.05
  5218. }
  5219. },
  5220. crouched: {
  5221. height: math.unit(6 * 0.57, "feet"),
  5222. weight: math.unit(180, "lbs"),
  5223. name: "Crouched",
  5224. image: {
  5225. source: "./media/characters/blake/crouched.svg",
  5226. extra: 840 / 587,
  5227. bottom: 0.04
  5228. }
  5229. },
  5230. bent: {
  5231. height: math.unit(6 * 0.75, "feet"),
  5232. weight: math.unit(180, "lbs"),
  5233. name: "Bent",
  5234. image: {
  5235. source: "./media/characters/blake/bent.svg",
  5236. extra: 592 / 544,
  5237. bottom: 0.035
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(8 + 1 / 6, "feet"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Big Backside",
  5249. height: math.unit(37, "feet")
  5250. },
  5251. {
  5252. name: "Subway Shredder",
  5253. height: math.unit(72, "feet")
  5254. },
  5255. {
  5256. name: "City Carver",
  5257. height: math.unit(1675, "feet")
  5258. },
  5259. {
  5260. name: "Tectonic Tweaker",
  5261. height: math.unit(2300, "miles")
  5262. },
  5263. ]
  5264. ))
  5265. characterMakers.push(() => makeCharacter(
  5266. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5267. {
  5268. front: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(180, "lbs"),
  5271. name: "Front",
  5272. image: {
  5273. source: "./media/characters/guisetto/front.svg",
  5274. extra: 856 / 817,
  5275. bottom: 0.06
  5276. }
  5277. },
  5278. airborne: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(180, "lbs"),
  5281. name: "Airborne",
  5282. image: {
  5283. source: "./media/characters/guisetto/airborne.svg",
  5284. extra: 584 / 525
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(10 + 11 / 12, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Large",
  5296. height: math.unit(35, "feet")
  5297. },
  5298. {
  5299. name: "Macro",
  5300. height: math.unit(475, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lbs"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/luxor/front.svg",
  5313. extra: 2940 / 2152
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(180, "lbs"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/luxor/back.svg",
  5322. extra: 1083 / 960
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(5 + 5 / 6, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Lamp",
  5334. height: math.unit(50, "feet")
  5335. },
  5336. {
  5337. name: "Lämp",
  5338. height: math.unit(300, "feet")
  5339. },
  5340. {
  5341. name: "The sun is a lamp",
  5342. height: math.unit(250000, "miles")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5348. {
  5349. front: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(50, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/huoyan/front.svg"
  5355. }
  5356. },
  5357. side: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(180, "lbs"),
  5360. name: "Side",
  5361. image: {
  5362. source: "./media/characters/huoyan/side.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Chef",
  5369. height: math.unit(9, "feet")
  5370. },
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(65, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(780, "feet")
  5379. },
  5380. {
  5381. name: "Flaming Mountain",
  5382. height: math.unit(4.8, "miles")
  5383. },
  5384. {
  5385. name: "Celestial",
  5386. height: math.unit(765000, "miles")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(5 + 3 / 4, "feet"),
  5395. weight: math.unit(120, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/tails/front.svg"
  5399. }
  5400. }
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(5 + 3 / 4, "feet"),
  5406. default: true
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(4, "feet"),
  5415. weight: math.unit(50, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/rainy/front.svg"
  5419. }
  5420. }
  5421. },
  5422. [
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(800, "feet"),
  5426. default: true
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5432. {
  5433. front: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(150, "lbs"),
  5436. name: "Front",
  5437. image: {
  5438. source: "./media/characters/rainier/front.svg"
  5439. }
  5440. }
  5441. },
  5442. [
  5443. {
  5444. name: "Micro",
  5445. height: math.unit(2, "mm"),
  5446. default: true
  5447. }
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5452. {
  5453. front: {
  5454. height: math.unit(6, "feet"),
  5455. weight: math.unit(180, "lbs"),
  5456. name: "Front",
  5457. image: {
  5458. source: "./media/characters/andy/front.svg"
  5459. }
  5460. }
  5461. },
  5462. [
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(8, "feet"),
  5466. default: true
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(1000, "feet")
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(5, "miles")
  5475. },
  5476. {
  5477. name: "Gigamacro",
  5478. height: math.unit(5000, "miles")
  5479. },
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5484. {
  5485. front: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(210, "lbs"),
  5488. name: "Front",
  5489. image: {
  5490. source: "./media/characters/cimmaron/front-sfw.svg",
  5491. extra: 701 / 676,
  5492. bottom: 0.046
  5493. }
  5494. },
  5495. back: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(210, "lbs"),
  5498. name: "Back",
  5499. image: {
  5500. source: "./media/characters/cimmaron/back-sfw.svg",
  5501. extra: 701 / 676,
  5502. bottom: 0.046
  5503. }
  5504. },
  5505. frontNsfw: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(210, "lbs"),
  5508. name: "Front (NSFW)",
  5509. image: {
  5510. source: "./media/characters/cimmaron/front-nsfw.svg",
  5511. extra: 701 / 676,
  5512. bottom: 0.046
  5513. }
  5514. },
  5515. backNsfw: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(210, "lbs"),
  5518. name: "Back (NSFW)",
  5519. image: {
  5520. source: "./media/characters/cimmaron/back-nsfw.svg",
  5521. extra: 701 / 676,
  5522. bottom: 0.046
  5523. }
  5524. },
  5525. dick: {
  5526. height: math.unit(1.714, "feet"),
  5527. name: "Dick",
  5528. image: {
  5529. source: "./media/characters/cimmaron/dick.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(6, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Macro Mayor",
  5541. height: math.unit(350, "meters")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(200, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/akari/front.svg",
  5554. extra: 962 / 901,
  5555. bottom: 0.04
  5556. }
  5557. }
  5558. },
  5559. [
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(5, "inches"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(7, "feet")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(140, "lbs"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/cynosura/front.svg",
  5580. extra: 896 / 847
  5581. }
  5582. },
  5583. back: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(140, "lbs"),
  5586. name: "Back",
  5587. image: {
  5588. source: "./media/characters/cynosura/back.svg",
  5589. extra: 1365 / 1250
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Micro",
  5596. height: math.unit(4, "inches")
  5597. },
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(5.75, "feet"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Tall",
  5605. height: math.unit(10, "feet")
  5606. },
  5607. {
  5608. name: "Big",
  5609. height: math.unit(20, "feet")
  5610. },
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(50, "feet")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(13 + 2/12, "feet"),
  5622. weight: math.unit(800, "kg"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/gin/front.svg",
  5626. extra: 1312/1191,
  5627. bottom: 45/1357
  5628. }
  5629. },
  5630. mouth: {
  5631. height: math.unit(2.39 * 1.8, "feet"),
  5632. name: "Mouth",
  5633. image: {
  5634. source: "./media/characters/gin/mouth.svg"
  5635. }
  5636. },
  5637. hand: {
  5638. height: math.unit(1.57 * 2.19, "feet"),
  5639. name: "Hand",
  5640. image: {
  5641. source: "./media/characters/gin/hand.svg"
  5642. }
  5643. },
  5644. foot: {
  5645. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5646. name: "Foot",
  5647. image: {
  5648. source: "./media/characters/gin/foot.svg"
  5649. }
  5650. },
  5651. sole: {
  5652. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5653. name: "Sole",
  5654. image: {
  5655. source: "./media/characters/gin/sole.svg"
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Very Small",
  5662. height: math.unit(13 + 2 / 12, "feet")
  5663. },
  5664. {
  5665. name: "Micro",
  5666. height: math.unit(600, "miles")
  5667. },
  5668. {
  5669. name: "Regular",
  5670. height: math.unit(20, "earths"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(2.2, "solarradii")
  5676. },
  5677. {
  5678. name: "Teramacro",
  5679. height: math.unit(1.2, "galaxies")
  5680. },
  5681. {
  5682. name: "Omegamacro",
  5683. height: math.unit(200, "universes")
  5684. },
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(6 + 1 / 6, "feet"),
  5692. weight: math.unit(178, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/guy/front.svg"
  5696. }
  5697. }
  5698. },
  5699. [
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(6 + 1 / 6, "feet"),
  5703. default: true
  5704. },
  5705. {
  5706. name: "Large",
  5707. height: math.unit(25 + 7 / 12, "feet")
  5708. },
  5709. {
  5710. name: "Macro",
  5711. height: math.unit(60 + 9 / 12, "feet")
  5712. },
  5713. {
  5714. name: "Macro+",
  5715. height: math.unit(246, "feet")
  5716. },
  5717. {
  5718. name: "Macro++",
  5719. height: math.unit(878, "feet")
  5720. }
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(9, "feet"),
  5728. weight: math.unit(800, "lbs"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/tiberius/front.svg",
  5732. extra: 2295 / 2071
  5733. }
  5734. },
  5735. back: {
  5736. height: math.unit(9, "feet"),
  5737. weight: math.unit(800, "lbs"),
  5738. name: "Back",
  5739. image: {
  5740. source: "./media/characters/tiberius/back.svg",
  5741. extra: 2373 / 2160
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(9, "feet"),
  5749. default: true
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(600, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/surgo/front.svg",
  5762. extra: 3591 / 2227
  5763. }
  5764. },
  5765. back: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(600, "lbs"),
  5768. name: "Back",
  5769. image: {
  5770. source: "./media/characters/surgo/back.svg",
  5771. extra: 3557 / 2228
  5772. }
  5773. },
  5774. laying: {
  5775. height: math.unit(6 * 0.85, "feet"),
  5776. weight: math.unit(600, "lbs"),
  5777. name: "Laying",
  5778. image: {
  5779. source: "./media/characters/surgo/laying.svg"
  5780. }
  5781. },
  5782. },
  5783. [
  5784. {
  5785. name: "Normal",
  5786. height: math.unit(6, "feet"),
  5787. default: true
  5788. }
  5789. ]
  5790. ))
  5791. characterMakers.push(() => makeCharacter(
  5792. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5793. {
  5794. side: {
  5795. height: math.unit(6, "feet"),
  5796. weight: math.unit(150, "lbs"),
  5797. name: "Side",
  5798. image: {
  5799. source: "./media/characters/cibus/side.svg",
  5800. extra: 800 / 400
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(6, "feet"),
  5808. default: true
  5809. }
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(240, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/nibbles/front.svg"
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(240, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/nibbles/side.svg"
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(9, "feet"),
  5836. default: true
  5837. }
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5842. {
  5843. side: {
  5844. height: math.unit(5 + 1 / 6, "feet"),
  5845. weight: math.unit(130, "lbs"),
  5846. name: "Side",
  5847. image: {
  5848. source: "./media/characters/rikky/side.svg",
  5849. extra: 851 / 801
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(5 + 1 / 6, "feet")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(152, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Megamacro",
  5865. height: math.unit(7, "miles")
  5866. }
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5871. {
  5872. side: {
  5873. height: math.unit(370, "cm"),
  5874. weight: math.unit(350, "lbs"),
  5875. name: "Side",
  5876. image: {
  5877. source: "./media/characters/malfressa/side.svg"
  5878. }
  5879. },
  5880. walking: {
  5881. height: math.unit(370, "cm"),
  5882. weight: math.unit(350, "lbs"),
  5883. name: "Walking",
  5884. image: {
  5885. source: "./media/characters/malfressa/walking.svg"
  5886. }
  5887. },
  5888. feral: {
  5889. height: math.unit(2500, "cm"),
  5890. weight: math.unit(100000, "lbs"),
  5891. name: "Feral",
  5892. image: {
  5893. source: "./media/characters/malfressa/feral.svg",
  5894. extra: 2108 / 837,
  5895. bottom: 0.02
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(370, "cm")
  5903. },
  5904. {
  5905. name: "Macro",
  5906. height: math.unit(300, "meters"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(60, "kg"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/jaro/front.svg"
  5920. }
  5921. },
  5922. back: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(60, "kg"),
  5925. name: "Back",
  5926. image: {
  5927. source: "./media/characters/jaro/back.svg"
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Micro",
  5934. height: math.unit(7, "inches")
  5935. },
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(5.5, "feet"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Minimacro",
  5943. height: math.unit(20, "feet")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(200, "meters")
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(195, "lb"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/rogue/front.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(90, "feet"),
  5967. default: true
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(5 + 8 / 12, "feet"),
  5976. weight: math.unit(140, "lb"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/piper/front.svg",
  5980. extra: 3948/3655,
  5981. bottom: 0/3948
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Micro",
  5988. height: math.unit(2, "inches")
  5989. },
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(5 + 8 / 12, "feet")
  5993. },
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(250, "feet"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(7, "miles")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(220, "lb"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/gemini/front.svg"
  6014. }
  6015. },
  6016. back: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(220, "lb"),
  6019. name: "Back",
  6020. image: {
  6021. source: "./media/characters/gemini/back.svg"
  6022. }
  6023. },
  6024. kneeling: {
  6025. height: math.unit(6 / 1.5, "feet"),
  6026. weight: math.unit(220, "lb"),
  6027. name: "Kneeling",
  6028. image: {
  6029. source: "./media/characters/gemini/kneeling.svg",
  6030. bottom: 0.02
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(300, "meters"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Megamacro",
  6042. height: math.unit(6900, "meters")
  6043. },
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6048. {
  6049. anthro: {
  6050. height: math.unit(2.35, "meters"),
  6051. weight: math.unit(73, "kg"),
  6052. name: "Anthro",
  6053. image: {
  6054. source: "./media/characters/alicia/anthro.svg",
  6055. extra: 2571 / 2385,
  6056. bottom: 75 / 2648
  6057. }
  6058. },
  6059. paw: {
  6060. height: math.unit(1.32, "feet"),
  6061. name: "Paw",
  6062. image: {
  6063. source: "./media/characters/alicia/paw.svg"
  6064. }
  6065. },
  6066. feral: {
  6067. height: math.unit(1.69, "meters"),
  6068. weight: math.unit(73, "kg"),
  6069. name: "Feral",
  6070. image: {
  6071. source: "./media/characters/alicia/feral.svg",
  6072. extra: 2123 / 1715,
  6073. bottom: 222 / 2349
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(2.35, "meters")
  6081. },
  6082. {
  6083. name: "Macro",
  6084. height: math.unit(60, "meters"),
  6085. default: true
  6086. },
  6087. {
  6088. name: "Megamacro",
  6089. height: math.unit(10000, "kilometers")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6095. {
  6096. front: {
  6097. height: math.unit(7, "feet"),
  6098. weight: math.unit(250, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/archy/front.svg"
  6102. }
  6103. }
  6104. },
  6105. [
  6106. {
  6107. name: "Micro",
  6108. height: math.unit(1, "inch")
  6109. },
  6110. {
  6111. name: "Shorty",
  6112. height: math.unit(5, "feet")
  6113. },
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(7, "feet")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(600, "meters"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Megamacro",
  6125. height: math.unit(1, "mile")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(1.65, "meters"),
  6134. weight: math.unit(74, "kg"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/berri/front.svg",
  6138. extra: 857 / 837,
  6139. bottom: 18 / 877
  6140. }
  6141. },
  6142. bum: {
  6143. height: math.unit(1.46, "feet"),
  6144. name: "Bum",
  6145. image: {
  6146. source: "./media/characters/berri/bum.svg"
  6147. }
  6148. },
  6149. mouth: {
  6150. height: math.unit(0.44, "feet"),
  6151. name: "Mouth",
  6152. image: {
  6153. source: "./media/characters/berri/mouth.svg"
  6154. }
  6155. },
  6156. paw: {
  6157. height: math.unit(0.826, "feet"),
  6158. name: "Paw",
  6159. image: {
  6160. source: "./media/characters/berri/paw.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(1.65, "meters")
  6168. },
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(60, "m"),
  6172. default: true
  6173. },
  6174. {
  6175. name: "Megamacro",
  6176. height: math.unit(9.213, "km")
  6177. },
  6178. {
  6179. name: "Planet Eater",
  6180. height: math.unit(489, "megameters")
  6181. },
  6182. {
  6183. name: "Teramacro",
  6184. height: math.unit(2471635000000, "meters")
  6185. },
  6186. {
  6187. name: "Examacro",
  6188. height: math.unit(8.0624e+26, "meters")
  6189. }
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(1.72, "meters"),
  6197. weight: math.unit(68, "kg"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/lexi/front.svg"
  6201. }
  6202. }
  6203. },
  6204. [
  6205. {
  6206. name: "Very Smol",
  6207. height: math.unit(10, "mm")
  6208. },
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(6.8, "cm"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(1.72, "m")
  6217. }
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(1.69, "meters"),
  6225. weight: math.unit(68, "kg"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/martin/front.svg",
  6229. extra: 596 / 581
  6230. }
  6231. }
  6232. },
  6233. [
  6234. {
  6235. name: "Micro",
  6236. height: math.unit(6.85, "cm"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(1.69, "m")
  6242. }
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6247. {
  6248. front: {
  6249. height: math.unit(1.69, "meters"),
  6250. weight: math.unit(68, "kg"),
  6251. name: "Front",
  6252. image: {
  6253. source: "./media/characters/juno/front.svg"
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(7, "cm")
  6261. },
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(1.89, "m")
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(353, "meters"),
  6269. default: true
  6270. }
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(1.93, "meters"),
  6278. weight: math.unit(83, "kg"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/samantha/front.svg"
  6282. }
  6283. },
  6284. frontClothed: {
  6285. height: math.unit(1.93, "meters"),
  6286. weight: math.unit(83, "kg"),
  6287. name: "Front (Clothed)",
  6288. image: {
  6289. source: "./media/characters/samantha/front-clothed.svg"
  6290. }
  6291. },
  6292. back: {
  6293. height: math.unit(1.93, "meters"),
  6294. weight: math.unit(83, "kg"),
  6295. name: "Back",
  6296. image: {
  6297. source: "./media/characters/samantha/back.svg"
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(1.93, "m")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(74, "meters"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Macro+",
  6313. height: math.unit(223, "meters"),
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(8381, "meters"),
  6318. },
  6319. {
  6320. name: "Megamacro+",
  6321. height: math.unit(12000, "kilometers")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(1.92, "meters"),
  6330. weight: math.unit(80, "kg"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/dr-clay/front.svg"
  6334. }
  6335. },
  6336. frontClothed: {
  6337. height: math.unit(1.92, "meters"),
  6338. weight: math.unit(80, "kg"),
  6339. name: "Front (Clothed)",
  6340. image: {
  6341. source: "./media/characters/dr-clay/front-clothed.svg"
  6342. }
  6343. }
  6344. },
  6345. [
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(1.92, "m")
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(214, "meters"),
  6353. default: true
  6354. },
  6355. {
  6356. name: "Macro+",
  6357. height: math.unit(12.237, "meters"),
  6358. },
  6359. {
  6360. name: "Megamacro",
  6361. height: math.unit(557, "megameters"),
  6362. },
  6363. {
  6364. name: "Unimaginable",
  6365. height: math.unit(120e9, "lightyears")
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(2, "meters"),
  6374. weight: math.unit(80, "kg"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6378. }
  6379. }
  6380. },
  6381. [
  6382. {
  6383. name: "Teramacro",
  6384. height: math.unit(500000, "lightyears"),
  6385. default: true
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(2, "meters"),
  6394. weight: math.unit(150, "kg"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/vemus/front.svg",
  6398. extra: 1074/936,
  6399. bottom: 23/1097
  6400. }
  6401. }
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(3.75, "meters"),
  6407. default: true
  6408. },
  6409. {
  6410. name: "Big",
  6411. height: math.unit(8, "meters")
  6412. },
  6413. {
  6414. name: "Macro",
  6415. height: math.unit(100, "meters")
  6416. },
  6417. {
  6418. name: "Macro+",
  6419. height: math.unit(1500, "meters")
  6420. },
  6421. {
  6422. name: "Stellar",
  6423. height: math.unit(14e8, "meters")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(2, "meters"),
  6432. weight: math.unit(70, "kg"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/beherit/front.svg",
  6436. extra: 1408 / 1242
  6437. }
  6438. }
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(6, "feet")
  6444. },
  6445. {
  6446. name: "Lorg",
  6447. height: math.unit(25, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Lorger",
  6452. height: math.unit(75, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(200, "meters")
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(2, "meters"),
  6465. weight: math.unit(150, "kg"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/everett/front.svg",
  6469. extra: 2038 / 1737,
  6470. bottom: 0.03
  6471. }
  6472. },
  6473. paw: {
  6474. height: math.unit(2 / 3.6, "meters"),
  6475. name: "Paw",
  6476. image: {
  6477. source: "./media/characters/everett/paw.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(15, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Lorg",
  6489. height: math.unit(70, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Lorger",
  6494. height: math.unit(250, "feet")
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(500, "meters")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(2, "meters"),
  6507. weight: math.unit(86, "kg"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/rose/front.svg",
  6511. extra: 350/335,
  6512. bottom: 10/360
  6513. }
  6514. },
  6515. frontAlt: {
  6516. height: math.unit(1.6, "meters"),
  6517. weight: math.unit(86, "kg"),
  6518. name: "Front (Alt)",
  6519. image: {
  6520. source: "./media/characters/rose/front-alt.svg",
  6521. extra: 299/283,
  6522. bottom: 3/302
  6523. }
  6524. },
  6525. plush: {
  6526. height: math.unit(2, "meters"),
  6527. weight: math.unit(86/3, "kg"),
  6528. name: "Plush",
  6529. image: {
  6530. source: "./media/characters/rose/plush.svg",
  6531. extra: 361/337,
  6532. bottom: 11/372
  6533. }
  6534. },
  6535. },
  6536. [
  6537. {
  6538. name: "Mini-Micro",
  6539. height: math.unit(1, "cm")
  6540. },
  6541. {
  6542. name: "Micro",
  6543. height: math.unit(3.5, "inches"),
  6544. default: true
  6545. },
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(6 + 1 / 6, "feet")
  6549. },
  6550. {
  6551. name: "Mini-Macro",
  6552. height: math.unit(9 + 10 / 12, "feet")
  6553. },
  6554. ]
  6555. ))
  6556. characterMakers.push(() => makeCharacter(
  6557. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6558. {
  6559. front: {
  6560. height: math.unit(2, "meters"),
  6561. weight: math.unit(350, "lbs"),
  6562. name: "Front",
  6563. image: {
  6564. source: "./media/characters/regal/front.svg"
  6565. }
  6566. },
  6567. back: {
  6568. height: math.unit(2, "meters"),
  6569. weight: math.unit(350, "lbs"),
  6570. name: "Back",
  6571. image: {
  6572. source: "./media/characters/regal/back.svg"
  6573. }
  6574. },
  6575. },
  6576. [
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(350, "feet"),
  6580. default: true
  6581. }
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6586. {
  6587. front: {
  6588. height: math.unit(4 + 11 / 12, "feet"),
  6589. weight: math.unit(100, "lbs"),
  6590. name: "Front",
  6591. image: {
  6592. source: "./media/characters/opal/front.svg"
  6593. }
  6594. },
  6595. frontAlt: {
  6596. height: math.unit(4 + 11 / 12, "feet"),
  6597. weight: math.unit(100, "lbs"),
  6598. name: "Front (Alt)",
  6599. image: {
  6600. source: "./media/characters/opal/front-alt.svg"
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Small",
  6607. height: math.unit(4 + 11 / 12, "feet")
  6608. },
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(20, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(120, "feet")
  6617. },
  6618. {
  6619. name: "Megamacro",
  6620. height: math.unit(80, "miles")
  6621. },
  6622. {
  6623. name: "True Size",
  6624. height: math.unit(100000, "lightyears")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(200, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/vector-wuff/front.svg"
  6637. }
  6638. }
  6639. },
  6640. [
  6641. {
  6642. name: "Normal",
  6643. height: math.unit(2.8, "meters")
  6644. },
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(450, "meters"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(15, "kilometers")
  6653. }
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(256, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/dannik/front.svg"
  6665. }
  6666. }
  6667. },
  6668. [
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(69.57, "meters"),
  6672. default: true
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(120, "lbs"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/azura-saharah/front.svg"
  6685. }
  6686. },
  6687. back: {
  6688. height: math.unit(6, "feet"),
  6689. weight: math.unit(120, "lbs"),
  6690. name: "Back",
  6691. image: {
  6692. source: "./media/characters/azura-saharah/back.svg"
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(100, "feet"),
  6700. default: true
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6706. {
  6707. side: {
  6708. height: math.unit(5 + 4 / 12, "feet"),
  6709. weight: math.unit(163, "lbs"),
  6710. name: "Side",
  6711. image: {
  6712. source: "./media/characters/kennedy/side.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Standard Doggo",
  6719. height: math.unit(5 + 4 / 12, "feet")
  6720. },
  6721. {
  6722. name: "Big Doggo",
  6723. height: math.unit(25 + 3 / 12, "feet"),
  6724. default: true
  6725. },
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6730. {
  6731. front: {
  6732. height: math.unit(6, "feet"),
  6733. weight: math.unit(90, "lbs"),
  6734. name: "Front",
  6735. image: {
  6736. source: "./media/characters/odi-lunar/front.svg"
  6737. }
  6738. }
  6739. },
  6740. [
  6741. {
  6742. name: "Micro",
  6743. height: math.unit(3, "inches"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(5.5, "feet")
  6749. }
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6754. {
  6755. back: {
  6756. height: math.unit(6, "feet"),
  6757. weight: math.unit(220, "lbs"),
  6758. name: "Back",
  6759. image: {
  6760. source: "./media/characters/mandake/back.svg"
  6761. }
  6762. }
  6763. },
  6764. [
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(7, "feet"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(78, "feet")
  6773. },
  6774. {
  6775. name: "Macro+",
  6776. height: math.unit(300, "meters")
  6777. },
  6778. {
  6779. name: "Macro++",
  6780. height: math.unit(2400, "feet")
  6781. },
  6782. {
  6783. name: "Megamacro",
  6784. height: math.unit(5167, "meters")
  6785. },
  6786. {
  6787. name: "Gigamacro",
  6788. height: math.unit(41769, "miles")
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(120, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/yozey/front.svg"
  6801. }
  6802. },
  6803. frontAlt: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(120, "lbs"),
  6806. name: "Front (Alt)",
  6807. image: {
  6808. source: "./media/characters/yozey/front-alt.svg"
  6809. }
  6810. },
  6811. side: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(120, "lbs"),
  6814. name: "Side",
  6815. image: {
  6816. source: "./media/characters/yozey/side.svg"
  6817. }
  6818. },
  6819. },
  6820. [
  6821. {
  6822. name: "Micro",
  6823. height: math.unit(3, "inches"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Normal",
  6828. height: math.unit(6, "feet")
  6829. }
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(103, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/valeska-voss/front.svg"
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Mini-Sized Sub",
  6847. height: math.unit(3.1, "inches")
  6848. },
  6849. {
  6850. name: "Mid-Sized Sub",
  6851. height: math.unit(6.2, "inches")
  6852. },
  6853. {
  6854. name: "Full-Sized Sub",
  6855. height: math.unit(9.3, "inches")
  6856. },
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(5 + 2 / 12, "foot"),
  6860. default: true
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(160, "lbs"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/gene-zeta/front.svg",
  6873. extra: 3006 / 2826,
  6874. bottom: 182 / 3188
  6875. }
  6876. }
  6877. },
  6878. [
  6879. {
  6880. name: "Micro",
  6881. height: math.unit(6, "inches")
  6882. },
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5 + 11 / 12, "foot"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Macro",
  6890. height: math.unit(140, "feet")
  6891. },
  6892. {
  6893. name: "Supercharged",
  6894. height: math.unit(2500, "feet")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(350, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/razinox/front.svg",
  6907. extra: 1686 / 1548,
  6908. bottom: 28.2 / 1868
  6909. }
  6910. },
  6911. back: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(350, "lbs"),
  6914. name: "Back",
  6915. image: {
  6916. source: "./media/characters/razinox/back.svg",
  6917. extra: 1660 / 1590,
  6918. bottom: 15 / 1665
  6919. }
  6920. },
  6921. },
  6922. [
  6923. {
  6924. name: "Normal",
  6925. height: math.unit(10 + 8 / 12, "foot")
  6926. },
  6927. {
  6928. name: "Minimacro",
  6929. height: math.unit(15, "foot")
  6930. },
  6931. {
  6932. name: "Macro",
  6933. height: math.unit(60, "foot"),
  6934. default: true
  6935. },
  6936. {
  6937. name: "Megamacro",
  6938. height: math.unit(5, "miles")
  6939. },
  6940. {
  6941. name: "Gigamacro",
  6942. height: math.unit(6000, "miles")
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(6, "feet"),
  6951. weight: math.unit(150, "lbs"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/cobalt/front.svg"
  6955. }
  6956. }
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(8 + 1 / 12, "foot")
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(111, "foot"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Supracosmic",
  6970. height: math.unit(1e42, "feet")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(6, "feet"),
  6979. weight: math.unit(140, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/amanda/front.svg"
  6983. }
  6984. }
  6985. },
  6986. [
  6987. {
  6988. name: "Micro",
  6989. height: math.unit(5, "inches"),
  6990. default: true
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2.75, "meters"),
  6999. weight: math.unit(1200, "lb"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/teal/front.svg",
  7003. extra: 2463 / 2320,
  7004. bottom: 166 / 2629
  7005. }
  7006. },
  7007. back: {
  7008. height: math.unit(2.75, "meters"),
  7009. weight: math.unit(1200, "lb"),
  7010. name: "Back",
  7011. image: {
  7012. source: "./media/characters/teal/back.svg",
  7013. extra: 2580 / 2489,
  7014. bottom: 151 / 2731
  7015. }
  7016. },
  7017. sitting: {
  7018. height: math.unit(1.9, "meters"),
  7019. weight: math.unit(1200, "lb"),
  7020. name: "Sitting",
  7021. image: {
  7022. source: "./media/characters/teal/sitting.svg",
  7023. extra: 623 / 590,
  7024. bottom: 121 / 744
  7025. }
  7026. },
  7027. standing: {
  7028. height: math.unit(2.75, "meters"),
  7029. weight: math.unit(1200, "lb"),
  7030. name: "Standing",
  7031. image: {
  7032. source: "./media/characters/teal/standing.svg",
  7033. extra: 923 / 893,
  7034. bottom: 60 / 983
  7035. }
  7036. },
  7037. stretching: {
  7038. height: math.unit(3.65, "meters"),
  7039. weight: math.unit(1200, "lb"),
  7040. name: "Stretching",
  7041. image: {
  7042. source: "./media/characters/teal/stretching.svg",
  7043. extra: 1276 / 1244,
  7044. bottom: 0 / 1276
  7045. }
  7046. },
  7047. legged: {
  7048. height: math.unit(1.3, "meters"),
  7049. weight: math.unit(100, "lb"),
  7050. name: "Legged",
  7051. image: {
  7052. source: "./media/characters/teal/legged.svg",
  7053. extra: 462 / 437,
  7054. bottom: 24 / 486
  7055. }
  7056. },
  7057. naga: {
  7058. height: math.unit(5.4, "meters"),
  7059. weight: math.unit(4000, "lb"),
  7060. name: "Naga",
  7061. image: {
  7062. source: "./media/characters/teal/naga.svg",
  7063. extra: 1902 / 1858,
  7064. bottom: 0 / 1902
  7065. }
  7066. },
  7067. hand: {
  7068. height: math.unit(0.52, "meters"),
  7069. name: "Hand",
  7070. image: {
  7071. source: "./media/characters/teal/hand.svg"
  7072. }
  7073. },
  7074. maw: {
  7075. height: math.unit(0.43, "meters"),
  7076. name: "Maw",
  7077. image: {
  7078. source: "./media/characters/teal/maw.svg"
  7079. }
  7080. },
  7081. slit: {
  7082. height: math.unit(0.25, "meters"),
  7083. name: "Slit",
  7084. image: {
  7085. source: "./media/characters/teal/slit.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(2.75, "meters"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(300, "feet")
  7098. },
  7099. {
  7100. name: "Macro+",
  7101. height: math.unit(2000, "feet")
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7107. {
  7108. frontCat: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(180, "lbs"),
  7111. name: "Front (Cat)",
  7112. image: {
  7113. source: "./media/characters/ravin-amulet/front-cat.svg"
  7114. }
  7115. },
  7116. frontCatAlt: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(180, "lbs"),
  7119. name: "Front (Alt, Cat)",
  7120. image: {
  7121. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7122. }
  7123. },
  7124. frontWerewolf: {
  7125. height: math.unit(6 * 1.2, "feet"),
  7126. weight: math.unit(225, "lbs"),
  7127. name: "Front (Werewolf)",
  7128. image: {
  7129. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7130. }
  7131. },
  7132. backWerewolf: {
  7133. height: math.unit(6 * 1.2, "feet"),
  7134. weight: math.unit(225, "lbs"),
  7135. name: "Back (Werewolf)",
  7136. image: {
  7137. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7138. }
  7139. },
  7140. },
  7141. [
  7142. {
  7143. name: "Nano",
  7144. height: math.unit(1, "micrometer")
  7145. },
  7146. {
  7147. name: "Micro",
  7148. height: math.unit(1, "inch")
  7149. },
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(6, "feet"),
  7153. default: true
  7154. },
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(60, "feet")
  7158. }
  7159. ]
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(6, "feet"),
  7166. weight: math.unit(165, "lbs"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/fluoresce/front.svg"
  7170. }
  7171. }
  7172. },
  7173. [
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(6, "cm")
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(5 + 7 / 12, "feet"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(56, "feet")
  7186. },
  7187. {
  7188. name: "Megamacro",
  7189. height: math.unit(1.9, "miles")
  7190. },
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(9 + 6 / 12, "feet"),
  7198. weight: math.unit(523, "lbs"),
  7199. name: "Side",
  7200. image: {
  7201. source: "./media/characters/aurora/side.svg"
  7202. }
  7203. }
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(9 + 6 / 12, "feet")
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(96, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Macro+",
  7217. height: math.unit(243, "feet")
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(194, "cm"),
  7226. weight: math.unit(90, "kg"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/ranek/front.svg"
  7230. }
  7231. },
  7232. side: {
  7233. height: math.unit(194, "cm"),
  7234. weight: math.unit(90, "kg"),
  7235. name: "Side",
  7236. image: {
  7237. source: "./media/characters/ranek/side.svg"
  7238. }
  7239. },
  7240. back: {
  7241. height: math.unit(194, "cm"),
  7242. weight: math.unit(90, "kg"),
  7243. name: "Back",
  7244. image: {
  7245. source: "./media/characters/ranek/back.svg"
  7246. }
  7247. },
  7248. feral: {
  7249. height: math.unit(30, "cm"),
  7250. weight: math.unit(1.6, "lbs"),
  7251. name: "Feral",
  7252. image: {
  7253. source: "./media/characters/ranek/feral.svg"
  7254. }
  7255. },
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(194, "cm"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(100, "meters")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(5 + 6 / 12, "feet"),
  7274. weight: math.unit(153, "lbs"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/andrew-cooper/front.svg"
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Nano",
  7284. height: math.unit(1, "mm")
  7285. },
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(2, "inches")
  7289. },
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(5 + 6 / 12, "feet"),
  7293. default: true
  7294. }
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(180, "lbs"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/akane-sato/front.svg",
  7306. extra: 1219 / 1140
  7307. }
  7308. },
  7309. back: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(180, "lbs"),
  7312. name: "Back",
  7313. image: {
  7314. source: "./media/characters/akane-sato/back.svg",
  7315. extra: 1219 / 1170
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(2.5, "meters")
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(250, "meters"),
  7327. default: true
  7328. },
  7329. {
  7330. name: "Megamacro",
  7331. height: math.unit(25, "km")
  7332. },
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(65, "kg"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/rook/front.svg",
  7344. extra: 960 / 950
  7345. }
  7346. }
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(8.8, "feet")
  7352. },
  7353. {
  7354. name: "Macro",
  7355. height: math.unit(88, "feet"),
  7356. default: true
  7357. },
  7358. {
  7359. name: "Megamacro",
  7360. height: math.unit(8, "miles")
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(12 + 2 / 12, "feet"),
  7369. weight: math.unit(808, "lbs"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/prodigy/front.svg"
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(12 + 2 / 12, "feet"),
  7380. default: true
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(143, "feet")
  7385. },
  7386. {
  7387. name: "Macro+",
  7388. height: math.unit(400, "feet")
  7389. },
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(6, "feet"),
  7397. weight: math.unit(225, "lbs"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/daniel/front.svg"
  7401. }
  7402. },
  7403. leaning: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(225, "lbs"),
  7406. name: "Leaning",
  7407. image: {
  7408. source: "./media/characters/daniel/leaning.svg"
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(1000, "feet"),
  7416. default: true
  7417. },
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(6, "feet"),
  7425. weight: math.unit(88, "lbs"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/chiros/front.svg",
  7429. extra: 306 / 226
  7430. }
  7431. },
  7432. side: {
  7433. height: math.unit(6, "feet"),
  7434. weight: math.unit(88, "lbs"),
  7435. name: "Side",
  7436. image: {
  7437. source: "./media/characters/chiros/side.svg",
  7438. extra: 306 / 226
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(6, "cm"),
  7446. default: true
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7452. {
  7453. front: {
  7454. height: math.unit(6, "feet"),
  7455. weight: math.unit(100, "lbs"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/selka/front.svg",
  7459. extra: 947 / 887
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(5, "cm"),
  7467. default: true
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(8 + 3 / 12, "feet"),
  7476. weight: math.unit(424, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/verin/front.svg",
  7480. extra: 1845 / 1550
  7481. }
  7482. },
  7483. frontArmored: {
  7484. height: math.unit(8 + 3 / 12, "feet"),
  7485. weight: math.unit(424, "lbs"),
  7486. name: "Front (Armored)",
  7487. image: {
  7488. source: "./media/characters/verin/front-armor.svg",
  7489. extra: 1845 / 1550,
  7490. bottom: 0.01
  7491. }
  7492. },
  7493. back: {
  7494. height: math.unit(8 + 3 / 12, "feet"),
  7495. weight: math.unit(424, "lbs"),
  7496. name: "Back",
  7497. image: {
  7498. source: "./media/characters/verin/back.svg",
  7499. bottom: 0.1,
  7500. extra: 1
  7501. }
  7502. },
  7503. foot: {
  7504. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7505. name: "Foot",
  7506. image: {
  7507. source: "./media/characters/verin/foot.svg"
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8 + 3 / 12, "feet")
  7515. },
  7516. {
  7517. name: "Minimacro",
  7518. height: math.unit(21, "feet"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Macro",
  7523. height: math.unit(626, "feet")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(2.718, "meters"),
  7532. weight: math.unit(150, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/sovrim-terraquian/front.svg"
  7536. }
  7537. },
  7538. back: {
  7539. height: math.unit(2.718, "meters"),
  7540. weight: math.unit(150, "lbs"),
  7541. name: "Back",
  7542. image: {
  7543. source: "./media/characters/sovrim-terraquian/back.svg"
  7544. }
  7545. }
  7546. },
  7547. [
  7548. {
  7549. name: "Micro",
  7550. height: math.unit(2, "inches")
  7551. },
  7552. {
  7553. name: "Small",
  7554. height: math.unit(1, "meter")
  7555. },
  7556. {
  7557. name: "Normal",
  7558. height: math.unit(Math.E, "meters"),
  7559. default: true
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(20, "meters")
  7564. },
  7565. {
  7566. name: "Macro+",
  7567. height: math.unit(400, "meters")
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7573. {
  7574. front: {
  7575. height: math.unit(7, "feet"),
  7576. weight: math.unit(489, "lbs"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/reece-silvermane/front.svg",
  7580. bottom: 0.02,
  7581. extra: 1
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(1.5, "miles"),
  7589. default: true
  7590. },
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(78, "kg"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/kane/front.svg",
  7602. extra: 978 / 899
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(2.1, "m"),
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(1, "km"),
  7614. default: true
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(200, "kg"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/tegon/front.svg",
  7627. bottom: 0.01,
  7628. extra: 1
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Micro",
  7635. height: math.unit(1, "inch")
  7636. },
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(6 + 3 / 12, "feet"),
  7640. default: true
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(300, "feet")
  7645. },
  7646. {
  7647. name: "Megamacro",
  7648. height: math.unit(69, "miles")
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7654. {
  7655. side: {
  7656. height: math.unit(6, "feet"),
  7657. weight: math.unit(2304, "lbs"),
  7658. name: "Side",
  7659. image: {
  7660. source: "./media/characters/arcturax/side.svg",
  7661. extra: 790 / 376,
  7662. bottom: 0.01
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(2, "inch")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(6, "feet")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(39, "feet"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(7, "miles")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(50, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/sentri/front.svg",
  7695. extra: 1750 / 1570,
  7696. bottom: 0.025
  7697. }
  7698. },
  7699. frontAlt: {
  7700. height: math.unit(6, "feet"),
  7701. weight: math.unit(50, "lbs"),
  7702. name: "Front (Alt)",
  7703. image: {
  7704. source: "./media/characters/sentri/front-alt.svg",
  7705. extra: 1750 / 1570,
  7706. bottom: 0.025
  7707. }
  7708. },
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(15, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(2500, "feet")
  7719. }
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(5 + 8 / 12, "feet"),
  7727. weight: math.unit(130, "lbs"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/corvin/front.svg",
  7731. extra: 1803 / 1629
  7732. }
  7733. },
  7734. frontShirt: {
  7735. height: math.unit(5 + 8 / 12, "feet"),
  7736. weight: math.unit(130, "lbs"),
  7737. name: "Front (Shirt)",
  7738. image: {
  7739. source: "./media/characters/corvin/front-shirt.svg",
  7740. extra: 1803 / 1629
  7741. }
  7742. },
  7743. frontPoncho: {
  7744. height: math.unit(5 + 8 / 12, "feet"),
  7745. weight: math.unit(130, "lbs"),
  7746. name: "Front (Poncho)",
  7747. image: {
  7748. source: "./media/characters/corvin/front-poncho.svg",
  7749. extra: 1803 / 1629
  7750. }
  7751. },
  7752. side: {
  7753. height: math.unit(5 + 8 / 12, "feet"),
  7754. weight: math.unit(130, "lbs"),
  7755. name: "Side",
  7756. image: {
  7757. source: "./media/characters/corvin/side.svg",
  7758. extra: 1012 / 945
  7759. }
  7760. },
  7761. back: {
  7762. height: math.unit(5 + 8 / 12, "feet"),
  7763. weight: math.unit(130, "lbs"),
  7764. name: "Back",
  7765. image: {
  7766. source: "./media/characters/corvin/back.svg",
  7767. extra: 1803 / 1629
  7768. }
  7769. },
  7770. },
  7771. [
  7772. {
  7773. name: "Micro",
  7774. height: math.unit(3, "inches")
  7775. },
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(5 + 8 / 12, "feet")
  7779. },
  7780. {
  7781. name: "Macro",
  7782. height: math.unit(300, "feet"),
  7783. default: true
  7784. },
  7785. {
  7786. name: "Megamacro",
  7787. height: math.unit(500, "miles")
  7788. }
  7789. ]
  7790. ))
  7791. characterMakers.push(() => makeCharacter(
  7792. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7793. {
  7794. front: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(135, "lbs"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/q/front.svg",
  7800. extra: 854 / 752,
  7801. bottom: 0.005
  7802. }
  7803. },
  7804. back: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(130, "lbs"),
  7807. name: "Back",
  7808. image: {
  7809. source: "./media/characters/q/back.svg",
  7810. extra: 854 / 752
  7811. }
  7812. },
  7813. },
  7814. [
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(90, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Extra Macro",
  7822. height: math.unit(300, "feet"),
  7823. },
  7824. {
  7825. name: "BIG WALF",
  7826. height: math.unit(750, "feet"),
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(150, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/carley/front.svg",
  7839. extra: 3927 / 3540,
  7840. bottom: 29.2 / 735
  7841. }
  7842. }
  7843. },
  7844. [
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(6 + 3 / 12, "feet")
  7848. },
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(185, "feet"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Megamacro",
  7856. height: math.unit(8, "miles"),
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(3, "feet"),
  7865. weight: math.unit(28, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/citrine/front.svg"
  7869. }
  7870. }
  7871. },
  7872. [
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(3, "feet"),
  7876. default: true
  7877. }
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7882. {
  7883. front: {
  7884. height: math.unit(14, "feet"),
  7885. weight: math.unit(1450, "kg"),
  7886. capacity: math.unit(15, "people"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/aura-starwind/front.svg",
  7890. extra: 1455 / 1335
  7891. }
  7892. },
  7893. side: {
  7894. height: math.unit(14, "feet"),
  7895. weight: math.unit(1450, "kg"),
  7896. capacity: math.unit(15, "people"),
  7897. name: "Side",
  7898. image: {
  7899. source: "./media/characters/aura-starwind/side.svg",
  7900. extra: 1654 / 1497
  7901. }
  7902. },
  7903. taur: {
  7904. height: math.unit(18, "feet"),
  7905. weight: math.unit(5500, "kg"),
  7906. capacity: math.unit(50, "people"),
  7907. name: "Taur",
  7908. image: {
  7909. source: "./media/characters/aura-starwind/taur.svg",
  7910. extra: 1760 / 1650
  7911. }
  7912. },
  7913. feral: {
  7914. height: math.unit(46, "feet"),
  7915. weight: math.unit(25000, "kg"),
  7916. capacity: math.unit(120, "people"),
  7917. name: "Feral",
  7918. image: {
  7919. source: "./media/characters/aura-starwind/feral.svg"
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(14, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(50, "meters")
  7932. },
  7933. {
  7934. name: "Megamacro",
  7935. height: math.unit(5000, "meters")
  7936. },
  7937. {
  7938. name: "Gigamacro",
  7939. height: math.unit(100000, "kilometers")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(2 + 7 / 12, "feet"),
  7948. weight: math.unit(32, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/rivet/front.svg",
  7952. extra: 1716 / 1658,
  7953. bottom: 0.03
  7954. }
  7955. },
  7956. foot: {
  7957. height: math.unit(0.551, "feet"),
  7958. name: "Rivet's Foot",
  7959. image: {
  7960. source: "./media/characters/rivet/foot.svg"
  7961. },
  7962. rename: true
  7963. }
  7964. },
  7965. [
  7966. {
  7967. name: "Micro",
  7968. height: math.unit(1.5, "inches"),
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(2 + 7 / 12, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(85, "feet")
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(2.2, "km")
  7982. }
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(5 + 9 / 12, "feet"),
  7990. weight: math.unit(150, "lbs"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/coffee/front.svg",
  7994. extra: 3666 / 3032,
  7995. bottom: 0.04
  7996. }
  7997. },
  7998. foot: {
  7999. height: math.unit(1.29, "feet"),
  8000. name: "Foot",
  8001. image: {
  8002. source: "./media/characters/coffee/foot.svg"
  8003. }
  8004. },
  8005. },
  8006. [
  8007. {
  8008. name: "Micro",
  8009. height: math.unit(2, "inches"),
  8010. },
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(5 + 9 / 12, "feet"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(800, "feet")
  8019. },
  8020. {
  8021. name: "Megamacro",
  8022. height: math.unit(25, "miles")
  8023. }
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(6, "feet"),
  8031. weight: math.unit(200, "lbs"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/chari-gal/front.svg",
  8035. extra: 1568 / 1385,
  8036. bottom: 0.047
  8037. }
  8038. },
  8039. gigantamax: {
  8040. height: math.unit(6 * 16, "feet"),
  8041. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8042. name: "Gigantamax",
  8043. image: {
  8044. source: "./media/characters/chari-gal/gigantamax.svg",
  8045. extra: 1124 / 888,
  8046. bottom: 0.03
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(5 + 7 / 12, "feet")
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(200, "feet"),
  8058. default: true
  8059. }
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(150, "lbs"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/nova/front.svg",
  8071. extra: 5000 / 4722,
  8072. bottom: 0.02
  8073. }
  8074. }
  8075. },
  8076. [
  8077. {
  8078. name: "Micro-",
  8079. height: math.unit(0.8, "inches")
  8080. },
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(2, "inches"),
  8084. default: true
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(3 + 1 / 12, "feet"),
  8093. weight: math.unit(21.7, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/argent/front.svg",
  8097. extra: 1471 / 1331,
  8098. bottom: 100.8 / 1575.5
  8099. }
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(2, "inches")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(3 + 1 / 12, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(120, "feet")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8120. {
  8121. lamp: {
  8122. height: math.unit(7 * 1559 / 989, "feet"),
  8123. name: "Magic Lamp",
  8124. image: {
  8125. source: "./media/characters/mira-al-cul/lamp.svg",
  8126. extra: 1617 / 1559
  8127. }
  8128. },
  8129. front: {
  8130. height: math.unit(7, "feet"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/mira-al-cul/front.svg",
  8134. extra: 1044 / 990
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Heavily Restricted",
  8141. height: math.unit(7 * 1559 / 989, "feet")
  8142. },
  8143. {
  8144. name: "Freshly Freed",
  8145. height: math.unit(50 * 1559 / 989, "feet")
  8146. },
  8147. {
  8148. name: "World Encompassing",
  8149. height: math.unit(10000 * 1559 / 989, "miles")
  8150. },
  8151. {
  8152. name: "Galactic",
  8153. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8154. },
  8155. {
  8156. name: "Palmed Universe",
  8157. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8158. default: true
  8159. },
  8160. {
  8161. name: "Multiversal Matriarch",
  8162. height: math.unit(8.87e10, "yottameters")
  8163. },
  8164. {
  8165. name: "Void Mother",
  8166. height: math.unit(3.14e110, "yottaparsecs")
  8167. },
  8168. {
  8169. name: "Toying with Transcendence",
  8170. height: math.unit(1e307, "meters")
  8171. },
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8176. {
  8177. front: {
  8178. height: math.unit(17 + 1 / 12, "feet"),
  8179. weight: math.unit(476.2 * 5, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/kuro-shi-uchū/front.svg",
  8183. extra: 2329 / 1835,
  8184. bottom: 0.02
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Micro",
  8191. height: math.unit(2, "inches")
  8192. },
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(12, "meters")
  8196. },
  8197. {
  8198. name: "Planetary",
  8199. height: math.unit(0.00929, "AU"),
  8200. default: true
  8201. },
  8202. {
  8203. name: "Universal",
  8204. height: math.unit(20, "gigaparsecs")
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(5 + 2 / 12, "feet"),
  8213. weight: math.unit(120, "lbs"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/katherine/front.svg",
  8217. extra: 2075 / 1969
  8218. }
  8219. },
  8220. dress: {
  8221. height: math.unit(5 + 2 / 12, "feet"),
  8222. weight: math.unit(120, "lbs"),
  8223. name: "Dress",
  8224. image: {
  8225. source: "./media/characters/katherine/dress.svg",
  8226. extra: 2258 / 2064
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Micro",
  8233. height: math.unit(1, "inches"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 2 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(100, "meters")
  8243. },
  8244. {
  8245. name: "Megamacro",
  8246. height: math.unit(80, "miles")
  8247. },
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(7 + 8 / 12, "feet"),
  8255. weight: math.unit(250, "lbs"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/yevis/front.svg",
  8259. extra: 1938 / 1755
  8260. }
  8261. }
  8262. },
  8263. [
  8264. {
  8265. name: "Mortal",
  8266. height: math.unit(7 + 8 / 12, "feet")
  8267. },
  8268. {
  8269. name: "Battle",
  8270. height: math.unit(25 + 11 / 12, "feet")
  8271. },
  8272. {
  8273. name: "Wrath",
  8274. height: math.unit(1654 + 11 / 12, "feet")
  8275. },
  8276. {
  8277. name: "Planet Destroyer",
  8278. height: math.unit(12000, "miles")
  8279. },
  8280. {
  8281. name: "Galaxy Conqueror",
  8282. height: math.unit(1.45, "zettameters"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Universal War",
  8287. height: math.unit(184, "gigaparsecs")
  8288. },
  8289. {
  8290. name: "Eternity War",
  8291. height: math.unit(1.98e55, "yottaparsecs")
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(5 + 8 / 12, "feet"),
  8300. weight: math.unit(63, "kg"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/xavier/front.svg",
  8304. extra: 944 / 883
  8305. }
  8306. },
  8307. frontStretch: {
  8308. height: math.unit(5 + 8 / 12, "feet"),
  8309. weight: math.unit(63, "kg"),
  8310. name: "Stretching",
  8311. image: {
  8312. source: "./media/characters/xavier/front-stretch.svg",
  8313. extra: 962 / 820
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Normal",
  8320. height: math.unit(5 + 8 / 12, "feet")
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(100, "meters"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "McLargeHuge",
  8329. height: math.unit(10, "miles")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(5 + 5 / 12, "feet"),
  8338. weight: math.unit(150, "lb"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/joshii/front.svg",
  8342. extra: 765 / 653,
  8343. bottom: 51 / 816
  8344. }
  8345. },
  8346. foot: {
  8347. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8348. name: "Foot",
  8349. image: {
  8350. source: "./media/characters/joshii/foot.svg"
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Micro",
  8357. height: math.unit(2, "inches"),
  8358. default: true
  8359. },
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(5 + 5 / 12, "feet")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(785, "feet")
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(24.5, "miles")
  8371. },
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(150, "lb"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/goddess-elizabeth/front.svg",
  8383. extra: 1800 / 1525,
  8384. bottom: 0.005
  8385. }
  8386. },
  8387. foot: {
  8388. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8389. name: "Foot",
  8390. image: {
  8391. source: "./media/characters/goddess-elizabeth/foot.svg"
  8392. }
  8393. },
  8394. mouth: {
  8395. height: math.unit(6, "feet"),
  8396. name: "Mouth",
  8397. image: {
  8398. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8399. }
  8400. },
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(12, "feet")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(80, "miles"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(15000, "parsecs")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(5 + 9 / 12, "feet"),
  8423. weight: math.unit(144, "lb"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/kara/front.svg"
  8427. }
  8428. },
  8429. feet: {
  8430. height: math.unit(6 / 6.765, "feet"),
  8431. name: "Kara's Feet",
  8432. rename: true,
  8433. image: {
  8434. source: "./media/characters/kara/feet.svg"
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(5 + 9 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(174, "feet"),
  8446. default: true
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8452. {
  8453. front: {
  8454. height: math.unit(18, "feet"),
  8455. weight: math.unit(4050, "lb"),
  8456. name: "Front",
  8457. image: {
  8458. source: "./media/characters/tyrone/front.svg",
  8459. extra: 2405 / 2270,
  8460. bottom: 182 / 2587
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(18, "feet"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Macro",
  8472. height: math.unit(300, "feet")
  8473. },
  8474. {
  8475. name: "Megamacro",
  8476. height: math.unit(15, "km")
  8477. },
  8478. {
  8479. name: "Gigamacro",
  8480. height: math.unit(500, "km")
  8481. },
  8482. {
  8483. name: "Teramacro",
  8484. height: math.unit(0.5, "gigameters")
  8485. },
  8486. {
  8487. name: "Omnimacro",
  8488. height: math.unit(1e252, "yottauniverse")
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(7 + 8 / 12, "feet"),
  8497. weight: math.unit(120, "lb"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/danny/front.svg",
  8501. extra: 1490 / 1350
  8502. }
  8503. },
  8504. back: {
  8505. height: math.unit(7 + 8 / 12, "feet"),
  8506. weight: math.unit(120, "lb"),
  8507. name: "Back",
  8508. image: {
  8509. source: "./media/characters/danny/back.svg",
  8510. extra: 1490 / 1350
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(7 + 8 / 12, "feet"),
  8518. default: true
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(3.5, "inches"),
  8527. weight: math.unit(19, "grams"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/mallow/front.svg",
  8531. extra: 471 / 431
  8532. }
  8533. },
  8534. back: {
  8535. height: math.unit(3.5, "inches"),
  8536. weight: math.unit(19, "grams"),
  8537. name: "Back",
  8538. image: {
  8539. source: "./media/characters/mallow/back.svg",
  8540. extra: 471 / 431
  8541. }
  8542. },
  8543. },
  8544. [
  8545. {
  8546. name: "Normal",
  8547. height: math.unit(3.5, "inches"),
  8548. default: true
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(9, "feet"),
  8557. weight: math.unit(230, "kg"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/starry-aqua/front.svg"
  8561. }
  8562. },
  8563. back: {
  8564. height: math.unit(9, "feet"),
  8565. weight: math.unit(230, "kg"),
  8566. name: "Back",
  8567. image: {
  8568. source: "./media/characters/starry-aqua/back.svg"
  8569. }
  8570. },
  8571. hand: {
  8572. height: math.unit(9 * 0.1168, "feet"),
  8573. name: "Hand",
  8574. image: {
  8575. source: "./media/characters/starry-aqua/hand.svg"
  8576. }
  8577. },
  8578. foot: {
  8579. height: math.unit(9 * 0.18, "feet"),
  8580. name: "Foot",
  8581. image: {
  8582. source: "./media/characters/starry-aqua/foot.svg"
  8583. }
  8584. }
  8585. },
  8586. [
  8587. {
  8588. name: "Micro",
  8589. height: math.unit(3, "inches")
  8590. },
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(9, "feet")
  8594. },
  8595. {
  8596. name: "Macro",
  8597. height: math.unit(300, "feet"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "Megamacro",
  8602. height: math.unit(3200, "feet")
  8603. }
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(230, "lb"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/luka/front.svg",
  8615. extra: 1,
  8616. bottom: 0.025
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(12 + 8 / 12, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Minimacro",
  8628. height: math.unit(20, "feet")
  8629. },
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(250, "feet")
  8633. },
  8634. {
  8635. name: "Megamacro",
  8636. height: math.unit(5, "miles")
  8637. },
  8638. {
  8639. name: "Gigamacro",
  8640. height: math.unit(8000, "miles")
  8641. },
  8642. ]
  8643. ))
  8644. characterMakers.push(() => makeCharacter(
  8645. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8646. {
  8647. front: {
  8648. height: math.unit(6, "feet"),
  8649. weight: math.unit(150, "lb"),
  8650. name: "Front",
  8651. image: {
  8652. source: "./media/characters/natalie-nightring/front.svg",
  8653. extra: 1,
  8654. bottom: 0.06
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Uh Oh",
  8661. height: math.unit(0.1, "mm")
  8662. },
  8663. {
  8664. name: "Small",
  8665. height: math.unit(3, "inches")
  8666. },
  8667. {
  8668. name: "Human Scale",
  8669. height: math.unit(6, "feet")
  8670. },
  8671. {
  8672. name: "Librarian",
  8673. height: math.unit(50, "feet"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Immense",
  8678. height: math.unit(200, "miles")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(6, "feet"),
  8687. weight: math.unit(180, "lbs"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/danni-rosie/front.svg",
  8691. extra: 1260 / 1128,
  8692. bottom: 0.022
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Micro",
  8699. height: math.unit(2, "inches"),
  8700. default: true
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(5 + 9 / 12, "feet"),
  8709. weight: math.unit(220, "lb"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/samantha-kruse/front.svg",
  8713. extra: (985 / 935),
  8714. bottom: 0.03
  8715. }
  8716. },
  8717. frontUndressed: {
  8718. height: math.unit(5 + 9 / 12, "feet"),
  8719. weight: math.unit(220, "lb"),
  8720. name: "Front (Undressed)",
  8721. image: {
  8722. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8723. extra: (973 / 923),
  8724. bottom: 0.025
  8725. }
  8726. },
  8727. fat: {
  8728. height: math.unit(5 + 9 / 12, "feet"),
  8729. weight: math.unit(900, "lb"),
  8730. name: "Front (Fat)",
  8731. image: {
  8732. source: "./media/characters/samantha-kruse/fat.svg",
  8733. extra: 2688 / 2561
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(5 + 9 / 12, "feet"),
  8741. default: true
  8742. }
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8747. {
  8748. back: {
  8749. height: math.unit(5 + 4 / 12, "feet"),
  8750. weight: math.unit(4963, "lb"),
  8751. name: "Back",
  8752. image: {
  8753. source: "./media/characters/amelia-rosie/back.svg",
  8754. extra: 1113 / 963,
  8755. bottom: 0.01
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Level 0",
  8762. height: math.unit(5 + 4 / 12, "feet")
  8763. },
  8764. {
  8765. name: "Level 1",
  8766. height: math.unit(164597, "feet"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Level 2",
  8771. height: math.unit(956243, "miles")
  8772. },
  8773. {
  8774. name: "Level 3",
  8775. height: math.unit(29421709423, "miles")
  8776. },
  8777. {
  8778. name: "Level 4",
  8779. height: math.unit(154, "lightyears")
  8780. },
  8781. {
  8782. name: "Level 5",
  8783. height: math.unit(4738272, "lightyears")
  8784. },
  8785. {
  8786. name: "Level 6",
  8787. height: math.unit(145787152896, "lightyears")
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(5 + 11 / 12, "feet"),
  8796. weight: math.unit(65, "kg"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/rook-kitara/front.svg",
  8800. extra: 1347 / 1274,
  8801. bottom: 0.005
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Totally Unfair",
  8808. height: math.unit(1.8, "mm")
  8809. },
  8810. {
  8811. name: "Lap Rookie",
  8812. height: math.unit(1.4, "feet")
  8813. },
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(5 + 11 / 12, "feet"),
  8817. default: true
  8818. },
  8819. {
  8820. name: "How Did This Happen",
  8821. height: math.unit(80, "miles")
  8822. }
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(7, "feet"),
  8830. weight: math.unit(300, "lb"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/pisces/front.svg",
  8834. extra: 2255 / 2115,
  8835. bottom: 0.03
  8836. }
  8837. },
  8838. back: {
  8839. height: math.unit(7, "feet"),
  8840. weight: math.unit(300, "lb"),
  8841. name: "Back",
  8842. image: {
  8843. source: "./media/characters/pisces/back.svg",
  8844. extra: 2146 / 2055,
  8845. bottom: 0.04
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(7, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Swimming Pool",
  8857. height: math.unit(12.2, "meters")
  8858. },
  8859. {
  8860. name: "Olympic Swimming Pool",
  8861. height: math.unit(56.3, "meters")
  8862. },
  8863. {
  8864. name: "Lake Superior",
  8865. height: math.unit(93900, "meters")
  8866. },
  8867. {
  8868. name: "Mediterranean Sea",
  8869. height: math.unit(644457, "meters")
  8870. },
  8871. {
  8872. name: "World's Oceans",
  8873. height: math.unit(4567491, "meters")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(2.3, "meters"),
  8882. weight: math.unit(120, "kg"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/zelas/front.svg"
  8886. }
  8887. },
  8888. side: {
  8889. height: math.unit(2.3, "meters"),
  8890. weight: math.unit(120, "kg"),
  8891. name: "Side",
  8892. image: {
  8893. source: "./media/characters/zelas/side.svg"
  8894. }
  8895. },
  8896. back: {
  8897. height: math.unit(2.3, "meters"),
  8898. weight: math.unit(120, "kg"),
  8899. name: "Back",
  8900. image: {
  8901. source: "./media/characters/zelas/back.svg"
  8902. }
  8903. },
  8904. foot: {
  8905. height: math.unit(1.116, "feet"),
  8906. name: "Foot",
  8907. image: {
  8908. source: "./media/characters/zelas/foot.svg"
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(2.3, "meters")
  8916. },
  8917. {
  8918. name: "Macro",
  8919. height: math.unit(30, "meters"),
  8920. default: true
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(1, "inch"),
  8929. weight: math.unit(0.21, "grams"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/talbot/front.svg",
  8933. extra: 594 / 544
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Micro",
  8940. height: math.unit(1, "inch"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8947. {
  8948. front: {
  8949. height: math.unit(3 + 3 / 12, "feet"),
  8950. weight: math.unit(51.8, "lb"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/fliss/front.svg",
  8954. extra: 840 / 640
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Teeny Tiny",
  8961. height: math.unit(1, "mm")
  8962. },
  8963. {
  8964. name: "Small",
  8965. height: math.unit(1, "inch"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Standard Sylveon",
  8970. height: math.unit(3 + 3 / 12, "feet")
  8971. },
  8972. {
  8973. name: "Large Nuisance",
  8974. height: math.unit(33, "feet")
  8975. },
  8976. {
  8977. name: "City Filler",
  8978. height: math.unit(3000, "feet")
  8979. },
  8980. {
  8981. name: "New Horizon",
  8982. height: math.unit(6000, "miles")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(5, "cm"),
  8991. weight: math.unit(1.94, "g"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/fleta/front.svg",
  8995. extra: 835 / 803
  8996. }
  8997. },
  8998. back: {
  8999. height: math.unit(5, "cm"),
  9000. weight: math.unit(1.94, "g"),
  9001. name: "Back",
  9002. image: {
  9003. source: "./media/characters/fleta/back.svg",
  9004. extra: 835 / 803
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(5, "cm"),
  9012. default: true
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(225, "lb"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/dominic/front.svg",
  9025. extra: 1770 / 1620,
  9026. bottom: 0.025
  9027. }
  9028. },
  9029. back: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(225, "lb"),
  9032. name: "Back",
  9033. image: {
  9034. source: "./media/characters/dominic/back.svg",
  9035. extra: 1745 / 1620,
  9036. bottom: 0.065
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Nano",
  9043. height: math.unit(0.1, "mm")
  9044. },
  9045. {
  9046. name: "Micro-",
  9047. height: math.unit(1, "mm")
  9048. },
  9049. {
  9050. name: "Micro",
  9051. height: math.unit(4, "inches")
  9052. },
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(6 + 4 / 12, "feet"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(115, "feet")
  9061. },
  9062. {
  9063. name: "Macro+",
  9064. height: math.unit(955, "feet")
  9065. },
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(8990, "feet")
  9069. },
  9070. {
  9071. name: "Gigmacro",
  9072. height: math.unit(9310, "miles")
  9073. },
  9074. {
  9075. name: "Teramacro",
  9076. height: math.unit(1567005010, "miles")
  9077. },
  9078. {
  9079. name: "Examacro",
  9080. height: math.unit(1425, "parsecs")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(400, "feet"),
  9089. weight: math.unit(44444444, "lb"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/major-colonel/front.svg"
  9093. }
  9094. },
  9095. back: {
  9096. height: math.unit(400, "feet"),
  9097. weight: math.unit(44444444, "lb"),
  9098. name: "Back",
  9099. image: {
  9100. source: "./media/characters/major-colonel/back.svg"
  9101. }
  9102. },
  9103. },
  9104. [
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(400, "feet"),
  9108. default: true
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9114. {
  9115. catFront: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(120, "lb"),
  9118. name: "Front (Cat Side)",
  9119. image: {
  9120. source: "./media/characters/axel-lycan/cat-front.svg",
  9121. extra: 430 / 402,
  9122. bottom: 43 / 472.35
  9123. }
  9124. },
  9125. catBack: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(120, "lb"),
  9128. name: "Back (Cat Side)",
  9129. image: {
  9130. source: "./media/characters/axel-lycan/cat-back.svg",
  9131. extra: 447 / 419,
  9132. bottom: 23.3 / 469
  9133. }
  9134. },
  9135. wolfFront: {
  9136. height: math.unit(6, "feet"),
  9137. weight: math.unit(120, "lb"),
  9138. name: "Front (Wolf Side)",
  9139. image: {
  9140. source: "./media/characters/axel-lycan/wolf-front.svg",
  9141. extra: 485 / 456,
  9142. bottom: 19 / 504
  9143. }
  9144. },
  9145. wolfBack: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(120, "lb"),
  9148. name: "Back (Wolf Side)",
  9149. image: {
  9150. source: "./media/characters/axel-lycan/wolf-back.svg",
  9151. extra: 475 / 438,
  9152. bottom: 39.2 / 514
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(1, "km"),
  9160. default: true
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(5 + 9 / 12, "feet"),
  9169. weight: math.unit(175, "lb"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/vanrel-hyena/front.svg",
  9173. extra: 1086 / 1010,
  9174. bottom: 0.04
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(5 + 9 / 12, "feet"),
  9182. default: true
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(103, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/abbott-absol/front.svg",
  9195. extra: 2010 / 1842
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Megamicro",
  9202. height: math.unit(0.1, "mm")
  9203. },
  9204. {
  9205. name: "Micro",
  9206. height: math.unit(1, "inch")
  9207. },
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(6, "feet"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(264, "lb"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/hector/front.svg",
  9224. extra: 2280 / 2130,
  9225. bottom: 0.07
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Normal",
  9232. height: math.unit(12.25, "foot"),
  9233. default: true
  9234. },
  9235. {
  9236. name: "Macro",
  9237. height: math.unit(160, "feet")
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(150, "lb"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/sal/front.svg",
  9250. extra: 1846 / 1699,
  9251. bottom: 0.04
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Megamacro",
  9258. height: math.unit(10, "miles"),
  9259. default: true
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9265. {
  9266. front: {
  9267. height: math.unit(3, "meters"),
  9268. weight: math.unit(450, "kg"),
  9269. name: "front",
  9270. image: {
  9271. source: "./media/characters/ranger/front.svg",
  9272. extra: 2401 / 2243,
  9273. bottom: 0.05
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(3, "meters"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(14, "feet"),
  9290. weight: math.unit(800, "kg"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/theresa/front.svg",
  9294. extra: 3575 / 3346,
  9295. bottom: 0.03
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(14, "feet"),
  9303. default: true
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9309. {
  9310. front: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(3, "kg"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/ine/front.svg",
  9316. extra: 678 / 539,
  9317. bottom: 0.023
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(2.265, "feet"),
  9325. default: true
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9331. {
  9332. front: {
  9333. height: math.unit(5, "feet"),
  9334. weight: math.unit(30, "kg"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/vial/front.svg",
  9338. extra: 1365 / 1277,
  9339. bottom: 0.04
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5, "feet"),
  9347. default: true
  9348. },
  9349. ]
  9350. ))
  9351. characterMakers.push(() => makeCharacter(
  9352. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9353. {
  9354. side: {
  9355. height: math.unit(3.4, "meters"),
  9356. weight: math.unit(1000, "lb"),
  9357. name: "Side",
  9358. image: {
  9359. source: "./media/characters/rovoska/side.svg",
  9360. extra: 4403 / 1515
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(3.4, "meters"),
  9368. default: true
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9374. {
  9375. front: {
  9376. height: math.unit(8, "feet"),
  9377. weight: math.unit(315, "lb"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/gunner-rotthbauer/front.svg"
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(8, "feet"),
  9385. weight: math.unit(315, "lb"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/gunner-rotthbauer/back.svg"
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(3.5, "inches")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(8, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(250, "feet")
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(1, "AU")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(5 + 5 / 12, "feet"),
  9417. weight: math.unit(140, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/allatia/front.svg",
  9421. extra: 1227 / 1180,
  9422. bottom: 0.027
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(5 + 5 / 12, "feet")
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(250, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Megamacro",
  9438. height: math.unit(8, "miles")
  9439. }
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/tene/front.svg",
  9451. extra: 1728 / 1578,
  9452. bottom: 0.022
  9453. }
  9454. },
  9455. stomping: {
  9456. height: math.unit(2.025, "meters"),
  9457. weight: math.unit(120, "lb"),
  9458. name: "Stomping",
  9459. image: {
  9460. source: "./media/characters/tene/stomping.svg",
  9461. extra: 938 / 873,
  9462. bottom: 0.01
  9463. }
  9464. },
  9465. sitting: {
  9466. height: math.unit(1, "meter"),
  9467. weight: math.unit(120, "lb"),
  9468. name: "Sitting",
  9469. image: {
  9470. source: "./media/characters/tene/sitting.svg",
  9471. extra: 437 / 415,
  9472. bottom: 0.1
  9473. }
  9474. },
  9475. feral: {
  9476. height: math.unit(3.9, "feet"),
  9477. weight: math.unit(250, "lb"),
  9478. name: "Feral",
  9479. image: {
  9480. source: "./media/characters/tene/feral.svg",
  9481. extra: 717 / 458,
  9482. bottom: 0.179
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(6, "feet")
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(300, "feet"),
  9494. default: true
  9495. },
  9496. {
  9497. name: "Megamacro",
  9498. height: math.unit(5, "miles")
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9504. {
  9505. side: {
  9506. height: math.unit(6, "feet"),
  9507. name: "Side",
  9508. image: {
  9509. source: "./media/characters/evander/side.svg",
  9510. extra: 877 / 477
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(0.83, "meters"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(12, "feet"),
  9527. weight: math.unit(1000, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9531. extra: 1762 / 1611
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(12, "feet"),
  9536. weight: math.unit(1000, "lb"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9540. extra: 1762 / 1611
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(12, "feet"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Kaiju",
  9552. height: math.unit(150, "feet")
  9553. },
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(150, "lb"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/zero-alurus/front.svg"
  9565. }
  9566. },
  9567. back: {
  9568. height: math.unit(6, "feet"),
  9569. weight: math.unit(150, "lb"),
  9570. name: "Back",
  9571. image: {
  9572. source: "./media/characters/zero-alurus/back.svg"
  9573. }
  9574. },
  9575. },
  9576. [
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(5 + 10 / 12, "feet")
  9580. },
  9581. {
  9582. name: "Macro",
  9583. height: math.unit(60, "feet"),
  9584. default: true
  9585. },
  9586. {
  9587. name: "Macro+",
  9588. height: math.unit(450, "feet")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(200, "lb"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/mega-shi/front.svg",
  9601. extra: 1279 / 1250,
  9602. bottom: 0.02
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(200, "lb"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/mega-shi/back.svg",
  9611. extra: 1279 / 1250,
  9612. bottom: 0.02
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(16 + 6 / 12, "feet")
  9620. },
  9621. {
  9622. name: "Third Dimension",
  9623. height: math.unit(40, "meters")
  9624. },
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(660, "feet"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(10, "miles")
  9633. },
  9634. {
  9635. name: "Planetary Launch",
  9636. height: math.unit(500, "miles")
  9637. },
  9638. {
  9639. name: "Interstellar",
  9640. height: math.unit(1e9, "miles")
  9641. },
  9642. {
  9643. name: "Leaving the Universe",
  9644. height: math.unit(1, "gigaparsec")
  9645. },
  9646. {
  9647. name: "Travelling Universes",
  9648. height: math.unit(30e15, "parsecs")
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(150, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/odyssey/front.svg",
  9661. extra: 1782 / 1582,
  9662. bottom: 0.01
  9663. }
  9664. },
  9665. side: {
  9666. height: math.unit(5.7, "feet"),
  9667. weight: math.unit(140, "lb"),
  9668. name: "Side",
  9669. image: {
  9670. source: "./media/characters/odyssey/side.svg",
  9671. extra: 6462 / 5700
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(5 + 4 / 12, "feet")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(1, "km")
  9683. },
  9684. {
  9685. name: "Megamacro",
  9686. height: math.unit(3000, "km")
  9687. },
  9688. {
  9689. name: "Gigamacro",
  9690. height: math.unit(1, "AU"),
  9691. default: true
  9692. },
  9693. {
  9694. name: "Omniversal",
  9695. height: math.unit(100e14, "lightyears")
  9696. },
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(6, "feet"),
  9704. weight: math.unit(300, "lb"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/mekuto/front.svg",
  9708. extra: 921 / 832,
  9709. bottom: 0.03
  9710. }
  9711. },
  9712. hand: {
  9713. height: math.unit(6 / 10.24, "feet"),
  9714. name: "Hand",
  9715. image: {
  9716. source: "./media/characters/mekuto/hand.svg"
  9717. }
  9718. },
  9719. foot: {
  9720. height: math.unit(6 / 5.05, "feet"),
  9721. name: "Foot",
  9722. image: {
  9723. source: "./media/characters/mekuto/foot.svg"
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Minimicro",
  9730. height: math.unit(0.2, "inches")
  9731. },
  9732. {
  9733. name: "Micro",
  9734. height: math.unit(1.5, "inches")
  9735. },
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(5 + 11 / 12, "feet"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Minimacro",
  9743. height: math.unit(17 + 9 / 12, "feet")
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(177.5, "feet")
  9748. },
  9749. {
  9750. name: "Megamacro",
  9751. height: math.unit(152, "miles")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(6.5, "inches"),
  9760. weight: math.unit(13, "oz"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/dafydd-tomos/front.svg",
  9764. extra: 2990 / 2603,
  9765. bottom: 0.03
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Micro",
  9772. height: math.unit(6.5, "inches"),
  9773. default: true
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/splinter/front.svg",
  9786. extra: 2990 / 2882,
  9787. bottom: 0.04
  9788. }
  9789. },
  9790. back: {
  9791. height: math.unit(6, "feet"),
  9792. weight: math.unit(150, "lb"),
  9793. name: "Back",
  9794. image: {
  9795. source: "./media/characters/splinter/back.svg",
  9796. extra: 2990 / 2882,
  9797. bottom: 0.04
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(6, "feet")
  9805. },
  9806. {
  9807. name: "Macro",
  9808. height: math.unit(230, "meters"),
  9809. default: true
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(4 + 10 / 12, "feet"),
  9818. weight: math.unit(480, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/snow-gabumon/front.svg",
  9822. extra: 1140 / 963,
  9823. bottom: 0.058
  9824. }
  9825. },
  9826. back: {
  9827. height: math.unit(4 + 10 / 12, "feet"),
  9828. weight: math.unit(480, "lb"),
  9829. name: "Back",
  9830. image: {
  9831. source: "./media/characters/snow-gabumon/back.svg",
  9832. extra: 1115 / 962,
  9833. bottom: 0.041
  9834. }
  9835. },
  9836. frontUndresed: {
  9837. height: math.unit(4 + 10 / 12, "feet"),
  9838. weight: math.unit(480, "lb"),
  9839. name: "Front (Undressed)",
  9840. image: {
  9841. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9842. extra: 1061 / 960,
  9843. bottom: 0.045
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Micro",
  9850. height: math.unit(1, "inch")
  9851. },
  9852. {
  9853. name: "Normal",
  9854. height: math.unit(4 + 10 / 12, "feet"),
  9855. default: true
  9856. },
  9857. {
  9858. name: "Macro",
  9859. height: math.unit(200, "feet")
  9860. },
  9861. {
  9862. name: "Megamacro",
  9863. height: math.unit(120, "miles")
  9864. },
  9865. {
  9866. name: "Gigamacro",
  9867. height: math.unit(9800, "miles")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(1.7, "meters"),
  9876. weight: math.unit(140, "lb"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/moody/front.svg",
  9880. extra: 3226 / 3007,
  9881. bottom: 0.087
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Micro",
  9888. height: math.unit(1, "mm")
  9889. },
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(1.7, "meters"),
  9893. default: true
  9894. },
  9895. {
  9896. name: "Macro",
  9897. height: math.unit(80, "meters")
  9898. },
  9899. {
  9900. name: "Macro+",
  9901. height: math.unit(500, "meters")
  9902. },
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9907. {
  9908. front: {
  9909. height: math.unit(6, "feet"),
  9910. weight: math.unit(150, "lb"),
  9911. name: "Front",
  9912. image: {
  9913. source: "./media/characters/zyas/front.svg",
  9914. extra: 1180 / 1120,
  9915. bottom: 0.045
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(10, "feet"),
  9923. default: true
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(500, "feet")
  9928. },
  9929. {
  9930. name: "Megamacro",
  9931. height: math.unit(5, "miles")
  9932. },
  9933. {
  9934. name: "Teramacro",
  9935. height: math.unit(150000, "miles")
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9941. {
  9942. front: {
  9943. height: math.unit(6, "feet"),
  9944. weight: math.unit(150, "lb"),
  9945. name: "Front",
  9946. image: {
  9947. source: "./media/characters/cuon/front.svg",
  9948. extra: 1390 / 1320,
  9949. bottom: 0.008
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Micro",
  9956. height: math.unit(3, "inches")
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(18 + 9 / 12, "feet"),
  9961. default: true
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(360, "feet")
  9966. },
  9967. {
  9968. name: "Megamacro",
  9969. height: math.unit(360, "miles")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(2.4, "meters"),
  9978. weight: math.unit(70, "kg"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/nyanuxk/front.svg",
  9982. extra: 1172 / 1084,
  9983. bottom: 0.065
  9984. }
  9985. },
  9986. side: {
  9987. height: math.unit(2.4, "meters"),
  9988. weight: math.unit(70, "kg"),
  9989. name: "Side",
  9990. image: {
  9991. source: "./media/characters/nyanuxk/side.svg",
  9992. extra: 1190 / 1132,
  9993. bottom: 0.007
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(2.4, "meters"),
  9998. weight: math.unit(70, "kg"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/nyanuxk/back.svg",
  10002. extra: 1200 / 1141,
  10003. bottom: 0.015
  10004. }
  10005. },
  10006. foot: {
  10007. height: math.unit(0.52, "meters"),
  10008. name: "Foot",
  10009. image: {
  10010. source: "./media/characters/nyanuxk/foot.svg"
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(2, "cm")
  10018. },
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(2.4, "meters"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Smaller Macro",
  10026. height: math.unit(120, "meters")
  10027. },
  10028. {
  10029. name: "Bigger Macro",
  10030. height: math.unit(1.2, "km")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(15, "kilometers")
  10035. },
  10036. {
  10037. name: "Gigamacro",
  10038. height: math.unit(2000, "km")
  10039. },
  10040. {
  10041. name: "Teramacro",
  10042. height: math.unit(500000, "km")
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10048. {
  10049. side: {
  10050. height: math.unit(6, "feet"),
  10051. name: "Side",
  10052. image: {
  10053. source: "./media/characters/ailbhe/side.svg",
  10054. extra: 757 / 464,
  10055. bottom: 0.041
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(1.07, "meters"),
  10063. default: true
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(120, "kg"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/zevulfius/front.svg",
  10076. extra: 965 / 903
  10077. }
  10078. },
  10079. side: {
  10080. height: math.unit(6, "feet"),
  10081. weight: math.unit(120, "kg"),
  10082. name: "Side",
  10083. image: {
  10084. source: "./media/characters/zevulfius/side.svg",
  10085. extra: 939 / 900
  10086. }
  10087. },
  10088. back: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(120, "kg"),
  10091. name: "Back",
  10092. image: {
  10093. source: "./media/characters/zevulfius/back.svg",
  10094. extra: 918 / 854,
  10095. bottom: 0.005
  10096. }
  10097. },
  10098. foot: {
  10099. height: math.unit(6 / 3.72, "feet"),
  10100. name: "Foot",
  10101. image: {
  10102. source: "./media/characters/zevulfius/foot.svg"
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Macro",
  10109. height: math.unit(750, "meters")
  10110. },
  10111. {
  10112. name: "Megamacro",
  10113. height: math.unit(20, "km"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Gigamacro",
  10118. height: math.unit(2000, "km")
  10119. },
  10120. {
  10121. name: "Teramacro",
  10122. height: math.unit(250000, "km")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(100, "feet"),
  10131. weight: math.unit(350, "kg"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/rikes/front.svg",
  10135. extra: 1565 / 1483,
  10136. bottom: 0.017
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(100, "feet"),
  10144. default: true
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10150. {
  10151. anthro: {
  10152. height: math.unit(8, "feet"),
  10153. weight: math.unit(120, "kg"),
  10154. name: "Anthro",
  10155. image: {
  10156. source: "./media/characters/adam-silver-mane/anthro.svg",
  10157. extra: 5743 / 5339,
  10158. bottom: 0.07
  10159. }
  10160. },
  10161. taur: {
  10162. height: math.unit(16, "feet"),
  10163. weight: math.unit(1500, "kg"),
  10164. name: "Taur",
  10165. image: {
  10166. source: "./media/characters/adam-silver-mane/taur.svg",
  10167. extra: 1713 / 1571,
  10168. bottom: 0.01
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Normal",
  10175. height: math.unit(8, "feet")
  10176. },
  10177. {
  10178. name: "Minimacro",
  10179. height: math.unit(80, "feet")
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(800, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(8000, "feet")
  10189. },
  10190. {
  10191. name: "Gigamacro",
  10192. height: math.unit(800, "miles")
  10193. },
  10194. {
  10195. name: "Teramacro",
  10196. height: math.unit(80000, "miles")
  10197. },
  10198. {
  10199. name: "Celestial",
  10200. height: math.unit(8e6, "miles")
  10201. },
  10202. {
  10203. name: "Star Dragon",
  10204. height: math.unit(800000, "parsecs")
  10205. },
  10206. {
  10207. name: "Godly",
  10208. height: math.unit(800, "teraparsecs")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10214. {
  10215. front: {
  10216. height: math.unit(6, "feet"),
  10217. weight: math.unit(150, "lb"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/ky'owin/front.svg",
  10221. extra: 3888 / 3068,
  10222. bottom: 0.015
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(6 + 8 / 12, "feet")
  10230. },
  10231. {
  10232. name: "Large",
  10233. height: math.unit(68, "feet")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(132, "feet")
  10238. },
  10239. {
  10240. name: "Macro+",
  10241. height: math.unit(340, "feet")
  10242. },
  10243. {
  10244. name: "Macro++",
  10245. height: math.unit(680, "feet"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(1, "mile")
  10251. },
  10252. {
  10253. name: "Megamacro+",
  10254. height: math.unit(10, "miles")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(4, "feet"),
  10263. weight: math.unit(50, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/mal/front.svg",
  10267. extra: 785 / 724,
  10268. bottom: 0.07
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(4, "inches")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(4, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(200, "feet")
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(150, "lb"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/jordan-deware/front.svg",
  10297. extra: 1191 / 1012
  10298. }
  10299. },
  10300. },
  10301. [
  10302. {
  10303. name: "Nano",
  10304. height: math.unit(0.01, "mm")
  10305. },
  10306. {
  10307. name: "Minimicro",
  10308. height: math.unit(1, "mm")
  10309. },
  10310. {
  10311. name: "Micro",
  10312. height: math.unit(0.5, "inches")
  10313. },
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(4, "feet"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Minimacro",
  10321. height: math.unit(40, "meters")
  10322. },
  10323. {
  10324. name: "Small Macro",
  10325. height: math.unit(400, "meters")
  10326. },
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(4, "miles")
  10330. },
  10331. {
  10332. name: "Megamacro",
  10333. height: math.unit(40, "miles")
  10334. },
  10335. {
  10336. name: "Megamacro+",
  10337. height: math.unit(400, "miles")
  10338. },
  10339. {
  10340. name: "Gigamacro",
  10341. height: math.unit(400000, "miles")
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10347. {
  10348. side: {
  10349. height: math.unit(6, "feet"),
  10350. weight: math.unit(150, "lb"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/kimiko/side.svg",
  10354. extra: 600 / 358
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(15, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(220, "feet")
  10367. },
  10368. {
  10369. name: "Macro+",
  10370. height: math.unit(1450, "feet")
  10371. },
  10372. {
  10373. name: "Megamacro",
  10374. height: math.unit(11500, "feet")
  10375. },
  10376. {
  10377. name: "Gigamacro",
  10378. height: math.unit(9500, "miles")
  10379. },
  10380. {
  10381. name: "Teramacro",
  10382. height: math.unit(2208005005, "miles")
  10383. },
  10384. {
  10385. name: "Examacro",
  10386. height: math.unit(2750, "parsecs")
  10387. },
  10388. {
  10389. name: "Zettamacro",
  10390. height: math.unit(101500, "parsecs")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(70, "kg"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/andrew-sleepy/front.svg"
  10403. }
  10404. },
  10405. side: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(70, "kg"),
  10408. name: "Side",
  10409. image: {
  10410. source: "./media/characters/andrew-sleepy/side.svg"
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Micro",
  10417. height: math.unit(1, "mm"),
  10418. default: true
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(150, "lb"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/judio/front.svg",
  10431. extra: 1258 / 1110
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(5 + 6 / 12, "feet")
  10439. },
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(1000, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Megamacro",
  10447. height: math.unit(10, "miles")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(68, "kg"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/nomaxice/front.svg",
  10460. extra: 1498 / 1073,
  10461. bottom: 0.075
  10462. }
  10463. },
  10464. foot: {
  10465. height: math.unit(1.1, "feet"),
  10466. name: "Foot",
  10467. image: {
  10468. source: "./media/characters/nomaxice/foot.svg"
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(8, "cm")
  10476. },
  10477. {
  10478. name: "Norm",
  10479. height: math.unit(1.82, "m")
  10480. },
  10481. {
  10482. name: "Norm+",
  10483. height: math.unit(8.8, "feet")
  10484. },
  10485. {
  10486. name: "Big",
  10487. height: math.unit(8, "meters"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(18, "meters")
  10493. },
  10494. {
  10495. name: "Macro+",
  10496. height: math.unit(88, "meters")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(12, "feet"),
  10505. weight: math.unit(1.5, "tons"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/dydros/front.svg",
  10509. extra: 863 / 800,
  10510. bottom: 0.015
  10511. }
  10512. },
  10513. back: {
  10514. height: math.unit(12, "feet"),
  10515. weight: math.unit(1.5, "tons"),
  10516. name: "Back",
  10517. image: {
  10518. source: "./media/characters/dydros/back.svg",
  10519. extra: 900 / 843,
  10520. bottom: 0.005
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(12, "feet"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(100, "kg"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/riggi/front.svg",
  10541. extra: 5787 / 5303
  10542. }
  10543. },
  10544. hyper: {
  10545. height: math.unit(6 * 5 / 3, "feet"),
  10546. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10547. name: "Hyper",
  10548. image: {
  10549. source: "./media/characters/riggi/hyper.svg",
  10550. extra: 3595 / 3485
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Small Macro",
  10557. height: math.unit(50, "feet")
  10558. },
  10559. {
  10560. name: "Default",
  10561. height: math.unit(200, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Loom",
  10566. height: math.unit(10000, "feet")
  10567. },
  10568. {
  10569. name: "Cruising Altitude",
  10570. height: math.unit(30000, "feet")
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(100, "miles")
  10575. },
  10576. {
  10577. name: "Continent Sized",
  10578. height: math.unit(2800, "miles")
  10579. },
  10580. {
  10581. name: "Earth Sized",
  10582. height: math.unit(8000, "miles")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(250, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/alexi/front.svg",
  10595. extra: 3483 / 3291,
  10596. bottom: 0.04
  10597. }
  10598. },
  10599. back: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(250, "lb"),
  10602. name: "Back",
  10603. image: {
  10604. source: "./media/characters/alexi/back.svg",
  10605. extra: 3533 / 3356,
  10606. bottom: 0.021
  10607. }
  10608. },
  10609. frontTransforming: {
  10610. height: math.unit(8.58, "feet"),
  10611. weight: math.unit(1300, "lb"),
  10612. name: "Transforming",
  10613. image: {
  10614. source: "./media/characters/alexi/front-transforming.svg",
  10615. extra: 437 / 409,
  10616. bottom: 19 / 458.66
  10617. }
  10618. },
  10619. frontTransformed: {
  10620. height: math.unit(12.5, "feet"),
  10621. weight: math.unit(4000, "lb"),
  10622. name: "Transformed",
  10623. image: {
  10624. source: "./media/characters/alexi/front-transformed.svg",
  10625. extra: 639 / 614,
  10626. bottom: 30.55 / 671
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(14, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Minimacro",
  10638. height: math.unit(30, "meters")
  10639. },
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(500, "meters")
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(9000, "km")
  10647. },
  10648. {
  10649. name: "Teramacro",
  10650. height: math.unit(384000, "km")
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10656. {
  10657. front: {
  10658. height: math.unit(6, "feet"),
  10659. weight: math.unit(150, "lb"),
  10660. name: "Front",
  10661. image: {
  10662. source: "./media/characters/kayroo/front.svg",
  10663. extra: 1153 / 1038,
  10664. bottom: 0.06
  10665. }
  10666. },
  10667. foot: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(150, "lb"),
  10670. name: "Foot",
  10671. image: {
  10672. source: "./media/characters/kayroo/foot.svg"
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(8, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Minimacro",
  10684. height: math.unit(250, "feet")
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(2800, "feet")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(5200, "feet")
  10693. },
  10694. {
  10695. name: "Gigamacro",
  10696. height: math.unit(27000, "feet")
  10697. },
  10698. {
  10699. name: "Omega",
  10700. height: math.unit(45000, "feet")
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(18, "feet"),
  10709. weight: math.unit(5800, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/rhys/front.svg",
  10713. extra: 3386 / 3090,
  10714. bottom: 0.07
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(18, "feet"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Working Size",
  10726. height: math.unit(200, "feet")
  10727. },
  10728. {
  10729. name: "Demolition Size",
  10730. height: math.unit(2000, "feet")
  10731. },
  10732. {
  10733. name: "Maximum Licensed Size",
  10734. height: math.unit(5, "miles")
  10735. },
  10736. {
  10737. name: "Maximum Observed Size",
  10738. height: math.unit(10, "yottameters")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(250, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/toto/front.svg",
  10751. extra: 527 / 479,
  10752. bottom: 0.05
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(3, "feet")
  10760. },
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(10, "feet")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(150, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Megamacro",
  10772. height: math.unit(1200, "feet")
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "King", species: ["lion"], tags: ["anthro"] },
  10778. {
  10779. back: {
  10780. height: math.unit(6, "feet"),
  10781. weight: math.unit(150, "lb"),
  10782. name: "Back",
  10783. image: {
  10784. source: "./media/characters/king/back.svg"
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Micro",
  10791. height: math.unit(2, "inches")
  10792. },
  10793. {
  10794. name: "Normal",
  10795. height: math.unit(8, "feet")
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(200, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Megamacro",
  10804. height: math.unit(50, "miles")
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10810. {
  10811. anthro: {
  10812. height: math.unit(6 + 5 / 12, "feet"),
  10813. weight: math.unit(280, "lb"),
  10814. name: "Anthro",
  10815. image: {
  10816. source: "./media/characters/cordite/anthro.svg",
  10817. extra: 1986 / 1905,
  10818. bottom: 0.025
  10819. }
  10820. },
  10821. feral: {
  10822. height: math.unit(2, "feet"),
  10823. weight: math.unit(90, "lb"),
  10824. name: "Feral",
  10825. image: {
  10826. source: "./media/characters/cordite/feral.svg",
  10827. extra: 1260 / 755,
  10828. bottom: 0.05
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(6 + 5 / 12, "feet"),
  10836. default: true
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10842. {
  10843. front: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(150, "lb"),
  10846. name: "Front",
  10847. image: {
  10848. source: "./media/characters/pianostrong/front.svg",
  10849. extra: 6577 / 6254,
  10850. bottom: 0.02
  10851. }
  10852. },
  10853. side: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(150, "lb"),
  10856. name: "Side",
  10857. image: {
  10858. source: "./media/characters/pianostrong/side.svg",
  10859. extra: 6106 / 5730
  10860. }
  10861. },
  10862. back: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(150, "lb"),
  10865. name: "Back",
  10866. image: {
  10867. source: "./media/characters/pianostrong/back.svg",
  10868. extra: 6085 / 5733,
  10869. bottom: 0.01
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Macro",
  10876. height: math.unit(100, "feet")
  10877. },
  10878. {
  10879. name: "Macro+",
  10880. height: math.unit(300, "feet"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Macro++",
  10885. height: math.unit(1000, "feet")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(150, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/kona/front.svg",
  10898. extra: 2960 / 2629,
  10899. bottom: 0.005
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(11 + 8 / 12, "feet")
  10907. },
  10908. {
  10909. name: "Macro",
  10910. height: math.unit(850, "feet"),
  10911. default: true
  10912. },
  10913. {
  10914. name: "Macro+",
  10915. height: math.unit(1.5, "km"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Megamacro",
  10920. height: math.unit(80, "miles")
  10921. },
  10922. {
  10923. name: "Gigamacro",
  10924. height: math.unit(3500, "miles")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10930. {
  10931. side: {
  10932. height: math.unit(1.9, "meters"),
  10933. weight: math.unit(326, "kg"),
  10934. name: "Side",
  10935. image: {
  10936. source: "./media/characters/levi/side.svg",
  10937. extra: 1704 / 1334,
  10938. bottom: 0.02
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(1.9, "meters"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(20, "meters")
  10951. },
  10952. {
  10953. name: "Macro+",
  10954. height: math.unit(200, "meters")
  10955. },
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(2, "km")
  10959. },
  10960. {
  10961. name: "Megamacro+",
  10962. height: math.unit(20, "km")
  10963. },
  10964. {
  10965. name: "Gigamacro",
  10966. height: math.unit(2500, "km")
  10967. },
  10968. {
  10969. name: "Gigamacro+",
  10970. height: math.unit(120000, "km")
  10971. },
  10972. {
  10973. name: "Teramacro",
  10974. height: math.unit(7.77e6, "km")
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(6 + 4 / 12, "feet"),
  10983. weight: math.unit(188, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/bmc/front.svg",
  10987. extra: 1067 / 1022,
  10988. bottom: 0.047
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Human-sized",
  10995. height: math.unit(6 + 4 / 12, "feet")
  10996. },
  10997. {
  10998. name: "Small",
  10999. height: math.unit(250, "feet")
  11000. },
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(1250, "feet"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Good Day",
  11008. height: math.unit(88, "miles")
  11009. },
  11010. {
  11011. name: "Largest Measured Size",
  11012. height: math.unit(11.2e6, "lightyears")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(20, "feet"),
  11021. weight: math.unit(2016, "kg"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/sven-the-kaiju/front.svg",
  11025. extra: 1479 / 1449,
  11026. bottom: 0.05
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Fairy",
  11033. height: math.unit(6, "inches")
  11034. },
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(20, "feet"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Rampage",
  11042. height: math.unit(200, "feet")
  11043. },
  11044. {
  11045. name: "Archfey Forest Guardian",
  11046. height: math.unit(1, "mile")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(4, "meters"),
  11055. weight: math.unit(2, "tons"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/marik/front.svg",
  11059. extra: 1057 / 1003,
  11060. bottom: 0.08
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(4, "meters"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Macro",
  11072. height: math.unit(20, "meters")
  11073. },
  11074. {
  11075. name: "Megamacro",
  11076. height: math.unit(50, "km")
  11077. },
  11078. {
  11079. name: "Gigamacro",
  11080. height: math.unit(100, "km")
  11081. },
  11082. {
  11083. name: "Alpha Macro",
  11084. height: math.unit(7.88e7, "yottameters")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11090. {
  11091. front: {
  11092. height: math.unit(6, "feet"),
  11093. weight: math.unit(110, "lb"),
  11094. name: "Front",
  11095. image: {
  11096. source: "./media/characters/mel/front.svg",
  11097. extra: 736 / 617,
  11098. bottom: 0.017
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Pico",
  11105. height: math.unit(3, "pm")
  11106. },
  11107. {
  11108. name: "Nano",
  11109. height: math.unit(3, "nm")
  11110. },
  11111. {
  11112. name: "Micro",
  11113. height: math.unit(0.3, "mm"),
  11114. default: true
  11115. },
  11116. {
  11117. name: "Micro+",
  11118. height: math.unit(3, "mm")
  11119. },
  11120. {
  11121. name: "Normal",
  11122. height: math.unit(5 + 10.5 / 12, "feet")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11128. {
  11129. kaiju: {
  11130. height: math.unit(1.75, "meters"),
  11131. weight: math.unit(55, "kg"),
  11132. name: "Kaiju",
  11133. image: {
  11134. source: "./media/characters/lykonous/kaiju.svg",
  11135. extra: 1055 / 946,
  11136. bottom: 0.135
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(2.5, "meters"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Kaiju Dragon",
  11148. height: math.unit(60, "meters")
  11149. },
  11150. {
  11151. name: "Mega Kaiju",
  11152. height: math.unit(120, "km")
  11153. },
  11154. {
  11155. name: "Giga Kaiju",
  11156. height: math.unit(200, "megameters")
  11157. },
  11158. {
  11159. name: "Terra Kaiju",
  11160. height: math.unit(400, "gigameters")
  11161. },
  11162. {
  11163. name: "Kaiju Dragon God",
  11164. height: math.unit(13000, "exaparsecs")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/blü/front.svg",
  11177. extra: 1883 / 1564,
  11178. bottom: 0.031
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(13, "feet"),
  11186. default: true
  11187. },
  11188. {
  11189. name: "Big Boi",
  11190. height: math.unit(150, "meters")
  11191. },
  11192. {
  11193. name: "Mini Stomper",
  11194. height: math.unit(300, "meters")
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(1000, "meters")
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(11000, "meters")
  11203. },
  11204. {
  11205. name: "Gigamacro",
  11206. height: math.unit(11000, "km")
  11207. },
  11208. {
  11209. name: "Teramacro",
  11210. height: math.unit(420000, "km")
  11211. },
  11212. {
  11213. name: "Examacro",
  11214. height: math.unit(120, "parsecs")
  11215. },
  11216. {
  11217. name: "God Tho",
  11218. height: math.unit(98000000000, "parsecs")
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11224. {
  11225. taurFront: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(200, "lb"),
  11228. name: "Taur (Front)",
  11229. image: {
  11230. source: "./media/characters/scales/taur-front.svg",
  11231. extra: 1,
  11232. bottom: 0.05
  11233. }
  11234. },
  11235. taurBack: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(200, "lb"),
  11238. name: "Taur (Back)",
  11239. image: {
  11240. source: "./media/characters/scales/taur-back.svg",
  11241. extra: 1,
  11242. bottom: 0.08
  11243. }
  11244. },
  11245. anthro: {
  11246. height: math.unit(6 * 7 / 12, "feet"),
  11247. weight: math.unit(100, "lb"),
  11248. name: "Anthro",
  11249. image: {
  11250. source: "./media/characters/scales/anthro.svg",
  11251. extra: 1,
  11252. bottom: 0.06
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(12, "feet"),
  11260. default: true
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/koragos/front.svg",
  11273. extra: 841 / 794,
  11274. bottom: 0.035
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/koragos/back.svg",
  11283. extra: 841 / 810,
  11284. bottom: 0.022
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(6 + 11 / 12, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(490, "feet")
  11297. },
  11298. {
  11299. name: "Megamacro",
  11300. height: math.unit(10, "miles")
  11301. },
  11302. {
  11303. name: "Gigamacro",
  11304. height: math.unit(50, "miles")
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(250, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/xylrem/front.svg",
  11317. extra: 3323 / 3050,
  11318. bottom: 0.065
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Micro",
  11325. height: math.unit(4, "feet")
  11326. },
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(16, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(2720, "feet")
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(25000, "miles")
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(8, "feet"),
  11347. weight: math.unit(250, "kg"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/ikideru/front.svg",
  11351. extra: 930 / 870,
  11352. bottom: 0.087
  11353. }
  11354. },
  11355. back: {
  11356. height: math.unit(8, "feet"),
  11357. weight: math.unit(250, "kg"),
  11358. name: "Back",
  11359. image: {
  11360. source: "./media/characters/ikideru/back.svg",
  11361. extra: 919 / 852,
  11362. bottom: 0.055
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Rare",
  11369. height: math.unit(8, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Playful Loom",
  11374. height: math.unit(80, "feet")
  11375. },
  11376. {
  11377. name: "City Leaner",
  11378. height: math.unit(230, "feet")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(2500, "feet")
  11383. },
  11384. {
  11385. name: "Gigamacro",
  11386. height: math.unit(26400, "feet")
  11387. },
  11388. {
  11389. name: "Tectonic Shifter",
  11390. height: math.unit(1.7, "megameters")
  11391. },
  11392. {
  11393. name: "Planet Carer",
  11394. height: math.unit(21, "megameters")
  11395. },
  11396. {
  11397. name: "God",
  11398. height: math.unit(11157.22, "parsecs")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(120, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/neo/front.svg"
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Micro",
  11417. height: math.unit(2, "inches"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Human Size",
  11422. height: math.unit(5 + 8 / 12, "feet")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(13 + 10 / 12, "feet"),
  11431. weight: math.unit(5320, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/chauncey-chantz/front.svg",
  11435. extra: 1587 / 1435,
  11436. bottom: 0.02
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(13 + 10 / 12, "feet"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Macro",
  11448. height: math.unit(45, "feet")
  11449. },
  11450. {
  11451. name: "Megamacro",
  11452. height: math.unit(250, "miles")
  11453. },
  11454. {
  11455. name: "Planetary",
  11456. height: math.unit(10000, "miles")
  11457. },
  11458. {
  11459. name: "Galactic",
  11460. height: math.unit(40000, "parsecs")
  11461. },
  11462. {
  11463. name: "Universal",
  11464. height: math.unit(1, "yottameter")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/epifox/front.svg",
  11477. extra: 1,
  11478. bottom: 0.075
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(6, "inches")
  11486. },
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(12, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(3810, "feet")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(500, "miles")
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11504. {
  11505. front: {
  11506. height: math.unit(1.8796, "m"),
  11507. weight: math.unit(230, "lb"),
  11508. name: "Front",
  11509. image: {
  11510. source: "./media/characters/colin-t/front.svg",
  11511. extra: 1272 / 1193,
  11512. bottom: 0.07
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Micro",
  11519. height: math.unit(0.571, "meters")
  11520. },
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(1.8796, "meters"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Tall",
  11528. height: math.unit(4, "meters")
  11529. },
  11530. {
  11531. name: "Macro",
  11532. height: math.unit(67.241, "meters")
  11533. },
  11534. {
  11535. name: "Megamacro",
  11536. height: math.unit(371.856, "meters")
  11537. },
  11538. {
  11539. name: "Planetary",
  11540. height: math.unit(12631.5689, "km")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(1.85, "meters"),
  11549. weight: math.unit(80, "kg"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/matvei/front.svg",
  11553. extra: 614 / 594,
  11554. bottom: 0.01
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(1.85, "meters"),
  11562. default: true
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(5 + 9 / 12, "feet"),
  11571. weight: math.unit(70, "lb"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/quincy/front.svg",
  11575. extra: 3041 / 2751
  11576. }
  11577. },
  11578. back: {
  11579. height: math.unit(5 + 9 / 12, "feet"),
  11580. weight: math.unit(70, "lb"),
  11581. name: "Back",
  11582. image: {
  11583. source: "./media/characters/quincy/back.svg",
  11584. extra: 3041 / 2751
  11585. }
  11586. },
  11587. flying: {
  11588. height: math.unit(5 + 4 / 12, "feet"),
  11589. weight: math.unit(70, "lb"),
  11590. name: "Flying",
  11591. image: {
  11592. source: "./media/characters/quincy/flying.svg",
  11593. extra: 1044 / 930
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Micro",
  11600. height: math.unit(3, "cm")
  11601. },
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(5 + 9 / 12, "feet")
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(200, "meters"),
  11609. default: true
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(1000, "meters")
  11614. },
  11615. ]
  11616. ))
  11617. characterMakers.push(() => makeCharacter(
  11618. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11619. {
  11620. front: {
  11621. height: math.unit(4 + 7 / 12, "feet"),
  11622. weight: math.unit(50, "lb"),
  11623. name: "Front",
  11624. image: {
  11625. source: "./media/characters/vanrel/front.svg",
  11626. extra: 1,
  11627. bottom: 0.02
  11628. }
  11629. },
  11630. frontAlt: {
  11631. height: math.unit(4 + 7 / 12, "feet"),
  11632. weight: math.unit(50, "lb"),
  11633. name: "Front-alt",
  11634. image: {
  11635. source: "./media/characters/vanrel/front-alt.svg",
  11636. extra: 1,
  11637. bottom: 15 / 1511
  11638. }
  11639. },
  11640. elemental: {
  11641. height: math.unit(3, "feet"),
  11642. weight: math.unit(50, "lb"),
  11643. name: "Elemental",
  11644. image: {
  11645. source: "./media/characters/vanrel/elemental.svg",
  11646. extra: 192.3 / 162.8,
  11647. bottom: 1.79 / 194.17
  11648. }
  11649. },
  11650. side: {
  11651. height: math.unit(4 + 7 / 12, "feet"),
  11652. weight: math.unit(50, "lb"),
  11653. name: "Side",
  11654. image: {
  11655. source: "./media/characters/vanrel/side.svg",
  11656. extra: 1,
  11657. bottom: 0.025
  11658. }
  11659. },
  11660. tome: {
  11661. height: math.unit(1.35, "feet"),
  11662. weight: math.unit(10, "lb"),
  11663. name: "Vanrel's Tome",
  11664. rename: true,
  11665. image: {
  11666. source: "./media/characters/vanrel/tome.svg"
  11667. }
  11668. },
  11669. beans: {
  11670. height: math.unit(0.89, "feet"),
  11671. name: "Beans",
  11672. image: {
  11673. source: "./media/characters/vanrel/beans.svg"
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Normal",
  11680. height: math.unit(4 + 7 / 12, "feet"),
  11681. default: true
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11687. {
  11688. front: {
  11689. height: math.unit(7 + 5 / 12, "feet"),
  11690. weight: math.unit(150, "lb"),
  11691. name: "Front",
  11692. image: {
  11693. source: "./media/characters/kuiper-vanrel/front.svg",
  11694. extra: 1118 / 1068,
  11695. bottom: 0.09
  11696. }
  11697. },
  11698. foot: {
  11699. height: math.unit(0.55, "meters"),
  11700. name: "Foot",
  11701. image: {
  11702. source: "./media/characters/kuiper-vanrel/foot.svg",
  11703. }
  11704. },
  11705. battle: {
  11706. height: math.unit(6.824, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Battle",
  11709. image: {
  11710. source: "./media/characters/kuiper-vanrel/battle.svg",
  11711. extra: 1466 / 1327,
  11712. bottom: 29 / 1492.5
  11713. }
  11714. },
  11715. battleAlt: {
  11716. height: math.unit(6.824, "feet"),
  11717. weight: math.unit(150, "lb"),
  11718. name: "Battle (Alt)",
  11719. image: {
  11720. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11721. extra: 2081 / 1965,
  11722. bottom: 40 / 2121
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Normal",
  11729. height: math.unit(7 + 5 / 12, "feet"),
  11730. default: true
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(8 + 5 / 12, "feet"),
  11739. weight: math.unit(150, "lb"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/keset-vanrel/front.svg",
  11743. extra: 1150 / 1084,
  11744. bottom: 0.05
  11745. }
  11746. },
  11747. hand: {
  11748. height: math.unit(0.6, "meters"),
  11749. name: "Hand",
  11750. image: {
  11751. source: "./media/characters/keset-vanrel/hand.svg"
  11752. }
  11753. },
  11754. foot: {
  11755. height: math.unit(0.94978, "meters"),
  11756. name: "Foot",
  11757. image: {
  11758. source: "./media/characters/keset-vanrel/foot.svg"
  11759. }
  11760. },
  11761. battle: {
  11762. height: math.unit(7.408, "feet"),
  11763. weight: math.unit(150, "lb"),
  11764. name: "Battle",
  11765. image: {
  11766. source: "./media/characters/keset-vanrel/battle.svg",
  11767. extra: 1890 / 1386,
  11768. bottom: 73.28 / 1970
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(8 + 5 / 12, "feet"),
  11776. default: true
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/neos/front.svg",
  11789. extra: 1696 / 992,
  11790. bottom: 0.14
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(54, "cm"),
  11798. default: true
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(100, "m")
  11803. },
  11804. {
  11805. name: "Megamacro",
  11806. height: math.unit(10, "km")
  11807. },
  11808. {
  11809. name: "Megamacro+",
  11810. height: math.unit(100, "km")
  11811. },
  11812. {
  11813. name: "Gigamacro",
  11814. height: math.unit(100, "Mm")
  11815. },
  11816. {
  11817. name: "Teramacro",
  11818. height: math.unit(100, "Gm")
  11819. },
  11820. {
  11821. name: "Examacro",
  11822. height: math.unit(100, "Em")
  11823. },
  11824. {
  11825. name: "Godly",
  11826. height: math.unit(10000, "Ym")
  11827. },
  11828. {
  11829. name: "Beyond Godly",
  11830. height: math.unit(25, "multiverses")
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11836. {
  11837. feminine: {
  11838. height: math.unit(5, "feet"),
  11839. weight: math.unit(100, "lb"),
  11840. name: "Feminine",
  11841. image: {
  11842. source: "./media/characters/sammy-mouse/feminine.svg",
  11843. extra: 2526 / 2425,
  11844. bottom: 0.123
  11845. }
  11846. },
  11847. masculine: {
  11848. height: math.unit(5, "feet"),
  11849. weight: math.unit(100, "lb"),
  11850. name: "Masculine",
  11851. image: {
  11852. source: "./media/characters/sammy-mouse/masculine.svg",
  11853. extra: 2526 / 2425,
  11854. bottom: 0.123
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Micro",
  11861. height: math.unit(5, "inches")
  11862. },
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(5, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Macro",
  11870. height: math.unit(60, "feet")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(4, "feet"),
  11879. weight: math.unit(50, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/kole/front.svg",
  11883. extra: 1423 / 1303,
  11884. bottom: 0.025
  11885. }
  11886. },
  11887. back: {
  11888. height: math.unit(4, "feet"),
  11889. weight: math.unit(50, "lb"),
  11890. name: "Back",
  11891. image: {
  11892. source: "./media/characters/kole/back.svg",
  11893. extra: 1426 / 1280,
  11894. bottom: 0.02
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(4, "feet"),
  11902. default: true
  11903. },
  11904. ]
  11905. ))
  11906. characterMakers.push(() => makeCharacter(
  11907. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11908. {
  11909. front: {
  11910. height: math.unit(2 + 6 / 12, "feet"),
  11911. weight: math.unit(20, "lb"),
  11912. name: "Front",
  11913. image: {
  11914. source: "./media/characters/rufran/front.svg",
  11915. extra: 2041 / 1839,
  11916. bottom: 0.055
  11917. }
  11918. },
  11919. back: {
  11920. height: math.unit(2 + 6 / 12, "feet"),
  11921. weight: math.unit(20, "lb"),
  11922. name: "Back",
  11923. image: {
  11924. source: "./media/characters/rufran/back.svg",
  11925. extra: 2054 / 1839,
  11926. bottom: 0.01
  11927. }
  11928. },
  11929. hand: {
  11930. height: math.unit(0.2166, "meters"),
  11931. name: "Hand",
  11932. image: {
  11933. source: "./media/characters/rufran/hand.svg"
  11934. }
  11935. },
  11936. foot: {
  11937. height: math.unit(0.185, "meters"),
  11938. name: "Foot",
  11939. image: {
  11940. source: "./media/characters/rufran/foot.svg"
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Micro",
  11947. height: math.unit(1, "inch")
  11948. },
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(2 + 6 / 12, "feet"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Big",
  11956. height: math.unit(60, "feet")
  11957. },
  11958. {
  11959. name: "Macro",
  11960. height: math.unit(325, "feet")
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(0.3, "meters"),
  11969. weight: math.unit(3.5, "kg"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/chip/front.svg",
  11973. extra: 748 / 674
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Micro",
  11980. height: math.unit(1, "inch"),
  11981. default: true
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11987. {
  11988. side: {
  11989. height: math.unit(2.3, "meters"),
  11990. weight: math.unit(3500, "lb"),
  11991. name: "Side",
  11992. image: {
  11993. source: "./media/characters/torvid/side.svg",
  11994. extra: 1972 / 722,
  11995. bottom: 0.035
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(2.3, "meters"),
  12003. default: true
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(2, "meters"),
  12012. weight: math.unit(150.5, "kg"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/susan/front.svg",
  12016. extra: 693 / 635,
  12017. bottom: 0.05
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Megamacro",
  12024. height: math.unit(505, "miles"),
  12025. default: true
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12031. {
  12032. front: {
  12033. height: math.unit(6, "feet"),
  12034. weight: math.unit(150, "lb"),
  12035. name: "Front",
  12036. image: {
  12037. source: "./media/characters/raindrops/front.svg",
  12038. extra: 2655 / 2461,
  12039. bottom: 49 / 2705
  12040. }
  12041. },
  12042. back: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(150, "lb"),
  12045. name: "Back",
  12046. image: {
  12047. source: "./media/characters/raindrops/back.svg",
  12048. extra: 2574 / 2400,
  12049. bottom: 65 / 2634
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Micro",
  12056. height: math.unit(6, "inches")
  12057. },
  12058. {
  12059. name: "Normal",
  12060. height: math.unit(6 + 2 / 12, "feet")
  12061. },
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(131, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Megamacro",
  12069. height: math.unit(15, "miles")
  12070. },
  12071. {
  12072. name: "Gigamacro",
  12073. height: math.unit(4000, "miles")
  12074. },
  12075. {
  12076. name: "Teramacro",
  12077. height: math.unit(315000, "miles")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12083. {
  12084. front: {
  12085. height: math.unit(2.794, "meters"),
  12086. weight: math.unit(325, "kg"),
  12087. name: "Front",
  12088. image: {
  12089. source: "./media/characters/tezwa/front.svg",
  12090. extra: 2083 / 1906,
  12091. bottom: 0.031
  12092. }
  12093. },
  12094. foot: {
  12095. height: math.unit(0.687, "meters"),
  12096. name: "Foot",
  12097. image: {
  12098. source: "./media/characters/tezwa/foot.svg"
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(9 + 2 / 12, "feet"),
  12106. default: true
  12107. },
  12108. ]
  12109. ))
  12110. characterMakers.push(() => makeCharacter(
  12111. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12112. {
  12113. front: {
  12114. height: math.unit(58, "feet"),
  12115. weight: math.unit(89000, "lb"),
  12116. name: "Front",
  12117. image: {
  12118. source: "./media/characters/typhus/front.svg",
  12119. extra: 816 / 800,
  12120. bottom: 0.065
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(58, "feet"),
  12128. default: true
  12129. },
  12130. ]
  12131. ))
  12132. characterMakers.push(() => makeCharacter(
  12133. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12134. {
  12135. front: {
  12136. height: math.unit(12, "feet"),
  12137. weight: math.unit(6, "tonnes"),
  12138. name: "Front",
  12139. image: {
  12140. source: "./media/characters/lyra-von-wulf/front.svg",
  12141. extra: 1,
  12142. bottom: 0.10
  12143. }
  12144. },
  12145. frontMecha: {
  12146. height: math.unit(12, "feet"),
  12147. weight: math.unit(12, "tonnes"),
  12148. name: "Front (Mecha)",
  12149. image: {
  12150. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12151. extra: 1,
  12152. bottom: 0.042
  12153. }
  12154. },
  12155. maw: {
  12156. height: math.unit(2.2, "feet"),
  12157. name: "Maw",
  12158. image: {
  12159. source: "./media/characters/lyra-von-wulf/maw.svg"
  12160. }
  12161. },
  12162. },
  12163. [
  12164. {
  12165. name: "Normal",
  12166. height: math.unit(12, "feet"),
  12167. default: true
  12168. },
  12169. {
  12170. name: "Classic",
  12171. height: math.unit(50, "feet")
  12172. },
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(500, "feet")
  12176. },
  12177. {
  12178. name: "Megamacro",
  12179. height: math.unit(1, "mile")
  12180. },
  12181. {
  12182. name: "Gigamacro",
  12183. height: math.unit(400, "miles")
  12184. },
  12185. {
  12186. name: "Teramacro",
  12187. height: math.unit(22000, "miles")
  12188. },
  12189. {
  12190. name: "Solarmacro",
  12191. height: math.unit(8600000, "miles")
  12192. },
  12193. {
  12194. name: "Galactic",
  12195. height: math.unit(1057000, "lightyears")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(6 + 10 / 12, "feet"),
  12204. weight: math.unit(150, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/dixon/front.svg",
  12208. extra: 3361 / 3209,
  12209. bottom: 0.01
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(6 + 10 / 12, "feet"),
  12217. default: true
  12218. },
  12219. {
  12220. name: "Big",
  12221. height: math.unit(12, "meters")
  12222. },
  12223. {
  12224. name: "Macro",
  12225. height: math.unit(500, "meters")
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(2, "km")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(185, "cm"),
  12238. weight: math.unit(68, "kg"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/kauko/front.svg",
  12242. extra: 1455 / 1421,
  12243. bottom: 0.03
  12244. }
  12245. },
  12246. back: {
  12247. height: math.unit(185, "cm"),
  12248. weight: math.unit(68, "kg"),
  12249. name: "Back",
  12250. image: {
  12251. source: "./media/characters/kauko/back.svg",
  12252. extra: 1455 / 1421,
  12253. bottom: 0.004
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(185, "cm"),
  12261. default: true
  12262. },
  12263. ]
  12264. ))
  12265. characterMakers.push(() => makeCharacter(
  12266. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12267. {
  12268. front: {
  12269. height: math.unit(6, "feet"),
  12270. weight: math.unit(150, "kg"),
  12271. name: "Front",
  12272. image: {
  12273. source: "./media/characters/varg/front.svg",
  12274. extra: 1108 / 1018,
  12275. bottom: 0.0375
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(5, "meters")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(200, "meters")
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(20, "kilometers")
  12291. },
  12292. {
  12293. name: "True Size",
  12294. height: math.unit(211, "km"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Gigamacro",
  12299. height: math.unit(1000, "km")
  12300. },
  12301. {
  12302. name: "Gigamacro+",
  12303. height: math.unit(8000, "km")
  12304. },
  12305. {
  12306. name: "Teramacro",
  12307. height: math.unit(1000000, "km")
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(7 + 7 / 12, "feet"),
  12316. weight: math.unit(267, "lb"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/dayza/front.svg",
  12320. extra: 1262 / 1200,
  12321. bottom: 0.035
  12322. }
  12323. },
  12324. side: {
  12325. height: math.unit(7 + 7 / 12, "feet"),
  12326. weight: math.unit(267, "lb"),
  12327. name: "Side",
  12328. image: {
  12329. source: "./media/characters/dayza/side.svg",
  12330. extra: 1295 / 1245,
  12331. bottom: 0.05
  12332. }
  12333. },
  12334. back: {
  12335. height: math.unit(7 + 7 / 12, "feet"),
  12336. weight: math.unit(267, "lb"),
  12337. name: "Back",
  12338. image: {
  12339. source: "./media/characters/dayza/back.svg",
  12340. extra: 1241 / 1170
  12341. }
  12342. },
  12343. },
  12344. [
  12345. {
  12346. name: "Normal",
  12347. height: math.unit(7 + 7 / 12, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Macro",
  12352. height: math.unit(155, "feet")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(6 + 5 / 12, "feet"),
  12361. weight: math.unit(160, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/xanthos/front.svg",
  12365. extra: 1,
  12366. bottom: 0.04
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(6 + 5 / 12, "feet"),
  12371. weight: math.unit(160, "lb"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/xanthos/back.svg",
  12375. extra: 1,
  12376. bottom: 0.03
  12377. }
  12378. },
  12379. hand: {
  12380. height: math.unit(0.928, "feet"),
  12381. name: "Hand",
  12382. image: {
  12383. source: "./media/characters/xanthos/hand.svg"
  12384. }
  12385. },
  12386. foot: {
  12387. height: math.unit(1.286, "feet"),
  12388. name: "Foot",
  12389. image: {
  12390. source: "./media/characters/xanthos/foot.svg"
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(6 + 5 / 12, "feet"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Normal+",
  12402. height: math.unit(6, "meters")
  12403. },
  12404. {
  12405. name: "Macro",
  12406. height: math.unit(40, "feet")
  12407. },
  12408. {
  12409. name: "Macro+",
  12410. height: math.unit(200, "meters")
  12411. },
  12412. {
  12413. name: "Megamacro",
  12414. height: math.unit(20, "km")
  12415. },
  12416. {
  12417. name: "Megamacro+",
  12418. height: math.unit(100, "km")
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12424. {
  12425. front: {
  12426. height: math.unit(6 + 3 / 12, "feet"),
  12427. weight: math.unit(215, "lb"),
  12428. name: "Front",
  12429. image: {
  12430. source: "./media/characters/grynn/front.svg",
  12431. extra: 4627 / 4209,
  12432. bottom: 0.047
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Micro",
  12439. height: math.unit(6, "inches")
  12440. },
  12441. {
  12442. name: "Normal",
  12443. height: math.unit(6 + 3 / 12, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Big",
  12448. height: math.unit(104, "feet")
  12449. },
  12450. {
  12451. name: "Macro",
  12452. height: math.unit(944, "feet")
  12453. },
  12454. {
  12455. name: "Macro+",
  12456. height: math.unit(9480, "feet")
  12457. },
  12458. {
  12459. name: "Megamacro",
  12460. height: math.unit(78752, "feet")
  12461. },
  12462. {
  12463. name: "Megamacro+",
  12464. height: math.unit(630128, "feet")
  12465. },
  12466. {
  12467. name: "Megamacro++",
  12468. height: math.unit(3150695, "feet")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(7 + 5 / 12, "feet"),
  12477. weight: math.unit(450, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/mocha-aura/front.svg",
  12481. extra: 1907 / 1817,
  12482. bottom: 0.04
  12483. }
  12484. },
  12485. back: {
  12486. height: math.unit(7 + 5 / 12, "feet"),
  12487. weight: math.unit(450, "lb"),
  12488. name: "Back",
  12489. image: {
  12490. source: "./media/characters/mocha-aura/back.svg",
  12491. extra: 1900 / 1825,
  12492. bottom: 0.045
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Nano",
  12499. height: math.unit(1, "nm")
  12500. },
  12501. {
  12502. name: "Megamicro",
  12503. height: math.unit(1, "mm")
  12504. },
  12505. {
  12506. name: "Micro",
  12507. height: math.unit(3, "inches")
  12508. },
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(7 + 5 / 12, "feet"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Macro",
  12516. height: math.unit(30, "feet")
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(3500, "feet")
  12521. },
  12522. {
  12523. name: "Teramacro",
  12524. height: math.unit(500000, "miles")
  12525. },
  12526. {
  12527. name: "Petamacro",
  12528. height: math.unit(50000000000000000, "parsecs")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/ilisha-devya/front.svg",
  12541. extra: 1,
  12542. bottom: 0.175
  12543. }
  12544. },
  12545. back: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(150, "lb"),
  12548. name: "Back",
  12549. image: {
  12550. source: "./media/characters/ilisha-devya/back.svg",
  12551. extra: 1,
  12552. bottom: 0.015
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Macro",
  12559. height: math.unit(500, "feet"),
  12560. default: true
  12561. },
  12562. {
  12563. name: "Megamacro",
  12564. height: math.unit(10, "miles")
  12565. },
  12566. {
  12567. name: "Gigamacro",
  12568. height: math.unit(100000, "miles")
  12569. },
  12570. {
  12571. name: "Examacro",
  12572. height: math.unit(1e9, "lightyears")
  12573. },
  12574. {
  12575. name: "Omniversal",
  12576. height: math.unit(1e33, "lightyears")
  12577. },
  12578. {
  12579. name: "Beyond Infinite",
  12580. height: math.unit(1e100, "lightyears")
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12586. {
  12587. Side: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(150, "lb"),
  12590. name: "Side",
  12591. image: {
  12592. source: "./media/characters/mira/side.svg",
  12593. extra: 900 / 799,
  12594. bottom: 0.02
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Human Size",
  12601. height: math.unit(6, "feet")
  12602. },
  12603. {
  12604. name: "Macro",
  12605. height: math.unit(100, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Megamacro",
  12610. height: math.unit(10, "miles")
  12611. },
  12612. {
  12613. name: "Gigamacro",
  12614. height: math.unit(25000, "miles")
  12615. },
  12616. {
  12617. name: "Teramacro",
  12618. height: math.unit(300, "AU")
  12619. },
  12620. {
  12621. name: "Full Size",
  12622. height: math.unit(4.5e10, "lightyears")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(150, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/holly/front.svg",
  12635. extra: 639 / 606
  12636. }
  12637. },
  12638. back: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(150, "lb"),
  12641. name: "Back",
  12642. image: {
  12643. source: "./media/characters/holly/back.svg",
  12644. extra: 623 / 598
  12645. }
  12646. },
  12647. frontWorking: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Front (Working)",
  12651. image: {
  12652. source: "./media/characters/holly/front-working.svg",
  12653. extra: 607 / 577,
  12654. bottom: 0.048
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(12 + 3 / 12, "feet"),
  12662. default: true
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12668. {
  12669. front: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(150, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/porter/front.svg",
  12675. extra: 1,
  12676. bottom: 0.01
  12677. }
  12678. },
  12679. frontRobes: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front (Robes)",
  12683. image: {
  12684. source: "./media/characters/porter/front-robes.svg",
  12685. extra: 1.01,
  12686. bottom: 0.01
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(11 + 9 / 12, "feet"),
  12694. default: true
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12700. {
  12701. legendary: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Legendary",
  12705. image: {
  12706. source: "./media/characters/lucy/legendary.svg",
  12707. extra: 1355 / 1100,
  12708. bottom: 0.045
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Legendary",
  12715. height: math.unit(86882 * 2, "miles"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12722. {
  12723. front: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(150, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/drusilla/front.svg",
  12729. extra: 678 / 635,
  12730. bottom: 0.03
  12731. }
  12732. },
  12733. back: {
  12734. height: math.unit(6, "feet"),
  12735. weight: math.unit(150, "lb"),
  12736. name: "Back",
  12737. image: {
  12738. source: "./media/characters/drusilla/back.svg",
  12739. extra: 678 / 635,
  12740. bottom: 0.005
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Macro",
  12747. height: math.unit(100, "feet")
  12748. },
  12749. {
  12750. name: "Canon Height",
  12751. height: math.unit(2000, "feet"),
  12752. default: true
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(180, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/renard-thatch/front.svg",
  12765. extra: 2411 / 2275,
  12766. bottom: 0.01
  12767. }
  12768. },
  12769. frontPosing: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(180, "lb"),
  12772. name: "Front (Posing)",
  12773. image: {
  12774. source: "./media/characters/renard-thatch/front-posing.svg",
  12775. extra: 2381 / 2261,
  12776. bottom: 0.01
  12777. }
  12778. },
  12779. back: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(180, "lb"),
  12782. name: "Back",
  12783. image: {
  12784. source: "./media/characters/renard-thatch/back.svg",
  12785. extra: 2428 / 2288
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Micro",
  12792. height: math.unit(3, "inches")
  12793. },
  12794. {
  12795. name: "Default",
  12796. height: math.unit(6, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(75, "feet")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(1450, "feet"),
  12810. weight: math.unit(1.21e6, "tons"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/sekvra/front.svg",
  12814. extra: 1,
  12815. bottom: 0.03
  12816. }
  12817. },
  12818. frontClothed: {
  12819. height: math.unit(1450, "feet"),
  12820. weight: math.unit(1.21e6, "tons"),
  12821. name: "Front (Clothed)",
  12822. image: {
  12823. source: "./media/characters/sekvra/front-clothed.svg",
  12824. extra: 1,
  12825. bottom: 0.03
  12826. }
  12827. },
  12828. side: {
  12829. height: math.unit(1450, "feet"),
  12830. weight: math.unit(1.21e6, "tons"),
  12831. name: "Side",
  12832. image: {
  12833. source: "./media/characters/sekvra/side.svg",
  12834. extra: 1,
  12835. bottom: 0.025
  12836. }
  12837. },
  12838. back: {
  12839. height: math.unit(1450, "feet"),
  12840. weight: math.unit(1.21e6, "tons"),
  12841. name: "Back",
  12842. image: {
  12843. source: "./media/characters/sekvra/back.svg",
  12844. extra: 1,
  12845. bottom: 0.005
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Macro",
  12852. height: math.unit(1450, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Megamacro",
  12857. height: math.unit(15000, "feet")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(6, "feet"),
  12866. weight: math.unit(150, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/carmine/front.svg",
  12870. extra: 1,
  12871. bottom: 0.035
  12872. }
  12873. },
  12874. frontArmor: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "lb"),
  12877. name: "Front (Armor)",
  12878. image: {
  12879. source: "./media/characters/carmine/front-armor.svg",
  12880. extra: 1,
  12881. bottom: 0.035
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Large",
  12888. height: math.unit(1, "mile")
  12889. },
  12890. {
  12891. name: "Huge",
  12892. height: math.unit(40, "miles"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Colossal",
  12897. height: math.unit(2500, "miles")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/elyssia/front.svg",
  12910. extra: 2201 / 2035,
  12911. bottom: 0.05
  12912. }
  12913. },
  12914. frontClothed: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(150, "lb"),
  12917. name: "Front (Clothed)",
  12918. image: {
  12919. source: "./media/characters/elyssia/front-clothed.svg",
  12920. extra: 2201 / 2035,
  12921. bottom: 0.05
  12922. }
  12923. },
  12924. back: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(150, "lb"),
  12927. name: "Back",
  12928. image: {
  12929. source: "./media/characters/elyssia/back.svg",
  12930. extra: 2201 / 2035,
  12931. bottom: 0.013
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Smaller",
  12938. height: math.unit(150, "feet")
  12939. },
  12940. {
  12941. name: "Standard",
  12942. height: math.unit(1400, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Distracted",
  12947. height: math.unit(15000, "feet")
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(7 + 4 / 12, "feet"),
  12956. weight: math.unit(500, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/geno-maxwell/front.svg",
  12960. extra: 2207 / 2040,
  12961. bottom: 0.015
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Micro",
  12968. height: math.unit(3, "inches")
  12969. },
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(7 + 4 / 12, "feet"),
  12973. default: true
  12974. },
  12975. {
  12976. name: "Macro",
  12977. height: math.unit(220, "feet")
  12978. },
  12979. {
  12980. name: "Megamacro",
  12981. height: math.unit(11, "miles")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(7 + 4 / 12, "feet"),
  12990. weight: math.unit(500, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/regena-maxwell/front.svg",
  12994. extra: 3115 / 2770,
  12995. bottom: 0.02
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(7 + 4 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(220, "feet")
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(11, "miles")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13024. extra: 860 / 690,
  13025. bottom: 0.03
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Normal",
  13032. height: math.unit(1.7, "meters"),
  13033. default: true
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(150, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/quilly/front.svg",
  13046. extra: 890 / 776
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Gigamacro",
  13053. height: math.unit(404090, "miles"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(7 + 8 / 12, "feet"),
  13063. weight: math.unit(350, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/tempest/front.svg",
  13067. extra: 1175 / 1086,
  13068. bottom: 0.02
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Normal",
  13075. height: math.unit(7 + 8 / 12, "feet"),
  13076. default: true
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13082. {
  13083. side: {
  13084. height: math.unit(4 + 5 / 12, "feet"),
  13085. weight: math.unit(80, "lb"),
  13086. name: "Side",
  13087. image: {
  13088. source: "./media/characters/rodger/side.svg",
  13089. extra: 1235 / 1118
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Micro",
  13096. height: math.unit(1, "inch")
  13097. },
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(4 + 5 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(120, "feet")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/danyel/front.svg",
  13118. extra: 1185 / 1123,
  13119. bottom: 0.05
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Shrunken",
  13126. height: math.unit(0.5, "mm")
  13127. },
  13128. {
  13129. name: "Micro",
  13130. height: math.unit(1, "mm"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Upsized",
  13135. height: math.unit(5 + 5 / 12, "feet")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(5 + 6 / 12, "feet"),
  13144. weight: math.unit(200, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/vivian-bijoux/front.svg",
  13148. extra: 1,
  13149. bottom: 0.072
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(5 + 6 / 12, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Bad Dream",
  13161. height: math.unit(500, "feet")
  13162. },
  13163. {
  13164. name: "Nightmare",
  13165. height: math.unit(500, "miles")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(6 + 1 / 12, "feet"),
  13174. weight: math.unit(260, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/zeta/front.svg",
  13178. extra: 1968 / 1889,
  13179. bottom: 0.06
  13180. }
  13181. },
  13182. back: {
  13183. height: math.unit(6 + 1 / 12, "feet"),
  13184. weight: math.unit(260, "lb"),
  13185. name: "Back",
  13186. image: {
  13187. source: "./media/characters/zeta/back.svg",
  13188. extra: 1944 / 1858,
  13189. bottom: 0.03
  13190. }
  13191. },
  13192. hand: {
  13193. height: math.unit(1.112, "feet"),
  13194. name: "Hand",
  13195. image: {
  13196. source: "./media/characters/zeta/hand.svg"
  13197. }
  13198. },
  13199. foot: {
  13200. height: math.unit(1.48, "feet"),
  13201. name: "Foot",
  13202. image: {
  13203. source: "./media/characters/zeta/foot.svg"
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Micro",
  13210. height: math.unit(6, "inches")
  13211. },
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(6 + 1 / 12, "feet"),
  13215. default: true
  13216. },
  13217. {
  13218. name: "Macro",
  13219. height: math.unit(20, "feet")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/jamie-larsen/front.svg",
  13232. extra: 962 / 933,
  13233. bottom: 0.02
  13234. }
  13235. },
  13236. back: {
  13237. height: math.unit(6, "feet"),
  13238. weight: math.unit(150, "lb"),
  13239. name: "Back",
  13240. image: {
  13241. source: "./media/characters/jamie-larsen/back.svg",
  13242. extra: 997 / 946
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(28 + 7 / 12, "feet"),
  13250. default: true
  13251. },
  13252. {
  13253. name: "Macro+",
  13254. height: math.unit(180, "feet")
  13255. },
  13256. {
  13257. name: "Megamacro",
  13258. height: math.unit(10, "miles")
  13259. },
  13260. {
  13261. name: "Gigamacro",
  13262. height: math.unit(200000, "miles")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13268. {
  13269. front: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(120, "lb"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/vance/front.svg",
  13275. extra: 1980 / 1890,
  13276. bottom: 0.09
  13277. }
  13278. },
  13279. back: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(120, "lb"),
  13282. name: "Back",
  13283. image: {
  13284. source: "./media/characters/vance/back.svg",
  13285. extra: 2081 / 1994,
  13286. bottom: 0.014
  13287. }
  13288. },
  13289. hand: {
  13290. height: math.unit(0.88, "feet"),
  13291. name: "Hand",
  13292. image: {
  13293. source: "./media/characters/vance/hand.svg"
  13294. }
  13295. },
  13296. foot: {
  13297. height: math.unit(0.64, "feet"),
  13298. name: "Foot",
  13299. image: {
  13300. source: "./media/characters/vance/foot.svg"
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Small",
  13307. height: math.unit(90, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(100, "meters")
  13313. },
  13314. {
  13315. name: "Megamacro",
  13316. height: math.unit(15, "miles")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(180, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/xochitl/front.svg",
  13329. extra: 2297 / 2261,
  13330. bottom: 0.065
  13331. }
  13332. },
  13333. back: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(180, "lb"),
  13336. name: "Back",
  13337. image: {
  13338. source: "./media/characters/xochitl/back.svg",
  13339. extra: 2386 / 2354,
  13340. bottom: 0.01
  13341. }
  13342. },
  13343. foot: {
  13344. height: math.unit(6 / 5 * 1.15, "feet"),
  13345. weight: math.unit(150, "lb"),
  13346. name: "Foot",
  13347. image: {
  13348. source: "./media/characters/xochitl/foot.svg"
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(80, "feet")
  13356. },
  13357. {
  13358. name: "Macro+",
  13359. height: math.unit(400, "feet"),
  13360. default: true
  13361. },
  13362. {
  13363. name: "Gigamacro",
  13364. height: math.unit(80000, "miles")
  13365. },
  13366. {
  13367. name: "Gigamacro+",
  13368. height: math.unit(400000, "miles")
  13369. },
  13370. {
  13371. name: "Teramacro",
  13372. height: math.unit(300, "AU")
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13378. {
  13379. front: {
  13380. height: math.unit(6, "feet"),
  13381. weight: math.unit(150, "lb"),
  13382. name: "Front",
  13383. image: {
  13384. source: "./media/characters/vincent/front.svg",
  13385. extra: 1130 / 1080,
  13386. bottom: 0.055
  13387. }
  13388. },
  13389. beak: {
  13390. height: math.unit(6 * 0.1, "feet"),
  13391. name: "Beak",
  13392. image: {
  13393. source: "./media/characters/vincent/beak.svg"
  13394. }
  13395. },
  13396. hand: {
  13397. height: math.unit(6 * 0.85, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Hand",
  13400. image: {
  13401. source: "./media/characters/vincent/hand.svg"
  13402. }
  13403. },
  13404. foot: {
  13405. height: math.unit(6 * 0.19, "feet"),
  13406. weight: math.unit(150, "lb"),
  13407. name: "Foot",
  13408. image: {
  13409. source: "./media/characters/vincent/foot.svg"
  13410. }
  13411. },
  13412. },
  13413. [
  13414. {
  13415. name: "Base",
  13416. height: math.unit(6 + 5 / 12, "feet"),
  13417. default: true
  13418. },
  13419. {
  13420. name: "Macro",
  13421. height: math.unit(300, "feet")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(2, "miles")
  13426. },
  13427. {
  13428. name: "Gigamacro",
  13429. height: math.unit(1000, "miles")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(2, "meters"),
  13438. weight: math.unit(500, "kg"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/coatl/front.svg",
  13442. extra: 3948 / 3500,
  13443. bottom: 0.082
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(4, "meters")
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(100, "meters"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro+",
  13459. height: math.unit(300, "meters")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(3, "gigameters")
  13464. },
  13465. {
  13466. name: "Megamacro+",
  13467. height: math.unit(300, "terameters")
  13468. },
  13469. {
  13470. name: "Megamacro++",
  13471. height: math.unit(3, "lightyears")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(50, "kg"),
  13481. name: "front",
  13482. image: {
  13483. source: "./media/characters/shiroryu/front.svg",
  13484. extra: 1990 / 1935
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Mortal Mingling",
  13491. height: math.unit(3, "meters")
  13492. },
  13493. {
  13494. name: "Kaiju-ish",
  13495. height: math.unit(250, "meters")
  13496. },
  13497. {
  13498. name: "Somewhat Godly",
  13499. height: math.unit(400, "km"),
  13500. default: true
  13501. },
  13502. {
  13503. name: "Planetary",
  13504. height: math.unit(300, "megameters")
  13505. },
  13506. {
  13507. name: "Galaxy-dwarfing",
  13508. height: math.unit(450, "kiloparsecs")
  13509. },
  13510. {
  13511. name: "Universe Eater",
  13512. height: math.unit(150, "gigaparsecs")
  13513. },
  13514. {
  13515. name: "Almost Immeasurable",
  13516. height: math.unit(1.3e266, "yottaparsecs")
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/umeko/front.svg",
  13529. extra: 1,
  13530. bottom: 0.019
  13531. }
  13532. },
  13533. frontArmored: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Front (Armored)",
  13537. image: {
  13538. source: "./media/characters/umeko/front-armored.svg",
  13539. extra: 1,
  13540. bottom: 0.021
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(220, "feet"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Guardian Dragon",
  13552. height: math.unit(50, "miles")
  13553. },
  13554. {
  13555. name: "Cosmic",
  13556. height: math.unit(800000, "miles")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13562. {
  13563. front: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/cassidy/front.svg",
  13569. extra: 1,
  13570. bottom: 0.043
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Canon Height",
  13577. height: math.unit(120, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro+",
  13582. height: math.unit(400, "feet")
  13583. },
  13584. {
  13585. name: "Macro++",
  13586. height: math.unit(4000, "feet")
  13587. },
  13588. {
  13589. name: "Megamacro",
  13590. height: math.unit(3, "miles")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(150, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/isaac/front.svg",
  13603. extra: 896 / 815,
  13604. bottom: 0.11
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Human Size",
  13611. height: math.unit(8, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Macro",
  13616. height: math.unit(400, "feet")
  13617. },
  13618. {
  13619. name: "Megamacro",
  13620. height: math.unit(50, "miles")
  13621. },
  13622. {
  13623. name: "Canon Height",
  13624. height: math.unit(200, "AU")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(72, "kg"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/sleekit/front.svg",
  13637. extra: 4693 / 4487,
  13638. bottom: 0.012
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Minimum Height",
  13645. height: math.unit(10, "meters")
  13646. },
  13647. {
  13648. name: "Smaller",
  13649. height: math.unit(25, "meters")
  13650. },
  13651. {
  13652. name: "Larger",
  13653. height: math.unit(38, "meters"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Maximum height",
  13658. height: math.unit(100, "meters")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(6, "feet"),
  13667. weight: math.unit(150, "lb"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/nillia/front.svg",
  13671. extra: 2195 / 2037,
  13672. bottom: 0.005
  13673. }
  13674. },
  13675. back: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Back",
  13679. image: {
  13680. source: "./media/characters/nillia/back.svg",
  13681. extra: 2195 / 2037,
  13682. bottom: 0.005
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Canon Height",
  13689. height: math.unit(489, "feet"),
  13690. default: true
  13691. }
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/mesmyriza/front.svg",
  13703. extra: 2067 / 1784,
  13704. bottom: 0.035
  13705. }
  13706. },
  13707. foot: {
  13708. height: math.unit(6 / (250 / 35), "feet"),
  13709. name: "Foot",
  13710. image: {
  13711. source: "./media/characters/mesmyriza/foot.svg"
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Macro",
  13718. height: math.unit(457, "meters"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Megamacro",
  13723. height: math.unit(8, "megameters")
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(6, "feet"),
  13732. weight: math.unit(250, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/saudade/front.svg",
  13736. extra: 1172 / 1139,
  13737. bottom: 0.035
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Micro",
  13744. height: math.unit(3, "inches")
  13745. },
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(6, "feet"),
  13749. default: true
  13750. },
  13751. {
  13752. name: "Macro",
  13753. height: math.unit(50, "feet")
  13754. },
  13755. {
  13756. name: "Megamacro",
  13757. height: math.unit(2800, "feet")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(5 + 4 / 12, "feet"),
  13766. weight: math.unit(100, "lb"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/keireer/front.svg",
  13770. extra: 716 / 666,
  13771. bottom: 0.05
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(5 + 4 / 12, "feet"),
  13779. default: true
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(90, "kg"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/mirja/front.svg",
  13792. extra: 1789 / 1683,
  13793. bottom: 0.05
  13794. }
  13795. },
  13796. frontDressed: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(90, "lb"),
  13799. name: "Front (Dressed)",
  13800. image: {
  13801. source: "./media/characters/mirja/front-dressed.svg",
  13802. extra: 1789 / 1683,
  13803. bottom: 0.05
  13804. }
  13805. },
  13806. back: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(90, "lb"),
  13809. name: "Back",
  13810. image: {
  13811. source: "./media/characters/mirja/back.svg",
  13812. extra: 953 / 917,
  13813. bottom: 0.017
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "\"Incognito\"",
  13820. height: math.unit(3, "meters")
  13821. },
  13822. {
  13823. name: "Strolling Size",
  13824. height: math.unit(15, "km")
  13825. },
  13826. {
  13827. name: "Larger Strolling Size",
  13828. height: math.unit(400, "km")
  13829. },
  13830. {
  13831. name: "Preferred Size",
  13832. height: math.unit(5000, "km")
  13833. },
  13834. {
  13835. name: "True Size",
  13836. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13837. default: true
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13843. {
  13844. front: {
  13845. height: math.unit(15, "feet"),
  13846. weight: math.unit(880, "kg"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/nightraver/front.svg",
  13850. extra: 2444 / 2160,
  13851. bottom: 0.027
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(15, "feet"),
  13856. weight: math.unit(880, "kg"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/nightraver/back.svg",
  13860. extra: 2309 / 2180,
  13861. bottom: 0.005
  13862. }
  13863. },
  13864. sole: {
  13865. height: math.unit(2.878, "feet"),
  13866. name: "Sole",
  13867. image: {
  13868. source: "./media/characters/nightraver/sole.svg"
  13869. }
  13870. },
  13871. foot: {
  13872. height: math.unit(2.285, "feet"),
  13873. name: "Foot",
  13874. image: {
  13875. source: "./media/characters/nightraver/foot.svg"
  13876. }
  13877. },
  13878. maw: {
  13879. height: math.unit(2.67, "feet"),
  13880. name: "Maw",
  13881. image: {
  13882. source: "./media/characters/nightraver/maw.svg"
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Micro",
  13889. height: math.unit(1, "cm")
  13890. },
  13891. {
  13892. name: "Normal",
  13893. height: math.unit(15, "feet"),
  13894. default: true
  13895. },
  13896. {
  13897. name: "Macro",
  13898. height: math.unit(300, "feet")
  13899. },
  13900. {
  13901. name: "Megamacro",
  13902. height: math.unit(300, "miles")
  13903. },
  13904. {
  13905. name: "Gigamacro",
  13906. height: math.unit(10000, "miles")
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13912. {
  13913. side: {
  13914. height: math.unit(2, "inches"),
  13915. weight: math.unit(5, "grams"),
  13916. name: "Side",
  13917. image: {
  13918. source: "./media/characters/arc/side.svg"
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Micro",
  13925. height: math.unit(2, "inches"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(1.1938, "meters"),
  13935. weight: math.unit(54, "kg"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/nebula-shahar/front.svg",
  13939. extra: 1642 / 1436,
  13940. bottom: 0.06
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Megamicro",
  13947. height: math.unit(0.3, "mm")
  13948. },
  13949. {
  13950. name: "Micro",
  13951. height: math.unit(3, "cm")
  13952. },
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(138, "cm"),
  13956. default: true
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(30, "m")
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(5.24, "feet"),
  13969. weight: math.unit(150, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/shayla/front.svg",
  13973. extra: 1512 / 1414,
  13974. bottom: 0.01
  13975. }
  13976. },
  13977. back: {
  13978. height: math.unit(5.24, "feet"),
  13979. weight: math.unit(150, "lb"),
  13980. name: "Back",
  13981. image: {
  13982. source: "./media/characters/shayla/back.svg",
  13983. extra: 1512 / 1414
  13984. }
  13985. },
  13986. hand: {
  13987. height: math.unit(0.7781496062992126, "feet"),
  13988. name: "Hand",
  13989. image: {
  13990. source: "./media/characters/shayla/hand.svg"
  13991. }
  13992. },
  13993. foot: {
  13994. height: math.unit(1.4206036745406823, "feet"),
  13995. name: "Foot",
  13996. image: {
  13997. source: "./media/characters/shayla/foot.svg"
  13998. }
  13999. },
  14000. },
  14001. [
  14002. {
  14003. name: "Micro",
  14004. height: math.unit(0.32, "feet")
  14005. },
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(5.24, "feet"),
  14009. default: true
  14010. },
  14011. {
  14012. name: "Macro",
  14013. height: math.unit(492.12, "feet")
  14014. },
  14015. {
  14016. name: "Megamacro",
  14017. height: math.unit(186.41, "miles")
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(2.2, "m"),
  14026. weight: math.unit(120, "kg"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/pia-jr/front.svg",
  14030. extra: 1000 / 970,
  14031. bottom: 0.035
  14032. }
  14033. },
  14034. hand: {
  14035. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14036. name: "Hand",
  14037. image: {
  14038. source: "./media/characters/pia-jr/hand.svg"
  14039. }
  14040. },
  14041. paw: {
  14042. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14043. name: "Paw",
  14044. image: {
  14045. source: "./media/characters/pia-jr/paw.svg"
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Micro",
  14052. height: math.unit(1.2, "cm")
  14053. },
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(2.2, "m"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Macro",
  14061. height: math.unit(180, "m")
  14062. },
  14063. {
  14064. name: "Megamacro",
  14065. height: math.unit(420, "km")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(2, "m"),
  14074. weight: math.unit(115, "kg"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/pia-sr/front.svg",
  14078. extra: 760 / 730,
  14079. bottom: 0.015
  14080. }
  14081. },
  14082. back: {
  14083. height: math.unit(2, "m"),
  14084. weight: math.unit(115, "kg"),
  14085. name: "Back",
  14086. image: {
  14087. source: "./media/characters/pia-sr/back.svg",
  14088. extra: 760 / 730,
  14089. bottom: 0.01
  14090. }
  14091. },
  14092. hand: {
  14093. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14094. name: "Hand",
  14095. image: {
  14096. source: "./media/characters/pia-sr/hand.svg"
  14097. }
  14098. },
  14099. foot: {
  14100. height: math.unit(1.83, "feet"),
  14101. name: "Foot",
  14102. image: {
  14103. source: "./media/characters/pia-sr/foot.svg"
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Micro",
  14110. height: math.unit(88, "mm")
  14111. },
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(2, "m"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(200, "m")
  14120. },
  14121. {
  14122. name: "Megamacro",
  14123. height: math.unit(420, "km")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(8 + 2 / 12, "feet"),
  14132. weight: math.unit(300, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/kibibyte/front.svg",
  14136. extra: 2221 / 2098,
  14137. bottom: 0.04
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(8 + 2 / 12, "feet"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Socialable Macro",
  14149. height: math.unit(50, "feet")
  14150. },
  14151. {
  14152. name: "Macro",
  14153. height: math.unit(300, "feet")
  14154. },
  14155. {
  14156. name: "Megamacro",
  14157. height: math.unit(500, "miles")
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(6, "feet"),
  14166. weight: math.unit(150, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/felix/front.svg",
  14170. extra: 762 / 722,
  14171. bottom: 0.02
  14172. }
  14173. },
  14174. frontClothed: {
  14175. height: math.unit(6, "feet"),
  14176. weight: math.unit(150, "lb"),
  14177. name: "Front (Clothed)",
  14178. image: {
  14179. source: "./media/characters/felix/front-clothed.svg",
  14180. extra: 762 / 722,
  14181. bottom: 0.02
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Normal",
  14188. height: math.unit(6 + 8 / 12, "feet"),
  14189. default: true
  14190. },
  14191. {
  14192. name: "Macro",
  14193. height: math.unit(2600, "feet")
  14194. },
  14195. {
  14196. name: "Megamacro",
  14197. height: math.unit(450, "miles")
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(6 + 1 / 12, "feet"),
  14206. weight: math.unit(250, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/tobo/front.svg",
  14210. extra: 608 / 586,
  14211. bottom: 0.023
  14212. }
  14213. },
  14214. back: {
  14215. height: math.unit(6 + 1 / 12, "feet"),
  14216. weight: math.unit(250, "lb"),
  14217. name: "Back",
  14218. image: {
  14219. source: "./media/characters/tobo/back.svg",
  14220. extra: 608 / 586
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Nano",
  14227. height: math.unit(2, "nm")
  14228. },
  14229. {
  14230. name: "Megamicro",
  14231. height: math.unit(0.1, "mm")
  14232. },
  14233. {
  14234. name: "Micro",
  14235. height: math.unit(1, "inch"),
  14236. default: true
  14237. },
  14238. {
  14239. name: "Human-sized",
  14240. height: math.unit(6 + 1 / 12, "feet")
  14241. },
  14242. {
  14243. name: "Macro",
  14244. height: math.unit(250, "feet")
  14245. },
  14246. {
  14247. name: "Megamacro",
  14248. height: math.unit(75, "miles")
  14249. },
  14250. {
  14251. name: "Texas-sized",
  14252. height: math.unit(750, "miles")
  14253. },
  14254. {
  14255. name: "Teramacro",
  14256. height: math.unit(50000, "miles")
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(269, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/danny-kapowsky/front.svg",
  14269. extra: 766 / 736,
  14270. bottom: 0.044
  14271. }
  14272. },
  14273. back: {
  14274. height: math.unit(6, "feet"),
  14275. weight: math.unit(269, "lb"),
  14276. name: "Back",
  14277. image: {
  14278. source: "./media/characters/danny-kapowsky/back.svg",
  14279. extra: 797 / 760,
  14280. bottom: 0.025
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Macro",
  14287. height: math.unit(150, "feet"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Macro+",
  14292. height: math.unit(200, "feet")
  14293. },
  14294. {
  14295. name: "Macro++",
  14296. height: math.unit(300, "feet")
  14297. },
  14298. {
  14299. name: "Macro+++",
  14300. height: math.unit(400, "feet")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14306. {
  14307. side: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(170, "lb"),
  14310. name: "Side",
  14311. image: {
  14312. source: "./media/characters/finn/side.svg",
  14313. extra: 1953 / 1807,
  14314. bottom: 0.057
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Megamacro",
  14321. height: math.unit(14445, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(5 + 6 / 12, "feet"),
  14331. weight: math.unit(125, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/roy/front.svg",
  14335. extra: 1,
  14336. bottom: 0.11
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Micro",
  14343. height: math.unit(3, "inches"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(5 + 6 / 12, "feet")
  14349. },
  14350. {
  14351. name: "Lesser Macro",
  14352. height: math.unit(60, "feet")
  14353. },
  14354. {
  14355. name: "Greater Macro",
  14356. height: math.unit(120, "feet")
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(6, "feet"),
  14365. weight: math.unit(100, "lb"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/aevsivs/front.svg",
  14369. extra: 1,
  14370. bottom: 0.03
  14371. }
  14372. },
  14373. back: {
  14374. height: math.unit(6, "feet"),
  14375. weight: math.unit(100, "lb"),
  14376. name: "Back",
  14377. image: {
  14378. source: "./media/characters/aevsivs/back.svg"
  14379. }
  14380. },
  14381. },
  14382. [
  14383. {
  14384. name: "Micro",
  14385. height: math.unit(2, "inches"),
  14386. default: true
  14387. },
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(5, "feet")
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(5 + 7 / 12, "feet"),
  14399. weight: math.unit(159, "lb"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/hildegard/front.svg",
  14403. extra: 289 / 269,
  14404. bottom: 7.63 / 297.8
  14405. }
  14406. },
  14407. back: {
  14408. height: math.unit(5 + 7 / 12, "feet"),
  14409. weight: math.unit(159, "lb"),
  14410. name: "Back",
  14411. image: {
  14412. source: "./media/characters/hildegard/back.svg",
  14413. extra: 280 / 260,
  14414. bottom: 2.3 / 282
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(5 + 7 / 12, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14428. {
  14429. bernard: {
  14430. height: math.unit(2 + 7 / 12, "feet"),
  14431. weight: math.unit(66, "lb"),
  14432. name: "Bernard",
  14433. rename: true,
  14434. image: {
  14435. source: "./media/characters/bernard-wilder/bernard.svg",
  14436. extra: 192 / 128,
  14437. bottom: 0.05
  14438. }
  14439. },
  14440. wilder: {
  14441. height: math.unit(5 + 8 / 12, "feet"),
  14442. weight: math.unit(143, "lb"),
  14443. name: "Wilder",
  14444. rename: true,
  14445. image: {
  14446. source: "./media/characters/bernard-wilder/wilder.svg",
  14447. extra: 361 / 312,
  14448. bottom: 0.02
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(2 + 7 / 12, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14462. {
  14463. anthro: {
  14464. height: math.unit(6 + 1 / 12, "feet"),
  14465. weight: math.unit(155, "lb"),
  14466. name: "Anthro",
  14467. image: {
  14468. source: "./media/characters/hearth/anthro.svg",
  14469. extra: 260 / 250,
  14470. bottom: 0.02
  14471. }
  14472. },
  14473. feral: {
  14474. height: math.unit(3.78, "feet"),
  14475. weight: math.unit(35, "kg"),
  14476. name: "Feral",
  14477. image: {
  14478. source: "./media/characters/hearth/feral.svg",
  14479. extra: 153 / 135,
  14480. bottom: 0.03
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Normal",
  14487. height: math.unit(6 + 1 / 12, "feet"),
  14488. default: true
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(182, "lb"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/ingrid/front.svg",
  14501. extra: 294 / 268,
  14502. bottom: 0.027
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(6, "feet"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14516. {
  14517. eevee: {
  14518. height: math.unit(2 + 10 / 12, "feet"),
  14519. weight: math.unit(86, "lb"),
  14520. name: "Malgam",
  14521. image: {
  14522. source: "./media/characters/malgam/eevee.svg",
  14523. extra: 218 / 180,
  14524. bottom: 0.2
  14525. }
  14526. },
  14527. sylveon: {
  14528. height: math.unit(4, "feet"),
  14529. weight: math.unit(101, "lb"),
  14530. name: "Future Malgam",
  14531. rename: true,
  14532. image: {
  14533. source: "./media/characters/malgam/sylveon.svg",
  14534. extra: 371 / 325,
  14535. bottom: 0.015
  14536. }
  14537. },
  14538. gigantamax: {
  14539. height: math.unit(50, "feet"),
  14540. name: "Gigantamax Malgam",
  14541. rename: true,
  14542. image: {
  14543. source: "./media/characters/malgam/gigantamax.svg"
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(2 + 10 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(5 + 11 / 12, "feet"),
  14560. weight: math.unit(188, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/fleur/front.svg",
  14564. extra: 309 / 283,
  14565. bottom: 0.007
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(5 + 11 / 12, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14579. {
  14580. front: {
  14581. height: math.unit(5 + 4 / 12, "feet"),
  14582. weight: math.unit(122, "lb"),
  14583. name: "Front",
  14584. image: {
  14585. source: "./media/characters/jude/front.svg",
  14586. extra: 288 / 273,
  14587. bottom: 0.03
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Normal",
  14594. height: math.unit(5 + 4 / 12, "feet"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(5 + 11 / 12, "feet"),
  14604. weight: math.unit(190, "lb"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/seara/front.svg",
  14608. extra: 1,
  14609. bottom: 0.05
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(5 + 11 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(16 + 5 / 12, "feet"),
  14626. weight: math.unit(524, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/caspian/front.svg",
  14630. extra: 1,
  14631. bottom: 0.04
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(16 + 5 / 12, "feet"),
  14639. default: true
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(5 + 7 / 12, "feet"),
  14648. weight: math.unit(170, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/mika/front.svg",
  14652. extra: 1,
  14653. bottom: 0.016
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Normal",
  14660. height: math.unit(5 + 7 / 12, "feet"),
  14661. default: true
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(6 + 2 / 12, "feet"),
  14670. weight: math.unit(268, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/sol/front.svg",
  14674. extra: 247 / 231,
  14675. bottom: 0.05
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Normal",
  14682. height: math.unit(6 + 2 / 12, "feet"),
  14683. default: true
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14689. {
  14690. buizel: {
  14691. height: math.unit(2 + 5 / 12, "feet"),
  14692. weight: math.unit(87, "lb"),
  14693. name: "Buizel",
  14694. image: {
  14695. source: "./media/characters/umiko/buizel.svg",
  14696. extra: 172 / 157,
  14697. bottom: 0.01
  14698. }
  14699. },
  14700. floatzel: {
  14701. height: math.unit(5 + 9 / 12, "feet"),
  14702. weight: math.unit(250, "lb"),
  14703. name: "Floatzel",
  14704. image: {
  14705. source: "./media/characters/umiko/floatzel.svg",
  14706. extra: 262 / 248
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(2 + 5 / 12, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(6 + 2 / 12, "feet"),
  14723. weight: math.unit(146, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/iliac/front.svg",
  14727. extra: 389 / 365,
  14728. bottom: 0.035
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(6 + 2 / 12, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(6, "feet"),
  14745. weight: math.unit(170, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/topaz/front.svg",
  14749. extra: 317 / 303,
  14750. bottom: 0.055
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(6, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(5 + 11 / 12, "feet"),
  14767. weight: math.unit(144, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/gabriel/front.svg",
  14771. extra: 285 / 262,
  14772. bottom: 0.004
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(5 + 11 / 12, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14786. {
  14787. side: {
  14788. height: math.unit(6 + 5 / 12, "feet"),
  14789. weight: math.unit(300, "lb"),
  14790. name: "Side",
  14791. image: {
  14792. source: "./media/characters/tempest-suicune/side.svg",
  14793. extra: 195 / 154,
  14794. bottom: 0.04
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(6 + 5 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(7 + 2 / 12, "feet"),
  14811. weight: math.unit(322, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/vulcan/front.svg",
  14815. extra: 154 / 147,
  14816. bottom: 0.04
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(7 + 2 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(5 + 10 / 12, "feet"),
  14833. weight: math.unit(264, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/gault/front.svg",
  14837. extra: 161 / 140,
  14838. bottom: 0.028
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(5 + 10 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/shard/front.svg",
  14859. extra: 273 / 238,
  14860. bottom: 0.02
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(3 + 6 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(5 + 11 / 12, "feet"),
  14877. weight: math.unit(146, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/ashe/front.svg",
  14881. extra: 400 / 373,
  14882. bottom: 0.01
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(5 + 11 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(5 + 5 / 12, "feet"),
  14899. weight: math.unit(135, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/beatrix/front.svg",
  14903. extra: 392 / 379,
  14904. bottom: 0.01
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(6, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(6, "feet"),
  14921. weight: math.unit(150, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/ignatius/front.svg",
  14925. extra: 245 / 222,
  14926. bottom: 0.01
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(5 + 5 / 12, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(6 + 2 / 12, "feet"),
  14943. weight: math.unit(138, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/mei-li/front.svg",
  14947. extra: 237 / 229,
  14948. bottom: 0.03
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(6 + 2 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(2 + 4 / 12, "feet"),
  14965. weight: math.unit(62, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/puru/front.svg",
  14969. extra: 206 / 149,
  14970. bottom: 0.06
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(2 + 4 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  14984. {
  14985. anthro: {
  14986. height: math.unit(5 + 8/12, "feet"),
  14987. weight: math.unit(200, "lb"),
  14988. energyNeed: math.unit(2000, "kcal"),
  14989. name: "Anthro",
  14990. image: {
  14991. source: "./media/characters/kee/anthro.svg",
  14992. extra: 3251/3184,
  14993. bottom: 250/3501
  14994. }
  14995. },
  14996. taur: {
  14997. height: math.unit(11, "feet"),
  14998. weight: math.unit(500, "lb"),
  14999. energyNeed: math.unit(5000, "kcal"),
  15000. name: "Taur",
  15001. image: {
  15002. source: "./media/characters/kee/taur.svg",
  15003. extra: 1362/1320,
  15004. bottom: 83/1445
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5 + 8/12, "feet"),
  15012. default: true
  15013. },
  15014. {
  15015. name: "Macro",
  15016. height: math.unit(35, "feet")
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15022. {
  15023. anthro: {
  15024. height: math.unit(7, "feet"),
  15025. weight: math.unit(190, "lb"),
  15026. name: "Anthro",
  15027. image: {
  15028. source: "./media/characters/cobalt-dracha/anthro.svg",
  15029. extra: 231 / 225,
  15030. bottom: 0.04
  15031. }
  15032. },
  15033. feral: {
  15034. height: math.unit(9 + 7 / 12, "feet"),
  15035. weight: math.unit(294, "lb"),
  15036. name: "Feral",
  15037. image: {
  15038. source: "./media/characters/cobalt-dracha/feral.svg",
  15039. extra: 692 / 633,
  15040. bottom: 0.05
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(7, "feet"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15054. {
  15055. fallen: {
  15056. height: math.unit(11 + 8 / 12, "feet"),
  15057. weight: math.unit(485, "lb"),
  15058. name: "Java (Fallen)",
  15059. rename: true,
  15060. image: {
  15061. source: "./media/characters/java/fallen.svg",
  15062. extra: 226 / 208,
  15063. bottom: 0.005
  15064. }
  15065. },
  15066. godkin: {
  15067. height: math.unit(10 + 6 / 12, "feet"),
  15068. weight: math.unit(328, "lb"),
  15069. name: "Java (Godkin)",
  15070. rename: true,
  15071. image: {
  15072. source: "./media/characters/java/godkin.svg",
  15073. extra: 270 / 262,
  15074. bottom: 0.02
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(11 + 8 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(7 + 8 / 12, "feet"),
  15091. weight: math.unit(320, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/skoll/front.svg",
  15095. extra: 232 / 220,
  15096. bottom: 0.02
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(7 + 8 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(5 + 9 / 12, "feet"),
  15113. weight: math.unit(170, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/purna/front.svg",
  15117. extra: 239 / 229,
  15118. bottom: 0.01
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(5 + 9 / 12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(5 + 9 / 12, "feet"),
  15135. weight: math.unit(142, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/kuva/front.svg",
  15139. extra: 281 / 271,
  15140. bottom: 0.006
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(5 + 9 / 12, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15154. {
  15155. anthro: {
  15156. height: math.unit(9 + 2 / 12, "feet"),
  15157. weight: math.unit(270, "lb"),
  15158. name: "Anthro",
  15159. image: {
  15160. source: "./media/characters/embra/anthro.svg",
  15161. extra: 200 / 187,
  15162. bottom: 0.02
  15163. }
  15164. },
  15165. feral: {
  15166. height: math.unit(18 + 8 / 12, "feet"),
  15167. weight: math.unit(576, "lb"),
  15168. name: "Feral",
  15169. image: {
  15170. source: "./media/characters/embra/feral.svg",
  15171. extra: 152 / 137,
  15172. bottom: 0.037
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(9 + 2 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15186. {
  15187. anthro: {
  15188. height: math.unit(10 + 9 / 12, "feet"),
  15189. weight: math.unit(224, "lb"),
  15190. name: "Anthro",
  15191. image: {
  15192. source: "./media/characters/grottos/anthro.svg",
  15193. extra: 350 / 332,
  15194. bottom: 0.045
  15195. }
  15196. },
  15197. feral: {
  15198. height: math.unit(20 + 7 / 12, "feet"),
  15199. weight: math.unit(629, "lb"),
  15200. name: "Feral",
  15201. image: {
  15202. source: "./media/characters/grottos/feral.svg",
  15203. extra: 207 / 190,
  15204. bottom: 0.05
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(10 + 9 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15218. {
  15219. anthro: {
  15220. height: math.unit(9 + 6 / 12, "feet"),
  15221. weight: math.unit(298, "lb"),
  15222. name: "Anthro",
  15223. image: {
  15224. source: "./media/characters/frifna/anthro.svg",
  15225. extra: 282 / 269,
  15226. bottom: 0.015
  15227. }
  15228. },
  15229. feral: {
  15230. height: math.unit(16 + 2 / 12, "feet"),
  15231. weight: math.unit(624, "lb"),
  15232. name: "Feral",
  15233. image: {
  15234. source: "./media/characters/frifna/feral.svg"
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(9 + 6 / 12, "feet"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6 + 2 / 12, "feet"),
  15251. weight: math.unit(168, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/elise/front.svg",
  15255. extra: 276 / 271
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(6 + 2 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(5 + 10 / 12, "feet"),
  15272. weight: math.unit(210, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/glade/front.svg",
  15276. extra: 258 / 247,
  15277. bottom: 0.008
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(5 + 10 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(5 + 10 / 12, "feet"),
  15294. weight: math.unit(129, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/rina/front.svg",
  15298. extra: 266 / 255,
  15299. bottom: 0.005
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5 + 10 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(6 + 1 / 12, "feet"),
  15316. weight: math.unit(192, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/veronica/front.svg",
  15320. extra: 319 / 309,
  15321. bottom: 0.005
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(6 + 1 / 12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(9 + 3 / 12, "feet"),
  15338. weight: math.unit(1100, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/braxton/front.svg",
  15342. extra: 1057 / 984,
  15343. bottom: 0.05
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(9 + 3 / 12, "feet")
  15351. },
  15352. {
  15353. name: "Giant",
  15354. height: math.unit(300, "feet"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Macro",
  15359. height: math.unit(700, "feet")
  15360. },
  15361. {
  15362. name: "Megamacro",
  15363. height: math.unit(6000, "feet")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6 + 7 / 12, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/blue-feyonics/front.svg",
  15376. extra: 1403 / 1306,
  15377. bottom: 0.047
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(6 + 7 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(1.8, "meters"),
  15394. weight: math.unit(60, "kg"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/maxwell/front.svg",
  15398. extra: 2060 / 1873
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Micro",
  15405. height: math.unit(1, "mm")
  15406. },
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(1.8, "meter"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Macro",
  15414. height: math.unit(30, "meters")
  15415. },
  15416. {
  15417. name: "Megamacro",
  15418. height: math.unit(10, "km")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/jack/front.svg",
  15431. extra: 1754 / 1640,
  15432. bottom: 0.01
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(80000, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Max size",
  15444. height: math.unit(10, "lightyears")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15450. {
  15451. upright: {
  15452. height: math.unit(7, "feet"),
  15453. weight: math.unit(170, "lb"),
  15454. name: "Upright",
  15455. image: {
  15456. source: "./media/characters/cafat/upright.svg",
  15457. bottom: 0.01
  15458. }
  15459. },
  15460. uprightFull: {
  15461. height: math.unit(7, "feet"),
  15462. weight: math.unit(170, "lb"),
  15463. name: "Upright (Full)",
  15464. image: {
  15465. source: "./media/characters/cafat/upright-full.svg",
  15466. bottom: 0.01
  15467. }
  15468. },
  15469. side: {
  15470. height: math.unit(5, "feet"),
  15471. weight: math.unit(150, "lb"),
  15472. name: "Side",
  15473. image: {
  15474. source: "./media/characters/cafat/side.svg"
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Small",
  15481. height: math.unit(7, "feet"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Large",
  15486. height: math.unit(15.5, "feet")
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(6, "feet"),
  15495. weight: math.unit(150, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/verin-raharra/front.svg",
  15499. extra: 5019 / 4835,
  15500. bottom: 0.023
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(7 + 5 / 12, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Upsized",
  15512. height: math.unit(20, "feet")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(7, "feet"),
  15521. weight: math.unit(230, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/nakata/front.svg",
  15525. extra: 1.005,
  15526. bottom: 0.01
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(7, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Big",
  15538. height: math.unit(14, "feet")
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(400, "feet")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(4.91, "feet"),
  15551. weight: math.unit(100, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/lily/front.svg",
  15555. extra: 1585 / 1415,
  15556. bottom: 0.02
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(4.91, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15570. {
  15571. laying: {
  15572. height: math.unit(4 + 4 / 12, "feet"),
  15573. weight: math.unit(600, "lb"),
  15574. name: "Laying",
  15575. image: {
  15576. source: "./media/characters/sheila/laying.svg",
  15577. extra: 1333 / 1265,
  15578. bottom: 0.16
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(4 + 4 / 12, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(190, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/sax/front.svg",
  15599. extra: 1187 / 973,
  15600. bottom: 0.042
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Micro",
  15607. height: math.unit(4, "inches"),
  15608. default: true
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/pandora/front.svg",
  15621. extra: 2720 / 2556,
  15622. bottom: 0.015
  15623. }
  15624. },
  15625. back: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(150, "lb"),
  15628. name: "Back",
  15629. image: {
  15630. source: "./media/characters/pandora/back.svg",
  15631. extra: 2720 / 2556,
  15632. bottom: 0.01
  15633. }
  15634. },
  15635. beans: {
  15636. height: math.unit(6 / 8, "feet"),
  15637. name: "Beans",
  15638. image: {
  15639. source: "./media/characters/pandora/beans.svg"
  15640. }
  15641. },
  15642. skirt: {
  15643. height: math.unit(6, "feet"),
  15644. weight: math.unit(150, "lb"),
  15645. name: "Skirt",
  15646. image: {
  15647. source: "./media/characters/pandora/skirt.svg",
  15648. extra: 1622 / 1525,
  15649. bottom: 0.015
  15650. }
  15651. },
  15652. hoodie: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(150, "lb"),
  15655. name: "Hoodie",
  15656. image: {
  15657. source: "./media/characters/pandora/hoodie.svg",
  15658. extra: 1622 / 1525,
  15659. bottom: 0.015
  15660. }
  15661. },
  15662. casual: {
  15663. height: math.unit(6, "feet"),
  15664. weight: math.unit(150, "lb"),
  15665. name: "Casual",
  15666. image: {
  15667. source: "./media/characters/pandora/casual.svg",
  15668. extra: 1622 / 1525,
  15669. bottom: 0.015
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Normal",
  15676. height: math.unit(6, "feet")
  15677. },
  15678. {
  15679. name: "Big Steppy",
  15680. height: math.unit(1, "km"),
  15681. default: true
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15687. {
  15688. side: {
  15689. height: math.unit(10, "feet"),
  15690. weight: math.unit(800, "kg"),
  15691. name: "Side",
  15692. image: {
  15693. source: "./media/characters/venio-darcony/side.svg",
  15694. extra: 1373 / 1003,
  15695. bottom: 0.037
  15696. }
  15697. },
  15698. front: {
  15699. height: math.unit(19, "feet"),
  15700. weight: math.unit(800, "kg"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/venio-darcony/front.svg"
  15704. }
  15705. },
  15706. back: {
  15707. height: math.unit(19, "feet"),
  15708. weight: math.unit(800, "kg"),
  15709. name: "Back",
  15710. image: {
  15711. source: "./media/characters/venio-darcony/back.svg"
  15712. }
  15713. },
  15714. sideNsfw: {
  15715. height: math.unit(10, "feet"),
  15716. weight: math.unit(800, "kg"),
  15717. name: "Side (NSFW)",
  15718. image: {
  15719. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15720. extra: 1373 / 1003,
  15721. bottom: 0.037
  15722. }
  15723. },
  15724. frontNsfw: {
  15725. height: math.unit(19, "feet"),
  15726. weight: math.unit(800, "kg"),
  15727. name: "Front (NSFW)",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15730. }
  15731. },
  15732. backNsfw: {
  15733. height: math.unit(19, "feet"),
  15734. weight: math.unit(800, "kg"),
  15735. name: "Back (NSFW)",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15738. }
  15739. },
  15740. sideArmored: {
  15741. height: math.unit(10, "feet"),
  15742. weight: math.unit(800, "kg"),
  15743. name: "Side (Armored)",
  15744. image: {
  15745. source: "./media/characters/venio-darcony/side-armored.svg",
  15746. extra: 1373 / 1003,
  15747. bottom: 0.037
  15748. }
  15749. },
  15750. frontArmored: {
  15751. height: math.unit(19, "feet"),
  15752. weight: math.unit(900, "kg"),
  15753. name: "Front (Armored)",
  15754. image: {
  15755. source: "./media/characters/venio-darcony/front-armored.svg"
  15756. }
  15757. },
  15758. backArmored: {
  15759. height: math.unit(19, "feet"),
  15760. weight: math.unit(900, "kg"),
  15761. name: "Back (Armored)",
  15762. image: {
  15763. source: "./media/characters/venio-darcony/back-armored.svg"
  15764. }
  15765. },
  15766. sword: {
  15767. height: math.unit(10, "feet"),
  15768. weight: math.unit(50, "lb"),
  15769. name: "Sword",
  15770. image: {
  15771. source: "./media/characters/venio-darcony/sword.svg"
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Normal",
  15778. height: math.unit(10, "feet")
  15779. },
  15780. {
  15781. name: "Macro",
  15782. height: math.unit(130, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Macro+",
  15787. height: math.unit(240, "feet")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6, "feet"),
  15796. weight: math.unit(150, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/veski/front.svg",
  15800. extra: 1299 / 1225,
  15801. bottom: 0.04
  15802. }
  15803. },
  15804. back: {
  15805. height: math.unit(6, "feet"),
  15806. weight: math.unit(150, "lb"),
  15807. name: "Back",
  15808. image: {
  15809. source: "./media/characters/veski/back.svg",
  15810. extra: 1299 / 1225,
  15811. bottom: 0.008
  15812. }
  15813. },
  15814. maw: {
  15815. height: math.unit(1.5 * 1.21, "feet"),
  15816. name: "Maw",
  15817. image: {
  15818. source: "./media/characters/veski/maw.svg"
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(2, "km"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(5 + 7 / 12, "feet"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/isabelle/front.svg",
  15838. extra: 2130 / 1976,
  15839. bottom: 0.05
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Supermicro",
  15846. height: math.unit(10, "micrometers")
  15847. },
  15848. {
  15849. name: "Micro",
  15850. height: math.unit(1, "inch")
  15851. },
  15852. {
  15853. name: "Tiny",
  15854. height: math.unit(5, "inches")
  15855. },
  15856. {
  15857. name: "Standard",
  15858. height: math.unit(5 + 7 / 12, "inches")
  15859. },
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(80, "meters"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Megamacro",
  15867. height: math.unit(250, "meters")
  15868. },
  15869. {
  15870. name: "Gigamacro",
  15871. height: math.unit(5, "km")
  15872. },
  15873. {
  15874. name: "Cosmic",
  15875. height: math.unit(2.5e6, "miles")
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(150, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/hanzo/front.svg",
  15888. extra: 374 / 344,
  15889. bottom: 0.02
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(8, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(7, "feet"),
  15906. weight: math.unit(130, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/anna/front.svg",
  15910. extra: 169 / 145,
  15911. bottom: 0.06
  15912. }
  15913. },
  15914. full: {
  15915. height: math.unit(4.96, "feet"),
  15916. weight: math.unit(220, "lb"),
  15917. name: "Full",
  15918. image: {
  15919. source: "./media/characters/anna/full.svg",
  15920. extra: 138 / 114,
  15921. bottom: 0.15
  15922. }
  15923. },
  15924. tongue: {
  15925. height: math.unit(2.53, "feet"),
  15926. name: "Tongue",
  15927. image: {
  15928. source: "./media/characters/anna/tongue.svg"
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(7, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(7, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/ian-corvid/front.svg",
  15949. extra: 150 / 142,
  15950. bottom: 0.02
  15951. }
  15952. },
  15953. back: {
  15954. height: math.unit(7, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Back",
  15957. image: {
  15958. source: "./media/characters/ian-corvid/back.svg",
  15959. extra: 150 / 143,
  15960. bottom: 0.01
  15961. }
  15962. },
  15963. stomping: {
  15964. height: math.unit(7, "feet"),
  15965. weight: math.unit(150, "lb"),
  15966. name: "Stomping",
  15967. image: {
  15968. source: "./media/characters/ian-corvid/stomping.svg",
  15969. extra: 76 / 72
  15970. }
  15971. },
  15972. sitting: {
  15973. height: math.unit(7 / 1.8, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Sitting",
  15976. image: {
  15977. source: "./media/characters/ian-corvid/sitting.svg",
  15978. extra: 1400 / 1269,
  15979. bottom: 0.15
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Tiny Microw",
  15986. height: math.unit(1, "inch")
  15987. },
  15988. {
  15989. name: "Microw",
  15990. height: math.unit(6, "inches")
  15991. },
  15992. {
  15993. name: "Crow",
  15994. height: math.unit(7 + 1 / 12, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Macrow",
  15999. height: math.unit(176, "feet")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(5 + 7 / 12, "feet"),
  16008. weight: math.unit(147, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/natalie-kellon/front.svg",
  16012. extra: 1214 / 1141,
  16013. bottom: 0.02
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Micro",
  16020. height: math.unit(1 / 16, "inch")
  16021. },
  16022. {
  16023. name: "Tiny",
  16024. height: math.unit(4, "inches")
  16025. },
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(5 + 7 / 12, "feet"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Amazon",
  16033. height: math.unit(12, "feet")
  16034. },
  16035. {
  16036. name: "Giantess",
  16037. height: math.unit(160, "meters")
  16038. },
  16039. {
  16040. name: "Titaness",
  16041. height: math.unit(800, "meters")
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(150, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/alluria/front.svg",
  16054. extra: 806 / 738,
  16055. bottom: 0.01
  16056. }
  16057. },
  16058. side: {
  16059. height: math.unit(6, "feet"),
  16060. weight: math.unit(150, "lb"),
  16061. name: "Side",
  16062. image: {
  16063. source: "./media/characters/alluria/side.svg",
  16064. extra: 800 / 750,
  16065. }
  16066. },
  16067. back: {
  16068. height: math.unit(6, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Back",
  16071. image: {
  16072. source: "./media/characters/alluria/back.svg",
  16073. extra: 806 / 738,
  16074. }
  16075. },
  16076. frontMaid: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front (Maid)",
  16080. image: {
  16081. source: "./media/characters/alluria/front-maid.svg",
  16082. extra: 806 / 738,
  16083. bottom: 0.01
  16084. }
  16085. },
  16086. sideMaid: {
  16087. height: math.unit(6, "feet"),
  16088. weight: math.unit(150, "lb"),
  16089. name: "Side (Maid)",
  16090. image: {
  16091. source: "./media/characters/alluria/side-maid.svg",
  16092. extra: 800 / 750,
  16093. bottom: 0.005
  16094. }
  16095. },
  16096. backMaid: {
  16097. height: math.unit(6, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Back (Maid)",
  16100. image: {
  16101. source: "./media/characters/alluria/back-maid.svg",
  16102. extra: 806 / 738,
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Micro",
  16109. height: math.unit(6, "inches"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(150, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/kyle/front.svg",
  16123. extra: 1069 / 962,
  16124. bottom: 77.228 / 1727.45
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(150, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(300, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/duncan/front.svg",
  16145. extra: 1650 / 1482,
  16146. bottom: 0.05
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Macro",
  16153. height: math.unit(100, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(5 + 4 / 12, "feet"),
  16163. weight: math.unit(220, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/memory/front.svg",
  16167. extra: 3641 / 3545,
  16168. bottom: 0.03
  16169. }
  16170. },
  16171. back: {
  16172. height: math.unit(5 + 4 / 12, "feet"),
  16173. weight: math.unit(220, "lb"),
  16174. name: "Back",
  16175. image: {
  16176. source: "./media/characters/memory/back.svg",
  16177. extra: 3641 / 3545,
  16178. bottom: 0.025
  16179. }
  16180. },
  16181. frontSkirt: {
  16182. height: math.unit(5 + 4 / 12, "feet"),
  16183. weight: math.unit(220, "lb"),
  16184. name: "Front (Skirt)",
  16185. image: {
  16186. source: "./media/characters/memory/front-skirt.svg",
  16187. extra: 3641 / 3545,
  16188. bottom: 0.03
  16189. }
  16190. },
  16191. frontDress: {
  16192. height: math.unit(5 + 4 / 12, "feet"),
  16193. weight: math.unit(220, "lb"),
  16194. name: "Front (Dress)",
  16195. image: {
  16196. source: "./media/characters/memory/front-dress.svg",
  16197. extra: 3641 / 3545,
  16198. bottom: 0.03
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Micro",
  16205. height: math.unit(6, "inches"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(5 + 4 / 12, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(4 + 11 / 12, "feet"),
  16219. weight: math.unit(100, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/luno/front.svg",
  16223. extra: 1535 / 1487,
  16224. bottom: 0.03
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(3, "inches")
  16232. },
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(4 + 11 / 12, "feet"),
  16236. default: true
  16237. },
  16238. {
  16239. name: "Macro",
  16240. height: math.unit(300, "feet")
  16241. },
  16242. {
  16243. name: "Megamacro",
  16244. height: math.unit(700, "miles")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(6 + 2 / 12, "feet"),
  16253. weight: math.unit(170, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/jamesy/front.svg",
  16257. extra: 440 / 382,
  16258. bottom: 0.005
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(3, "inches")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(6 + 2 / 12, "feet"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(300, "feet")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(700, "miles")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(160, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/mark/front.svg",
  16291. extra: 3300 / 3100,
  16292. bottom: 136.42 / 3440.47
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(120, "meters")
  16300. },
  16301. {
  16302. name: "Bigger Macro",
  16303. height: math.unit(350, "meters")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(8, "km"),
  16308. default: true
  16309. },
  16310. {
  16311. name: "Continental",
  16312. height: math.unit(4550, "km")
  16313. },
  16314. {
  16315. name: "Planetary",
  16316. height: math.unit(65000, "km")
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(6, "feet"),
  16325. weight: math.unit(400, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/mac/front.svg",
  16329. extra: 1048 / 987.7,
  16330. bottom: 60 / 1107.6,
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Macro",
  16337. height: math.unit(500, "feet"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(5 + 2 / 12, "feet"),
  16347. weight: math.unit(190, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/bari/front.svg",
  16351. extra: 3156 / 2880,
  16352. bottom: 0.03
  16353. }
  16354. },
  16355. back: {
  16356. height: math.unit(5 + 2 / 12, "feet"),
  16357. weight: math.unit(190, "lb"),
  16358. name: "Back",
  16359. image: {
  16360. source: "./media/characters/bari/back.svg",
  16361. extra: 3260 / 2834,
  16362. bottom: 0.025
  16363. }
  16364. },
  16365. frontPlush: {
  16366. height: math.unit(5 + 2 / 12, "feet"),
  16367. weight: math.unit(190, "lb"),
  16368. name: "Front (Plush)",
  16369. image: {
  16370. source: "./media/characters/bari/front-plush.svg",
  16371. extra: 1112 / 1061,
  16372. bottom: 0.002
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Micro",
  16379. height: math.unit(3, "inches")
  16380. },
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(5 + 2 / 12, "feet"),
  16384. default: true
  16385. },
  16386. {
  16387. name: "Macro",
  16388. height: math.unit(20, "feet")
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16394. {
  16395. front: {
  16396. height: math.unit(6 + 1 / 12, "feet"),
  16397. weight: math.unit(275, "lb"),
  16398. name: "Front",
  16399. image: {
  16400. source: "./media/characters/hunter-misha-raven/front.svg"
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Mortal",
  16407. height: math.unit(6 + 1 / 12, "feet")
  16408. },
  16409. {
  16410. name: "Divine",
  16411. height: math.unit(1.12134e34, "parsecs"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6 + 3 / 12, "feet"),
  16421. weight: math.unit(220, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/max-calore/front.svg",
  16425. extra: 1700 / 1648,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. back: {
  16430. height: math.unit(6 + 3 / 12, "feet"),
  16431. weight: math.unit(220, "lb"),
  16432. name: "Back",
  16433. image: {
  16434. source: "./media/characters/max-calore/back.svg",
  16435. extra: 1700 / 1648,
  16436. bottom: 0.01
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(6 + 3 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16450. {
  16451. side: {
  16452. height: math.unit(2 + 8 / 12, "feet"),
  16453. weight: math.unit(99, "lb"),
  16454. name: "Side",
  16455. image: {
  16456. source: "./media/characters/aspen/side.svg",
  16457. extra: 152 / 138,
  16458. bottom: 0.032
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(2 + 8 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16472. {
  16473. side: {
  16474. height: math.unit(3 + 2 / 12, "feet"),
  16475. weight: math.unit(224, "lb"),
  16476. name: "Side",
  16477. image: {
  16478. source: "./media/characters/sheila-feral-wolf/side.svg",
  16479. extra: 179 / 166,
  16480. bottom: 0.03
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(3 + 2 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16494. {
  16495. side: {
  16496. height: math.unit(1 + 9 / 12, "feet"),
  16497. weight: math.unit(38, "lb"),
  16498. name: "Side",
  16499. image: {
  16500. source: "./media/characters/michelle/side.svg",
  16501. extra: 147 / 136.7,
  16502. bottom: 0.03
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(1 + 9 / 12, "feet"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(1 + 1 / 12, "feet"),
  16519. weight: math.unit(18, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/nino/front.svg"
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(1 + 1 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(1, "feet"),
  16539. weight: math.unit(16, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/viola/front.svg"
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(1, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(6 + 5 / 12, "feet"),
  16559. weight: math.unit(580, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/atlas/front.svg",
  16563. extra: 298.5 / 290,
  16564. bottom: 0.015
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(6 + 5 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16578. {
  16579. side: {
  16580. height: math.unit(1 + 10 / 12, "feet"),
  16581. weight: math.unit(25, "lb"),
  16582. name: "Side",
  16583. image: {
  16584. source: "./media/characters/davy/side.svg",
  16585. extra: 200 / 170,
  16586. bottom: 0.01
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(1 + 10 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16600. {
  16601. side: {
  16602. height: math.unit(4 + 8 / 12, "feet"),
  16603. weight: math.unit(166, "lb"),
  16604. name: "Side",
  16605. image: {
  16606. source: "./media/characters/fiona/side.svg",
  16607. extra: 232 / 220,
  16608. bottom: 0.03
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(4 + 8 / 12, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16622. {
  16623. front: {
  16624. height: math.unit(2, "feet"),
  16625. weight: math.unit(62, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/lyla/front.svg",
  16629. bottom: 0.1
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(2, "feet"),
  16637. default: true
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16643. {
  16644. side: {
  16645. height: math.unit(1.8, "feet"),
  16646. weight: math.unit(44, "lb"),
  16647. name: "Side",
  16648. image: {
  16649. source: "./media/characters/perseus/side.svg",
  16650. bottom: 0.21
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(1.8, "feet"),
  16658. default: true
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16664. {
  16665. side: {
  16666. height: math.unit(4 + 2 / 12, "feet"),
  16667. weight: math.unit(20, "lb"),
  16668. name: "Side",
  16669. image: {
  16670. source: "./media/characters/remus/side.svg"
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(4 + 2 / 12, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(4 + 11 / 12, "feet"),
  16687. weight: math.unit(114, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/raf/front.svg",
  16691. bottom: 20.5 / 1863
  16692. }
  16693. },
  16694. side: {
  16695. height: math.unit(4 + 11 / 12, "feet"),
  16696. weight: math.unit(114, "lb"),
  16697. name: "Side",
  16698. image: {
  16699. source: "./media/characters/raf/side.svg",
  16700. bottom: 22 / 1822
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Micro",
  16707. height: math.unit(2, "inches")
  16708. },
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(4 + 11 / 12, "feet"),
  16712. default: true
  16713. },
  16714. {
  16715. name: "Macro",
  16716. height: math.unit(70, "feet")
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(1.5, "meters"),
  16725. weight: math.unit(68, "kg"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/liam-einarr/front.svg",
  16729. extra: 2822 / 2666
  16730. }
  16731. },
  16732. back: {
  16733. height: math.unit(1.5, "meters"),
  16734. weight: math.unit(68, "kg"),
  16735. name: "Back",
  16736. image: {
  16737. source: "./media/characters/liam-einarr/back.svg",
  16738. extra: 2822 / 2666,
  16739. bottom: 0.015
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(1.5, "meters"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Macro",
  16751. height: math.unit(150, "meters")
  16752. },
  16753. {
  16754. name: "Megamacro",
  16755. height: math.unit(35, "km")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6, "feet"),
  16764. weight: math.unit(75, "kg"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/linda/front.svg",
  16768. extra: 930 / 874,
  16769. bottom: 0.004
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(6, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6 + 8 / 12, "feet"),
  16786. weight: math.unit(220, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/caylex/front.svg",
  16790. extra: 821 / 772,
  16791. bottom: 0.07
  16792. }
  16793. },
  16794. back: {
  16795. height: math.unit(6 + 8 / 12, "feet"),
  16796. weight: math.unit(220, "lb"),
  16797. name: "Back",
  16798. image: {
  16799. source: "./media/characters/caylex/back.svg",
  16800. extra: 821 / 772,
  16801. bottom: 0.022
  16802. }
  16803. },
  16804. hand: {
  16805. height: math.unit(1.25, "feet"),
  16806. name: "Hand",
  16807. image: {
  16808. source: "./media/characters/caylex/hand.svg"
  16809. }
  16810. },
  16811. foot: {
  16812. height: math.unit(1.6, "feet"),
  16813. name: "Foot",
  16814. image: {
  16815. source: "./media/characters/caylex/foot.svg"
  16816. }
  16817. },
  16818. armored: {
  16819. height: math.unit(6 + 8 / 12, "feet"),
  16820. weight: math.unit(250, "lb"),
  16821. name: "Armored",
  16822. image: {
  16823. source: "./media/characters/caylex/armored.svg",
  16824. extra: 1420 / 1310,
  16825. bottom: 0.045
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(6 + 8 / 12, "feet"),
  16833. default: true
  16834. },
  16835. {
  16836. name: "Normal+",
  16837. height: math.unit(12, "feet")
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(7 + 6 / 12, "feet"),
  16846. weight: math.unit(288, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/alana/front.svg",
  16850. extra: 679 / 653,
  16851. bottom: 22.5 / 701
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(7 + 6 / 12, "feet")
  16859. },
  16860. {
  16861. name: "Large",
  16862. height: math.unit(50, "feet")
  16863. },
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(100, "feet"),
  16867. default: true
  16868. },
  16869. {
  16870. name: "Macro+",
  16871. height: math.unit(200, "feet")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(6 + 1 / 12, "feet"),
  16880. weight: math.unit(210, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/hasani/front.svg",
  16884. extra: 244 / 232,
  16885. bottom: 0.01
  16886. }
  16887. },
  16888. back: {
  16889. height: math.unit(6 + 1 / 12, "feet"),
  16890. weight: math.unit(210, "lb"),
  16891. name: "Back",
  16892. image: {
  16893. source: "./media/characters/hasani/back.svg",
  16894. extra: 244 / 232,
  16895. bottom: 0.01
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(6 + 1 / 12, "feet")
  16903. },
  16904. {
  16905. name: "Macro",
  16906. height: math.unit(175, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(1.82, "meters"),
  16916. weight: math.unit(140, "lb"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/nita/front.svg",
  16920. extra: 2473 / 2363,
  16921. bottom: 0.01
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(1.82, "m")
  16929. },
  16930. {
  16931. name: "Macro",
  16932. height: math.unit(300, "m")
  16933. },
  16934. {
  16935. name: "Mistake Canon",
  16936. height: math.unit(0.5, "miles"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Big Mistake",
  16941. height: math.unit(13, "miles")
  16942. },
  16943. {
  16944. name: "Playing God",
  16945. height: math.unit(2450, "miles")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(4, "feet"),
  16954. weight: math.unit(120, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/shiriko/front.svg",
  16958. extra: 195 / 188
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(4, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(6, "feet"),
  16975. name: "front",
  16976. image: {
  16977. source: "./media/characters/deja/front.svg",
  16978. extra: 926 / 840,
  16979. bottom: 0.07
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Planck Length",
  16986. height: math.unit(1.6e-35, "meters")
  16987. },
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(30.48, "meters"),
  16991. default: true
  16992. },
  16993. {
  16994. name: "Universal",
  16995. height: math.unit(8.8e26, "meters")
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17001. {
  17002. side: {
  17003. height: math.unit(8, "feet"),
  17004. weight: math.unit(6300, "lb"),
  17005. name: "Side",
  17006. image: {
  17007. source: "./media/characters/anima/side.svg",
  17008. bottom: 0.035
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(8, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(8, "feet"),
  17025. weight: math.unit(350, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/bianca/front.svg",
  17029. extra: 234 / 225,
  17030. bottom: 0.03
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(8, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(6, "feet"),
  17047. weight: math.unit(150, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/adinia/front.svg",
  17051. extra: 1845 / 1672,
  17052. bottom: 0.02
  17053. }
  17054. },
  17055. back: {
  17056. height: math.unit(6, "feet"),
  17057. weight: math.unit(150, "lb"),
  17058. name: "Back",
  17059. image: {
  17060. source: "./media/characters/adinia/back.svg",
  17061. extra: 1845 / 1672,
  17062. bottom: 0.002
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(11 + 5 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(3, "meters"),
  17079. weight: math.unit(200, "kg"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/lykasa/front.svg",
  17083. extra: 1076 / 976,
  17084. bottom: 0.06
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(3, "meters")
  17092. },
  17093. {
  17094. name: "Kaiju",
  17095. height: math.unit(120, "meters"),
  17096. default: true
  17097. },
  17098. {
  17099. name: "Mega Kaiju",
  17100. height: math.unit(240, "km")
  17101. },
  17102. {
  17103. name: "Giga Kaiju",
  17104. height: math.unit(400, "megameters")
  17105. },
  17106. {
  17107. name: "Tera Kaiju",
  17108. height: math.unit(800, "gigameters")
  17109. },
  17110. {
  17111. name: "Kaiju Dragon Goddess",
  17112. height: math.unit(26, "zettaparsecs")
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17118. {
  17119. side: {
  17120. height: math.unit(283 / 124 * 6, "feet"),
  17121. weight: math.unit(35000, "lb"),
  17122. name: "Side",
  17123. image: {
  17124. source: "./media/characters/malfaren/side.svg",
  17125. extra: 2500 / 1010,
  17126. bottom: 0.01
  17127. }
  17128. },
  17129. front: {
  17130. height: math.unit(22.36, "feet"),
  17131. weight: math.unit(35000, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/malfaren/front.svg",
  17135. extra: 1631 / 1476,
  17136. bottom: 0.01
  17137. }
  17138. },
  17139. maw: {
  17140. height: math.unit(6.9, "feet"),
  17141. name: "Maw",
  17142. image: {
  17143. source: "./media/characters/malfaren/maw.svg"
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Big",
  17150. height: math.unit(283 / 162 * 6, "feet"),
  17151. },
  17152. {
  17153. name: "Bigger",
  17154. height: math.unit(283 / 124 * 6, "feet")
  17155. },
  17156. {
  17157. name: "Massive",
  17158. height: math.unit(283 / 92 * 6, "feet"),
  17159. default: true
  17160. },
  17161. {
  17162. name: "👀💦",
  17163. height: math.unit(283 / 73 * 6, "feet"),
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(1.7, "m"),
  17172. weight: math.unit(70, "kg"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/kernel/front.svg",
  17176. extra: 222 / 210,
  17177. bottom: 0.007
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Nano",
  17184. height: math.unit(17, "micrometers")
  17185. },
  17186. {
  17187. name: "Micro",
  17188. height: math.unit(1.7, "mm")
  17189. },
  17190. {
  17191. name: "Small",
  17192. height: math.unit(1.7, "cm")
  17193. },
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(1.7, "m"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(1.75, "meters"),
  17206. weight: math.unit(65, "kg"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/jayne-folest/front.svg",
  17210. extra: 2115 / 2007,
  17211. bottom: 0.02
  17212. }
  17213. },
  17214. back: {
  17215. height: math.unit(1.75, "meters"),
  17216. weight: math.unit(65, "kg"),
  17217. name: "Back",
  17218. image: {
  17219. source: "./media/characters/jayne-folest/back.svg",
  17220. extra: 2115 / 2007,
  17221. bottom: 0.005
  17222. }
  17223. },
  17224. frontClothed: {
  17225. height: math.unit(1.75, "meters"),
  17226. weight: math.unit(65, "kg"),
  17227. name: "Front (Clothed)",
  17228. image: {
  17229. source: "./media/characters/jayne-folest/front-clothed.svg",
  17230. extra: 2115 / 2007,
  17231. bottom: 0.035
  17232. }
  17233. },
  17234. hand: {
  17235. height: math.unit(1 / 1.260, "feet"),
  17236. name: "Hand",
  17237. image: {
  17238. source: "./media/characters/jayne-folest/hand.svg"
  17239. }
  17240. },
  17241. foot: {
  17242. height: math.unit(1 / 0.918, "feet"),
  17243. name: "Foot",
  17244. image: {
  17245. source: "./media/characters/jayne-folest/foot.svg"
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Micro",
  17252. height: math.unit(4, "cm")
  17253. },
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(1.75, "meters")
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(47.5, "meters"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(180, "cm"),
  17270. weight: math.unit(70, "kg"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/algier/front.svg",
  17274. extra: 596 / 572,
  17275. bottom: 0.04
  17276. }
  17277. },
  17278. back: {
  17279. height: math.unit(180, "cm"),
  17280. weight: math.unit(70, "kg"),
  17281. name: "Back",
  17282. image: {
  17283. source: "./media/characters/algier/back.svg",
  17284. extra: 596 / 572,
  17285. bottom: 0.025
  17286. }
  17287. },
  17288. frontdressed: {
  17289. height: math.unit(180, "cm"),
  17290. weight: math.unit(150, "kg"),
  17291. name: "Front-dressed",
  17292. image: {
  17293. source: "./media/characters/algier/front-dressed.svg",
  17294. extra: 596 / 572,
  17295. bottom: 0.038
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Micro",
  17302. height: math.unit(5, "cm")
  17303. },
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(180, "cm"),
  17307. default: true
  17308. },
  17309. {
  17310. name: "Macro",
  17311. height: math.unit(64, "m")
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17317. {
  17318. upright: {
  17319. height: math.unit(7, "feet"),
  17320. weight: math.unit(300, "lb"),
  17321. name: "Upright",
  17322. image: {
  17323. source: "./media/characters/pretzel/upright.svg",
  17324. extra: 534 / 522,
  17325. bottom: 0.065
  17326. }
  17327. },
  17328. sprawling: {
  17329. height: math.unit(3.75, "feet"),
  17330. weight: math.unit(300, "lb"),
  17331. name: "Sprawling",
  17332. image: {
  17333. source: "./media/characters/pretzel/sprawling.svg",
  17334. extra: 314 / 281,
  17335. bottom: 0.1
  17336. }
  17337. },
  17338. tongue: {
  17339. height: math.unit(2, "feet"),
  17340. name: "Tongue",
  17341. image: {
  17342. source: "./media/characters/pretzel/tongue.svg"
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(7, "feet"),
  17350. default: true
  17351. },
  17352. {
  17353. name: "Oversized",
  17354. height: math.unit(15, "feet")
  17355. },
  17356. {
  17357. name: "Huge",
  17358. height: math.unit(30, "feet")
  17359. },
  17360. {
  17361. name: "Macro",
  17362. height: math.unit(250, "feet")
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17368. {
  17369. sideFront: {
  17370. height: math.unit(5 + 2 / 12, "feet"),
  17371. weight: math.unit(120, "lb"),
  17372. name: "Front Side",
  17373. image: {
  17374. source: "./media/characters/roxi/side-front.svg",
  17375. extra: 2924 / 2717,
  17376. bottom: 0.08
  17377. }
  17378. },
  17379. sideBack: {
  17380. height: math.unit(5 + 2 / 12, "feet"),
  17381. weight: math.unit(120, "lb"),
  17382. name: "Back Side",
  17383. image: {
  17384. source: "./media/characters/roxi/side-back.svg",
  17385. extra: 2904 / 2693,
  17386. bottom: 0.06
  17387. }
  17388. },
  17389. front: {
  17390. height: math.unit(5 + 2 / 12, "feet"),
  17391. weight: math.unit(120, "lb"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/roxi/front.svg",
  17395. extra: 2028 / 1907,
  17396. bottom: 0.01
  17397. }
  17398. },
  17399. frontAlt: {
  17400. height: math.unit(5 + 2 / 12, "feet"),
  17401. weight: math.unit(120, "lb"),
  17402. name: "Front (Alt)",
  17403. image: {
  17404. source: "./media/characters/roxi/front-alt.svg",
  17405. extra: 1828 / 1798,
  17406. bottom: 0.01
  17407. }
  17408. },
  17409. sitting: {
  17410. height: math.unit(2.8, "feet"),
  17411. weight: math.unit(120, "lb"),
  17412. name: "Sitting",
  17413. image: {
  17414. source: "./media/characters/roxi/sitting.svg",
  17415. extra: 2660 / 2462,
  17416. bottom: 0.1
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(5 + 2 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17430. {
  17431. side: {
  17432. height: math.unit(55, "feet"),
  17433. weight: math.unit(153, "tons"),
  17434. name: "Side",
  17435. image: {
  17436. source: "./media/characters/shadow/side.svg",
  17437. extra: 701 / 628,
  17438. bottom: 0.02
  17439. }
  17440. },
  17441. flying: {
  17442. height: math.unit(145, "feet"),
  17443. weight: math.unit(153, "tons"),
  17444. name: "Flying",
  17445. image: {
  17446. source: "./media/characters/shadow/flying.svg"
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(55, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(6, "feet"),
  17463. weight: math.unit(200, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/marcie/front.svg",
  17467. extra: 960 / 876,
  17468. bottom: 58 / 1017.87
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(1, "mile"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(7, "feet"),
  17485. weight: math.unit(200, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/kachina/front.svg",
  17489. extra: 1290.68 / 1119,
  17490. bottom: 36.5 / 1327.18
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(7, "feet"),
  17498. default: true
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17504. {
  17505. looking: {
  17506. height: math.unit(2, "meters"),
  17507. weight: math.unit(300, "kg"),
  17508. name: "Looking",
  17509. image: {
  17510. source: "./media/characters/kash/looking.svg",
  17511. extra: 474 / 344,
  17512. bottom: 0.03
  17513. }
  17514. },
  17515. side: {
  17516. height: math.unit(2, "meters"),
  17517. weight: math.unit(300, "kg"),
  17518. name: "Side",
  17519. image: {
  17520. source: "./media/characters/kash/side.svg",
  17521. extra: 302 / 251,
  17522. bottom: 0.03
  17523. }
  17524. },
  17525. front: {
  17526. height: math.unit(2, "meters"),
  17527. weight: math.unit(300, "kg"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/kash/front.svg",
  17531. extra: 495 / 360,
  17532. bottom: 0.015
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(2, "meters"),
  17540. default: true
  17541. },
  17542. {
  17543. name: "Big",
  17544. height: math.unit(3, "meters")
  17545. },
  17546. {
  17547. name: "Large",
  17548. height: math.unit(5, "meters")
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17554. {
  17555. feeding: {
  17556. height: math.unit(6.7, "feet"),
  17557. weight: math.unit(350, "lb"),
  17558. name: "Feeding",
  17559. image: {
  17560. source: "./media/characters/lalim/feeding.svg",
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(6.7, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(9.5, "feet"),
  17577. weight: math.unit(600, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/de'vout/front.svg",
  17581. extra: 1443 / 1328,
  17582. bottom: 0.025
  17583. }
  17584. },
  17585. back: {
  17586. height: math.unit(9.5, "feet"),
  17587. weight: math.unit(600, "lb"),
  17588. name: "Back",
  17589. image: {
  17590. source: "./media/characters/de'vout/back.svg",
  17591. extra: 1443 / 1328
  17592. }
  17593. },
  17594. frontDressed: {
  17595. height: math.unit(9.5, "feet"),
  17596. weight: math.unit(600, "lb"),
  17597. name: "Front (Dressed",
  17598. image: {
  17599. source: "./media/characters/de'vout/front-dressed.svg",
  17600. extra: 1443 / 1328,
  17601. bottom: 0.025
  17602. }
  17603. },
  17604. backDressed: {
  17605. height: math.unit(9.5, "feet"),
  17606. weight: math.unit(600, "lb"),
  17607. name: "Back (Dressed",
  17608. image: {
  17609. source: "./media/characters/de'vout/back-dressed.svg",
  17610. extra: 1443 / 1328
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(9.5, "feet"),
  17618. default: true
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(8, "feet"),
  17627. weight: math.unit(225, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/talana/front.svg",
  17631. extra: 1410 / 1300,
  17632. bottom: 0.015
  17633. }
  17634. },
  17635. frontDressed: {
  17636. height: math.unit(8, "feet"),
  17637. weight: math.unit(225, "lb"),
  17638. name: "Front (Dressed",
  17639. image: {
  17640. source: "./media/characters/talana/front-dressed.svg",
  17641. extra: 1410 / 1300,
  17642. bottom: 0.015
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(8, "feet"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17656. {
  17657. side: {
  17658. height: math.unit(7.2, "feet"),
  17659. weight: math.unit(150, "lb"),
  17660. name: "Side",
  17661. image: {
  17662. source: "./media/characters/xeauvok/side.svg",
  17663. extra: 1975 / 1523,
  17664. bottom: 0.07
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(7.2, "feet"),
  17672. default: true
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17678. {
  17679. side: {
  17680. height: math.unit(10, "feet"),
  17681. weight: math.unit(900, "kg"),
  17682. name: "Side",
  17683. image: {
  17684. source: "./media/characters/zara/side.svg",
  17685. extra: 504 / 498
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(10, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17699. {
  17700. side: {
  17701. height: math.unit(6, "feet"),
  17702. weight: math.unit(150, "lb"),
  17703. name: "Side",
  17704. image: {
  17705. source: "./media/characters/richard-dragon/side.svg",
  17706. extra: 845 / 340,
  17707. bottom: 0.017
  17708. }
  17709. },
  17710. maw: {
  17711. height: math.unit(2.97, "feet"),
  17712. name: "Maw",
  17713. image: {
  17714. source: "./media/characters/richard-dragon/maw.svg"
  17715. }
  17716. },
  17717. },
  17718. [
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(4, "feet"),
  17726. weight: math.unit(100, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/richard-smeargle/front.svg",
  17730. extra: 2952 / 2820,
  17731. bottom: 0.028
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(4, "feet"),
  17739. default: true
  17740. },
  17741. {
  17742. name: "Dynamax",
  17743. height: math.unit(20, "meters")
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(110, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/klay/front.svg",
  17756. extra: 962 / 883,
  17757. bottom: 0.04
  17758. }
  17759. },
  17760. back: {
  17761. height: math.unit(6, "feet"),
  17762. weight: math.unit(110, "lb"),
  17763. name: "Back",
  17764. image: {
  17765. source: "./media/characters/klay/back.svg",
  17766. extra: 962 / 883
  17767. }
  17768. },
  17769. beans: {
  17770. height: math.unit(1.15, "feet"),
  17771. name: "Beans",
  17772. image: {
  17773. source: "./media/characters/klay/beans.svg"
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Micro",
  17780. height: math.unit(6, "inches")
  17781. },
  17782. {
  17783. name: "Mini",
  17784. height: math.unit(3, "feet")
  17785. },
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(6, "feet"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "Big",
  17793. height: math.unit(25, "feet")
  17794. },
  17795. {
  17796. name: "Macro",
  17797. height: math.unit(100, "feet")
  17798. },
  17799. {
  17800. name: "Megamacro",
  17801. height: math.unit(400, "feet")
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(6, "feet"),
  17810. weight: math.unit(160, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/marcus/front.svg",
  17814. extra: 734 / 676,
  17815. bottom: 0.03
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Little",
  17822. height: math.unit(6, "feet")
  17823. },
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(110, "feet"),
  17827. default: true
  17828. },
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(250, "feet")
  17832. },
  17833. {
  17834. name: "Megamacro",
  17835. height: math.unit(1000, "feet")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(7, "feet"),
  17844. weight: math.unit(275, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/claude-delroute/front.svg",
  17848. extra: 230 / 214,
  17849. bottom: 0.007
  17850. }
  17851. },
  17852. side: {
  17853. height: math.unit(7, "feet"),
  17854. weight: math.unit(275, "lb"),
  17855. name: "Side",
  17856. image: {
  17857. source: "./media/characters/claude-delroute/side.svg",
  17858. extra: 222 / 214,
  17859. bottom: 0.01
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(7, "feet"),
  17864. weight: math.unit(275, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/claude-delroute/back.svg",
  17868. extra: 230 / 214,
  17869. bottom: 0.015
  17870. }
  17871. },
  17872. maw: {
  17873. height: math.unit(0.6407, "meters"),
  17874. name: "Maw",
  17875. image: {
  17876. source: "./media/characters/claude-delroute/maw.svg"
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(7, "feet"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Lorge",
  17888. height: math.unit(20, "feet")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(8 + 4 / 12, "feet"),
  17897. weight: math.unit(600, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/dragonien/front.svg",
  17901. extra: 100 / 94,
  17902. bottom: 3.3 / 103.3445
  17903. }
  17904. },
  17905. back: {
  17906. height: math.unit(8 + 4 / 12, "feet"),
  17907. weight: math.unit(600, "lb"),
  17908. name: "Back",
  17909. image: {
  17910. source: "./media/characters/dragonien/back.svg",
  17911. extra: 776 / 746,
  17912. bottom: 6.4 / 782.0616
  17913. }
  17914. },
  17915. foot: {
  17916. height: math.unit(1.54, "feet"),
  17917. name: "Foot",
  17918. image: {
  17919. source: "./media/characters/dragonien/foot.svg",
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(8 + 4 / 12, "feet"),
  17927. default: true
  17928. },
  17929. {
  17930. name: "Macro",
  17931. height: math.unit(200, "feet")
  17932. },
  17933. {
  17934. name: "Megamacro",
  17935. height: math.unit(1, "mile")
  17936. },
  17937. {
  17938. name: "Gigamacro",
  17939. height: math.unit(1000, "miles")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(5 + 2 / 12, "feet"),
  17948. weight: math.unit(110, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/desta/front.svg",
  17952. extra: 767 / 726,
  17953. bottom: 11.7 / 779
  17954. }
  17955. },
  17956. back: {
  17957. height: math.unit(5 + 2 / 12, "feet"),
  17958. weight: math.unit(110, "lb"),
  17959. name: "Back",
  17960. image: {
  17961. source: "./media/characters/desta/back.svg",
  17962. extra: 777 / 728,
  17963. bottom: 6 / 784
  17964. }
  17965. },
  17966. frontAlt: {
  17967. height: math.unit(5 + 2 / 12, "feet"),
  17968. weight: math.unit(110, "lb"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/desta/front-alt.svg",
  17972. extra: 1482 / 1417
  17973. }
  17974. },
  17975. side: {
  17976. height: math.unit(5 + 2 / 12, "feet"),
  17977. weight: math.unit(110, "lb"),
  17978. name: "Side",
  17979. image: {
  17980. source: "./media/characters/desta/side.svg",
  17981. extra: 2579 / 2491,
  17982. bottom: 0.053
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Micro",
  17989. height: math.unit(6, "inches")
  17990. },
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(5 + 2 / 12, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Macro",
  17998. height: math.unit(62, "feet")
  17999. },
  18000. {
  18001. name: "Megamacro",
  18002. height: math.unit(1800, "feet")
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(10, "feet"),
  18011. weight: math.unit(700, "lb"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/storm-alystar/front.svg",
  18015. extra: 2112 / 1898,
  18016. bottom: 0.034
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Micro",
  18023. height: math.unit(3.5, "inches")
  18024. },
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(10, "feet"),
  18028. default: true
  18029. },
  18030. {
  18031. name: "Macro",
  18032. height: math.unit(400, "feet")
  18033. },
  18034. {
  18035. name: "Deific",
  18036. height: math.unit(60, "miles")
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18042. {
  18043. front: {
  18044. height: math.unit(2.35, "meters"),
  18045. weight: math.unit(119, "kg"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/ilia/front.svg",
  18049. extra: 1285 / 1255,
  18050. bottom: 0.06
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(2.35, "meters")
  18058. },
  18059. {
  18060. name: "Macro",
  18061. height: math.unit(140, "meters"),
  18062. default: true
  18063. },
  18064. {
  18065. name: "Megamacro",
  18066. height: math.unit(100, "miles")
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(6 + 5 / 12, "feet"),
  18075. weight: math.unit(190, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/kingdead/front.svg",
  18079. extra: 1228 / 1177
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(7, "inches")
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(6 + 5 / 12, "feet")
  18091. },
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(150, "feet"),
  18095. default: true
  18096. },
  18097. {
  18098. name: "Megamacro",
  18099. height: math.unit(200, "miles")
  18100. },
  18101. ]
  18102. ))
  18103. characterMakers.push(() => makeCharacter(
  18104. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18105. {
  18106. front: {
  18107. height: math.unit(8, "feet"),
  18108. weight: math.unit(600, "lb"),
  18109. name: "Front",
  18110. image: {
  18111. source: "./media/characters/kyrehx/front.svg",
  18112. extra: 1195 / 1095,
  18113. bottom: 0.034
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Micro",
  18120. height: math.unit(2, "inches")
  18121. },
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(8, "feet"),
  18125. default: true
  18126. },
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(255, "feet")
  18130. },
  18131. ]
  18132. ))
  18133. characterMakers.push(() => makeCharacter(
  18134. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18135. {
  18136. front: {
  18137. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18138. weight: math.unit(184, "lb"),
  18139. name: "Front",
  18140. image: {
  18141. source: "./media/characters/xang/front.svg",
  18142. extra: 845 / 755
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Macro",
  18154. height: math.unit(0.935 * 146, "feet")
  18155. },
  18156. {
  18157. name: "Megamacro",
  18158. height: math.unit(0.935 * 3, "miles")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18164. {
  18165. frontDressed: {
  18166. height: math.unit(5 + 7 / 12, "feet"),
  18167. weight: math.unit(140, "lb"),
  18168. name: "Front (Dressed)",
  18169. image: {
  18170. source: "./media/characters/doc-weardno/front-dressed.svg",
  18171. extra: 263 / 234
  18172. }
  18173. },
  18174. backDressed: {
  18175. height: math.unit(5 + 7 / 12, "feet"),
  18176. weight: math.unit(140, "lb"),
  18177. name: "Back (Dressed)",
  18178. image: {
  18179. source: "./media/characters/doc-weardno/back-dressed.svg",
  18180. extra: 266 / 238
  18181. }
  18182. },
  18183. front: {
  18184. height: math.unit(5 + 7 / 12, "feet"),
  18185. weight: math.unit(140, "lb"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/doc-weardno/front.svg",
  18189. extra: 254 / 233
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Micro",
  18196. height: math.unit(3, "inches")
  18197. },
  18198. {
  18199. name: "Normal",
  18200. height: math.unit(5 + 7 / 12, "feet"),
  18201. default: true
  18202. },
  18203. {
  18204. name: "Macro",
  18205. height: math.unit(25, "feet")
  18206. },
  18207. {
  18208. name: "Megamacro",
  18209. height: math.unit(2, "miles")
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18215. {
  18216. front: {
  18217. height: math.unit(6 + 2 / 12, "feet"),
  18218. weight: math.unit(153, "lb"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/seth-whilst/front.svg",
  18222. bottom: 0.07
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Micro",
  18229. height: math.unit(5, "inches")
  18230. },
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(6 + 2 / 12, "feet"),
  18234. default: true
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(3, "inches"),
  18243. weight: math.unit(8, "grams"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/pocket-jabari/front.svg",
  18247. extra: 1024 / 974,
  18248. bottom: 0.039
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Minimicro",
  18255. height: math.unit(8, "mm")
  18256. },
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(3, "inches"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(3, "feet")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(15, "feet"),
  18273. weight: math.unit(3280, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/sapphy/front.svg",
  18277. extra: 671 / 577,
  18278. bottom: 0.085
  18279. }
  18280. },
  18281. back: {
  18282. height: math.unit(15, "feet"),
  18283. weight: math.unit(3280, "lb"),
  18284. name: "Back",
  18285. image: {
  18286. source: "./media/characters/sapphy/back.svg",
  18287. extra: 631 / 607,
  18288. bottom: 0.045
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(15, "feet")
  18296. },
  18297. {
  18298. name: "Casual Macro",
  18299. height: math.unit(120, "feet")
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(2150, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Megamacro",
  18308. height: math.unit(8, "miles")
  18309. },
  18310. {
  18311. name: "Galaxy Mom",
  18312. height: math.unit(6, "megalightyears")
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(6, "feet"),
  18321. weight: math.unit(170, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/kiro/front.svg",
  18325. extra: 1064 / 1012,
  18326. bottom: 0.052
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Micro",
  18333. height: math.unit(6, "inches")
  18334. },
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(6, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(72, "feet")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(5 + 9 / 12, "feet"),
  18351. weight: math.unit(175, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/irishfox/front.svg",
  18355. extra: 1912 / 1680,
  18356. bottom: 0.02
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Nano",
  18363. height: math.unit(1, "mm")
  18364. },
  18365. {
  18366. name: "Micro",
  18367. height: math.unit(2, "inches")
  18368. },
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(5 + 9 / 12, "feet"),
  18372. default: true
  18373. },
  18374. {
  18375. name: "Macro",
  18376. height: math.unit(45, "feet")
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18382. {
  18383. front: {
  18384. height: math.unit(6 + 1 / 12, "feet"),
  18385. weight: math.unit(75, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/aronai-sieyes/front.svg",
  18389. extra: 1556 / 1480,
  18390. bottom: 0.015
  18391. }
  18392. },
  18393. side: {
  18394. height: math.unit(6 + 1 / 12, "feet"),
  18395. weight: math.unit(75, "lb"),
  18396. name: "Side",
  18397. image: {
  18398. source: "./media/characters/aronai-sieyes/side.svg",
  18399. extra: 1433 / 1390,
  18400. bottom: 0.0393
  18401. }
  18402. },
  18403. back: {
  18404. height: math.unit(6 + 1 / 12, "feet"),
  18405. weight: math.unit(75, "lb"),
  18406. name: "Back",
  18407. image: {
  18408. source: "./media/characters/aronai-sieyes/back.svg",
  18409. extra: 1544 / 1494,
  18410. bottom: 0.02
  18411. }
  18412. },
  18413. frontClothed: {
  18414. height: math.unit(6 + 1 / 12, "feet"),
  18415. weight: math.unit(75, "lb"),
  18416. name: "Front (Clothed)",
  18417. image: {
  18418. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18419. extra: 1582 / 1527
  18420. }
  18421. },
  18422. feral: {
  18423. height: math.unit(18, "feet"),
  18424. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18425. name: "Feral",
  18426. image: {
  18427. source: "./media/characters/aronai-sieyes/feral.svg",
  18428. extra: 1530 / 1240,
  18429. bottom: 0.035
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Micro",
  18436. height: math.unit(2, "inches")
  18437. },
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(6 + 1 / 12, "feet"),
  18441. default: true
  18442. }
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(12, "feet"),
  18450. weight: math.unit(410, "kg"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/xuna/front.svg",
  18454. extra: 2184 / 1980
  18455. }
  18456. },
  18457. side: {
  18458. height: math.unit(12, "feet"),
  18459. weight: math.unit(410, "kg"),
  18460. name: "Side",
  18461. image: {
  18462. source: "./media/characters/xuna/side.svg",
  18463. extra: 2184 / 1980
  18464. }
  18465. },
  18466. back: {
  18467. height: math.unit(12, "feet"),
  18468. weight: math.unit(410, "kg"),
  18469. name: "Back",
  18470. image: {
  18471. source: "./media/characters/xuna/back.svg",
  18472. extra: 2184 / 1980
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Nano glow",
  18479. height: math.unit(10, "nm")
  18480. },
  18481. {
  18482. name: "Micro floof",
  18483. height: math.unit(0.3, "m")
  18484. },
  18485. {
  18486. name: "Huggable softy boi",
  18487. height: math.unit(3.6576, "m"),
  18488. default: true
  18489. },
  18490. {
  18491. name: "Admirable floof",
  18492. height: math.unit(80, "meters")
  18493. },
  18494. {
  18495. name: "Gentle macro",
  18496. height: math.unit(300, "meters")
  18497. },
  18498. {
  18499. name: "Very careful floof",
  18500. height: math.unit(3200, "meters")
  18501. },
  18502. {
  18503. name: "The mega floof",
  18504. height: math.unit(36000, "meters")
  18505. },
  18506. {
  18507. name: "Giga-fur-Wicker",
  18508. height: math.unit(4800000, "meters")
  18509. },
  18510. {
  18511. name: "Licky world",
  18512. height: math.unit(20000000, "meters")
  18513. },
  18514. {
  18515. name: "Floofy cyan sun",
  18516. height: math.unit(1500000000, "meters")
  18517. },
  18518. {
  18519. name: "Milky Wicker",
  18520. height: math.unit(1000000000000000000000, "meters")
  18521. },
  18522. {
  18523. name: "The observing Wicker",
  18524. height: math.unit(999999999999999999999999999, "meters")
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18530. {
  18531. front: {
  18532. height: math.unit(5 + 9 / 12, "feet"),
  18533. weight: math.unit(150, "lb"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/arokha-sieyes/front.svg",
  18537. extra: 1425 / 1284,
  18538. bottom: 0.05
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(5 + 9 / 12, "feet")
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(30, "meters"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(6, "feet"),
  18559. weight: math.unit(180, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/arokh-sieyes/front.svg",
  18563. extra: 1830 / 1769,
  18564. bottom: 0.01
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(6, "feet")
  18572. },
  18573. {
  18574. name: "Macro",
  18575. height: math.unit(30, "meters"),
  18576. default: true
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18582. {
  18583. side: {
  18584. height: math.unit(13 + 1 / 12, "feet"),
  18585. weight: math.unit(8.5, "tonnes"),
  18586. name: "Side",
  18587. image: {
  18588. source: "./media/characters/goldeneye/side.svg",
  18589. extra: 1182 / 778,
  18590. bottom: 0.067
  18591. }
  18592. },
  18593. paw: {
  18594. height: math.unit(3.4, "feet"),
  18595. name: "Paw",
  18596. image: {
  18597. source: "./media/characters/goldeneye/paw.svg"
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(13 + 1 / 12, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18611. {
  18612. front: {
  18613. height: math.unit(6 + 1 / 12, "feet"),
  18614. weight: math.unit(210, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/leonardo-lycheborne/front.svg",
  18618. extra: 390 / 365,
  18619. bottom: 0.032
  18620. }
  18621. },
  18622. side: {
  18623. height: math.unit(6 + 1 / 12, "feet"),
  18624. weight: math.unit(210, "lb"),
  18625. name: "Side",
  18626. image: {
  18627. source: "./media/characters/leonardo-lycheborne/side.svg",
  18628. extra: 390 / 365,
  18629. bottom: 0.005
  18630. }
  18631. },
  18632. back: {
  18633. height: math.unit(6 + 1 / 12, "feet"),
  18634. weight: math.unit(210, "lb"),
  18635. name: "Back",
  18636. image: {
  18637. source: "./media/characters/leonardo-lycheborne/back.svg",
  18638. extra: 392 / 366,
  18639. bottom: 0.01
  18640. }
  18641. },
  18642. hand: {
  18643. height: math.unit(1.08, "feet"),
  18644. name: "Hand",
  18645. image: {
  18646. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18647. }
  18648. },
  18649. foot: {
  18650. height: math.unit(1.32, "feet"),
  18651. name: "Foot",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18654. }
  18655. },
  18656. were: {
  18657. height: math.unit(20, "feet"),
  18658. weight: math.unit(7800, "lb"),
  18659. name: "Were",
  18660. image: {
  18661. source: "./media/characters/leonardo-lycheborne/were.svg",
  18662. extra: 308 / 294,
  18663. bottom: 0.048
  18664. }
  18665. },
  18666. feral: {
  18667. height: math.unit(7.5, "feet"),
  18668. weight: math.unit(600, "lb"),
  18669. name: "Feral",
  18670. image: {
  18671. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18672. extra: 210 / 186,
  18673. bottom: 0.108
  18674. }
  18675. },
  18676. taur: {
  18677. height: math.unit(11, "feet"),
  18678. weight: math.unit(3300, "lb"),
  18679. name: "Taur",
  18680. image: {
  18681. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18682. extra: 320 / 303,
  18683. bottom: 0.025
  18684. }
  18685. },
  18686. barghest: {
  18687. height: math.unit(11, "feet"),
  18688. weight: math.unit(1300, "lb"),
  18689. name: "Barghest",
  18690. image: {
  18691. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18692. extra: 323 / 302,
  18693. bottom: 0.027
  18694. }
  18695. },
  18696. dick: {
  18697. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18698. name: "Dick",
  18699. image: {
  18700. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18701. }
  18702. },
  18703. dickWere: {
  18704. height: math.unit((20) / 3.8, "feet"),
  18705. name: "Dick (Were)",
  18706. image: {
  18707. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(6 + 1 / 12, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(10, "feet"),
  18724. weight: math.unit(350, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/jet/front.svg",
  18728. extra: 2050 / 1980,
  18729. bottom: 0.013
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(10, "feet"),
  18734. weight: math.unit(350, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/jet/back.svg",
  18738. extra: 2050 / 1980,
  18739. bottom: 0.013
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(6, "inches")
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(10, "feet"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Macro",
  18755. height: math.unit(100, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(15, "feet"),
  18764. weight: math.unit(2800, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/tanarath/front.svg",
  18768. extra: 2392 / 2220,
  18769. bottom: 0.03
  18770. }
  18771. },
  18772. back: {
  18773. height: math.unit(15, "feet"),
  18774. weight: math.unit(2800, "lb"),
  18775. name: "Back",
  18776. image: {
  18777. source: "./media/characters/tanarath/back.svg",
  18778. extra: 2392 / 2220,
  18779. bottom: 0.03
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(15, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(7 + 1 / 12, "feet"),
  18796. weight: math.unit(175, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/patty-cattybatty/front.svg",
  18800. extra: 908 / 874,
  18801. bottom: 0.025
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Micro",
  18808. height: math.unit(1, "inch")
  18809. },
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(7 + 1 / 12, "feet")
  18813. },
  18814. {
  18815. name: "Mini Macro",
  18816. height: math.unit(155, "feet")
  18817. },
  18818. {
  18819. name: "Macro",
  18820. height: math.unit(1077, "feet")
  18821. },
  18822. {
  18823. name: "Mega Macro",
  18824. height: math.unit(47650, "feet"),
  18825. default: true
  18826. },
  18827. {
  18828. name: "Giga Macro",
  18829. height: math.unit(440, "miles")
  18830. },
  18831. {
  18832. name: "Tera Macro",
  18833. height: math.unit(8700, "miles")
  18834. },
  18835. {
  18836. name: "Planetary Macro",
  18837. height: math.unit(32700, "miles")
  18838. },
  18839. {
  18840. name: "Solar Macro",
  18841. height: math.unit(550000, "miles")
  18842. },
  18843. {
  18844. name: "Celestial Macro",
  18845. height: math.unit(2.5, "AU")
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(4 + 5 / 12, "feet"),
  18854. weight: math.unit(90, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/cappu/front.svg",
  18858. extra: 1247 / 1152,
  18859. bottom: 0.012
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(4 + 5 / 12, "feet"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18873. {
  18874. frontDressed: {
  18875. height: math.unit(70, "cm"),
  18876. weight: math.unit(6, "kg"),
  18877. name: "Front (Dressed)",
  18878. image: {
  18879. source: "./media/characters/sebi/front-dressed.svg",
  18880. extra: 713.5 / 686.5,
  18881. bottom: 0.003
  18882. }
  18883. },
  18884. front: {
  18885. height: math.unit(70, "cm"),
  18886. weight: math.unit(5, "kg"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/sebi/front.svg",
  18890. extra: 713.5 / 686.5,
  18891. bottom: 0.003
  18892. }
  18893. }
  18894. },
  18895. [
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(70, "cm"),
  18899. default: true
  18900. },
  18901. {
  18902. name: "Macro",
  18903. height: math.unit(8, "meters")
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18909. {
  18910. front: {
  18911. height: math.unit(6, "feet"),
  18912. weight: math.unit(150, "lb"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/typhek/front.svg",
  18916. extra: 1948 / 1929,
  18917. bottom: 0.025
  18918. }
  18919. },
  18920. side: {
  18921. height: math.unit(6, "feet"),
  18922. weight: math.unit(150, "lb"),
  18923. name: "Side",
  18924. image: {
  18925. source: "./media/characters/typhek/side.svg",
  18926. extra: 2034 / 2010,
  18927. bottom: 0.003
  18928. }
  18929. },
  18930. back: {
  18931. height: math.unit(6, "feet"),
  18932. weight: math.unit(150, "lb"),
  18933. name: "Back",
  18934. image: {
  18935. source: "./media/characters/typhek/back.svg",
  18936. extra: 2005 / 1978,
  18937. bottom: 0.004
  18938. }
  18939. },
  18940. palm: {
  18941. height: math.unit(1.2, "feet"),
  18942. name: "Palm",
  18943. image: {
  18944. source: "./media/characters/typhek/palm.svg"
  18945. }
  18946. },
  18947. fist: {
  18948. height: math.unit(1.1, "feet"),
  18949. name: "Fist",
  18950. image: {
  18951. source: "./media/characters/typhek/fist.svg"
  18952. }
  18953. },
  18954. foot: {
  18955. height: math.unit(1.57, "feet"),
  18956. name: "Foot",
  18957. image: {
  18958. source: "./media/characters/typhek/foot.svg"
  18959. }
  18960. },
  18961. sole: {
  18962. height: math.unit(2.05, "feet"),
  18963. name: "Sole",
  18964. image: {
  18965. source: "./media/characters/typhek/sole.svg"
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Macro",
  18972. height: math.unit(40, "stories"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Megamacro",
  18977. height: math.unit(1, "mile")
  18978. },
  18979. {
  18980. name: "Gigamacro",
  18981. height: math.unit(4000, "solarradii")
  18982. },
  18983. {
  18984. name: "Universal",
  18985. height: math.unit(1.1, "universes")
  18986. }
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18991. {
  18992. side: {
  18993. height: math.unit(5 + 7 / 12, "feet"),
  18994. weight: math.unit(150, "lb"),
  18995. name: "Side",
  18996. image: {
  18997. source: "./media/characters/kassy/side.svg",
  18998. extra: 1280 / 1225,
  18999. bottom: 0.002
  19000. }
  19001. },
  19002. front: {
  19003. height: math.unit(5 + 7 / 12, "feet"),
  19004. weight: math.unit(150, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/kassy/front.svg",
  19008. extra: 1280 / 1225,
  19009. bottom: 0.025
  19010. }
  19011. },
  19012. back: {
  19013. height: math.unit(5 + 7 / 12, "feet"),
  19014. weight: math.unit(150, "lb"),
  19015. name: "Back",
  19016. image: {
  19017. source: "./media/characters/kassy/back.svg",
  19018. extra: 1280 / 1225,
  19019. bottom: 0.002
  19020. }
  19021. },
  19022. foot: {
  19023. height: math.unit(1.266, "feet"),
  19024. name: "Foot",
  19025. image: {
  19026. source: "./media/characters/kassy/foot.svg"
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(5 + 7 / 12, "feet")
  19034. },
  19035. {
  19036. name: "Macro",
  19037. height: math.unit(137, "feet"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Megamacro",
  19042. height: math.unit(1, "mile")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(6 + 1 / 12, "feet"),
  19051. weight: math.unit(200, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/neil/front.svg",
  19055. extra: 1326 / 1250,
  19056. bottom: 0.023
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(6 + 1 / 12, "feet"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Macro",
  19068. height: math.unit(200, "feet")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(5 + 9 / 12, "feet"),
  19077. weight: math.unit(190, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/atticus/front.svg",
  19081. extra: 2934 / 2785,
  19082. bottom: 0.025
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(5 + 9 / 12, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(180, "feet")
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19100. {
  19101. side: {
  19102. height: math.unit(9, "feet"),
  19103. weight: math.unit(650, "lb"),
  19104. name: "Side",
  19105. image: {
  19106. source: "./media/characters/milo/side.svg",
  19107. extra: 2644 / 2310,
  19108. bottom: 0.032
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(9, "feet"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(300, "feet")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19126. {
  19127. side: {
  19128. height: math.unit(8, "meters"),
  19129. weight: math.unit(90000, "kg"),
  19130. name: "Side",
  19131. image: {
  19132. source: "./media/characters/ijzer/side.svg",
  19133. extra: 2756 / 1600,
  19134. bottom: 0.01
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Small",
  19141. height: math.unit(3, "meters")
  19142. },
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(8, "meters"),
  19146. default: true
  19147. },
  19148. {
  19149. name: "Normal+",
  19150. height: math.unit(10, "meters")
  19151. },
  19152. {
  19153. name: "Bigger",
  19154. height: math.unit(24, "meters")
  19155. },
  19156. {
  19157. name: "Huge",
  19158. height: math.unit(80, "meters")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(6 + 2 / 12, "feet"),
  19167. weight: math.unit(153, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/luca-cervicum/front.svg",
  19171. extra: 370 / 327,
  19172. bottom: 0.015
  19173. }
  19174. },
  19175. back: {
  19176. height: math.unit(6 + 2 / 12, "feet"),
  19177. weight: math.unit(153, "lb"),
  19178. name: "Back",
  19179. image: {
  19180. source: "./media/characters/luca-cervicum/back.svg",
  19181. extra: 367 / 333,
  19182. bottom: 0.005
  19183. }
  19184. },
  19185. frontGear: {
  19186. height: math.unit(6 + 2 / 12, "feet"),
  19187. weight: math.unit(173, "lb"),
  19188. name: "Front (Gear)",
  19189. image: {
  19190. source: "./media/characters/luca-cervicum/front-gear.svg",
  19191. extra: 377 / 333,
  19192. bottom: 0.006
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(6 + 2 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(6 + 1 / 12, "feet"),
  19209. weight: math.unit(304, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/oliver/front.svg",
  19213. extra: 157 / 143,
  19214. bottom: 0.08
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 1 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(5 + 7 / 12, "feet"),
  19231. weight: math.unit(140, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/shane/front.svg",
  19235. extra: 304 / 289,
  19236. bottom: 0.005
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(5 + 7 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(5 + 9 / 12, "feet"),
  19253. weight: math.unit(178, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/shin/front.svg",
  19257. extra: 159 / 151,
  19258. bottom: 0.015
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(5 + 9 / 12, "feet"),
  19266. default: true
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(5 + 10 / 12, "feet"),
  19275. weight: math.unit(168, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/xerxes/front.svg",
  19279. extra: 282 / 260,
  19280. bottom: 0.045
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 10 / 12, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(6 + 7 / 12, "feet"),
  19297. weight: math.unit(208, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/chaska/front.svg",
  19301. extra: 332 / 319,
  19302. bottom: 0.015
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(6 + 7 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(5 + 8 / 12, "feet"),
  19319. weight: math.unit(208, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/enuk/front.svg",
  19323. extra: 437 / 406,
  19324. bottom: 0.02
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(5 + 8 / 12, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19338. {
  19339. front: {
  19340. height: math.unit(5 + 10 / 12, "feet"),
  19341. weight: math.unit(252, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/bruun/front.svg",
  19345. extra: 197 / 187,
  19346. bottom: 0.012
  19347. }
  19348. },
  19349. },
  19350. [
  19351. {
  19352. name: "Normal",
  19353. height: math.unit(5 + 10 / 12, "feet"),
  19354. default: true
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(6 + 10 / 12, "feet"),
  19363. weight: math.unit(255, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/alexeev/front.svg",
  19367. extra: 213 / 200,
  19368. bottom: 0.05
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(6 + 10 / 12, "feet"),
  19376. default: true
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(2 + 8 / 12, "feet"),
  19385. weight: math.unit(22, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/evelyn/front.svg",
  19389. extra: 208 / 180
  19390. }
  19391. },
  19392. },
  19393. [
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(2 + 8 / 12, "feet"),
  19397. default: true
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(5 + 9 / 12, "feet"),
  19406. weight: math.unit(139, "lb"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/inca/front.svg",
  19410. extra: 294 / 291,
  19411. bottom: 0.03
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(5 + 9 / 12, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 1 / 12, "feet"),
  19428. weight: math.unit(84, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/magdalene/front.svg",
  19432. extra: 293 / 273
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(5 + 1 / 12, "feet"),
  19440. default: true
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(6 + 3 / 12, "feet"),
  19449. weight: math.unit(185, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/mera/front.svg",
  19453. extra: 291 / 277,
  19454. bottom: 0.03
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(6 + 3 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6 + 7 / 12, "feet"),
  19471. weight: math.unit(160, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/ceres/front.svg",
  19475. extra: 1023 / 950,
  19476. bottom: 0.027
  19477. }
  19478. },
  19479. back: {
  19480. height: math.unit(6 + 7 / 12, "feet"),
  19481. weight: math.unit(160, "lb"),
  19482. name: "Back",
  19483. image: {
  19484. source: "./media/characters/ceres/back.svg",
  19485. extra: 1023 / 950
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(6 + 7 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(5 + 10 / 12, "feet"),
  19502. weight: math.unit(150, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/kris/front.svg",
  19506. extra: 885 / 803,
  19507. bottom: 0.03
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(5 + 10 / 12, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(7, "feet"),
  19524. weight: math.unit(120, "kg"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/taluthus/front.svg",
  19528. extra: 903 / 833,
  19529. bottom: 0.015
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(7, "feet"),
  19537. default: true
  19538. },
  19539. {
  19540. name: "Macro",
  19541. height: math.unit(300, "feet")
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(5 + 9 / 12, "feet"),
  19550. weight: math.unit(145, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/dawn/front.svg",
  19554. extra: 2094 / 2016,
  19555. bottom: 0.025
  19556. }
  19557. },
  19558. back: {
  19559. height: math.unit(5 + 9 / 12, "feet"),
  19560. weight: math.unit(160, "lb"),
  19561. name: "Back",
  19562. image: {
  19563. source: "./media/characters/dawn/back.svg",
  19564. extra: 2112 / 2080,
  19565. bottom: 0.005
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(6 + 7 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19579. {
  19580. anthro: {
  19581. height: math.unit(8 + 3 / 12, "feet"),
  19582. weight: math.unit(450, "lb"),
  19583. name: "Anthro",
  19584. image: {
  19585. source: "./media/characters/arador/anthro.svg",
  19586. extra: 1835 / 1718,
  19587. bottom: 0.025
  19588. }
  19589. },
  19590. feral: {
  19591. height: math.unit(4, "feet"),
  19592. weight: math.unit(200, "lb"),
  19593. name: "Feral",
  19594. image: {
  19595. source: "./media/characters/arador/feral.svg",
  19596. extra: 1683 / 1514,
  19597. bottom: 0.07
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(8 + 3 / 12, "feet")
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(82.5, "feet"),
  19609. default: true
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(5 + 10 / 12, "feet"),
  19618. weight: math.unit(125, "lb"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/dharsi/front.svg",
  19622. extra: 716 / 630,
  19623. bottom: 0.035
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Nano",
  19630. height: math.unit(100, "nm")
  19631. },
  19632. {
  19633. name: "Micro",
  19634. height: math.unit(2, "inches")
  19635. },
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(5 + 10 / 12, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Macro",
  19643. height: math.unit(1000, "feet")
  19644. },
  19645. {
  19646. name: "Megamacro",
  19647. height: math.unit(10, "miles")
  19648. },
  19649. {
  19650. name: "Gigamacro",
  19651. height: math.unit(3000, "miles")
  19652. },
  19653. {
  19654. name: "Teramacro",
  19655. height: math.unit(500000, "miles")
  19656. },
  19657. {
  19658. name: "Teramacro+",
  19659. height: math.unit(30, "galaxies")
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19665. {
  19666. front: {
  19667. height: math.unit(6, "feet"),
  19668. weight: math.unit(150, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/deathy/front.svg",
  19672. extra: 1552 / 1463,
  19673. bottom: 0.025
  19674. }
  19675. },
  19676. side: {
  19677. height: math.unit(6, "feet"),
  19678. weight: math.unit(150, "lb"),
  19679. name: "Side",
  19680. image: {
  19681. source: "./media/characters/deathy/side.svg",
  19682. extra: 1604 / 1455,
  19683. bottom: 0.025
  19684. }
  19685. },
  19686. back: {
  19687. height: math.unit(6, "feet"),
  19688. weight: math.unit(150, "lb"),
  19689. name: "Back",
  19690. image: {
  19691. source: "./media/characters/deathy/back.svg",
  19692. extra: 1580 / 1463,
  19693. bottom: 0.005
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Micro",
  19700. height: math.unit(5, "millimeters")
  19701. },
  19702. {
  19703. name: "Normal",
  19704. height: math.unit(6 + 5 / 12, "feet"),
  19705. default: true
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19711. {
  19712. front: {
  19713. height: math.unit(16, "feet"),
  19714. weight: math.unit(4000, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/juniper/front.svg",
  19718. bottom: 0.04
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(16, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(6, "feet"),
  19735. weight: math.unit(150, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/hipster/front.svg",
  19739. extra: 1312 / 1209,
  19740. bottom: 0.025
  19741. }
  19742. },
  19743. back: {
  19744. height: math.unit(6, "feet"),
  19745. weight: math.unit(150, "lb"),
  19746. name: "Back",
  19747. image: {
  19748. source: "./media/characters/hipster/back.svg",
  19749. extra: 1281 / 1196,
  19750. bottom: 0.01
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Micro",
  19757. height: math.unit(1, "mm")
  19758. },
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(4, "inches"),
  19762. default: true
  19763. },
  19764. {
  19765. name: "Macro",
  19766. height: math.unit(500, "feet")
  19767. },
  19768. {
  19769. name: "Megamacro",
  19770. height: math.unit(1000, "miles")
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19776. {
  19777. front: {
  19778. height: math.unit(6, "feet"),
  19779. weight: math.unit(150, "lb"),
  19780. name: "Front",
  19781. image: {
  19782. source: "./media/characters/tendirmuldr/front.svg",
  19783. extra: 1878 / 1772,
  19784. bottom: 0.015
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Megamacro",
  19791. height: math.unit(1500, "miles"),
  19792. default: true
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19798. {
  19799. front: {
  19800. height: math.unit(14, "feet"),
  19801. weight: math.unit(12000, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/mort/front.svg",
  19805. extra: 365 / 318,
  19806. bottom: 0.01
  19807. }
  19808. },
  19809. side: {
  19810. height: math.unit(14, "feet"),
  19811. weight: math.unit(12000, "lb"),
  19812. name: "Side",
  19813. image: {
  19814. source: "./media/characters/mort/side.svg",
  19815. extra: 365 / 318,
  19816. bottom: 0.052
  19817. },
  19818. default: true
  19819. },
  19820. back: {
  19821. height: math.unit(14, "feet"),
  19822. weight: math.unit(12000, "lb"),
  19823. name: "Back",
  19824. image: {
  19825. source: "./media/characters/mort/back.svg",
  19826. extra: 371 / 332,
  19827. bottom: 0.18
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(14, "feet"),
  19835. default: true
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19841. {
  19842. front: {
  19843. height: math.unit(8, "feet"),
  19844. weight: math.unit(1, "ton"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/lycoa/front.svg",
  19848. extra: 1875 / 1789,
  19849. bottom: 0.022
  19850. }
  19851. },
  19852. back: {
  19853. height: math.unit(8, "feet"),
  19854. weight: math.unit(1, "ton"),
  19855. name: "Back",
  19856. image: {
  19857. source: "./media/characters/lycoa/back.svg",
  19858. extra: 1835 / 1781,
  19859. bottom: 0.03
  19860. }
  19861. },
  19862. head: {
  19863. height: math.unit(2.1, "feet"),
  19864. name: "Head",
  19865. image: {
  19866. source: "./media/characters/lycoa/head.svg"
  19867. }
  19868. },
  19869. tailmaw: {
  19870. height: math.unit(1.9, "feet"),
  19871. name: "Tailmaw",
  19872. image: {
  19873. source: "./media/characters/lycoa/tailmaw.svg"
  19874. }
  19875. },
  19876. tentacles: {
  19877. height: math.unit(2.1, "feet"),
  19878. name: "Tentacles",
  19879. image: {
  19880. source: "./media/characters/lycoa/tentacles.svg"
  19881. }
  19882. },
  19883. dick: {
  19884. height: math.unit(1.73, "feet"),
  19885. name: "Dick",
  19886. image: {
  19887. source: "./media/characters/lycoa/dick.svg"
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(8, "feet"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Macro",
  19899. height: math.unit(30, "feet")
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19905. {
  19906. front: {
  19907. height: math.unit(4 + 2 / 12, "feet"),
  19908. weight: math.unit(70, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/naldara/front.svg",
  19912. extra: 841 / 720,
  19913. bottom: 0.04
  19914. }
  19915. },
  19916. naga: {
  19917. height: math.unit(23, "feet"),
  19918. weight: math.unit(15000, "kg"),
  19919. name: "Naga",
  19920. image: {
  19921. source: "./media/characters/naldara/naga.svg",
  19922. extra: 3290 / 2959,
  19923. bottom: 124 / 3432
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(4 + 2 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(13 + 7 / 12, "feet"),
  19940. weight: math.unit(1500, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/briar/front.svg",
  19944. extra: 626 / 596,
  19945. bottom: 0.08
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(13 + 7 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19959. {
  19960. side: {
  19961. height: math.unit(10, "feet"),
  19962. weight: math.unit(500, "lb"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/vanguard/side.svg",
  19966. extra: 502 / 425,
  19967. bottom: 0.087
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(10, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(7.5, "feet"),
  19984. weight: math.unit(2, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/artemis/front.svg",
  19988. extra: 1192 / 1075,
  19989. bottom: 0.07
  19990. }
  19991. },
  19992. frontNsfw: {
  19993. height: math.unit(7.5, "feet"),
  19994. weight: math.unit(2, "lb"),
  19995. name: "Front (NSFW)",
  19996. image: {
  19997. source: "./media/characters/artemis/front-nsfw.svg",
  19998. extra: 1192 / 1075,
  19999. bottom: 0.07
  20000. }
  20001. },
  20002. frontNsfwer: {
  20003. height: math.unit(7.5, "feet"),
  20004. weight: math.unit(2, "lb"),
  20005. name: "Front (NSFW-er)",
  20006. image: {
  20007. source: "./media/characters/artemis/front-nsfwer.svg",
  20008. extra: 1192 / 1075,
  20009. bottom: 0.07
  20010. }
  20011. },
  20012. side: {
  20013. height: math.unit(7.5, "feet"),
  20014. weight: math.unit(2, "lb"),
  20015. name: "Side",
  20016. image: {
  20017. source: "./media/characters/artemis/side.svg",
  20018. extra: 1192 / 1075,
  20019. bottom: 0.07
  20020. }
  20021. },
  20022. sideNsfw: {
  20023. height: math.unit(7.5, "feet"),
  20024. weight: math.unit(2, "lb"),
  20025. name: "Side (NSFW)",
  20026. image: {
  20027. source: "./media/characters/artemis/side-nsfw.svg",
  20028. extra: 1192 / 1075,
  20029. bottom: 0.07
  20030. }
  20031. },
  20032. sideNsfwer: {
  20033. height: math.unit(7.5, "feet"),
  20034. weight: math.unit(2, "lb"),
  20035. name: "Side (NSFW-er)",
  20036. image: {
  20037. source: "./media/characters/artemis/side-nsfwer.svg",
  20038. extra: 1192 / 1075,
  20039. bottom: 0.07
  20040. }
  20041. },
  20042. maw: {
  20043. height: math.unit(1.1, "feet"),
  20044. name: "Maw",
  20045. image: {
  20046. source: "./media/characters/artemis/maw.svg"
  20047. }
  20048. },
  20049. stomach: {
  20050. height: math.unit(0.95, "feet"),
  20051. name: "Stomach",
  20052. image: {
  20053. source: "./media/characters/artemis/stomach.svg"
  20054. }
  20055. },
  20056. dickCanine: {
  20057. height: math.unit(1, "feet"),
  20058. name: "Dick (Canine)",
  20059. image: {
  20060. source: "./media/characters/artemis/dick-canine.svg"
  20061. }
  20062. },
  20063. dickEquine: {
  20064. height: math.unit(0.85, "feet"),
  20065. name: "Dick (Equine)",
  20066. image: {
  20067. source: "./media/characters/artemis/dick-equine.svg"
  20068. }
  20069. },
  20070. dickExotic: {
  20071. height: math.unit(0.85, "feet"),
  20072. name: "Dick (Exotic)",
  20073. image: {
  20074. source: "./media/characters/artemis/dick-exotic.svg"
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(7.5, "feet"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Enlarged",
  20086. height: math.unit(12, "feet")
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(5 + 3 / 12, "feet"),
  20095. weight: math.unit(160, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/kira/front.svg",
  20099. extra: 906 / 786,
  20100. bottom: 0.01
  20101. }
  20102. },
  20103. back: {
  20104. height: math.unit(5 + 3 / 12, "feet"),
  20105. weight: math.unit(160, "lb"),
  20106. name: "Back",
  20107. image: {
  20108. source: "./media/characters/kira/back.svg",
  20109. extra: 882 / 757,
  20110. bottom: 0.005
  20111. }
  20112. },
  20113. frontDressed: {
  20114. height: math.unit(5 + 3 / 12, "feet"),
  20115. weight: math.unit(160, "lb"),
  20116. name: "Front (Dressed)",
  20117. image: {
  20118. source: "./media/characters/kira/front-dressed.svg",
  20119. extra: 906 / 786,
  20120. bottom: 0.01
  20121. }
  20122. },
  20123. beans: {
  20124. height: math.unit(0.92, "feet"),
  20125. name: "Beans",
  20126. image: {
  20127. source: "./media/characters/kira/beans.svg"
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(5 + 3 / 12, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20141. {
  20142. front: {
  20143. height: math.unit(5 + 4 / 12, "feet"),
  20144. weight: math.unit(145, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/scramble/front.svg",
  20148. extra: 763 / 727,
  20149. bottom: 0.05
  20150. }
  20151. },
  20152. back: {
  20153. height: math.unit(5 + 4 / 12, "feet"),
  20154. weight: math.unit(145, "lb"),
  20155. name: "Back",
  20156. image: {
  20157. source: "./media/characters/scramble/back.svg",
  20158. extra: 826 / 737,
  20159. bottom: 0.002
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(5 + 4 / 12, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20173. {
  20174. side: {
  20175. height: math.unit(6 + 2 / 12, "feet"),
  20176. weight: math.unit(190, "lb"),
  20177. name: "Side",
  20178. image: {
  20179. source: "./media/characters/biscuit/side.svg",
  20180. extra: 858 / 791,
  20181. bottom: 0.044
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(6 + 2 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(5 + 2 / 12, "feet"),
  20198. weight: math.unit(120, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/poffin/front.svg",
  20202. extra: 786 / 680,
  20203. bottom: 0.005
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(5 + 2 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(6 + 3 / 12, "feet"),
  20220. weight: math.unit(519, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/dhari/front.svg",
  20224. extra: 1048 / 946,
  20225. bottom: 0.015
  20226. }
  20227. },
  20228. back: {
  20229. height: math.unit(6 + 3 / 12, "feet"),
  20230. weight: math.unit(519, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/dhari/back.svg",
  20234. extra: 1048 / 931,
  20235. bottom: 0.005
  20236. }
  20237. },
  20238. frontDressed: {
  20239. height: math.unit(6 + 3 / 12, "feet"),
  20240. weight: math.unit(519, "lb"),
  20241. name: "Front (Dressed)",
  20242. image: {
  20243. source: "./media/characters/dhari/front-dressed.svg",
  20244. extra: 1713 / 1546,
  20245. bottom: 0.02
  20246. }
  20247. },
  20248. backDressed: {
  20249. height: math.unit(6 + 3 / 12, "feet"),
  20250. weight: math.unit(519, "lb"),
  20251. name: "Back (Dressed)",
  20252. image: {
  20253. source: "./media/characters/dhari/back-dressed.svg",
  20254. extra: 1699 / 1537,
  20255. bottom: 0.01
  20256. }
  20257. },
  20258. maw: {
  20259. height: math.unit(0.95, "feet"),
  20260. name: "Maw",
  20261. image: {
  20262. source: "./media/characters/dhari/maw.svg"
  20263. }
  20264. },
  20265. wereFront: {
  20266. height: math.unit(12 + 8 / 12, "feet"),
  20267. weight: math.unit(4000, "lb"),
  20268. name: "Front (Were)",
  20269. image: {
  20270. source: "./media/characters/dhari/were-front.svg",
  20271. extra: 1065 / 969,
  20272. bottom: 0.015
  20273. }
  20274. },
  20275. wereBack: {
  20276. height: math.unit(12 + 8 / 12, "feet"),
  20277. weight: math.unit(4000, "lb"),
  20278. name: "Back (Were)",
  20279. image: {
  20280. source: "./media/characters/dhari/were-back.svg",
  20281. extra: 1065 / 969,
  20282. bottom: 0.012
  20283. }
  20284. },
  20285. wereMaw: {
  20286. height: math.unit(0.625, "meters"),
  20287. name: "Maw (Were)",
  20288. image: {
  20289. source: "./media/characters/dhari/were-maw.svg"
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(6 + 3 / 12, "feet"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20303. {
  20304. anthro: {
  20305. height: math.unit(5 + 7 / 12, "feet"),
  20306. weight: math.unit(175, "lb"),
  20307. name: "Anthro",
  20308. image: {
  20309. source: "./media/characters/rena-dyne/anthro.svg",
  20310. extra: 1849 / 1785,
  20311. bottom: 0.005
  20312. }
  20313. },
  20314. taur: {
  20315. height: math.unit(15 + 6 / 12, "feet"),
  20316. weight: math.unit(8000, "lb"),
  20317. name: "Taur",
  20318. image: {
  20319. source: "./media/characters/rena-dyne/taur.svg",
  20320. extra: 2315 / 2234,
  20321. bottom: 0.033
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(5 + 7 / 12, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(8, "feet"),
  20338. weight: math.unit(600, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/weremeep/front.svg",
  20342. extra: 967 / 862,
  20343. bottom: 0.01
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(8, "feet"),
  20351. default: true
  20352. },
  20353. {
  20354. name: "Lorg",
  20355. height: math.unit(12, "feet")
  20356. },
  20357. {
  20358. name: "Oh Lawd She Comin'",
  20359. height: math.unit(20, "feet")
  20360. },
  20361. ]
  20362. ))
  20363. characterMakers.push(() => makeCharacter(
  20364. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20365. {
  20366. front: {
  20367. height: math.unit(4, "feet"),
  20368. weight: math.unit(90, "lb"),
  20369. name: "Front",
  20370. image: {
  20371. source: "./media/characters/reza/front.svg",
  20372. extra: 1183 / 1111,
  20373. bottom: 0.017
  20374. }
  20375. },
  20376. back: {
  20377. height: math.unit(4, "feet"),
  20378. weight: math.unit(90, "lb"),
  20379. name: "Back",
  20380. image: {
  20381. source: "./media/characters/reza/back.svg",
  20382. extra: 1183 / 1111,
  20383. bottom: 0.01
  20384. }
  20385. },
  20386. drake: {
  20387. height: math.unit(30, "feet"),
  20388. weight: math.unit(246960, "lb"),
  20389. name: "Drake",
  20390. image: {
  20391. source: "./media/characters/reza/drake.svg",
  20392. extra: 2350 / 2024,
  20393. bottom: 60.7 / 2403
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(4, "feet"),
  20401. default: true
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20407. {
  20408. side: {
  20409. height: math.unit(15, "feet"),
  20410. weight: math.unit(14, "tons"),
  20411. name: "Side",
  20412. image: {
  20413. source: "./media/characters/athea/side.svg",
  20414. extra: 960 / 540,
  20415. bottom: 0.003
  20416. }
  20417. },
  20418. sitting: {
  20419. height: math.unit(6 * 2.85, "feet"),
  20420. weight: math.unit(14, "tons"),
  20421. name: "Sitting",
  20422. image: {
  20423. source: "./media/characters/athea/sitting.svg",
  20424. extra: 621 / 581,
  20425. bottom: 0.075
  20426. }
  20427. },
  20428. maw: {
  20429. height: math.unit(7.59498031496063, "feet"),
  20430. name: "Maw",
  20431. image: {
  20432. source: "./media/characters/athea/maw.svg"
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Lap Cat",
  20439. height: math.unit(2.5, "feet")
  20440. },
  20441. {
  20442. name: "Minimacro",
  20443. height: math.unit(15, "feet"),
  20444. default: true
  20445. },
  20446. {
  20447. name: "Macro",
  20448. height: math.unit(120, "feet")
  20449. },
  20450. {
  20451. name: "Macro+",
  20452. height: math.unit(640, "feet")
  20453. },
  20454. {
  20455. name: "Colossus",
  20456. height: math.unit(2.2, "miles")
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(8 + 8 / 12, "feet"),
  20465. weight: math.unit(130, "kg"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/seroko/front.svg",
  20469. extra: 1385 / 1280,
  20470. bottom: 0.025
  20471. }
  20472. },
  20473. back: {
  20474. height: math.unit(8 + 8 / 12, "feet"),
  20475. weight: math.unit(130, "kg"),
  20476. name: "Back",
  20477. image: {
  20478. source: "./media/characters/seroko/back.svg",
  20479. extra: 1369 / 1238,
  20480. bottom: 0.018
  20481. }
  20482. },
  20483. frontDressed: {
  20484. height: math.unit(8 + 8 / 12, "feet"),
  20485. weight: math.unit(130, "kg"),
  20486. name: "Front (Dressed)",
  20487. image: {
  20488. source: "./media/characters/seroko/front-dressed.svg",
  20489. extra: 1366 / 1275,
  20490. bottom: 0.03
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(8 + 8 / 12, "feet"),
  20498. default: true
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(5.5, "feet"),
  20507. weight: math.unit(160, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/quatzi/front.svg",
  20511. extra: 2346 / 2242,
  20512. bottom: 0.015
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(5.5, "feet"),
  20520. default: true
  20521. },
  20522. {
  20523. name: "Big",
  20524. height: math.unit(7.7, "feet")
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 11 / 12, "feet"),
  20533. weight: math.unit(180, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/sen/front.svg",
  20537. extra: 1321 / 1254,
  20538. bottom: 0.015
  20539. }
  20540. },
  20541. side: {
  20542. height: math.unit(5 + 11 / 12, "feet"),
  20543. weight: math.unit(180, "lb"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/sen/side.svg",
  20547. extra: 1321 / 1254,
  20548. bottom: 0.007
  20549. }
  20550. },
  20551. back: {
  20552. height: math.unit(5 + 11 / 12, "feet"),
  20553. weight: math.unit(180, "lb"),
  20554. name: "Back",
  20555. image: {
  20556. source: "./media/characters/sen/back.svg",
  20557. extra: 1321 / 1254
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(5 + 11 / 12, "feet"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(166.6, "cm"),
  20574. weight: math.unit(66.6, "kg"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/fruity/front.svg",
  20578. extra: 1510 / 1386,
  20579. bottom: 0.04
  20580. }
  20581. },
  20582. back: {
  20583. height: math.unit(166.6, "cm"),
  20584. weight: math.unit(66.6, "lb"),
  20585. name: "Back",
  20586. image: {
  20587. source: "./media/characters/fruity/back.svg",
  20588. extra: 1563 / 1435,
  20589. bottom: 0.005
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(166.6, "cm"),
  20597. default: true
  20598. },
  20599. {
  20600. name: "Demonic",
  20601. height: math.unit(166.6, "feet")
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20607. {
  20608. side: {
  20609. height: math.unit(10, "feet"),
  20610. weight: math.unit(500, "lb"),
  20611. name: "Side",
  20612. image: {
  20613. source: "./media/characters/zost/side.svg",
  20614. extra: 966 / 880,
  20615. bottom: 0.075
  20616. }
  20617. },
  20618. mawFront: {
  20619. height: math.unit(1.08, "meters"),
  20620. name: "Maw (Front)",
  20621. image: {
  20622. source: "./media/characters/zost/maw-front.svg"
  20623. }
  20624. },
  20625. mawSide: {
  20626. height: math.unit(2.66, "feet"),
  20627. name: "Maw (Side)",
  20628. image: {
  20629. source: "./media/characters/zost/maw-side.svg"
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(10, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(5 + 4 / 12, "feet"),
  20646. weight: math.unit(120, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/luci/front.svg",
  20650. extra: 1985 / 1884,
  20651. bottom: 0.04
  20652. }
  20653. },
  20654. back: {
  20655. height: math.unit(5 + 4 / 12, "feet"),
  20656. weight: math.unit(120, "lb"),
  20657. name: "Back",
  20658. image: {
  20659. source: "./media/characters/luci/back.svg",
  20660. extra: 1892 / 1791,
  20661. bottom: 0.002
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(5 + 4 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(1500, "feet"),
  20678. weight: math.unit(3.8e6, "tons"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/2th/front.svg",
  20682. extra: 3489 / 3350,
  20683. bottom: 0.1
  20684. }
  20685. },
  20686. foot: {
  20687. height: math.unit(461, "feet"),
  20688. name: "Foot",
  20689. image: {
  20690. source: "./media/characters/2th/foot.svg"
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "\"Micro\"",
  20697. height: math.unit(15 + 7 / 12, "feet")
  20698. },
  20699. {
  20700. name: "Normal",
  20701. height: math.unit(1500, "feet"),
  20702. default: true
  20703. },
  20704. {
  20705. name: "Macro",
  20706. height: math.unit(5000, "feet")
  20707. },
  20708. {
  20709. name: "Megamacro",
  20710. height: math.unit(15, "miles")
  20711. },
  20712. {
  20713. name: "Gigamacro",
  20714. height: math.unit(4000, "miles")
  20715. },
  20716. {
  20717. name: "Galactic",
  20718. height: math.unit(50, "AU")
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(5 + 6 / 12, "feet"),
  20727. weight: math.unit(220, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/amethyst/front.svg",
  20731. extra: 2078 / 2040,
  20732. bottom: 0.045
  20733. }
  20734. },
  20735. back: {
  20736. height: math.unit(5 + 6 / 12, "feet"),
  20737. weight: math.unit(220, "lb"),
  20738. name: "Back",
  20739. image: {
  20740. source: "./media/characters/amethyst/back.svg",
  20741. extra: 2021 / 1989,
  20742. bottom: 0.02
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(5 + 6 / 12, "feet"),
  20750. default: true
  20751. },
  20752. ]
  20753. ))
  20754. characterMakers.push(() => makeCharacter(
  20755. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20756. {
  20757. front: {
  20758. height: math.unit(4 + 11 / 12, "feet"),
  20759. weight: math.unit(120, "lb"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/yumi-akiyama/front.svg",
  20763. extra: 1327 / 1235,
  20764. bottom: 0.02
  20765. }
  20766. },
  20767. back: {
  20768. height: math.unit(4 + 11 / 12, "feet"),
  20769. weight: math.unit(120, "lb"),
  20770. name: "Back",
  20771. image: {
  20772. source: "./media/characters/yumi-akiyama/back.svg",
  20773. extra: 1287 / 1245,
  20774. bottom: 0.002
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Galactic",
  20781. height: math.unit(50, "galaxies"),
  20782. default: true
  20783. },
  20784. {
  20785. name: "Universal",
  20786. height: math.unit(100, "universes")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(8, "feet"),
  20795. weight: math.unit(500, "lb"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/rifter-yrmori/front.svg",
  20799. extra: 1180 / 1125,
  20800. bottom: 0.02
  20801. }
  20802. },
  20803. back: {
  20804. height: math.unit(8, "feet"),
  20805. weight: math.unit(500, "lb"),
  20806. name: "Back",
  20807. image: {
  20808. source: "./media/characters/rifter-yrmori/back.svg",
  20809. extra: 1190 / 1145,
  20810. bottom: 0.001
  20811. }
  20812. },
  20813. wings: {
  20814. height: math.unit(7.75, "feet"),
  20815. weight: math.unit(500, "lb"),
  20816. name: "Wings",
  20817. image: {
  20818. source: "./media/characters/rifter-yrmori/wings.svg",
  20819. extra: 1357 / 1285
  20820. }
  20821. },
  20822. maw: {
  20823. height: math.unit(0.8, "feet"),
  20824. name: "Maw",
  20825. image: {
  20826. source: "./media/characters/rifter-yrmori/maw.svg"
  20827. }
  20828. },
  20829. mawfront: {
  20830. height: math.unit(1.45, "feet"),
  20831. name: "Maw (Front)",
  20832. image: {
  20833. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(8, "feet"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Macro",
  20845. height: math.unit(42, "meters")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20851. {
  20852. were: {
  20853. height: math.unit(25 + 6 / 12, "feet"),
  20854. weight: math.unit(10000, "lb"),
  20855. name: "Were",
  20856. image: {
  20857. source: "./media/characters/tahajin/were.svg",
  20858. extra: 801 / 770,
  20859. bottom: 0.042
  20860. }
  20861. },
  20862. aquatic: {
  20863. height: math.unit(6 + 4 / 12, "feet"),
  20864. weight: math.unit(160, "lb"),
  20865. name: "Aquatic",
  20866. image: {
  20867. source: "./media/characters/tahajin/aquatic.svg",
  20868. extra: 572 / 542,
  20869. bottom: 0.04
  20870. }
  20871. },
  20872. chow: {
  20873. height: math.unit(8 + 11 / 12, "feet"),
  20874. weight: math.unit(450, "lb"),
  20875. name: "Chow",
  20876. image: {
  20877. source: "./media/characters/tahajin/chow.svg",
  20878. extra: 660 / 640,
  20879. bottom: 0.015
  20880. }
  20881. },
  20882. demiNaga: {
  20883. height: math.unit(6 + 8 / 12, "feet"),
  20884. weight: math.unit(300, "lb"),
  20885. name: "Demi Naga",
  20886. image: {
  20887. source: "./media/characters/tahajin/demi-naga.svg",
  20888. extra: 643 / 615,
  20889. bottom: 0.1
  20890. }
  20891. },
  20892. data: {
  20893. height: math.unit(5, "inches"),
  20894. weight: math.unit(0.1, "lb"),
  20895. name: "Data",
  20896. image: {
  20897. source: "./media/characters/tahajin/data.svg"
  20898. }
  20899. },
  20900. fluu: {
  20901. height: math.unit(5 + 7 / 12, "feet"),
  20902. weight: math.unit(140, "lb"),
  20903. name: "Fluu",
  20904. image: {
  20905. source: "./media/characters/tahajin/fluu.svg",
  20906. extra: 628 / 592,
  20907. bottom: 0.02
  20908. }
  20909. },
  20910. starWarrior: {
  20911. height: math.unit(4 + 5 / 12, "feet"),
  20912. weight: math.unit(50, "lb"),
  20913. name: "Star Warrior",
  20914. image: {
  20915. source: "./media/characters/tahajin/star-warrior.svg"
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Normal",
  20922. height: math.unit(25 + 6 / 12, "feet"),
  20923. default: true
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(8, "feet"),
  20932. weight: math.unit(350, "lb"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/gabira/front.svg",
  20936. extra: 608 / 580,
  20937. bottom: 0.03
  20938. }
  20939. },
  20940. back: {
  20941. height: math.unit(8, "feet"),
  20942. weight: math.unit(350, "lb"),
  20943. name: "Back",
  20944. image: {
  20945. source: "./media/characters/gabira/back.svg",
  20946. extra: 608 / 580,
  20947. bottom: 0.03
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(8, "feet"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20961. {
  20962. front: {
  20963. height: math.unit(5 + 3 / 12, "feet"),
  20964. weight: math.unit(137, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/sasha-katraine/front.svg",
  20968. bottom: 0.045
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(5, "inches")
  20976. },
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(5 + 3 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20986. {
  20987. side: {
  20988. height: math.unit(4, "inches"),
  20989. weight: math.unit(200, "grams"),
  20990. name: "Side",
  20991. image: {
  20992. source: "./media/characters/der/side.svg",
  20993. extra: 719 / 400,
  20994. bottom: 30.6 / 749.9187
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Micro",
  21001. height: math.unit(4, "inches"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21008. {
  21009. side: {
  21010. height: math.unit(30, "meters"),
  21011. weight: math.unit(700, "tonnes"),
  21012. name: "Side",
  21013. image: {
  21014. source: "./media/characters/fixerdragon/side.svg",
  21015. extra: (1293.0514 - 116.03) / 1106.86,
  21016. bottom: 116.03 / 1293.0514
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Planck",
  21023. height: math.unit(1.6e-35, "meters")
  21024. },
  21025. {
  21026. name: "Micro",
  21027. height: math.unit(0.4, "meters")
  21028. },
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(30, "meters"),
  21032. default: true
  21033. },
  21034. {
  21035. name: "Megamacro",
  21036. height: math.unit(1.2, "megameters")
  21037. },
  21038. {
  21039. name: "Teramacro",
  21040. height: math.unit(130, "terameters")
  21041. },
  21042. {
  21043. name: "Yottamacro",
  21044. height: math.unit(6200, "yottameters")
  21045. },
  21046. ]
  21047. ));
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(8, "feet"),
  21053. weight: math.unit(250, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/kite/front.svg",
  21057. extra: 2796 / 2659,
  21058. bottom: 0.002
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(8, "feet"),
  21066. default: true
  21067. },
  21068. {
  21069. name: "Macro",
  21070. height: math.unit(360, "feet")
  21071. },
  21072. {
  21073. name: "Megamacro",
  21074. height: math.unit(1500, "feet")
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(5 + 10 / 12, "feet"),
  21083. weight: math.unit(150, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/poojawa-vynar/front.svg",
  21087. extra: (1506.1547 - 55) / 1356.6,
  21088. bottom: 55 / 1506.1547
  21089. }
  21090. },
  21091. frontTailless: {
  21092. height: math.unit(5 + 10 / 12, "feet"),
  21093. weight: math.unit(150, "lb"),
  21094. name: "Front (Tailless)",
  21095. image: {
  21096. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21097. extra: (1506.1547 - 55) / 1356.6,
  21098. bottom: 55 / 1506.1547
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(5 + 10 / 12, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21112. {
  21113. front: {
  21114. height: math.unit(293, "meters"),
  21115. weight: math.unit(70400, "tons"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/violette/front.svg",
  21119. extra: 1227 / 1180,
  21120. bottom: 0.005
  21121. }
  21122. },
  21123. back: {
  21124. height: math.unit(293, "meters"),
  21125. weight: math.unit(70400, "tons"),
  21126. name: "Back",
  21127. image: {
  21128. source: "./media/characters/violette/back.svg",
  21129. extra: 1227 / 1180,
  21130. bottom: 0.005
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(293, "meters"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(1050, "feet"),
  21147. weight: math.unit(200000, "tons"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/alessandra/front.svg",
  21151. extra: 960 / 912,
  21152. bottom: 0.06
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Macro",
  21159. height: math.unit(1050, "feet")
  21160. },
  21161. {
  21162. name: "Macro+",
  21163. height: math.unit(900, "meters"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(5, "feet"),
  21173. weight: math.unit(187, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/person/front.svg",
  21177. extra: 3087 / 2945,
  21178. bottom: 91 / 3181
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Micro",
  21185. height: math.unit(3, "inches")
  21186. },
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(5, "feet"),
  21190. default: true
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(90, "feet")
  21195. },
  21196. {
  21197. name: "Max Size",
  21198. height: math.unit(280, "feet")
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(4.5, "meters"),
  21207. weight: math.unit(3200, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/ty/front.svg",
  21211. extra: 1038 / 960,
  21212. bottom: 31.156 / 1068
  21213. }
  21214. },
  21215. back: {
  21216. height: math.unit(4.5, "meters"),
  21217. weight: math.unit(3200, "lb"),
  21218. name: "Back",
  21219. image: {
  21220. source: "./media/characters/ty/back.svg",
  21221. extra: 1044 / 966,
  21222. bottom: 7.48 / 1049
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(4.5, "meters"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(5 + 4 / 12, "feet"),
  21239. weight: math.unit(115, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/rocky/front.svg",
  21243. extra: 1012 / 975,
  21244. bottom: 54 / 1066
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(5 + 4 / 12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21258. {
  21259. upright: {
  21260. height: math.unit(6, "meters"),
  21261. weight: math.unit(4000, "kg"),
  21262. name: "Upright",
  21263. image: {
  21264. source: "./media/characters/ruin/upright.svg",
  21265. extra: 668 / 661,
  21266. bottom: 42 / 799.8396
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(6, "meters"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(5, "feet"),
  21283. weight: math.unit(106, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/robin/front.svg",
  21287. extra: 862 / 799,
  21288. bottom: 42.4 / 914.8856
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5, "feet"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21302. {
  21303. side: {
  21304. height: math.unit(3, "feet"),
  21305. weight: math.unit(225, "lb"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/saian/side.svg",
  21309. extra: 566 / 356,
  21310. bottom: 79.7 / 643
  21311. }
  21312. },
  21313. maw: {
  21314. height: math.unit(2.85, "feet"),
  21315. name: "Maw",
  21316. image: {
  21317. source: "./media/characters/saian/maw.svg"
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(3, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21331. {
  21332. side: {
  21333. height: math.unit(8, "feet"),
  21334. weight: math.unit(300, "lb"),
  21335. name: "Side",
  21336. image: {
  21337. source: "./media/characters/equus-silvermane/side.svg",
  21338. extra: 2176 / 2050,
  21339. bottom: 65.7 / 2245
  21340. }
  21341. },
  21342. front: {
  21343. height: math.unit(8, "feet"),
  21344. weight: math.unit(300, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/equus-silvermane/front.svg",
  21348. extra: 4633 / 4400,
  21349. bottom: 71.3 / 4706.915
  21350. }
  21351. },
  21352. sideStepping: {
  21353. height: math.unit(8, "feet"),
  21354. weight: math.unit(300, "lb"),
  21355. name: "Side (Stepping)",
  21356. image: {
  21357. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21358. extra: 1968 / 1860,
  21359. bottom: 16.4 / 1989
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(8, "feet")
  21367. },
  21368. {
  21369. name: "Minimacro",
  21370. height: math.unit(75, "feet"),
  21371. default: true
  21372. },
  21373. {
  21374. name: "Macro",
  21375. height: math.unit(150, "feet")
  21376. },
  21377. {
  21378. name: "Macro+",
  21379. height: math.unit(1000, "feet")
  21380. },
  21381. {
  21382. name: "Megamacro",
  21383. height: math.unit(1, "mile")
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21389. {
  21390. side: {
  21391. height: math.unit(20, "feet"),
  21392. weight: math.unit(30000, "kg"),
  21393. name: "Side",
  21394. image: {
  21395. source: "./media/characters/windar/side.svg",
  21396. extra: 1491 / 1248,
  21397. bottom: 82.56 / 1568
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(20, "feet"),
  21405. default: true
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21411. {
  21412. side: {
  21413. height: math.unit(15.66, "feet"),
  21414. weight: math.unit(150, "lb"),
  21415. name: "Side",
  21416. image: {
  21417. source: "./media/characters/melody/side.svg",
  21418. extra: 1097 / 944,
  21419. bottom: 11.8 / 1109
  21420. }
  21421. },
  21422. sideOutfit: {
  21423. height: math.unit(15.66, "feet"),
  21424. weight: math.unit(150, "lb"),
  21425. name: "Side (Outfit)",
  21426. image: {
  21427. source: "./media/characters/melody/side-outfit.svg",
  21428. extra: 1097 / 944,
  21429. bottom: 11.8 / 1109
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(15.66, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(8, "feet"),
  21446. weight: math.unit(325, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/windera/front.svg",
  21450. extra: 3180 / 2845,
  21451. bottom: 178 / 3365
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(8, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21465. {
  21466. front: {
  21467. height: math.unit(28.75, "feet"),
  21468. weight: math.unit(2000, "kg"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/sonear/front.svg",
  21472. extra: 1041.1 / 964.9,
  21473. bottom: 53.7 / 1096.6
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(28.75, "feet"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21487. {
  21488. side: {
  21489. height: math.unit(25.5, "feet"),
  21490. weight: math.unit(23000, "kg"),
  21491. name: "Side",
  21492. image: {
  21493. source: "./media/characters/kanara/side.svg"
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(25.5, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21507. {
  21508. side: {
  21509. height: math.unit(10, "feet"),
  21510. weight: math.unit(1000, "kg"),
  21511. name: "Side",
  21512. image: {
  21513. source: "./media/characters/ereus/side.svg",
  21514. extra: 1157 / 959,
  21515. bottom: 153 / 1312.5
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(10, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21529. {
  21530. side: {
  21531. height: math.unit(4.5, "feet"),
  21532. weight: math.unit(500, "lb"),
  21533. name: "Side",
  21534. image: {
  21535. source: "./media/characters/e-ter/side.svg",
  21536. extra: 1550 / 1248,
  21537. bottom: 146 / 1694
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(4.5, "feet"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21551. {
  21552. side: {
  21553. height: math.unit(9.7, "feet"),
  21554. weight: math.unit(4000, "kg"),
  21555. name: "Side",
  21556. image: {
  21557. source: "./media/characters/yamie/side.svg"
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(9.7, "feet"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(50, "feet"),
  21574. weight: math.unit(50000, "kg"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/anders/front.svg",
  21578. extra: 570 / 539,
  21579. bottom: 14.7 / 586.7
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Large",
  21586. height: math.unit(50, "feet")
  21587. },
  21588. {
  21589. name: "Macro",
  21590. height: math.unit(2000, "feet"),
  21591. default: true
  21592. },
  21593. {
  21594. name: "Megamacro",
  21595. height: math.unit(12, "miles")
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(7 + 2 / 12, "feet"),
  21604. weight: math.unit(300, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/reban/front.svg",
  21608. extra: 516 / 487,
  21609. bottom: 42.82 / 558.356
  21610. }
  21611. },
  21612. dick: {
  21613. height: math.unit(7 / 5, "feet"),
  21614. name: "Dick",
  21615. image: {
  21616. source: "./media/characters/reban/dick.svg"
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Natural Height",
  21623. height: math.unit(7 + 2 / 12, "feet")
  21624. },
  21625. {
  21626. name: "Macro",
  21627. height: math.unit(500, "feet"),
  21628. default: true
  21629. },
  21630. {
  21631. name: "Canon Height",
  21632. height: math.unit(50, "AU")
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21638. {
  21639. front: {
  21640. height: math.unit(6, "feet"),
  21641. weight: math.unit(150, "lb"),
  21642. name: "Front",
  21643. image: {
  21644. source: "./media/characters/terrance-keayes/front.svg",
  21645. extra: 1.005,
  21646. bottom: 151 / 1615
  21647. }
  21648. },
  21649. side: {
  21650. height: math.unit(6, "feet"),
  21651. weight: math.unit(150, "lb"),
  21652. name: "Side",
  21653. image: {
  21654. source: "./media/characters/terrance-keayes/side.svg",
  21655. extra: 1.005,
  21656. bottom: 129.4 / 1544
  21657. }
  21658. },
  21659. back: {
  21660. height: math.unit(6, "feet"),
  21661. weight: math.unit(150, "lb"),
  21662. name: "Back",
  21663. image: {
  21664. source: "./media/characters/terrance-keayes/back.svg",
  21665. extra: 1.005,
  21666. bottom: 58.4 / 1557.3
  21667. }
  21668. },
  21669. dick: {
  21670. height: math.unit(6 * 0.208, "feet"),
  21671. name: "Dick",
  21672. image: {
  21673. source: "./media/characters/terrance-keayes/dick.svg"
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Canon Height",
  21680. height: math.unit(35, "miles"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21687. {
  21688. front: {
  21689. height: math.unit(6, "feet"),
  21690. weight: math.unit(150, "lb"),
  21691. name: "Front",
  21692. image: {
  21693. source: "./media/characters/ofelia/front.svg",
  21694. extra: 546 / 541,
  21695. bottom: 39 / 583
  21696. }
  21697. },
  21698. back: {
  21699. height: math.unit(6, "feet"),
  21700. weight: math.unit(150, "lb"),
  21701. name: "Back",
  21702. image: {
  21703. source: "./media/characters/ofelia/back.svg",
  21704. extra: 564 / 559.5,
  21705. bottom: 8.69 / 573.02
  21706. }
  21707. },
  21708. maw: {
  21709. height: math.unit(1, "feet"),
  21710. name: "Maw",
  21711. image: {
  21712. source: "./media/characters/ofelia/maw.svg"
  21713. }
  21714. },
  21715. foot: {
  21716. height: math.unit(1.949, "feet"),
  21717. name: "Foot",
  21718. image: {
  21719. source: "./media/characters/ofelia/foot.svg"
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Canon Height",
  21726. height: math.unit(2000, "miles"),
  21727. default: true
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(6, "feet"),
  21736. weight: math.unit(150, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/samuel/front.svg",
  21740. extra: 265 / 258,
  21741. bottom: 2 / 266.1566
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Macro",
  21748. height: math.unit(100, "feet"),
  21749. default: true
  21750. },
  21751. {
  21752. name: "Full Size",
  21753. height: math.unit(1000, "miles")
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(6, "feet"),
  21762. weight: math.unit(300, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/beishir-kiel/front.svg",
  21766. extra: 569 / 547,
  21767. bottom: 41.9 / 609
  21768. }
  21769. },
  21770. maw: {
  21771. height: math.unit(6 * 0.202, "feet"),
  21772. name: "Maw",
  21773. image: {
  21774. source: "./media/characters/beishir-kiel/maw.svg"
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Macro",
  21781. height: math.unit(300, "feet"),
  21782. default: true
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(5 + 8 / 12, "feet"),
  21791. weight: math.unit(120, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/logan-grey/front.svg",
  21795. extra: 2539 / 2393,
  21796. bottom: 97.6 / 2636.37
  21797. }
  21798. },
  21799. frontAlt: {
  21800. height: math.unit(5 + 8 / 12, "feet"),
  21801. weight: math.unit(120, "lb"),
  21802. name: "Front (Alt)",
  21803. image: {
  21804. source: "./media/characters/logan-grey/front-alt.svg",
  21805. extra: 958 / 893,
  21806. bottom: 15 / 970.768
  21807. }
  21808. },
  21809. back: {
  21810. height: math.unit(5 + 8 / 12, "feet"),
  21811. weight: math.unit(120, "lb"),
  21812. name: "Back",
  21813. image: {
  21814. source: "./media/characters/logan-grey/back.svg",
  21815. extra: 958 / 893,
  21816. bottom: 2.1881 / 970.9788
  21817. }
  21818. },
  21819. dick: {
  21820. height: math.unit(1.437, "feet"),
  21821. name: "Dick",
  21822. image: {
  21823. source: "./media/characters/logan-grey/dick.svg"
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(5 + 8 / 12, "feet")
  21831. },
  21832. {
  21833. name: "The 500 Foot Femboy",
  21834. height: math.unit(500, "feet"),
  21835. default: true
  21836. },
  21837. {
  21838. name: "Megmacro",
  21839. height: math.unit(20, "miles")
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21845. {
  21846. front: {
  21847. height: math.unit(8 + 2 / 12, "feet"),
  21848. weight: math.unit(275, "lb"),
  21849. name: "Front",
  21850. image: {
  21851. source: "./media/characters/draganta/front.svg",
  21852. extra: 1177 / 1135,
  21853. bottom: 33.46 / 1212.1
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(8 + 6 / 12, "feet"),
  21861. default: true
  21862. },
  21863. {
  21864. name: "Macro",
  21865. height: math.unit(150, "feet")
  21866. },
  21867. {
  21868. name: "Megamacro",
  21869. height: math.unit(1000, "miles")
  21870. },
  21871. ]
  21872. ))
  21873. characterMakers.push(() => makeCharacter(
  21874. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21875. {
  21876. front: {
  21877. height: math.unit(1.72, "m"),
  21878. weight: math.unit(80, "lb"),
  21879. name: "Front",
  21880. image: {
  21881. source: "./media/characters/voski/front.svg",
  21882. extra: 2076.22 / 2022.4,
  21883. bottom: 102.7 / 2177.3866
  21884. }
  21885. },
  21886. frontNsfw: {
  21887. height: math.unit(1.72, "m"),
  21888. weight: math.unit(80, "lb"),
  21889. name: "Front (NSFW)",
  21890. image: {
  21891. source: "./media/characters/voski/front-nsfw.svg",
  21892. extra: 2076.22 / 2022.4,
  21893. bottom: 102.7 / 2177.3866
  21894. }
  21895. },
  21896. back: {
  21897. height: math.unit(1.72, "m"),
  21898. weight: math.unit(80, "lb"),
  21899. name: "Back",
  21900. image: {
  21901. source: "./media/characters/voski/back.svg",
  21902. extra: 2104 / 2051,
  21903. bottom: 10.45 / 2113.63
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(1.72, "m")
  21911. },
  21912. {
  21913. name: "Macro",
  21914. height: math.unit(55, "m"),
  21915. default: true
  21916. },
  21917. {
  21918. name: "Macro+",
  21919. height: math.unit(300, "m")
  21920. },
  21921. {
  21922. name: "Macro++",
  21923. height: math.unit(700, "m")
  21924. },
  21925. {
  21926. name: "Macro+++",
  21927. height: math.unit(4500, "m")
  21928. },
  21929. {
  21930. name: "Macro++++",
  21931. height: math.unit(45, "km")
  21932. },
  21933. {
  21934. name: "Macro+++++",
  21935. height: math.unit(1220, "km")
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(2.3, "m"),
  21944. weight: math.unit(304, "kg"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/icowom-lee/front.svg",
  21948. extra: 985 / 955,
  21949. bottom: 25.4 / 1012
  21950. }
  21951. },
  21952. fronttentacles: {
  21953. height: math.unit(2.3, "m"),
  21954. weight: math.unit(304, "kg"),
  21955. name: "Front-tentacles",
  21956. image: {
  21957. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21958. extra: 985 / 955,
  21959. bottom: 25.4 / 1012
  21960. }
  21961. },
  21962. back: {
  21963. height: math.unit(2.3, "m"),
  21964. weight: math.unit(304, "kg"),
  21965. name: "Back",
  21966. image: {
  21967. source: "./media/characters/icowom-lee/back.svg",
  21968. extra: 975 / 954,
  21969. bottom: 9.5 / 985
  21970. }
  21971. },
  21972. backtentacles: {
  21973. height: math.unit(2.3, "m"),
  21974. weight: math.unit(304, "kg"),
  21975. name: "Back-tentacles",
  21976. image: {
  21977. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21978. extra: 975 / 954,
  21979. bottom: 9.5 / 985
  21980. }
  21981. },
  21982. frontDressed: {
  21983. height: math.unit(2.3, "m"),
  21984. weight: math.unit(304, "kg"),
  21985. name: "Front (Dressed)",
  21986. image: {
  21987. source: "./media/characters/icowom-lee/front-dressed.svg",
  21988. extra: 3076 / 2933,
  21989. bottom: 51.4 / 3125.1889
  21990. }
  21991. },
  21992. rump: {
  21993. height: math.unit(0.776, "meters"),
  21994. name: "Rump",
  21995. image: {
  21996. source: "./media/characters/icowom-lee/rump.svg"
  21997. }
  21998. },
  21999. genitals: {
  22000. height: math.unit(0.78, "meters"),
  22001. name: "Genitals",
  22002. image: {
  22003. source: "./media/characters/icowom-lee/genitals.svg"
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Normal",
  22010. height: math.unit(2.3, "meters"),
  22011. default: true
  22012. },
  22013. {
  22014. name: "Macro",
  22015. height: math.unit(94, "meters"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22022. {
  22023. front: {
  22024. height: math.unit(22, "meters"),
  22025. weight: math.unit(21000, "kg"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/shock-diamond/front.svg",
  22029. extra: 2204 / 2053,
  22030. bottom: 65 / 2239.47
  22031. }
  22032. },
  22033. frontNude: {
  22034. height: math.unit(22, "meters"),
  22035. weight: math.unit(21000, "kg"),
  22036. name: "Front (Nude)",
  22037. image: {
  22038. source: "./media/characters/shock-diamond/front-nude.svg",
  22039. extra: 2514 / 2285,
  22040. bottom: 13 / 2527.56
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(3, "meters")
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(22, "meters"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(5 + 4 / 12, "feet"),
  22061. weight: math.unit(120, "lb"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/rory/front.svg",
  22065. extra: 589 / 556,
  22066. bottom: 45.7 / 635.76
  22067. }
  22068. },
  22069. frontNude: {
  22070. height: math.unit(5 + 4 / 12, "feet"),
  22071. weight: math.unit(120, "lb"),
  22072. name: "Front (Nude)",
  22073. image: {
  22074. source: "./media/characters/rory/front-nude.svg",
  22075. extra: 589 / 556,
  22076. bottom: 45.7 / 635.76
  22077. }
  22078. },
  22079. side: {
  22080. height: math.unit(5 + 4 / 12, "feet"),
  22081. weight: math.unit(120, "lb"),
  22082. name: "Side",
  22083. image: {
  22084. source: "./media/characters/rory/side.svg",
  22085. extra: 597 / 564,
  22086. bottom: 55 / 653
  22087. }
  22088. },
  22089. back: {
  22090. height: math.unit(5 + 4 / 12, "feet"),
  22091. weight: math.unit(120, "lb"),
  22092. name: "Back",
  22093. image: {
  22094. source: "./media/characters/rory/back.svg",
  22095. extra: 620 / 585,
  22096. bottom: 8.86 / 630.43
  22097. }
  22098. },
  22099. dick: {
  22100. height: math.unit(0.86, "feet"),
  22101. name: "Dick",
  22102. image: {
  22103. source: "./media/characters/rory/dick.svg"
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(5 + 4 / 12, "feet"),
  22111. default: true
  22112. },
  22113. {
  22114. name: "Macro",
  22115. height: math.unit(100, "feet")
  22116. },
  22117. {
  22118. name: "Macro+",
  22119. height: math.unit(140, "feet")
  22120. },
  22121. {
  22122. name: "Macro++",
  22123. height: math.unit(300, "feet")
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(5 + 9 / 12, "feet"),
  22132. weight: math.unit(190, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/sprisk/front.svg",
  22136. extra: 1225 / 1180,
  22137. bottom: 42.7 / 1266.4
  22138. }
  22139. },
  22140. frontNsfw: {
  22141. height: math.unit(5 + 9 / 12, "feet"),
  22142. weight: math.unit(190, "lb"),
  22143. name: "Front (NSFW)",
  22144. image: {
  22145. source: "./media/characters/sprisk/front-nsfw.svg",
  22146. extra: 1225 / 1180,
  22147. bottom: 42.7 / 1266.4
  22148. }
  22149. },
  22150. back: {
  22151. height: math.unit(5 + 9 / 12, "feet"),
  22152. weight: math.unit(190, "lb"),
  22153. name: "Back",
  22154. image: {
  22155. source: "./media/characters/sprisk/back.svg",
  22156. extra: 1247 / 1200,
  22157. bottom: 5.6 / 1253.04
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Tiny",
  22164. height: math.unit(2, "inches")
  22165. },
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(5 + 9 / 12, "feet"),
  22169. default: true
  22170. },
  22171. {
  22172. name: "Mini Macro",
  22173. height: math.unit(18, "feet")
  22174. },
  22175. {
  22176. name: "Macro",
  22177. height: math.unit(100, "feet")
  22178. },
  22179. {
  22180. name: "MACRO",
  22181. height: math.unit(50, "miles")
  22182. },
  22183. {
  22184. name: "M A C R O",
  22185. height: math.unit(300, "miles")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22191. {
  22192. side: {
  22193. height: math.unit(15.6, "meters"),
  22194. weight: math.unit(700000, "kg"),
  22195. name: "Side",
  22196. image: {
  22197. source: "./media/characters/bunsen/side.svg",
  22198. extra: 1644 / 358
  22199. }
  22200. },
  22201. foot: {
  22202. height: math.unit(1.611 * 1644 / 358, "meter"),
  22203. name: "Foot",
  22204. image: {
  22205. source: "./media/characters/bunsen/foot.svg"
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Small",
  22212. height: math.unit(10, "feet")
  22213. },
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(15.6, "meters"),
  22217. default: true
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(4 + 11 / 12, "feet"),
  22226. weight: math.unit(140, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/sesh/front.svg",
  22230. extra: 3420 / 3231,
  22231. bottom: 72 / 3949.5
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(4 + 11 / 12, "feet")
  22239. },
  22240. {
  22241. name: "Grown",
  22242. height: math.unit(15, "feet"),
  22243. default: true
  22244. },
  22245. {
  22246. name: "Macro",
  22247. height: math.unit(1500, "feet")
  22248. },
  22249. {
  22250. name: "Megamacro",
  22251. height: math.unit(30, "miles")
  22252. },
  22253. {
  22254. name: "Continental",
  22255. height: math.unit(3000, "miles")
  22256. },
  22257. {
  22258. name: "Gravity Mass",
  22259. height: math.unit(300000, "miles")
  22260. },
  22261. {
  22262. name: "Planet Buster",
  22263. height: math.unit(30000000, "miles")
  22264. },
  22265. {
  22266. name: "Big",
  22267. height: math.unit(3000000000, "miles")
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(9, "feet"),
  22276. weight: math.unit(350, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/pepper/front.svg",
  22280. extra: 1448 / 1312,
  22281. bottom: 9.4 / 1457.88
  22282. }
  22283. },
  22284. back: {
  22285. height: math.unit(9, "feet"),
  22286. weight: math.unit(350, "lb"),
  22287. name: "Back",
  22288. image: {
  22289. source: "./media/characters/pepper/back.svg",
  22290. extra: 1423 / 1300,
  22291. bottom: 4.6 / 1429
  22292. }
  22293. },
  22294. maw: {
  22295. height: math.unit(0.932, "feet"),
  22296. name: "Maw",
  22297. image: {
  22298. source: "./media/characters/pepper/maw.svg"
  22299. }
  22300. },
  22301. },
  22302. [
  22303. {
  22304. name: "Normal",
  22305. height: math.unit(9, "feet"),
  22306. default: true
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(6, "feet"),
  22315. weight: math.unit(150, "lb"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/maelstrom/front.svg",
  22319. extra: 2100 / 1883,
  22320. bottom: 94 / 2196.7
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Less Kaiju",
  22327. height: math.unit(200, "feet")
  22328. },
  22329. {
  22330. name: "Kaiju",
  22331. height: math.unit(400, "feet"),
  22332. default: true
  22333. },
  22334. {
  22335. name: "Kaiju-er",
  22336. height: math.unit(600, "feet")
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(6 + 5 / 12, "feet"),
  22345. weight: math.unit(180, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/lexir/front.svg",
  22349. extra: 180 / 172,
  22350. bottom: 12 / 192
  22351. }
  22352. },
  22353. back: {
  22354. height: math.unit(6 + 5 / 12, "feet"),
  22355. weight: math.unit(180, "lb"),
  22356. name: "Back",
  22357. image: {
  22358. source: "./media/characters/lexir/back.svg",
  22359. extra: 183.84 / 175.5,
  22360. bottom: 3.1 / 187
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Very Smal",
  22367. height: math.unit(1, "nm")
  22368. },
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(6 + 5 / 12, "feet"),
  22372. default: true
  22373. },
  22374. {
  22375. name: "Macro",
  22376. height: math.unit(1, "mile")
  22377. },
  22378. {
  22379. name: "Megamacro",
  22380. height: math.unit(50, "miles")
  22381. },
  22382. ]
  22383. ))
  22384. characterMakers.push(() => makeCharacter(
  22385. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22386. {
  22387. front: {
  22388. height: math.unit(1.5, "meters"),
  22389. weight: math.unit(100, "lb"),
  22390. name: "Front",
  22391. image: {
  22392. source: "./media/characters/maksio/front.svg",
  22393. extra: 1549 / 1531,
  22394. bottom: 123.7 / 1674.5429
  22395. }
  22396. },
  22397. back: {
  22398. height: math.unit(1.5, "meters"),
  22399. weight: math.unit(100, "lb"),
  22400. name: "Back",
  22401. image: {
  22402. source: "./media/characters/maksio/back.svg",
  22403. extra: 1541 / 1509,
  22404. bottom: 97 / 1639
  22405. }
  22406. },
  22407. hand: {
  22408. height: math.unit(0.621, "feet"),
  22409. name: "Hand",
  22410. image: {
  22411. source: "./media/characters/maksio/hand.svg"
  22412. }
  22413. },
  22414. foot: {
  22415. height: math.unit(1.611, "feet"),
  22416. name: "Foot",
  22417. image: {
  22418. source: "./media/characters/maksio/foot.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Shrunken",
  22425. height: math.unit(10, "cm")
  22426. },
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(150, "cm"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(100, "feet"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/erza-bear/front.svg",
  22442. extra: 2449 / 2390,
  22443. bottom: 46 / 2494
  22444. }
  22445. },
  22446. back: {
  22447. height: math.unit(100, "feet"),
  22448. name: "Back",
  22449. image: {
  22450. source: "./media/characters/erza-bear/back.svg",
  22451. extra: 2489 / 2430,
  22452. bottom: 85.4 / 2480
  22453. }
  22454. },
  22455. tail: {
  22456. height: math.unit(42, "feet"),
  22457. name: "Tail",
  22458. image: {
  22459. source: "./media/characters/erza-bear/tail.svg"
  22460. }
  22461. },
  22462. tongue: {
  22463. height: math.unit(8, "feet"),
  22464. name: "Tongue",
  22465. image: {
  22466. source: "./media/characters/erza-bear/tongue.svg"
  22467. }
  22468. },
  22469. dick: {
  22470. height: math.unit(10.5, "feet"),
  22471. name: "Dick",
  22472. image: {
  22473. source: "./media/characters/erza-bear/dick.svg"
  22474. }
  22475. },
  22476. dickVertical: {
  22477. height: math.unit(16.9, "feet"),
  22478. name: "Dick (Vertical)",
  22479. image: {
  22480. source: "./media/characters/erza-bear/dick-vertical.svg"
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Macro",
  22487. height: math.unit(100, "feet"),
  22488. default: true
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22494. {
  22495. front: {
  22496. height: math.unit(172, "cm"),
  22497. weight: math.unit(73, "kg"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/violet-flor/front.svg",
  22501. extra: 1530 / 1442,
  22502. bottom: 61.9 / 1588.8
  22503. }
  22504. },
  22505. back: {
  22506. height: math.unit(180, "cm"),
  22507. weight: math.unit(73, "kg"),
  22508. name: "Back",
  22509. image: {
  22510. source: "./media/characters/violet-flor/back.svg",
  22511. extra: 1692 / 1630,
  22512. bottom: 20 / 1712
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(172, "cm"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(6, "feet"),
  22529. weight: math.unit(220, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/lynn-rhea/front.svg",
  22533. extra: 310 / 273
  22534. }
  22535. },
  22536. back: {
  22537. height: math.unit(6, "feet"),
  22538. weight: math.unit(220, "lb"),
  22539. name: "Back",
  22540. image: {
  22541. source: "./media/characters/lynn-rhea/back.svg",
  22542. extra: 310 / 273
  22543. }
  22544. },
  22545. dicks: {
  22546. height: math.unit(0.9, "feet"),
  22547. name: "Dicks",
  22548. image: {
  22549. source: "./media/characters/lynn-rhea/dicks.svg"
  22550. }
  22551. },
  22552. slit: {
  22553. height: math.unit(0.4, "feet"),
  22554. name: "Slit",
  22555. image: {
  22556. source: "./media/characters/lynn-rhea/slit.svg"
  22557. }
  22558. },
  22559. },
  22560. [
  22561. {
  22562. name: "Micro",
  22563. height: math.unit(1, "inch")
  22564. },
  22565. {
  22566. name: "Macro",
  22567. height: math.unit(60, "feet"),
  22568. default: true
  22569. },
  22570. {
  22571. name: "Megamacro",
  22572. height: math.unit(2, "miles")
  22573. },
  22574. {
  22575. name: "Gigamacro",
  22576. height: math.unit(3, "earths")
  22577. },
  22578. {
  22579. name: "Galactic",
  22580. height: math.unit(0.8, "galaxies")
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22586. {
  22587. front: {
  22588. height: math.unit(1600, "feet"),
  22589. weight: math.unit(85758785169, "kg"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/valathos/front.svg",
  22593. extra: 1451 / 1339
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Macro",
  22600. height: math.unit(1600, "feet"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22607. {
  22608. front: {
  22609. height: math.unit(7 + 5 / 12, "feet"),
  22610. weight: math.unit(300, "lb"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/azula/front.svg",
  22614. extra: 3208 / 2880,
  22615. bottom: 80.2 / 3277
  22616. }
  22617. },
  22618. back: {
  22619. height: math.unit(7 + 5 / 12, "feet"),
  22620. weight: math.unit(300, "lb"),
  22621. name: "Back",
  22622. image: {
  22623. source: "./media/characters/azula/back.svg",
  22624. extra: 3169 / 2822,
  22625. bottom: 150.6 / 3321
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(7 + 5 / 12, "feet"),
  22633. default: true
  22634. },
  22635. {
  22636. name: "Big",
  22637. height: math.unit(20, "feet")
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(5 + 1 / 12, "feet"),
  22646. weight: math.unit(110, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/rupert/front.svg",
  22650. extra: 1549 / 1495,
  22651. bottom: 54.2 / 1604.4
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(5 + 1 / 12, "feet"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22665. {
  22666. front: {
  22667. height: math.unit(8 + 4 / 12, "feet"),
  22668. weight: math.unit(350, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/sheera-castellar/front.svg",
  22672. extra: 1957 / 1894,
  22673. bottom: 26.97 / 1975.017
  22674. }
  22675. },
  22676. side: {
  22677. height: math.unit(8 + 4 / 12, "feet"),
  22678. weight: math.unit(350, "lb"),
  22679. name: "Side",
  22680. image: {
  22681. source: "./media/characters/sheera-castellar/side.svg",
  22682. extra: 1957 / 1894
  22683. }
  22684. },
  22685. back: {
  22686. height: math.unit(8 + 4 / 12, "feet"),
  22687. weight: math.unit(350, "lb"),
  22688. name: "Back",
  22689. image: {
  22690. source: "./media/characters/sheera-castellar/back.svg",
  22691. extra: 1957 / 1894
  22692. }
  22693. },
  22694. angled: {
  22695. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22696. weight: math.unit(350, "lb"),
  22697. name: "Angled",
  22698. image: {
  22699. source: "./media/characters/sheera-castellar/angled.svg",
  22700. extra: 1807 / 1707,
  22701. bottom: 68 / 1875
  22702. }
  22703. },
  22704. genitals: {
  22705. height: math.unit(2.2, "feet"),
  22706. name: "Genitals",
  22707. image: {
  22708. source: "./media/characters/sheera-castellar/genitals.svg"
  22709. }
  22710. },
  22711. taur: {
  22712. height: math.unit(10 + 6/12, "feet"),
  22713. name: "Taur",
  22714. image: {
  22715. source: "./media/characters/sheera-castellar/taur.svg",
  22716. extra: 2017/1909,
  22717. bottom: 185/2202
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(8 + 4 / 12, "feet")
  22725. },
  22726. {
  22727. name: "Macro",
  22728. height: math.unit(150, "feet"),
  22729. default: true
  22730. },
  22731. {
  22732. name: "Macro+",
  22733. height: math.unit(800, "feet")
  22734. },
  22735. ]
  22736. ))
  22737. characterMakers.push(() => makeCharacter(
  22738. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22739. {
  22740. front: {
  22741. height: math.unit(6, "feet"),
  22742. weight: math.unit(150, "lb"),
  22743. name: "Front",
  22744. image: {
  22745. source: "./media/characters/jaipur/front.svg",
  22746. extra: 3860 / 3731,
  22747. bottom: 287 / 4140
  22748. }
  22749. },
  22750. back: {
  22751. height: math.unit(6, "feet"),
  22752. weight: math.unit(150, "lb"),
  22753. name: "Back",
  22754. image: {
  22755. source: "./media/characters/jaipur/back.svg",
  22756. extra: 4060 / 3930,
  22757. bottom: 151 / 4200
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(1.85, "meters"),
  22765. default: true
  22766. },
  22767. {
  22768. name: "Macro",
  22769. height: math.unit(150, "meters")
  22770. },
  22771. {
  22772. name: "Macro+",
  22773. height: math.unit(0.5, "miles")
  22774. },
  22775. {
  22776. name: "Macro++",
  22777. height: math.unit(2.5, "miles")
  22778. },
  22779. {
  22780. name: "Macro+++",
  22781. height: math.unit(12, "miles")
  22782. },
  22783. {
  22784. name: "Macro++++",
  22785. height: math.unit(120, "miles")
  22786. },
  22787. {
  22788. name: "Macro+++++",
  22789. height: math.unit(1200, "miles")
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(6, "feet"),
  22798. weight: math.unit(150, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/sheila-wolf/front.svg",
  22802. extra: 1931 / 1808,
  22803. bottom: 29.5 / 1960
  22804. }
  22805. },
  22806. dick: {
  22807. height: math.unit(1.464, "feet"),
  22808. name: "Dick",
  22809. image: {
  22810. source: "./media/characters/sheila-wolf/dick.svg"
  22811. }
  22812. },
  22813. muzzle: {
  22814. height: math.unit(0.513, "feet"),
  22815. name: "Muzzle",
  22816. image: {
  22817. source: "./media/characters/sheila-wolf/muzzle.svg"
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(70, "feet"),
  22825. default: true
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22831. {
  22832. front: {
  22833. height: math.unit(32, "meters"),
  22834. weight: math.unit(300000, "kg"),
  22835. name: "Front",
  22836. image: {
  22837. source: "./media/characters/almor/front.svg",
  22838. extra: 1408 / 1322,
  22839. bottom: 94.6 / 1506.5
  22840. }
  22841. },
  22842. },
  22843. [
  22844. {
  22845. name: "Macro",
  22846. height: math.unit(32, "meters"),
  22847. default: true
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22853. {
  22854. front: {
  22855. height: math.unit(7, "feet"),
  22856. weight: math.unit(200, "lb"),
  22857. name: "Front",
  22858. image: {
  22859. source: "./media/characters/silver/front.svg",
  22860. extra: 472.1 / 450.5,
  22861. bottom: 26.5 / 499.424
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(7, "feet"),
  22869. default: true
  22870. },
  22871. {
  22872. name: "Macro",
  22873. height: math.unit(800, "feet")
  22874. },
  22875. {
  22876. name: "Megamacro",
  22877. height: math.unit(250, "miles")
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(6, "feet"),
  22886. weight: math.unit(150, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/pliskin/front.svg",
  22890. extra: 1469 / 1359,
  22891. bottom: 70 / 1540
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Micro",
  22898. height: math.unit(3, "inches")
  22899. },
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(5 + 11 / 12, "feet"),
  22903. default: true
  22904. },
  22905. {
  22906. name: "Macro",
  22907. height: math.unit(120, "feet")
  22908. },
  22909. ]
  22910. ))
  22911. characterMakers.push(() => makeCharacter(
  22912. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22913. {
  22914. front: {
  22915. height: math.unit(6, "feet"),
  22916. weight: math.unit(150, "lb"),
  22917. name: "Front",
  22918. image: {
  22919. source: "./media/characters/sammy/front.svg",
  22920. extra: 1193 / 1089,
  22921. bottom: 30.5 / 1226
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Macro",
  22928. height: math.unit(1700, "feet"),
  22929. default: true
  22930. },
  22931. {
  22932. name: "Examacro",
  22933. height: math.unit(2.5e9, "lightyears")
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(21, "meters"),
  22942. weight: math.unit(12, "tonnes"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/kuru/front.svg",
  22946. extra: 4301 / 3785,
  22947. bottom: 371.3 / 4691
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Macro",
  22954. height: math.unit(21, "meters"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(23, "meters"),
  22964. weight: math.unit(12.2, "tonnes"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/rakka/front.svg",
  22968. extra: 4670 / 4169,
  22969. bottom: 301 / 4968.7
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Macro",
  22976. height: math.unit(23, "meters"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22983. {
  22984. front: {
  22985. height: math.unit(6, "feet"),
  22986. weight: math.unit(150, "lb"),
  22987. name: "Front",
  22988. image: {
  22989. source: "./media/characters/rhys-feline/front.svg",
  22990. extra: 2488 / 2308,
  22991. bottom: 35.67 / 2519.19
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Really Small",
  22998. height: math.unit(1, "nm")
  22999. },
  23000. {
  23001. name: "Micro",
  23002. height: math.unit(4, "inches")
  23003. },
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(4 + 10 / 12, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(100, "feet")
  23012. },
  23013. {
  23014. name: "Megamacto",
  23015. height: math.unit(50, "miles")
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23021. {
  23022. side: {
  23023. height: math.unit(30, "feet"),
  23024. weight: math.unit(35000, "kg"),
  23025. name: "Side",
  23026. image: {
  23027. source: "./media/characters/alydar/side.svg",
  23028. extra: 234 / 222,
  23029. bottom: 6.5 / 241
  23030. }
  23031. },
  23032. front: {
  23033. height: math.unit(30, "feet"),
  23034. weight: math.unit(35000, "kg"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/alydar/front.svg",
  23038. extra: 223.37 / 210.2,
  23039. bottom: 22.3 / 246.76
  23040. }
  23041. },
  23042. top: {
  23043. height: math.unit(64.54, "feet"),
  23044. weight: math.unit(35000, "kg"),
  23045. name: "Top",
  23046. image: {
  23047. source: "./media/characters/alydar/top.svg"
  23048. }
  23049. },
  23050. anthro: {
  23051. height: math.unit(30, "feet"),
  23052. weight: math.unit(9000, "kg"),
  23053. name: "Anthro",
  23054. image: {
  23055. source: "./media/characters/alydar/anthro.svg",
  23056. extra: 432 / 421,
  23057. bottom: 7.18 / 440
  23058. }
  23059. },
  23060. maw: {
  23061. height: math.unit(11.693, "feet"),
  23062. name: "Maw",
  23063. image: {
  23064. source: "./media/characters/alydar/maw.svg"
  23065. }
  23066. },
  23067. head: {
  23068. height: math.unit(11.693, "feet"),
  23069. name: "Head",
  23070. image: {
  23071. source: "./media/characters/alydar/head.svg"
  23072. }
  23073. },
  23074. headAlt: {
  23075. height: math.unit(12.861, "feet"),
  23076. name: "Head (Alt)",
  23077. image: {
  23078. source: "./media/characters/alydar/head-alt.svg"
  23079. }
  23080. },
  23081. wing: {
  23082. height: math.unit(20.712, "feet"),
  23083. name: "Wing",
  23084. image: {
  23085. source: "./media/characters/alydar/wing.svg"
  23086. }
  23087. },
  23088. wingFeather: {
  23089. height: math.unit(9.662, "feet"),
  23090. name: "Wing Feather",
  23091. image: {
  23092. source: "./media/characters/alydar/wing-feather.svg"
  23093. }
  23094. },
  23095. countourFeather: {
  23096. height: math.unit(4.154, "feet"),
  23097. name: "Contour Feather",
  23098. image: {
  23099. source: "./media/characters/alydar/contour-feather.svg"
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Diplomatic",
  23106. height: math.unit(13, "feet"),
  23107. default: true
  23108. },
  23109. {
  23110. name: "Small",
  23111. height: math.unit(30, "feet")
  23112. },
  23113. {
  23114. name: "Normal",
  23115. height: math.unit(95, "feet"),
  23116. default: true
  23117. },
  23118. {
  23119. name: "Large",
  23120. height: math.unit(285, "feet")
  23121. },
  23122. {
  23123. name: "Incomprehensible",
  23124. height: math.unit(450, "megameters")
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23130. {
  23131. side: {
  23132. height: math.unit(11, "feet"),
  23133. weight: math.unit(1750, "kg"),
  23134. name: "Side",
  23135. image: {
  23136. source: "./media/characters/selicia/side.svg",
  23137. extra: 440 / 396,
  23138. bottom: 24.8 / 465.979
  23139. }
  23140. },
  23141. maw: {
  23142. height: math.unit(4.665, "feet"),
  23143. name: "Maw",
  23144. image: {
  23145. source: "./media/characters/selicia/maw.svg"
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(11, "feet"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23159. {
  23160. side: {
  23161. height: math.unit(2 + 6 / 12, "feet"),
  23162. weight: math.unit(30, "lb"),
  23163. name: "Side",
  23164. image: {
  23165. source: "./media/characters/layla/side.svg",
  23166. extra: 244 / 188,
  23167. bottom: 18.2 / 262.1
  23168. }
  23169. },
  23170. back: {
  23171. height: math.unit(2 + 6 / 12, "feet"),
  23172. weight: math.unit(30, "lb"),
  23173. name: "Back",
  23174. image: {
  23175. source: "./media/characters/layla/back.svg",
  23176. extra: 308 / 241.5,
  23177. bottom: 8.9 / 316.8
  23178. }
  23179. },
  23180. cumming: {
  23181. height: math.unit(2 + 6 / 12, "feet"),
  23182. weight: math.unit(30, "lb"),
  23183. name: "Cumming",
  23184. image: {
  23185. source: "./media/characters/layla/cumming.svg",
  23186. extra: 342 / 279,
  23187. bottom: 595 / 938
  23188. }
  23189. },
  23190. dickFlaccid: {
  23191. height: math.unit(2.595, "feet"),
  23192. name: "Flaccid Genitals",
  23193. image: {
  23194. source: "./media/characters/layla/dick-flaccid.svg"
  23195. }
  23196. },
  23197. dickErect: {
  23198. height: math.unit(2.359, "feet"),
  23199. name: "Erect Genitals",
  23200. image: {
  23201. source: "./media/characters/layla/dick-erect.svg"
  23202. }
  23203. },
  23204. dragon: {
  23205. height: math.unit(40, "feet"),
  23206. name: "Dragon",
  23207. image: {
  23208. source: "./media/characters/layla/dragon.svg",
  23209. extra: 610/535,
  23210. bottom: 367/977
  23211. }
  23212. },
  23213. taur: {
  23214. height: math.unit(30, "feet"),
  23215. name: "Taur",
  23216. image: {
  23217. source: "./media/characters/layla/taur.svg",
  23218. extra: 1268/1199,
  23219. bottom: 112/1380
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Micro",
  23226. height: math.unit(1, "inch")
  23227. },
  23228. {
  23229. name: "Small",
  23230. height: math.unit(1, "foot")
  23231. },
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(2 + 6 / 12, "feet"),
  23235. default: true
  23236. },
  23237. {
  23238. name: "Macro",
  23239. height: math.unit(200, "feet")
  23240. },
  23241. {
  23242. name: "Megamacro",
  23243. height: math.unit(1000, "miles")
  23244. },
  23245. {
  23246. name: "Planetary",
  23247. height: math.unit(8000, "miles")
  23248. },
  23249. {
  23250. name: "True Layla",
  23251. height: math.unit(200000 * 7, "multiverses")
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23257. {
  23258. back: {
  23259. height: math.unit(10.5, "feet"),
  23260. weight: math.unit(800, "lb"),
  23261. name: "Back",
  23262. image: {
  23263. source: "./media/characters/knox/back.svg",
  23264. extra: 1486 / 1089,
  23265. bottom: 107 / 1601.4
  23266. }
  23267. },
  23268. side: {
  23269. height: math.unit(10.5, "feet"),
  23270. weight: math.unit(800, "lb"),
  23271. name: "Side",
  23272. image: {
  23273. source: "./media/characters/knox/side.svg",
  23274. extra: 244 / 218,
  23275. bottom: 14 / 260
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Compact",
  23282. height: math.unit(10.5, "feet"),
  23283. default: true
  23284. },
  23285. {
  23286. name: "Dynamax",
  23287. height: math.unit(210, "feet")
  23288. },
  23289. {
  23290. name: "Full Macro",
  23291. height: math.unit(850, "feet")
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(6, "feet"),
  23300. weight: math.unit(152, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/shin-pikachu/front.svg",
  23304. extra: 1574 / 1480,
  23305. bottom: 53.3 / 1626
  23306. }
  23307. },
  23308. hand: {
  23309. height: math.unit(1.055, "feet"),
  23310. name: "Hand",
  23311. image: {
  23312. source: "./media/characters/shin-pikachu/hand.svg"
  23313. }
  23314. },
  23315. foot: {
  23316. height: math.unit(1.1, "feet"),
  23317. name: "Foot",
  23318. image: {
  23319. source: "./media/characters/shin-pikachu/foot.svg"
  23320. }
  23321. },
  23322. collar: {
  23323. height: math.unit(0.386, "feet"),
  23324. name: "Collar",
  23325. image: {
  23326. source: "./media/characters/shin-pikachu/collar.svg"
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Smallest",
  23333. height: math.unit(0.5, "inches")
  23334. },
  23335. {
  23336. name: "Micro",
  23337. height: math.unit(6, "inches")
  23338. },
  23339. {
  23340. name: "Normal",
  23341. height: math.unit(6, "feet"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(150, "feet")
  23347. },
  23348. ]
  23349. ))
  23350. characterMakers.push(() => makeCharacter(
  23351. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23352. {
  23353. front: {
  23354. height: math.unit(28, "feet"),
  23355. weight: math.unit(10500, "lb"),
  23356. name: "Front",
  23357. image: {
  23358. source: "./media/characters/kayda/front.svg",
  23359. extra: 1536 / 1428,
  23360. bottom: 68.7 / 1603
  23361. }
  23362. },
  23363. back: {
  23364. height: math.unit(28, "feet"),
  23365. weight: math.unit(10500, "lb"),
  23366. name: "Back",
  23367. image: {
  23368. source: "./media/characters/kayda/back.svg",
  23369. extra: 1557 / 1464,
  23370. bottom: 39.5 / 1597.49
  23371. }
  23372. },
  23373. dick: {
  23374. height: math.unit(3.858, "feet"),
  23375. name: "Dick",
  23376. image: {
  23377. source: "./media/characters/kayda/dick.svg"
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(28, "feet"),
  23385. default: true
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(10 + 11 / 12, "feet"),
  23394. weight: math.unit(1400, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/brian/front.svg",
  23398. extra: 737 / 692,
  23399. bottom: 55.4 / 785
  23400. }
  23401. },
  23402. },
  23403. [
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(10 + 11 / 12, "feet"),
  23407. default: true
  23408. },
  23409. ]
  23410. ))
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23413. {
  23414. front: {
  23415. height: math.unit(5 + 8 / 12, "feet"),
  23416. weight: math.unit(140, "lb"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/khemri/front.svg",
  23420. extra: 4780 / 4059,
  23421. bottom: 80.1 / 4859.25
  23422. }
  23423. },
  23424. },
  23425. [
  23426. {
  23427. name: "Micro",
  23428. height: math.unit(6, "inches")
  23429. },
  23430. {
  23431. name: "Normal",
  23432. height: math.unit(5 + 8 / 12, "feet"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23439. {
  23440. front: {
  23441. height: math.unit(13, "feet"),
  23442. weight: math.unit(1700, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/felix-braveheart/front.svg",
  23446. extra: 1222 / 1157,
  23447. bottom: 53.2 / 1280
  23448. }
  23449. },
  23450. back: {
  23451. height: math.unit(13, "feet"),
  23452. weight: math.unit(1700, "lb"),
  23453. name: "Back",
  23454. image: {
  23455. source: "./media/characters/felix-braveheart/back.svg",
  23456. extra: 1277 / 1203,
  23457. bottom: 50.2 / 1327
  23458. }
  23459. },
  23460. feral: {
  23461. height: math.unit(6, "feet"),
  23462. weight: math.unit(400, "lb"),
  23463. name: "Feral",
  23464. image: {
  23465. source: "./media/characters/felix-braveheart/feral.svg",
  23466. extra: 682 / 625,
  23467. bottom: 6.9 / 688
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(13, "feet"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23481. {
  23482. side: {
  23483. height: math.unit(5 + 11 / 12, "feet"),
  23484. weight: math.unit(1400, "lb"),
  23485. name: "Side",
  23486. image: {
  23487. source: "./media/characters/shadow-blade/side.svg",
  23488. extra: 1726 / 1267,
  23489. bottom: 58.4 / 1785
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(5 + 11 / 12, "feet"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(1 + 6 / 12, "feet"),
  23506. weight: math.unit(25, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/karla-halldor/front.svg",
  23510. extra: 1459 / 1383,
  23511. bottom: 12 / 1472
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(1 + 6 / 12, "feet"),
  23519. default: true
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23525. {
  23526. front: {
  23527. height: math.unit(6 + 2 / 12, "feet"),
  23528. weight: math.unit(160, "lb"),
  23529. name: "Front",
  23530. image: {
  23531. source: "./media/characters/ariam/front.svg",
  23532. extra: 714 / 617,
  23533. bottom: 23.4 / 737,
  23534. }
  23535. },
  23536. squatting: {
  23537. height: math.unit(4.1, "feet"),
  23538. weight: math.unit(160, "lb"),
  23539. name: "Squatting",
  23540. image: {
  23541. source: "./media/characters/ariam/squatting.svg",
  23542. extra: 2617 / 2112,
  23543. bottom: 61.2 / 2681,
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Normal",
  23550. height: math.unit(6 + 2 / 12, "feet"),
  23551. default: true
  23552. },
  23553. {
  23554. name: "Normal+",
  23555. height: math.unit(4, "meters")
  23556. },
  23557. {
  23558. name: "Macro",
  23559. height: math.unit(50, "meters")
  23560. },
  23561. {
  23562. name: "Macro+",
  23563. height: math.unit(100, "meters")
  23564. },
  23565. {
  23566. name: "Megamacro",
  23567. height: math.unit(20, "km")
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(1.67, "meters"),
  23576. weight: math.unit(140, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23580. extra: 438 / 410,
  23581. bottom: 0.75 / 439
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Shrunken",
  23588. height: math.unit(7.6, "cm")
  23589. },
  23590. {
  23591. name: "Human Scale",
  23592. height: math.unit(1.67, "meters")
  23593. },
  23594. {
  23595. name: "Wolxi Scale",
  23596. height: math.unit(36.7, "meters"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(1.73, "meters"),
  23606. weight: math.unit(240, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/izue-two-mothers/front.svg",
  23610. extra: 469 / 437,
  23611. bottom: 1.24 / 470.6
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Shrunken",
  23618. height: math.unit(7.86, "cm")
  23619. },
  23620. {
  23621. name: "Human Scale",
  23622. height: math.unit(1.73, "meters")
  23623. },
  23624. {
  23625. name: "Wolxi Scale",
  23626. height: math.unit(38, "meters"),
  23627. default: true
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(1.55, "meters"),
  23636. weight: math.unit(120, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/teeku-love-shack/front.svg",
  23640. extra: 387 / 362,
  23641. bottom: 1.51 / 388
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Shrunken",
  23648. height: math.unit(7, "cm")
  23649. },
  23650. {
  23651. name: "Human Scale",
  23652. height: math.unit(1.55, "meters")
  23653. },
  23654. {
  23655. name: "Wolxi Scale",
  23656. height: math.unit(34.1, "meters"),
  23657. default: true
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23663. {
  23664. front: {
  23665. height: math.unit(1.83, "meters"),
  23666. weight: math.unit(135, "lb"),
  23667. name: "Front",
  23668. image: {
  23669. source: "./media/characters/dejma-the-red/front.svg",
  23670. extra: 480 / 458,
  23671. bottom: 1.8 / 482
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Shrunken",
  23678. height: math.unit(8.3, "cm")
  23679. },
  23680. {
  23681. name: "Human Scale",
  23682. height: math.unit(1.83, "meters")
  23683. },
  23684. {
  23685. name: "Wolxi Scale",
  23686. height: math.unit(40, "meters"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(1.78, "meters"),
  23696. weight: math.unit(65, "kg"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/aki/front.svg",
  23700. extra: 452 / 415
  23701. }
  23702. },
  23703. frontNsfw: {
  23704. height: math.unit(1.78, "meters"),
  23705. weight: math.unit(65, "kg"),
  23706. name: "Front (NSFW)",
  23707. image: {
  23708. source: "./media/characters/aki/front-nsfw.svg",
  23709. extra: 452 / 415
  23710. }
  23711. },
  23712. back: {
  23713. height: math.unit(1.78, "meters"),
  23714. weight: math.unit(65, "kg"),
  23715. name: "Back",
  23716. image: {
  23717. source: "./media/characters/aki/back.svg",
  23718. extra: 452 / 415
  23719. }
  23720. },
  23721. rump: {
  23722. height: math.unit(2.05, "feet"),
  23723. name: "Rump",
  23724. image: {
  23725. source: "./media/characters/aki/rump.svg"
  23726. }
  23727. },
  23728. dick: {
  23729. height: math.unit(0.95, "feet"),
  23730. name: "Dick",
  23731. image: {
  23732. source: "./media/characters/aki/dick.svg"
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Micro",
  23739. height: math.unit(15, "cm")
  23740. },
  23741. {
  23742. name: "Normal",
  23743. height: math.unit(178, "cm"),
  23744. default: true
  23745. },
  23746. {
  23747. name: "Macro",
  23748. height: math.unit(214, "m")
  23749. },
  23750. {
  23751. name: "Macro+",
  23752. height: math.unit(534, "m")
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23758. {
  23759. front: {
  23760. height: math.unit(5 + 5 / 12, "feet"),
  23761. weight: math.unit(120, "lb"),
  23762. name: "Front",
  23763. image: {
  23764. source: "./media/characters/ari/front.svg",
  23765. extra: 714.5 / 682,
  23766. bottom: 8 / 722.5
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(5 + 5 / 12, "feet")
  23774. },
  23775. {
  23776. name: "Macro",
  23777. height: math.unit(100, "feet"),
  23778. default: true
  23779. },
  23780. {
  23781. name: "Megamacro",
  23782. height: math.unit(100, "miles")
  23783. },
  23784. {
  23785. name: "Gigamacro",
  23786. height: math.unit(80000, "miles")
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23792. {
  23793. side: {
  23794. height: math.unit(9, "feet"),
  23795. weight: math.unit(400, "kg"),
  23796. name: "Side",
  23797. image: {
  23798. source: "./media/characters/bolt/side.svg",
  23799. extra: 1126 / 896,
  23800. bottom: 60 / 1187.3,
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Micro",
  23807. height: math.unit(5, "inches")
  23808. },
  23809. {
  23810. name: "Normal",
  23811. height: math.unit(9, "feet"),
  23812. default: true
  23813. },
  23814. {
  23815. name: "Macro",
  23816. height: math.unit(700, "feet")
  23817. },
  23818. {
  23819. name: "Max Size",
  23820. height: math.unit(1.52e22, "yottameters")
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23826. {
  23827. front: {
  23828. height: math.unit(4.53, "meters"),
  23829. weight: math.unit(3, "tons"),
  23830. name: "Front",
  23831. image: {
  23832. source: "./media/characters/draekon-sylviar/front.svg",
  23833. extra: 1228 / 1068,
  23834. bottom: 41 / 1270
  23835. }
  23836. },
  23837. tail: {
  23838. height: math.unit(1.772, "meter"),
  23839. name: "Tail",
  23840. image: {
  23841. source: "./media/characters/draekon-sylviar/tail.svg"
  23842. }
  23843. },
  23844. head: {
  23845. height: math.unit(1.331, "meter"),
  23846. name: "Head",
  23847. image: {
  23848. source: "./media/characters/draekon-sylviar/head.svg"
  23849. }
  23850. },
  23851. hand: {
  23852. height: math.unit(0.564, "meter"),
  23853. name: "Hand",
  23854. image: {
  23855. source: "./media/characters/draekon-sylviar/hand.svg"
  23856. }
  23857. },
  23858. foot: {
  23859. height: math.unit(0.621, "meter"),
  23860. name: "Foot",
  23861. image: {
  23862. source: "./media/characters/draekon-sylviar/foot.svg",
  23863. bottom: 32 / 324
  23864. }
  23865. },
  23866. dick: {
  23867. height: math.unit(61, "cm"),
  23868. name: "Dick",
  23869. image: {
  23870. source: "./media/characters/draekon-sylviar/dick.svg"
  23871. }
  23872. },
  23873. dickseparated: {
  23874. height: math.unit(61, "cm"),
  23875. name: "Dick-separated",
  23876. image: {
  23877. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Small",
  23884. height: math.unit(4.53 / 2, "meters"),
  23885. default: true
  23886. },
  23887. {
  23888. name: "Normal",
  23889. height: math.unit(4.53, "meters"),
  23890. default: true
  23891. },
  23892. {
  23893. name: "Large",
  23894. height: math.unit(4.53 * 2, "meters"),
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23900. {
  23901. front: {
  23902. height: math.unit(6 + 2 / 12, "feet"),
  23903. weight: math.unit(180, "lb"),
  23904. name: "Front",
  23905. image: {
  23906. source: "./media/characters/brawler/front.svg",
  23907. extra: 3301 / 3027,
  23908. bottom: 138 / 3439
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(6 + 2 / 12, "feet"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(11, "feet"),
  23925. weight: math.unit(1000, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/alex/front.svg",
  23929. bottom: 44.5 / 620
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Micro",
  23936. height: math.unit(5, "inches")
  23937. },
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(11, "feet"),
  23941. default: true
  23942. },
  23943. {
  23944. name: "Macro",
  23945. height: math.unit(9.5e9, "feet")
  23946. },
  23947. {
  23948. name: "Max Size",
  23949. height: math.unit(1.4e283, "yottameters")
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23955. {
  23956. female: {
  23957. height: math.unit(29.9, "m"),
  23958. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23959. name: "Female",
  23960. image: {
  23961. source: "./media/characters/zenari/female.svg",
  23962. extra: 3281.6 / 3217,
  23963. bottom: 72.2 / 3353
  23964. }
  23965. },
  23966. male: {
  23967. height: math.unit(27.7, "m"),
  23968. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23969. name: "Male",
  23970. image: {
  23971. source: "./media/characters/zenari/male.svg",
  23972. extra: 3008 / 2991,
  23973. bottom: 54.6 / 3069
  23974. }
  23975. },
  23976. },
  23977. [
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(29.7, "meters"),
  23981. default: true
  23982. },
  23983. ]
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23987. {
  23988. female: {
  23989. height: math.unit(23.8, "m"),
  23990. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23991. name: "Female",
  23992. image: {
  23993. source: "./media/characters/mactarian/female.svg",
  23994. extra: 2662 / 2569,
  23995. bottom: 73 / 2736
  23996. }
  23997. },
  23998. male: {
  23999. height: math.unit(23.8, "m"),
  24000. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24001. name: "Male",
  24002. image: {
  24003. source: "./media/characters/mactarian/male.svg",
  24004. extra: 2673 / 2600,
  24005. bottom: 76 / 2750
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Macro",
  24012. height: math.unit(23.8, "meters"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24019. {
  24020. female: {
  24021. height: math.unit(19.3, "m"),
  24022. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24023. name: "Female",
  24024. image: {
  24025. source: "./media/characters/umok/female.svg",
  24026. extra: 2186 / 2078,
  24027. bottom: 87 / 2277
  24028. }
  24029. },
  24030. male: {
  24031. height: math.unit(19.5, "m"),
  24032. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24033. name: "Male",
  24034. image: {
  24035. source: "./media/characters/umok/male.svg",
  24036. extra: 2233 / 2140,
  24037. bottom: 24.4 / 2258
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Macro",
  24044. height: math.unit(19.3, "meters"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24051. {
  24052. female: {
  24053. height: math.unit(26.15, "m"),
  24054. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24055. name: "Female",
  24056. image: {
  24057. source: "./media/characters/joraxian/female.svg",
  24058. extra: 2912 / 2824,
  24059. bottom: 36 / 2956
  24060. }
  24061. },
  24062. male: {
  24063. height: math.unit(25.4, "m"),
  24064. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24065. name: "Male",
  24066. image: {
  24067. source: "./media/characters/joraxian/male.svg",
  24068. extra: 2877 / 2721,
  24069. bottom: 82 / 2967
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Macro",
  24076. height: math.unit(26.15, "meters"),
  24077. default: true
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24083. {
  24084. female: {
  24085. height: math.unit(21.6, "m"),
  24086. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24087. name: "Female",
  24088. image: {
  24089. source: "./media/characters/sthara/female.svg",
  24090. extra: 2516 / 2347,
  24091. bottom: 21.5 / 2537
  24092. }
  24093. },
  24094. male: {
  24095. height: math.unit(24, "m"),
  24096. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24097. name: "Male",
  24098. image: {
  24099. source: "./media/characters/sthara/male.svg",
  24100. extra: 2732 / 2607,
  24101. bottom: 23 / 2732
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(21.6, "meters"),
  24109. default: true
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(6 + 4 / 12, "feet"),
  24118. weight: math.unit(175, "lb"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/luka-bryzant/front.svg",
  24122. extra: 311 / 289,
  24123. bottom: 4 / 315
  24124. }
  24125. },
  24126. back: {
  24127. height: math.unit(6 + 4 / 12, "feet"),
  24128. weight: math.unit(175, "lb"),
  24129. name: "Back",
  24130. image: {
  24131. source: "./media/characters/luka-bryzant/back.svg",
  24132. extra: 311 / 289,
  24133. bottom: 3.8 / 313.7
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Micro",
  24140. height: math.unit(10, "inches")
  24141. },
  24142. {
  24143. name: "Normal",
  24144. height: math.unit(6 + 4 / 12, "feet"),
  24145. default: true
  24146. },
  24147. {
  24148. name: "Large",
  24149. height: math.unit(12, "feet")
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24155. {
  24156. front: {
  24157. height: math.unit(5 + 7 / 12, "feet"),
  24158. weight: math.unit(185, "lb"),
  24159. name: "Front",
  24160. image: {
  24161. source: "./media/characters/aman-aquila/front.svg",
  24162. extra: 1013 / 976,
  24163. bottom: 45.6 / 1057
  24164. }
  24165. },
  24166. side: {
  24167. height: math.unit(5 + 7 / 12, "feet"),
  24168. weight: math.unit(185, "lb"),
  24169. name: "Side",
  24170. image: {
  24171. source: "./media/characters/aman-aquila/side.svg",
  24172. extra: 1054 / 1011,
  24173. bottom: 15 / 1070
  24174. }
  24175. },
  24176. back: {
  24177. height: math.unit(5 + 7 / 12, "feet"),
  24178. weight: math.unit(185, "lb"),
  24179. name: "Back",
  24180. image: {
  24181. source: "./media/characters/aman-aquila/back.svg",
  24182. extra: 1026 / 970,
  24183. bottom: 12 / 1039
  24184. }
  24185. },
  24186. head: {
  24187. height: math.unit(1.211, "feet"),
  24188. name: "Head",
  24189. image: {
  24190. source: "./media/characters/aman-aquila/head.svg",
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Minimicro",
  24197. height: math.unit(0.057, "inches")
  24198. },
  24199. {
  24200. name: "Micro",
  24201. height: math.unit(7, "inches")
  24202. },
  24203. {
  24204. name: "Mini",
  24205. height: math.unit(3 + 7 / 12, "feet")
  24206. },
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(5 + 7 / 12, "feet"),
  24210. default: true
  24211. },
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(157 + 7 / 12, "feet")
  24215. },
  24216. {
  24217. name: "Megamacro",
  24218. height: math.unit(1557 + 7 / 12, "feet")
  24219. },
  24220. {
  24221. name: "Gigamacro",
  24222. height: math.unit(15557 + 7 / 12, "feet")
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(3 + 2 / 12, "inches"),
  24231. weight: math.unit(0.3, "ounces"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/hiphae/front.svg",
  24235. extra: 1931 / 1683,
  24236. bottom: 24 / 1955
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(3 + 1 / 2, "inches"),
  24244. default: true
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(5 + 10 / 12, "feet"),
  24253. weight: math.unit(165, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/nicky/front.svg",
  24257. extra: 3144 / 2886,
  24258. bottom: 45.6 / 3192
  24259. }
  24260. },
  24261. back: {
  24262. height: math.unit(5 + 10 / 12, "feet"),
  24263. weight: math.unit(165, "lb"),
  24264. name: "Back",
  24265. image: {
  24266. source: "./media/characters/nicky/back.svg",
  24267. extra: 3055 / 2804,
  24268. bottom: 28.4 / 3087
  24269. }
  24270. },
  24271. frontclothed: {
  24272. height: math.unit(5 + 10 / 12, "feet"),
  24273. weight: math.unit(165, "lb"),
  24274. name: "Front-clothed",
  24275. image: {
  24276. source: "./media/characters/nicky/front-clothed.svg",
  24277. extra: 3184.9 / 2926.9,
  24278. bottom: 86.5 / 3239.9
  24279. }
  24280. },
  24281. foot: {
  24282. height: math.unit(1.16, "feet"),
  24283. name: "Foot",
  24284. image: {
  24285. source: "./media/characters/nicky/foot.svg"
  24286. }
  24287. },
  24288. feet: {
  24289. height: math.unit(1.34, "feet"),
  24290. name: "Feet",
  24291. image: {
  24292. source: "./media/characters/nicky/feet.svg"
  24293. }
  24294. },
  24295. maw: {
  24296. height: math.unit(0.9, "feet"),
  24297. name: "Maw",
  24298. image: {
  24299. source: "./media/characters/nicky/maw.svg"
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(5 + 10 / 12, "feet"),
  24307. default: true
  24308. },
  24309. {
  24310. name: "Macro",
  24311. height: math.unit(60, "feet")
  24312. },
  24313. {
  24314. name: "Megamacro",
  24315. height: math.unit(1, "mile")
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24321. {
  24322. side: {
  24323. height: math.unit(10, "feet"),
  24324. weight: math.unit(600, "lb"),
  24325. name: "Side",
  24326. image: {
  24327. source: "./media/characters/blair/side.svg",
  24328. bottom: 16.6 / 475,
  24329. extra: 458 / 431
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Micro",
  24336. height: math.unit(8, "inches")
  24337. },
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(10, "feet"),
  24341. default: true
  24342. },
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(180, "feet")
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(5 + 4 / 12, "feet"),
  24354. weight: math.unit(125, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/fisher/front.svg",
  24358. extra: 444 / 390,
  24359. bottom: 2 / 444.8
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Micro",
  24366. height: math.unit(4, "inches")
  24367. },
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(5 + 4 / 12, "feet"),
  24371. default: true
  24372. },
  24373. {
  24374. name: "Macro",
  24375. height: math.unit(100, "feet")
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24381. {
  24382. front: {
  24383. height: math.unit(6.71, "feet"),
  24384. weight: math.unit(200, "lb"),
  24385. capacity: math.unit(1000000, "people"),
  24386. name: "Front",
  24387. image: {
  24388. source: "./media/characters/gliss/front.svg",
  24389. extra: 2347 / 2231,
  24390. bottom: 113 / 2462
  24391. }
  24392. },
  24393. hammerspaceSize: {
  24394. height: math.unit(6.71 * 717, "feet"),
  24395. weight: math.unit(200, "lb"),
  24396. capacity: math.unit(1000000, "people"),
  24397. name: "Hammerspace Size",
  24398. image: {
  24399. source: "./media/characters/gliss/front.svg",
  24400. extra: 2347 / 2231,
  24401. bottom: 113 / 2462
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(6.71, "feet"),
  24409. default: true
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24415. {
  24416. side: {
  24417. height: math.unit(1.44, "m"),
  24418. weight: math.unit(80, "kg"),
  24419. name: "Side",
  24420. image: {
  24421. source: "./media/characters/dune-anderson/side.svg",
  24422. bottom: 49 / 1426
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Wolf-sized",
  24429. height: math.unit(1.44, "meters")
  24430. },
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(5.05, "meters"),
  24434. default: true
  24435. },
  24436. {
  24437. name: "Big",
  24438. height: math.unit(14.4, "meters")
  24439. },
  24440. {
  24441. name: "Huge",
  24442. height: math.unit(144, "meters")
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(7, "feet"),
  24451. weight: math.unit(425, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/hind/front.svg",
  24455. extra: 2091 / 1860,
  24456. bottom: 129 / 2220
  24457. }
  24458. },
  24459. back: {
  24460. height: math.unit(7, "feet"),
  24461. weight: math.unit(425, "lb"),
  24462. name: "Back",
  24463. image: {
  24464. source: "./media/characters/hind/back.svg",
  24465. extra: 2091 / 1860,
  24466. bottom: 24.6 / 2309
  24467. }
  24468. },
  24469. tail: {
  24470. height: math.unit(2.8, "feet"),
  24471. name: "Tail",
  24472. image: {
  24473. source: "./media/characters/hind/tail.svg"
  24474. }
  24475. },
  24476. head: {
  24477. height: math.unit(2.55, "feet"),
  24478. name: "Head",
  24479. image: {
  24480. source: "./media/characters/hind/head.svg"
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "XS",
  24487. height: math.unit(0.7, "feet")
  24488. },
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(7, "feet"),
  24492. default: true
  24493. },
  24494. {
  24495. name: "XL",
  24496. height: math.unit(70, "feet")
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(6, "feet"),
  24505. weight: math.unit(150, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/dylan-skaven/front.svg",
  24509. extra: 2318 / 2063,
  24510. bottom: 93.4 / 2410
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Nano",
  24517. height: math.unit(1, "mm")
  24518. },
  24519. {
  24520. name: "Micro",
  24521. height: math.unit(1, "cm")
  24522. },
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(2.1, "meters"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(7 + 5 / 12, "feet"),
  24535. weight: math.unit(357, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/solex-draconov/front.svg",
  24539. extra: 1993 / 1865,
  24540. bottom: 117 / 2111
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Natural Height",
  24547. height: math.unit(7 + 5 / 12, "feet"),
  24548. default: true
  24549. },
  24550. {
  24551. name: "Macro",
  24552. height: math.unit(350, "feet")
  24553. },
  24554. {
  24555. name: "Macro+",
  24556. height: math.unit(1000, "feet")
  24557. },
  24558. {
  24559. name: "Megamacro",
  24560. height: math.unit(20, "km")
  24561. },
  24562. {
  24563. name: "Megamacro+",
  24564. height: math.unit(1000, "km")
  24565. },
  24566. {
  24567. name: "Gigamacro",
  24568. height: math.unit(2.5, "Gm")
  24569. },
  24570. {
  24571. name: "Teramacro",
  24572. height: math.unit(15, "Tm")
  24573. },
  24574. {
  24575. name: "Galactic",
  24576. height: math.unit(30, "Zm")
  24577. },
  24578. {
  24579. name: "Universal",
  24580. height: math.unit(21000, "Ym")
  24581. },
  24582. {
  24583. name: "Omniversal",
  24584. height: math.unit(9.861e50, "Ym")
  24585. },
  24586. {
  24587. name: "Existential",
  24588. height: math.unit(1e300, "meters")
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24594. {
  24595. side: {
  24596. height: math.unit(25, "feet"),
  24597. weight: math.unit(90000, "lb"),
  24598. name: "Side",
  24599. image: {
  24600. source: "./media/characters/mandarax/side.svg",
  24601. extra: 614 / 332,
  24602. bottom: 55 / 630
  24603. }
  24604. },
  24605. head: {
  24606. height: math.unit(11.4, "feet"),
  24607. name: "Head",
  24608. image: {
  24609. source: "./media/characters/mandarax/head.svg"
  24610. }
  24611. },
  24612. belly: {
  24613. height: math.unit(33, "feet"),
  24614. name: "Belly",
  24615. capacity: math.unit(500, "people"),
  24616. image: {
  24617. source: "./media/characters/mandarax/belly.svg"
  24618. }
  24619. },
  24620. dick: {
  24621. height: math.unit(8.46, "feet"),
  24622. name: "Dick",
  24623. image: {
  24624. source: "./media/characters/mandarax/dick.svg"
  24625. }
  24626. },
  24627. top: {
  24628. height: math.unit(28, "meters"),
  24629. name: "Top",
  24630. image: {
  24631. source: "./media/characters/mandarax/top.svg"
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(25, "feet"),
  24639. default: true
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(5, "feet"),
  24648. weight: math.unit(90, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/pixil/front.svg",
  24652. extra: 2000 / 1618,
  24653. bottom: 12.3 / 2011
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(5, "feet"),
  24661. default: true
  24662. },
  24663. {
  24664. name: "Megamacro",
  24665. height: math.unit(10, "miles"),
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(7 + 2 / 12, "feet"),
  24674. weight: math.unit(200, "lb"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/angel/front.svg",
  24678. extra: 1830 / 1737,
  24679. bottom: 22.6 / 1854,
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(7 + 2 / 12, "feet"),
  24687. default: true
  24688. },
  24689. {
  24690. name: "Macro",
  24691. height: math.unit(1000, "feet")
  24692. },
  24693. {
  24694. name: "Megamacro",
  24695. height: math.unit(2, "miles")
  24696. },
  24697. {
  24698. name: "Gigamacro",
  24699. height: math.unit(20, "earths")
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(5, "feet"),
  24708. weight: math.unit(180, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/mekana/front.svg",
  24712. extra: 1671 / 1605,
  24713. bottom: 3.5 / 1691
  24714. }
  24715. },
  24716. side: {
  24717. height: math.unit(5, "feet"),
  24718. weight: math.unit(180, "lb"),
  24719. name: "Side",
  24720. image: {
  24721. source: "./media/characters/mekana/side.svg",
  24722. extra: 1671 / 1605,
  24723. bottom: 3.5 / 1691
  24724. }
  24725. },
  24726. back: {
  24727. height: math.unit(5, "feet"),
  24728. weight: math.unit(180, "lb"),
  24729. name: "Back",
  24730. image: {
  24731. source: "./media/characters/mekana/back.svg",
  24732. extra: 1671 / 1605,
  24733. bottom: 3.5 / 1691
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Normal",
  24740. height: math.unit(5, "feet"),
  24741. default: true
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(4 + 6 / 12, "feet"),
  24750. weight: math.unit(80, "lb"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/pixie/front.svg",
  24754. extra: 1924 / 1825,
  24755. bottom: 22.4 / 1946
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Normal",
  24762. height: math.unit(4 + 6 / 12, "feet"),
  24763. default: true
  24764. },
  24765. {
  24766. name: "Macro",
  24767. height: math.unit(40, "feet")
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(2.1, "meters"),
  24776. weight: math.unit(200, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/the-lascivious/front.svg",
  24780. extra: 1 / 0.893,
  24781. bottom: 3.5 / 573.7
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Human Scale",
  24788. height: math.unit(2.1, "meters")
  24789. },
  24790. {
  24791. name: "Wolxi Scale",
  24792. height: math.unit(46.2, "m"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Boinker of Buildings",
  24797. height: math.unit(10, "km")
  24798. },
  24799. {
  24800. name: "Shagger of Skyscrapers",
  24801. height: math.unit(40, "km")
  24802. },
  24803. {
  24804. name: "Banger of Boroughs",
  24805. height: math.unit(4000, "km")
  24806. },
  24807. {
  24808. name: "Screwer of States",
  24809. height: math.unit(100000, "km")
  24810. },
  24811. {
  24812. name: "Pounder of Planets",
  24813. height: math.unit(2000000, "km")
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24819. {
  24820. front: {
  24821. height: math.unit(6, "feet"),
  24822. weight: math.unit(150, "lb"),
  24823. name: "Front",
  24824. image: {
  24825. source: "./media/characters/aj/front.svg",
  24826. extra: 2039 / 1562,
  24827. bottom: 40 / 2079
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(11 + 6 / 12, "feet"),
  24835. default: true
  24836. },
  24837. {
  24838. name: "Megamacro",
  24839. height: math.unit(60, "megameters")
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24845. {
  24846. side: {
  24847. height: math.unit(31 + 8 / 12, "feet"),
  24848. weight: math.unit(75000, "kg"),
  24849. name: "Side",
  24850. image: {
  24851. source: "./media/characters/koros/side.svg",
  24852. extra: 1442 / 1297,
  24853. bottom: 122.7 / 1562
  24854. }
  24855. },
  24856. dicksKingsCrown: {
  24857. height: math.unit(6, "feet"),
  24858. name: "Dicks (King's Crown)",
  24859. image: {
  24860. source: "./media/characters/koros/dicks-kings-crown.svg"
  24861. }
  24862. },
  24863. dicksTailSet: {
  24864. height: math.unit(3, "feet"),
  24865. name: "Dicks (Tail Set)",
  24866. image: {
  24867. source: "./media/characters/koros/dicks-tail-set.svg"
  24868. }
  24869. },
  24870. dickCumming: {
  24871. height: math.unit(7.98, "feet"),
  24872. name: "Dick (Cumming)",
  24873. image: {
  24874. source: "./media/characters/koros/dick-cumming.svg"
  24875. }
  24876. },
  24877. dicksBack: {
  24878. height: math.unit(5.9, "feet"),
  24879. name: "Dicks (Back)",
  24880. image: {
  24881. source: "./media/characters/koros/dicks-back.svg"
  24882. }
  24883. },
  24884. dicksFront: {
  24885. height: math.unit(3.72, "feet"),
  24886. name: "Dicks (Front)",
  24887. image: {
  24888. source: "./media/characters/koros/dicks-front.svg"
  24889. }
  24890. },
  24891. dicksPeeking: {
  24892. height: math.unit(3.0, "feet"),
  24893. name: "Dicks (Peeking)",
  24894. image: {
  24895. source: "./media/characters/koros/dicks-peeking.svg"
  24896. }
  24897. },
  24898. eye: {
  24899. height: math.unit(1.7, "feet"),
  24900. name: "Eye",
  24901. image: {
  24902. source: "./media/characters/koros/eye.svg"
  24903. }
  24904. },
  24905. headFront: {
  24906. height: math.unit(11.69, "feet"),
  24907. name: "Head (Front)",
  24908. image: {
  24909. source: "./media/characters/koros/head-front.svg"
  24910. }
  24911. },
  24912. headSide: {
  24913. height: math.unit(14, "feet"),
  24914. name: "Head (Side)",
  24915. image: {
  24916. source: "./media/characters/koros/head-side.svg"
  24917. }
  24918. },
  24919. leg: {
  24920. height: math.unit(17, "feet"),
  24921. name: "Leg",
  24922. image: {
  24923. source: "./media/characters/koros/leg.svg"
  24924. }
  24925. },
  24926. mawSide: {
  24927. height: math.unit(12.8, "feet"),
  24928. name: "Maw (Side)",
  24929. image: {
  24930. source: "./media/characters/koros/maw-side.svg"
  24931. }
  24932. },
  24933. mawSpitting: {
  24934. height: math.unit(17, "feet"),
  24935. name: "Maw (Spitting)",
  24936. image: {
  24937. source: "./media/characters/koros/maw-spitting.svg"
  24938. }
  24939. },
  24940. slit: {
  24941. height: math.unit(2.8, "feet"),
  24942. name: "Slit",
  24943. image: {
  24944. source: "./media/characters/koros/slit.svg"
  24945. }
  24946. },
  24947. stomach: {
  24948. height: math.unit(6.8, "feet"),
  24949. capacity: math.unit(20, "people"),
  24950. name: "Stomach",
  24951. image: {
  24952. source: "./media/characters/koros/stomach.svg"
  24953. }
  24954. },
  24955. wingspanBottom: {
  24956. height: math.unit(114, "feet"),
  24957. name: "Wingspan (Bottom)",
  24958. image: {
  24959. source: "./media/characters/koros/wingspan-bottom.svg"
  24960. }
  24961. },
  24962. wingspanTop: {
  24963. height: math.unit(104, "feet"),
  24964. name: "Wingspan (Top)",
  24965. image: {
  24966. source: "./media/characters/koros/wingspan-top.svg"
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Normal",
  24973. height: math.unit(31 + 8 / 12, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(18 + 5 / 12, "feet"),
  24983. weight: math.unit(3750, "kg"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/vexx/front.svg",
  24987. extra: 426 / 396,
  24988. bottom: 31.5 / 458
  24989. }
  24990. },
  24991. maw: {
  24992. height: math.unit(6, "feet"),
  24993. name: "Maw",
  24994. image: {
  24995. source: "./media/characters/vexx/maw.svg"
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(18 + 5 / 12, "feet"),
  25003. default: true
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25009. {
  25010. front: {
  25011. height: math.unit(17 + 6 / 12, "feet"),
  25012. weight: math.unit(150, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/baadra/front.svg",
  25016. extra: 3137 / 2890,
  25017. bottom: 168.4 / 3305
  25018. }
  25019. },
  25020. back: {
  25021. height: math.unit(17 + 6 / 12, "feet"),
  25022. weight: math.unit(150, "lb"),
  25023. name: "Back",
  25024. image: {
  25025. source: "./media/characters/baadra/back.svg",
  25026. extra: 3142 / 2890,
  25027. bottom: 220 / 3371
  25028. }
  25029. },
  25030. head: {
  25031. height: math.unit(5.45, "feet"),
  25032. name: "Head",
  25033. image: {
  25034. source: "./media/characters/baadra/head.svg"
  25035. }
  25036. },
  25037. headAngry: {
  25038. height: math.unit(4.95, "feet"),
  25039. name: "Head (Angry)",
  25040. image: {
  25041. source: "./media/characters/baadra/head-angry.svg"
  25042. }
  25043. },
  25044. headOpen: {
  25045. height: math.unit(6, "feet"),
  25046. name: "Head (Open)",
  25047. image: {
  25048. source: "./media/characters/baadra/head-open.svg"
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(17 + 6 / 12, "feet"),
  25056. default: true
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(7 + 3 / 12, "feet"),
  25065. weight: math.unit(180, "lb"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/juri/front.svg",
  25069. extra: 1401 / 1237,
  25070. bottom: 18.5 / 1418
  25071. }
  25072. },
  25073. side: {
  25074. height: math.unit(7 + 3 / 12, "feet"),
  25075. weight: math.unit(180, "lb"),
  25076. name: "Side",
  25077. image: {
  25078. source: "./media/characters/juri/side.svg",
  25079. extra: 1424 / 1242,
  25080. bottom: 18.5 / 1447
  25081. }
  25082. },
  25083. sitting: {
  25084. height: math.unit(6, "feet"),
  25085. weight: math.unit(180, "lb"),
  25086. name: "Sitting",
  25087. image: {
  25088. source: "./media/characters/juri/sitting.svg",
  25089. extra: 1270 / 1143,
  25090. bottom: 100 / 1343
  25091. }
  25092. },
  25093. back: {
  25094. height: math.unit(7 + 3 / 12, "feet"),
  25095. weight: math.unit(180, "lb"),
  25096. name: "Back",
  25097. image: {
  25098. source: "./media/characters/juri/back.svg",
  25099. extra: 1377 / 1240,
  25100. bottom: 23.7 / 1405
  25101. }
  25102. },
  25103. maw: {
  25104. height: math.unit(2.8, "feet"),
  25105. name: "Maw",
  25106. image: {
  25107. source: "./media/characters/juri/maw.svg"
  25108. }
  25109. },
  25110. stomach: {
  25111. height: math.unit(0.89, "feet"),
  25112. capacity: math.unit(4, "liters"),
  25113. name: "Stomach",
  25114. image: {
  25115. source: "./media/characters/juri/stomach.svg"
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(7 + 3 / 12, "feet"),
  25123. default: true
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25129. {
  25130. fox: {
  25131. height: math.unit(5 + 6 / 12, "feet"),
  25132. weight: math.unit(140, "lb"),
  25133. name: "Fox",
  25134. image: {
  25135. source: "./media/characters/maxene-sita/fox.svg",
  25136. extra: 146 / 138,
  25137. bottom: 2.1 / 148.19
  25138. }
  25139. },
  25140. foxLaying: {
  25141. height: math.unit(1.70, "feet"),
  25142. weight: math.unit(140, "lb"),
  25143. name: "Fox (Laying)",
  25144. image: {
  25145. source: "./media/characters/maxene-sita/fox-laying.svg",
  25146. extra: 910 / 572,
  25147. bottom: 71 / 981
  25148. }
  25149. },
  25150. kitsune: {
  25151. height: math.unit(10, "feet"),
  25152. weight: math.unit(800, "lb"),
  25153. name: "Kitsune",
  25154. image: {
  25155. source: "./media/characters/maxene-sita/kitsune.svg",
  25156. extra: 185 / 176,
  25157. bottom: 4.7 / 189.9
  25158. }
  25159. },
  25160. hellhound: {
  25161. height: math.unit(10, "feet"),
  25162. weight: math.unit(700, "lb"),
  25163. name: "Hellhound",
  25164. image: {
  25165. source: "./media/characters/maxene-sita/hellhound.svg",
  25166. extra: 1600 / 1545,
  25167. bottom: 81 / 1681
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(5 + 6 / 12, "feet"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25181. {
  25182. front: {
  25183. height: math.unit(3 + 4 / 12, "feet"),
  25184. weight: math.unit(70, "lb"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/maia/front.svg",
  25188. extra: 227 / 219.5,
  25189. bottom: 40 / 267
  25190. }
  25191. },
  25192. back: {
  25193. height: math.unit(3 + 4 / 12, "feet"),
  25194. weight: math.unit(70, "lb"),
  25195. name: "Back",
  25196. image: {
  25197. source: "./media/characters/maia/back.svg",
  25198. extra: 237 / 225
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(3 + 4 / 12, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(5 + 10 / 12, "feet"),
  25215. weight: math.unit(197, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/jabaro/front.svg",
  25219. extra: 225 / 216,
  25220. bottom: 5.06 / 230
  25221. }
  25222. },
  25223. back: {
  25224. height: math.unit(5 + 10 / 12, "feet"),
  25225. weight: math.unit(197, "lb"),
  25226. name: "Back",
  25227. image: {
  25228. source: "./media/characters/jabaro/back.svg",
  25229. extra: 225 / 219,
  25230. bottom: 1.9 / 227
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(5 + 10 / 12, "feet"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(5 + 8 / 12, "feet"),
  25247. weight: math.unit(139, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/risa/front.svg",
  25251. extra: 270 / 260,
  25252. bottom: 11.2 / 282
  25253. }
  25254. },
  25255. back: {
  25256. height: math.unit(5 + 8 / 12, "feet"),
  25257. weight: math.unit(139, "lb"),
  25258. name: "Back",
  25259. image: {
  25260. source: "./media/characters/risa/back.svg",
  25261. extra: 264 / 255,
  25262. bottom: 4 / 268
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(5 + 8 / 12, "feet"),
  25270. default: true
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(2 + 11 / 12, "feet"),
  25279. weight: math.unit(30, "lb"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/weatley/front.svg",
  25283. bottom: 10.7 / 414,
  25284. extra: 403.5 / 362
  25285. }
  25286. },
  25287. back: {
  25288. height: math.unit(2 + 11 / 12, "feet"),
  25289. weight: math.unit(30, "lb"),
  25290. name: "Back",
  25291. image: {
  25292. source: "./media/characters/weatley/back.svg",
  25293. bottom: 10.7 / 414,
  25294. extra: 403.5 / 362
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Normal",
  25301. height: math.unit(2 + 11 / 12, "feet"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(5 + 2 / 12, "feet"),
  25311. weight: math.unit(50, "kg"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/mercury-crescent/front.svg",
  25315. extra: 1088 / 1033,
  25316. bottom: 18.9 / 1109
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Normal",
  25323. height: math.unit(5 + 2 / 12, "feet"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(2, "feet"),
  25333. weight: math.unit(15, "kg"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/diamond-jones/front.svg",
  25337. bottom: 16 / 568
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(2, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(3, "feet"),
  25354. weight: math.unit(30, "kg"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/sweet-bit/front.svg",
  25358. extra: 675 / 567,
  25359. bottom: 27.7 / 703
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(3, "feet"),
  25367. default: true
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25373. {
  25374. side: {
  25375. height: math.unit(9.178, "feet"),
  25376. weight: math.unit(500, "lb"),
  25377. name: "Side",
  25378. image: {
  25379. source: "./media/characters/umbrazen/side.svg",
  25380. extra: 1730 / 1473,
  25381. bottom: 34.6 / 1765
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(9.178, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(10, "feet"),
  25398. weight: math.unit(750, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/arlist/front.svg",
  25402. extra: 961 / 778,
  25403. bottom: 6.2 / 986
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(10, "feet"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(5 + 1 / 12, "feet"),
  25420. weight: math.unit(110, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/aradel/front.svg",
  25424. extra: 324 / 303,
  25425. bottom: 3.6 / 329.4
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(5 + 1 / 12, "feet"),
  25433. default: true
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(3 + 8 / 12, "feet"),
  25442. weight: math.unit(50, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/serryn/front.svg",
  25446. extra: 1792 / 1656,
  25447. bottom: 43.5 / 1840
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(3 + 8 / 12, "feet"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Xavier Thyme" },
  25461. {
  25462. front: {
  25463. height: math.unit(7 + 10 / 12, "feet"),
  25464. weight: math.unit(255, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/xavier-thyme/front.svg",
  25468. extra: 3733 / 3642,
  25469. bottom: 131 / 3869
  25470. }
  25471. },
  25472. frontRaven: {
  25473. height: math.unit(7 + 10 / 12, "feet"),
  25474. weight: math.unit(255, "lb"),
  25475. name: "Front (Raven)",
  25476. image: {
  25477. source: "./media/characters/xavier-thyme/front-raven.svg",
  25478. extra: 4385 / 3642,
  25479. bottom: 131 / 4517
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(7 + 10 / 12, "feet"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(1.6, "m"),
  25496. weight: math.unit(50, "kg"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/kiki/front.svg",
  25500. extra: 4682 / 3610,
  25501. bottom: 115 / 4777
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(1.6, "meters"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(50, "m"),
  25518. weight: math.unit(500, "tonnes"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/ryoko/front.svg",
  25522. extra: 4632 / 3926,
  25523. bottom: 193 / 4823
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(50, "meters"),
  25531. default: true
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(30, "m"),
  25540. weight: math.unit(22, "tonnes"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/elio/front.svg",
  25544. extra: 4582 / 3720,
  25545. bottom: 236 / 4828
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(30, "meters"),
  25553. default: true
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(6 + 3 / 12, "feet"),
  25562. weight: math.unit(120, "lb"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/azura/front.svg",
  25566. extra: 1149 / 1135,
  25567. bottom: 45 / 1194
  25568. }
  25569. },
  25570. frontClothed: {
  25571. height: math.unit(6 + 3 / 12, "feet"),
  25572. weight: math.unit(120, "lb"),
  25573. name: "Front (Clothed)",
  25574. image: {
  25575. source: "./media/characters/azura/front-clothed.svg",
  25576. extra: 1149 / 1135,
  25577. bottom: 45 / 1194
  25578. }
  25579. },
  25580. },
  25581. [
  25582. {
  25583. name: "Normal",
  25584. height: math.unit(6 + 3 / 12, "feet"),
  25585. default: true
  25586. },
  25587. {
  25588. name: "Macro",
  25589. height: math.unit(20 + 6 / 12, "feet")
  25590. },
  25591. {
  25592. name: "Megamacro",
  25593. height: math.unit(12, "miles")
  25594. },
  25595. {
  25596. name: "Gigamacro",
  25597. height: math.unit(10000, "miles")
  25598. },
  25599. {
  25600. name: "Teramacro",
  25601. height: math.unit(900000, "miles")
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(12, "feet"),
  25610. weight: math.unit(1, "ton"),
  25611. capacity: math.unit(660000, "gallons"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/zeus/front.svg",
  25615. extra: 5005 / 4717,
  25616. bottom: 363 / 5388
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(12, "feet")
  25624. },
  25625. {
  25626. name: "Preferred Size",
  25627. height: math.unit(0.5, "miles"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Giga Horse",
  25632. height: math.unit(300, "miles")
  25633. },
  25634. {
  25635. name: "Riding Planets",
  25636. height: math.unit(30, "megameters")
  25637. },
  25638. {
  25639. name: "Cosmic Giant",
  25640. height: math.unit(3, "zettameters")
  25641. },
  25642. {
  25643. name: "Breeding God",
  25644. height: math.unit(9.92e22, "yottameters")
  25645. },
  25646. ]
  25647. ))
  25648. characterMakers.push(() => makeCharacter(
  25649. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25650. {
  25651. side: {
  25652. height: math.unit(9, "feet"),
  25653. weight: math.unit(1500, "kg"),
  25654. name: "Side",
  25655. image: {
  25656. source: "./media/characters/fang/side.svg",
  25657. extra: 924 / 866,
  25658. bottom: 47.5 / 972.3
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Normal",
  25665. height: math.unit(9, "feet"),
  25666. default: true
  25667. },
  25668. {
  25669. name: "Macro",
  25670. height: math.unit(75 + 6 / 12, "feet")
  25671. },
  25672. {
  25673. name: "Teramacro",
  25674. height: math.unit(50000, "miles")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(10, "feet"),
  25683. weight: math.unit(2, "tons"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/rekhit/front.svg",
  25687. extra: 2796 / 2590,
  25688. bottom: 225 / 3022
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(10, "feet"),
  25696. default: true
  25697. },
  25698. {
  25699. name: "Macro",
  25700. height: math.unit(500, "feet")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Dahlia Verrick" },
  25706. {
  25707. front: {
  25708. height: math.unit(7 + 6.451 / 12, "feet"),
  25709. weight: math.unit(310, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/dahlia-verrick/front.svg",
  25713. extra: 1488 / 1365,
  25714. bottom: 6.2 / 1495
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(7 + 6.451 / 12, "feet"),
  25719. weight: math.unit(310, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/dahlia-verrick/back.svg",
  25723. extra: 1472 / 1351,
  25724. bottom: 5.28 / 1477
  25725. }
  25726. },
  25727. frontBusiness: {
  25728. height: math.unit(7 + 6.451 / 12, "feet"),
  25729. weight: math.unit(200, "lb"),
  25730. name: "Front (Business)",
  25731. image: {
  25732. source: "./media/characters/dahlia-verrick/front-business.svg",
  25733. extra: 1478 / 1381,
  25734. bottom: 5.5 / 1484
  25735. }
  25736. },
  25737. frontCasual: {
  25738. height: math.unit(7 + 6.451 / 12, "feet"),
  25739. weight: math.unit(200, "lb"),
  25740. name: "Front (Casual)",
  25741. image: {
  25742. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25743. extra: 1478 / 1381,
  25744. bottom: 5.5 / 1484
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Travel-Sized",
  25751. height: math.unit(7.45, "inches")
  25752. },
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(7 + 6.451 / 12, "feet"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Hitting the Town",
  25760. height: math.unit(37 + 8 / 12, "feet")
  25761. },
  25762. {
  25763. name: "Stomp in the Suburbs",
  25764. height: math.unit(964 + 9.728 / 12, "feet")
  25765. },
  25766. {
  25767. name: "Sit on the City",
  25768. height: math.unit(61747 + 10.592 / 12, "feet")
  25769. },
  25770. {
  25771. name: "Glomp the Globe",
  25772. height: math.unit(252919327 + 4.832 / 12, "feet")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(6 + 4 / 12, "feet"),
  25781. weight: math.unit(320, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/balina-mahigan/front.svg",
  25785. extra: 447 / 428,
  25786. bottom: 18 / 466
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(6 + 4 / 12, "feet"),
  25791. weight: math.unit(320, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/balina-mahigan/back.svg",
  25795. extra: 445 / 428,
  25796. bottom: 4.07 / 448
  25797. }
  25798. },
  25799. arm: {
  25800. height: math.unit(1.88, "feet"),
  25801. name: "Arm",
  25802. image: {
  25803. source: "./media/characters/balina-mahigan/arm.svg"
  25804. }
  25805. },
  25806. backPort: {
  25807. height: math.unit(0.685, "feet"),
  25808. name: "Back Port",
  25809. image: {
  25810. source: "./media/characters/balina-mahigan/back-port.svg"
  25811. }
  25812. },
  25813. hoofpaw: {
  25814. height: math.unit(1.41, "feet"),
  25815. name: "Hoofpaw",
  25816. image: {
  25817. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25818. }
  25819. },
  25820. leftHandBack: {
  25821. height: math.unit(0.938, "feet"),
  25822. name: "Left Hand (Back)",
  25823. image: {
  25824. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25825. }
  25826. },
  25827. leftHandFront: {
  25828. height: math.unit(0.938, "feet"),
  25829. name: "Left Hand (Front)",
  25830. image: {
  25831. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25832. }
  25833. },
  25834. rightHandBack: {
  25835. height: math.unit(0.95, "feet"),
  25836. name: "Right Hand (Back)",
  25837. image: {
  25838. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25839. }
  25840. },
  25841. rightHandFront: {
  25842. height: math.unit(0.95, "feet"),
  25843. name: "Right Hand (Front)",
  25844. image: {
  25845. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(6 + 4 / 12, "feet"),
  25853. default: true
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(6, "feet"),
  25862. weight: math.unit(320, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/balina-mejeri/front.svg",
  25866. extra: 517 / 488,
  25867. bottom: 44.2 / 561
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(6 + 4 / 12, "feet")
  25875. },
  25876. {
  25877. name: "Business",
  25878. height: math.unit(155, "feet"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25885. {
  25886. kneeling: {
  25887. height: math.unit(6 + 4 / 12, "feet"),
  25888. weight: math.unit(300 * 20, "lb"),
  25889. name: "Kneeling",
  25890. image: {
  25891. source: "./media/characters/balbarian/kneeling.svg",
  25892. extra: 922 / 862,
  25893. bottom: 42.4 / 965
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(6 + 4 / 12, "feet")
  25901. },
  25902. {
  25903. name: "Treasured",
  25904. height: math.unit(18 + 9 / 12, "feet"),
  25905. default: true
  25906. },
  25907. {
  25908. name: "Macro",
  25909. height: math.unit(900, "feet")
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(6 + 4 / 12, "feet"),
  25918. weight: math.unit(325, "lb"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/balina-amarini/front.svg",
  25922. extra: 415 / 403,
  25923. bottom: 19 / 433.4
  25924. }
  25925. },
  25926. back: {
  25927. height: math.unit(6 + 4 / 12, "feet"),
  25928. weight: math.unit(325, "lb"),
  25929. name: "Back",
  25930. image: {
  25931. source: "./media/characters/balina-amarini/back.svg",
  25932. extra: 415 / 403,
  25933. bottom: 13.5 / 432
  25934. }
  25935. },
  25936. overdrive: {
  25937. height: math.unit(6 + 4 / 12, "feet"),
  25938. weight: math.unit(400, "lb"),
  25939. name: "Overdrive",
  25940. image: {
  25941. source: "./media/characters/balina-amarini/overdrive.svg",
  25942. extra: 269 / 259,
  25943. bottom: 12 / 282
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Boom",
  25950. height: math.unit(9 + 10 / 12, "feet"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Macro",
  25955. height: math.unit(280, "feet")
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25961. {
  25962. goddess: {
  25963. height: math.unit(600, "feet"),
  25964. weight: math.unit(2000000, "tons"),
  25965. name: "Goddess",
  25966. image: {
  25967. source: "./media/characters/lady-kubwa/goddess.svg",
  25968. extra: 1240.5 / 1223,
  25969. bottom: 22 / 1263
  25970. }
  25971. },
  25972. goddesser: {
  25973. height: math.unit(900, "feet"),
  25974. weight: math.unit(20000000, "lb"),
  25975. name: "Goddess-er",
  25976. image: {
  25977. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25978. extra: 899 / 888,
  25979. bottom: 12.6 / 912
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Macro",
  25986. height: math.unit(600, "feet"),
  25987. default: true
  25988. },
  25989. {
  25990. name: "Megamacro",
  25991. height: math.unit(250, "miles")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(7 + 7 / 12, "feet"),
  26000. weight: math.unit(250, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/tala-grovehorn/front.svg",
  26004. extra: 2636 / 2525,
  26005. bottom: 147 / 2781
  26006. }
  26007. },
  26008. back: {
  26009. height: math.unit(7 + 7 / 12, "feet"),
  26010. weight: math.unit(250, "lb"),
  26011. name: "Back",
  26012. image: {
  26013. source: "./media/characters/tala-grovehorn/back.svg",
  26014. extra: 2635 / 2539,
  26015. bottom: 100 / 2732.8
  26016. }
  26017. },
  26018. mouth: {
  26019. height: math.unit(1.15, "feet"),
  26020. name: "Mouth",
  26021. image: {
  26022. source: "./media/characters/tala-grovehorn/mouth.svg"
  26023. }
  26024. },
  26025. dick: {
  26026. height: math.unit(2.36, "feet"),
  26027. name: "Dick",
  26028. image: {
  26029. source: "./media/characters/tala-grovehorn/dick.svg"
  26030. }
  26031. },
  26032. slit: {
  26033. height: math.unit(0.61, "feet"),
  26034. name: "Slit",
  26035. image: {
  26036. source: "./media/characters/tala-grovehorn/slit.svg"
  26037. }
  26038. },
  26039. },
  26040. [
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(7 + 7 / 12, "feet"),
  26048. weight: math.unit(225, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/epona/front.svg",
  26052. extra: 2445 / 2290,
  26053. bottom: 251 / 2696
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(7 + 7 / 12, "feet"),
  26058. weight: math.unit(225, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/epona/back.svg",
  26062. extra: 2546 / 2408,
  26063. bottom: 44 / 2589
  26064. }
  26065. },
  26066. genitals: {
  26067. height: math.unit(1.5, "feet"),
  26068. name: "Genitals",
  26069. image: {
  26070. source: "./media/characters/epona/genitals.svg"
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(7 + 7 / 12, "feet"),
  26078. default: true
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(7, "feet"),
  26087. weight: math.unit(518, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/avia-bloodbourn/front.svg",
  26091. extra: 1466 / 1350,
  26092. bottom: 65 / 1527
  26093. }
  26094. },
  26095. },
  26096. [
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(9.35, "feet"),
  26104. weight: math.unit(600, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/amera/front.svg",
  26108. extra: 891 / 818,
  26109. bottom: 30 / 922.7
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(9.35, "feet"),
  26114. weight: math.unit(600, "lb"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/amera/back.svg",
  26118. extra: 876 / 824,
  26119. bottom: 6.8 / 884
  26120. }
  26121. },
  26122. dick: {
  26123. height: math.unit(2.14, "feet"),
  26124. name: "Dick",
  26125. image: {
  26126. source: "./media/characters/amera/dick.svg"
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(9.35, "feet"),
  26134. default: true
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26140. {
  26141. kneeling: {
  26142. height: math.unit(3 + 4 / 12, "feet"),
  26143. weight: math.unit(90, "lb"),
  26144. name: "Kneeling",
  26145. image: {
  26146. source: "./media/characters/rosewen/kneeling.svg",
  26147. extra: 1835 / 1571,
  26148. bottom: 27.7 / 1862
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(3 + 4 / 12, "feet"),
  26156. default: true
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(5 + 10 / 12, "feet"),
  26165. weight: math.unit(200, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/sabah/front.svg",
  26169. extra: 849 / 763,
  26170. bottom: 33.9 / 881
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(5 + 10 / 12, "feet"),
  26178. default: true
  26179. },
  26180. ]
  26181. ))
  26182. characterMakers.push(() => makeCharacter(
  26183. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26184. {
  26185. front: {
  26186. height: math.unit(3 + 5 / 12, "feet"),
  26187. weight: math.unit(40, "kg"),
  26188. name: "Front",
  26189. image: {
  26190. source: "./media/characters/purple-flame/front.svg",
  26191. extra: 1577 / 1412,
  26192. bottom: 97 / 1694
  26193. }
  26194. },
  26195. frontDressed: {
  26196. height: math.unit(3 + 5 / 12, "feet"),
  26197. weight: math.unit(40, "kg"),
  26198. name: "Front (Dressed)",
  26199. image: {
  26200. source: "./media/characters/purple-flame/front-dressed.svg",
  26201. extra: 1577 / 1412,
  26202. bottom: 97 / 1694
  26203. }
  26204. },
  26205. headphones: {
  26206. height: math.unit(0.85, "feet"),
  26207. name: "Headphones",
  26208. image: {
  26209. source: "./media/characters/purple-flame/headphones.svg"
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Really Small",
  26216. height: math.unit(5, "cm")
  26217. },
  26218. {
  26219. name: "Micro",
  26220. height: math.unit(1 + 5 / 12, "feet")
  26221. },
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(3 + 5 / 12, "feet"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Minimacro",
  26229. height: math.unit(125, "feet")
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(0.5, "miles")
  26234. },
  26235. {
  26236. name: "Megamacro",
  26237. height: math.unit(50, "miles")
  26238. },
  26239. {
  26240. name: "Gigantic",
  26241. height: math.unit(750, "miles")
  26242. },
  26243. {
  26244. name: "Planetary",
  26245. height: math.unit(15000, "miles")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(14, "feet"),
  26254. weight: math.unit(959, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/arsenal/front.svg",
  26258. extra: 2357 / 2157,
  26259. bottom: 93 / 2458
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(14, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(6, "feet"),
  26276. weight: math.unit(150, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/adira/front.svg",
  26280. extra: 1078 / 1029,
  26281. bottom: 87 / 1166
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Micro",
  26288. height: math.unit(4, "inches"),
  26289. default: true
  26290. },
  26291. {
  26292. name: "Macro",
  26293. height: math.unit(50, "feet")
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(16, "feet"),
  26302. weight: math.unit(1000, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/grim/front.svg",
  26306. extra: 622 / 614,
  26307. bottom: 18.1 / 642
  26308. }
  26309. },
  26310. back: {
  26311. height: math.unit(16, "feet"),
  26312. weight: math.unit(1000, "lb"),
  26313. name: "Back",
  26314. image: {
  26315. source: "./media/characters/grim/back.svg",
  26316. extra: 610.6 / 602,
  26317. bottom: 40.8 / 652
  26318. }
  26319. },
  26320. hunched: {
  26321. height: math.unit(9.75, "feet"),
  26322. weight: math.unit(1000, "lb"),
  26323. name: "Hunched",
  26324. image: {
  26325. source: "./media/characters/grim/hunched.svg",
  26326. extra: 304 / 297,
  26327. bottom: 35.4 / 394
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(16, "feet"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(2.3, "meters"),
  26344. weight: math.unit(300, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/sinja/front-sfw.svg",
  26348. extra: 1393 / 1294,
  26349. bottom: 70 / 1463
  26350. }
  26351. },
  26352. frontNsfw: {
  26353. height: math.unit(2.3, "meters"),
  26354. weight: math.unit(300, "lb"),
  26355. name: "Front (NSFW)",
  26356. image: {
  26357. source: "./media/characters/sinja/front-nsfw.svg",
  26358. extra: 1393 / 1294,
  26359. bottom: 70 / 1463
  26360. }
  26361. },
  26362. back: {
  26363. height: math.unit(2.3, "meters"),
  26364. weight: math.unit(300, "lb"),
  26365. name: "Back",
  26366. image: {
  26367. source: "./media/characters/sinja/back.svg",
  26368. extra: 1393 / 1294,
  26369. bottom: 70 / 1463
  26370. }
  26371. },
  26372. head: {
  26373. height: math.unit(1.771, "feet"),
  26374. name: "Head",
  26375. image: {
  26376. source: "./media/characters/sinja/head.svg"
  26377. }
  26378. },
  26379. slit: {
  26380. height: math.unit(0.8, "feet"),
  26381. name: "Slit",
  26382. image: {
  26383. source: "./media/characters/sinja/slit.svg"
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(2.3, "meters")
  26391. },
  26392. {
  26393. name: "Macro",
  26394. height: math.unit(91, "meters"),
  26395. default: true
  26396. },
  26397. {
  26398. name: "Megamacro",
  26399. height: math.unit(91440, "meters")
  26400. },
  26401. {
  26402. name: "Gigamacro",
  26403. height: math.unit(60960000, "meters")
  26404. },
  26405. {
  26406. name: "Teramacro",
  26407. height: math.unit(9144000000, "meters")
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(1.7, "meters"),
  26416. weight: math.unit(130, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/kyu/front.svg",
  26420. extra: 415 / 395,
  26421. bottom: 5 / 420
  26422. }
  26423. },
  26424. head: {
  26425. height: math.unit(1.75, "feet"),
  26426. name: "Head",
  26427. image: {
  26428. source: "./media/characters/kyu/head.svg"
  26429. }
  26430. },
  26431. foot: {
  26432. height: math.unit(0.81, "feet"),
  26433. name: "Foot",
  26434. image: {
  26435. source: "./media/characters/kyu/foot.svg"
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(1.7, "meters")
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(131, "feet"),
  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: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26465. {
  26466. front: {
  26467. height: math.unit(7 + 1 / 12, "feet"),
  26468. weight: math.unit(250, "lb"),
  26469. name: "Front",
  26470. image: {
  26471. source: "./media/characters/joey/front.svg",
  26472. extra: 1791 / 1537,
  26473. bottom: 28 / 1816
  26474. }
  26475. },
  26476. },
  26477. [
  26478. {
  26479. name: "Micro",
  26480. height: math.unit(3, "inches")
  26481. },
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(7 + 1 / 12, "feet"),
  26485. default: true
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(165, "cm"),
  26494. weight: math.unit(140, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/sam-evans/front.svg",
  26498. extra: 3417 / 3230,
  26499. bottom: 41.3 / 3417
  26500. }
  26501. },
  26502. frontSixTails: {
  26503. height: math.unit(165, "cm"),
  26504. weight: math.unit(140, "lb"),
  26505. name: "Front-six-tails",
  26506. image: {
  26507. source: "./media/characters/sam-evans/front-six-tails.svg",
  26508. extra: 3417 / 3230,
  26509. bottom: 41.3 / 3417
  26510. }
  26511. },
  26512. back: {
  26513. height: math.unit(165, "cm"),
  26514. weight: math.unit(140, "lb"),
  26515. name: "Back",
  26516. image: {
  26517. source: "./media/characters/sam-evans/back.svg",
  26518. extra: 3227 / 3032,
  26519. bottom: 6.8 / 3234
  26520. }
  26521. },
  26522. face: {
  26523. height: math.unit(0.68, "feet"),
  26524. name: "Face",
  26525. image: {
  26526. source: "./media/characters/sam-evans/face.svg"
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(165, "cm"),
  26534. default: true
  26535. },
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(100, "meters")
  26539. },
  26540. {
  26541. name: "Macro+",
  26542. height: math.unit(800, "meters")
  26543. },
  26544. {
  26545. name: "Macro++",
  26546. height: math.unit(3, "km")
  26547. },
  26548. {
  26549. name: "Macro+++",
  26550. height: math.unit(30, "km")
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(10, "feet"),
  26559. weight: math.unit(750, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/juliet-a/front.svg",
  26563. extra: 1766 / 1720,
  26564. bottom: 43 / 1809
  26565. }
  26566. },
  26567. back: {
  26568. height: math.unit(10, "feet"),
  26569. weight: math.unit(750, "lb"),
  26570. name: "Back",
  26571. image: {
  26572. source: "./media/characters/juliet-a/back.svg",
  26573. extra: 1781 / 1734,
  26574. bottom: 35 / 1810,
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Normal",
  26581. height: math.unit(10, "feet"),
  26582. default: true
  26583. },
  26584. {
  26585. name: "Dragon Form",
  26586. height: math.unit(250, "feet")
  26587. },
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(1000, "feet")
  26591. },
  26592. {
  26593. name: "Megamacro",
  26594. height: math.unit(10000, "feet")
  26595. }
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26600. {
  26601. regular: {
  26602. height: math.unit(7 + 3 / 12, "feet"),
  26603. weight: math.unit(260, "lb"),
  26604. name: "Regular",
  26605. image: {
  26606. source: "./media/characters/wild/regular.svg",
  26607. extra: 97.45 / 92,
  26608. bottom: 6.8 / 104.3
  26609. }
  26610. },
  26611. biggums: {
  26612. height: math.unit(8 + 6 / 12, "feet"),
  26613. weight: math.unit(425, "lb"),
  26614. name: "Biggums",
  26615. image: {
  26616. source: "./media/characters/wild/biggums.svg",
  26617. extra: 97.45 / 92,
  26618. bottom: 7.5 / 132.34
  26619. }
  26620. },
  26621. mawRegular: {
  26622. height: math.unit(1.24, "feet"),
  26623. name: "Maw (Regular)",
  26624. image: {
  26625. source: "./media/characters/wild/maw.svg"
  26626. }
  26627. },
  26628. mawBiggums: {
  26629. height: math.unit(1.47, "feet"),
  26630. name: "Maw (Biggums)",
  26631. image: {
  26632. source: "./media/characters/wild/maw.svg"
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(7 + 3 / 12, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26646. {
  26647. front: {
  26648. height: math.unit(2.5, "meters"),
  26649. weight: math.unit(200, "kg"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/vidar/front.svg",
  26653. extra: 2994 / 2795,
  26654. bottom: 56 / 3061
  26655. }
  26656. },
  26657. back: {
  26658. height: math.unit(2.5, "meters"),
  26659. weight: math.unit(200, "kg"),
  26660. name: "Back",
  26661. image: {
  26662. source: "./media/characters/vidar/back.svg",
  26663. extra: 3131 / 2928,
  26664. bottom: 13.5 / 3141.5
  26665. }
  26666. },
  26667. feral: {
  26668. height: math.unit(2.5, "meters"),
  26669. weight: math.unit(2000, "kg"),
  26670. name: "Feral",
  26671. image: {
  26672. source: "./media/characters/vidar/feral.svg",
  26673. extra: 2790 / 1765,
  26674. bottom: 6 / 2796
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(2.5, "meters"),
  26682. default: true
  26683. },
  26684. {
  26685. name: "Macro",
  26686. height: math.unit(100, "meters")
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(5 + 9 / 12, "feet"),
  26695. weight: math.unit(120, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/ash/front.svg",
  26699. extra: 2189 / 1961,
  26700. bottom: 5.2 / 2194
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(5 + 9 / 12, "feet"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(9, "feet"),
  26717. weight: math.unit(10000, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/gygabite/front.svg",
  26721. bottom: 31.7 / 537.8,
  26722. extra: 505 / 370
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(9, "feet"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(12, "feet"),
  26739. weight: math.unit(35000, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/p0tat0/front.svg",
  26743. extra: 1065 / 921,
  26744. bottom: 55.7 / 1121.25
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26758. {
  26759. side: {
  26760. height: math.unit(6.5, "feet"),
  26761. weight: math.unit(800, "lb"),
  26762. name: "Side",
  26763. image: {
  26764. source: "./media/characters/dusk/side.svg",
  26765. extra: 615 / 373,
  26766. bottom: 53 / 664
  26767. }
  26768. },
  26769. sitting: {
  26770. height: math.unit(7, "feet"),
  26771. weight: math.unit(800, "lb"),
  26772. name: "Sitting",
  26773. image: {
  26774. source: "./media/characters/dusk/sitting.svg",
  26775. extra: 753 / 425,
  26776. bottom: 33 / 774
  26777. }
  26778. },
  26779. head: {
  26780. height: math.unit(6.1, "feet"),
  26781. name: "Head",
  26782. image: {
  26783. source: "./media/characters/dusk/head.svg"
  26784. }
  26785. },
  26786. },
  26787. [
  26788. {
  26789. name: "Normal",
  26790. height: math.unit(7, "feet"),
  26791. default: true
  26792. },
  26793. ]
  26794. ))
  26795. characterMakers.push(() => makeCharacter(
  26796. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26797. {
  26798. front: {
  26799. height: math.unit(15, "feet"),
  26800. weight: math.unit(7000, "lb"),
  26801. name: "Front",
  26802. image: {
  26803. source: "./media/characters/jay-direwolf/front.svg",
  26804. extra: 1810 / 1732,
  26805. bottom: 66 / 1892
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(15, "feet"),
  26813. default: true
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(4 + 9 / 12, "feet"),
  26822. weight: math.unit(130, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/anchovie/front.svg",
  26826. extra: 382 / 350,
  26827. bottom: 25 / 409
  26828. }
  26829. },
  26830. back: {
  26831. height: math.unit(4 + 9 / 12, "feet"),
  26832. weight: math.unit(130, "lb"),
  26833. name: "Back",
  26834. image: {
  26835. source: "./media/characters/anchovie/back.svg",
  26836. extra: 385 / 352,
  26837. bottom: 16.6 / 402
  26838. }
  26839. },
  26840. frontDressed: {
  26841. height: math.unit(4 + 9 / 12, "feet"),
  26842. weight: math.unit(130, "lb"),
  26843. name: "Front (Dressed)",
  26844. image: {
  26845. source: "./media/characters/anchovie/front-dressed.svg",
  26846. extra: 382 / 350,
  26847. bottom: 25 / 409
  26848. }
  26849. },
  26850. backDressed: {
  26851. height: math.unit(4 + 9 / 12, "feet"),
  26852. weight: math.unit(130, "lb"),
  26853. name: "Back (Dressed)",
  26854. image: {
  26855. source: "./media/characters/anchovie/back-dressed.svg",
  26856. extra: 385 / 352,
  26857. bottom: 16.6 / 402
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Micro",
  26864. height: math.unit(6.4, "inches")
  26865. },
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(4 + 9 / 12, "feet"),
  26869. default: true
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(2, "meters"),
  26878. weight: math.unit(180, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/acidrenamon/front.svg",
  26882. extra: 987 / 890,
  26883. bottom: 22.8 / 1009
  26884. }
  26885. },
  26886. back: {
  26887. height: math.unit(2, "meters"),
  26888. weight: math.unit(180, "lb"),
  26889. name: "Back",
  26890. image: {
  26891. source: "./media/characters/acidrenamon/back.svg",
  26892. extra: 983 / 891,
  26893. bottom: 8.4 / 992
  26894. }
  26895. },
  26896. head: {
  26897. height: math.unit(1.92, "feet"),
  26898. name: "Head",
  26899. image: {
  26900. source: "./media/characters/acidrenamon/head.svg"
  26901. }
  26902. },
  26903. rump: {
  26904. height: math.unit(1.72, "feet"),
  26905. name: "Rump",
  26906. image: {
  26907. source: "./media/characters/acidrenamon/rump.svg"
  26908. }
  26909. },
  26910. tail: {
  26911. height: math.unit(4.2, "feet"),
  26912. name: "Tail",
  26913. image: {
  26914. source: "./media/characters/acidrenamon/tail.svg"
  26915. }
  26916. },
  26917. },
  26918. [
  26919. {
  26920. name: "Normal",
  26921. height: math.unit(2, "meters"),
  26922. default: true
  26923. },
  26924. {
  26925. name: "Minimacro",
  26926. height: math.unit(7, "meters")
  26927. },
  26928. {
  26929. name: "Macro",
  26930. height: math.unit(200, "meters")
  26931. },
  26932. {
  26933. name: "Gigamacro",
  26934. height: math.unit(0.2, "earths")
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26940. {
  26941. front: {
  26942. height: math.unit(6, "feet"),
  26943. weight: math.unit(150, "lb"),
  26944. name: "Front",
  26945. image: {
  26946. source: "./media/characters/kenzie-lee/front.svg",
  26947. extra: 1525 / 1465,
  26948. bottom: 45 / 1570
  26949. }
  26950. },
  26951. side: {
  26952. height: math.unit(6, "feet"),
  26953. weight: math.unit(150, "lb"),
  26954. name: "Side",
  26955. image: {
  26956. source: "./media/characters/kenzie-lee/side.svg",
  26957. extra: 5505 / 5383,
  26958. bottom: 60 / 5573
  26959. }
  26960. },
  26961. paw: {
  26962. height: math.unit(0.57, "feet"),
  26963. name: "Paw",
  26964. image: {
  26965. source: "./media/characters/kenzie-lee/paw.svg"
  26966. }
  26967. },
  26968. },
  26969. [
  26970. {
  26971. name: "Normal",
  26972. height: math.unit(152, "feet"),
  26973. default: true
  26974. },
  26975. {
  26976. name: "Megamacro",
  26977. height: math.unit(7, "miles")
  26978. },
  26979. {
  26980. name: "Gigamacro",
  26981. height: math.unit(8000, "miles")
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26987. {
  26988. side: {
  26989. height: math.unit(6, "feet"),
  26990. weight: math.unit(150, "lb"),
  26991. name: "Side",
  26992. image: {
  26993. source: "./media/characters/withers/side.svg",
  26994. extra: 1830 / 1728,
  26995. bottom: 96 / 1927
  26996. }
  26997. },
  26998. front: {
  26999. height: math.unit(6, "feet"),
  27000. weight: math.unit(150, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/withers/front.svg",
  27004. extra: 1514 / 1438,
  27005. bottom: 118 / 1632
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Macro",
  27012. height: math.unit(168, "feet"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Megamacro",
  27017. height: math.unit(15, "miles")
  27018. }
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(6 + 7 / 12, "feet"),
  27026. weight: math.unit(250, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/nemoskii/front.svg",
  27030. extra: 2270 / 1734,
  27031. bottom: 86 / 2354
  27032. }
  27033. },
  27034. back: {
  27035. height: math.unit(6 + 7 / 12, "feet"),
  27036. weight: math.unit(250, "lb"),
  27037. name: "Back",
  27038. image: {
  27039. source: "./media/characters/nemoskii/back.svg",
  27040. extra: 1845 / 1788,
  27041. bottom: 10.5 / 1852
  27042. }
  27043. },
  27044. head: {
  27045. height: math.unit(1.31, "feet"),
  27046. name: "Head",
  27047. image: {
  27048. source: "./media/characters/nemoskii/head.svg"
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Micro",
  27055. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27056. },
  27057. {
  27058. name: "Normal",
  27059. height: math.unit(6 + 7 / 12, "feet"),
  27060. default: true
  27061. },
  27062. {
  27063. name: "Macro",
  27064. height: math.unit((6 + 7 / 12) * 150, "feet")
  27065. },
  27066. {
  27067. name: "Macro+",
  27068. height: math.unit((6 + 7 / 12) * 500, "feet")
  27069. },
  27070. {
  27071. name: "Megamacro",
  27072. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(1, "mile"),
  27081. weight: math.unit(265261.9, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/shui/front.svg",
  27085. extra: 1633 / 1564,
  27086. bottom: 91.5 / 1726
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(1, "mile"),
  27094. default: true
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(12 + 6 / 12, "feet"),
  27103. weight: math.unit(1342, "lb"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/arokh-takakura/front.svg",
  27107. extra: 1089 / 1043,
  27108. bottom: 77.4 / 1176.7
  27109. }
  27110. },
  27111. back: {
  27112. height: math.unit(12 + 6 / 12, "feet"),
  27113. weight: math.unit(1342, "lb"),
  27114. name: "Back",
  27115. image: {
  27116. source: "./media/characters/arokh-takakura/back.svg",
  27117. extra: 1046 / 1019,
  27118. bottom: 102 / 1150
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Big",
  27125. height: math.unit(12 + 6 / 12, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 6 / 12, "feet"),
  27135. weight: math.unit(150, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/theo/front.svg",
  27139. extra: 1184 / 1131,
  27140. bottom: 7.4 / 1191
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Micro",
  27147. height: math.unit(5, "inches")
  27148. },
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(5 + 6 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(5 + 9 / 12, "feet"),
  27161. weight: math.unit(130, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/cecelia-swift/front.svg",
  27165. extra: 502 / 484,
  27166. bottom: 23 / 523
  27167. }
  27168. },
  27169. back: {
  27170. height: math.unit(5 + 9 / 12, "feet"),
  27171. weight: math.unit(130, "lb"),
  27172. name: "Back",
  27173. image: {
  27174. source: "./media/characters/cecelia-swift/back.svg",
  27175. extra: 499 / 485,
  27176. bottom: 12 / 511
  27177. }
  27178. },
  27179. head: {
  27180. height: math.unit(0.90, "feet"),
  27181. name: "Head",
  27182. image: {
  27183. source: "./media/characters/cecelia-swift/head.svg"
  27184. }
  27185. },
  27186. rump: {
  27187. height: math.unit(1.75, "feet"),
  27188. name: "Rump",
  27189. image: {
  27190. source: "./media/characters/cecelia-swift/rump.svg"
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(5 + 9 / 12, "feet"),
  27198. default: true
  27199. },
  27200. {
  27201. name: "Big",
  27202. height: math.unit(50, "feet")
  27203. },
  27204. {
  27205. name: "Macro",
  27206. height: math.unit(100, "feet")
  27207. },
  27208. {
  27209. name: "Macro+",
  27210. height: math.unit(500, "feet")
  27211. },
  27212. {
  27213. name: "Macro++",
  27214. height: math.unit(1000, "feet")
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(6, "feet"),
  27223. weight: math.unit(150, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/kaunan/front.svg",
  27227. extra: 2890 / 2523,
  27228. bottom: 49 / 2939
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(150, "feet"),
  27236. default: true
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27242. {
  27243. front: {
  27244. height: math.unit(175, "cm"),
  27245. weight: math.unit(60, "kg"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/fei/front.svg",
  27249. extra: 2581 / 2400,
  27250. bottom: 82.2 / 2663
  27251. }
  27252. },
  27253. },
  27254. [
  27255. {
  27256. name: "Mortal",
  27257. height: math.unit(175, "cm")
  27258. },
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(3500, "m"),
  27262. default: true
  27263. },
  27264. {
  27265. name: "Stroll",
  27266. height: math.unit(17.5, "km")
  27267. },
  27268. {
  27269. name: "Showoff",
  27270. height: math.unit(175, "km")
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(7, "feet"),
  27279. weight: math.unit(1000, "kg"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/edrax/front.svg",
  27283. extra: 2838 / 2550,
  27284. bottom: 130 / 2968
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Small",
  27291. height: math.unit(7, "feet")
  27292. },
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(1500, "meters")
  27296. },
  27297. {
  27298. name: "Mega",
  27299. height: math.unit(12000000, "km"),
  27300. default: true
  27301. },
  27302. {
  27303. name: "Megamacro",
  27304. height: math.unit(10600000, "lightyears")
  27305. },
  27306. {
  27307. name: "Hypermacro",
  27308. height: math.unit(256, "yottameters")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(10, "feet"),
  27317. weight: math.unit(750, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/clove/front.svg",
  27321. extra: 2031 / 1860,
  27322. bottom: 47.8 / 2080
  27323. }
  27324. },
  27325. back: {
  27326. height: math.unit(10, "feet"),
  27327. weight: math.unit(750, "lb"),
  27328. name: "Back",
  27329. image: {
  27330. source: "./media/characters/clove/back.svg",
  27331. extra: 2025 / 1859,
  27332. bottom: 46 / 2071
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(10, "feet"),
  27340. default: true
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(4, "feet"),
  27349. weight: math.unit(50, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/alex-rabbit/front.svg",
  27353. extra: 507 / 458,
  27354. bottom: 18.5 / 527
  27355. }
  27356. },
  27357. back: {
  27358. height: math.unit(4, "feet"),
  27359. weight: math.unit(50, "lb"),
  27360. name: "Back",
  27361. image: {
  27362. source: "./media/characters/alex-rabbit/back.svg",
  27363. extra: 502 / 460,
  27364. bottom: 18.9 / 521
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(4, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(1 + 3 / 12, "feet"),
  27381. weight: math.unit(80, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/zander-rose/front.svg",
  27385. extra: 916 / 797,
  27386. bottom: 17 / 933
  27387. }
  27388. },
  27389. back: {
  27390. height: math.unit(1 + 3 / 12, "feet"),
  27391. weight: math.unit(80, "lb"),
  27392. name: "Back",
  27393. image: {
  27394. source: "./media/characters/zander-rose/back.svg",
  27395. extra: 903 / 779,
  27396. bottom: 31 / 934
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(1 + 3 / 12, "feet"),
  27404. default: true
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27410. {
  27411. anthro: {
  27412. height: math.unit(6, "feet"),
  27413. weight: math.unit(150, "lb"),
  27414. name: "Anthro",
  27415. image: {
  27416. source: "./media/characters/razz/anthro.svg",
  27417. extra: 1437 / 1343,
  27418. bottom: 48 / 1485
  27419. }
  27420. },
  27421. feral: {
  27422. height: math.unit(6, "feet"),
  27423. weight: math.unit(150, "lb"),
  27424. name: "Feral",
  27425. image: {
  27426. source: "./media/characters/razz/feral.svg",
  27427. extra: 2569 / 1385,
  27428. bottom: 95 / 2664
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(6, "feet"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27442. {
  27443. front: {
  27444. height: math.unit(9 + 4 / 12, "feet"),
  27445. weight: math.unit(500, "lb"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/morrigan/front.svg",
  27449. extra: 2707 / 2579,
  27450. bottom: 156 / 2863
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(9 + 4 / 12, "feet"),
  27458. default: true
  27459. },
  27460. ]
  27461. ))
  27462. characterMakers.push(() => makeCharacter(
  27463. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27464. {
  27465. front: {
  27466. height: math.unit(5, "stories"),
  27467. weight: math.unit(4000, "lb"),
  27468. name: "Front",
  27469. image: {
  27470. source: "./media/characters/jenene/front.svg",
  27471. extra: 1780 / 1710,
  27472. bottom: 57 / 1837
  27473. }
  27474. },
  27475. },
  27476. [
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(5, "stories"),
  27480. default: true
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27486. {
  27487. front: {
  27488. height: math.unit(6, "feet"),
  27489. weight: math.unit(150, "lb"),
  27490. name: "Front",
  27491. image: {
  27492. source: "./media/characters/vix-archaser/front.svg",
  27493. extra: 2767 / 2562,
  27494. bottom: 36 / 2803
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Micro",
  27501. height: math.unit(1, "foot")
  27502. },
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(6 + 5 / 12, "feet")
  27506. },
  27507. {
  27508. name: "Minimacro",
  27509. height: math.unit(500, "feet")
  27510. },
  27511. {
  27512. name: "Macro",
  27513. height: math.unit(4, "miles")
  27514. },
  27515. {
  27516. name: "Megamacro",
  27517. height: math.unit(250, "miles"),
  27518. default: true
  27519. },
  27520. {
  27521. name: "Gigamacro",
  27522. height: math.unit(1, "universe")
  27523. },
  27524. {
  27525. name: "Endgame",
  27526. height: math.unit(100, "multiverses")
  27527. }
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27532. {
  27533. taurSfw: {
  27534. height: math.unit(10, "meters"),
  27535. weight: math.unit(17500, "kg"),
  27536. name: "Taur",
  27537. image: {
  27538. source: "./media/characters/faey/taur-sfw.svg",
  27539. extra: 1200 / 968,
  27540. bottom: 41 / 1241
  27541. }
  27542. },
  27543. chestmaw: {
  27544. height: math.unit(2.01, "meters"),
  27545. name: "Chestmaw",
  27546. image: {
  27547. source: "./media/characters/faey/chestmaw.svg"
  27548. }
  27549. },
  27550. foot: {
  27551. height: math.unit(2.43, "meters"),
  27552. name: "Foot",
  27553. image: {
  27554. source: "./media/characters/faey/foot.svg"
  27555. }
  27556. },
  27557. jaws: {
  27558. height: math.unit(1.66, "meters"),
  27559. name: "Jaws",
  27560. image: {
  27561. source: "./media/characters/faey/jaws.svg"
  27562. }
  27563. },
  27564. tongues: {
  27565. height: math.unit(2.01, "meters"),
  27566. name: "Tongues",
  27567. image: {
  27568. source: "./media/characters/faey/tongues.svg"
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Small",
  27575. height: math.unit(10, "meters"),
  27576. default: true
  27577. },
  27578. {
  27579. name: "Big",
  27580. height: math.unit(500000, "km")
  27581. },
  27582. ]
  27583. ))
  27584. characterMakers.push(() => makeCharacter(
  27585. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27586. {
  27587. front: {
  27588. height: math.unit(7, "feet"),
  27589. weight: math.unit(275, "lb"),
  27590. name: "Front",
  27591. image: {
  27592. source: "./media/characters/roku/front.svg",
  27593. extra: 903 / 878,
  27594. bottom: 37 / 940
  27595. }
  27596. },
  27597. },
  27598. [
  27599. {
  27600. name: "Normal",
  27601. height: math.unit(7, "feet"),
  27602. default: true
  27603. },
  27604. {
  27605. name: "Macro",
  27606. height: math.unit(500, "feet")
  27607. },
  27608. {
  27609. name: "Megamacro",
  27610. height: math.unit(200, "miles")
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27616. {
  27617. front: {
  27618. height: math.unit(6 + 2 / 12, "feet"),
  27619. weight: math.unit(150, "lb"),
  27620. name: "Front",
  27621. image: {
  27622. source: "./media/characters/lira/front.svg",
  27623. extra: 1727 / 1605,
  27624. bottom: 26 / 1753
  27625. }
  27626. },
  27627. back: {
  27628. height: math.unit(6 + 2 / 12, "feet"),
  27629. weight: math.unit(150, "lb"),
  27630. name: "Back",
  27631. image: {
  27632. source: "./media/characters/lira/back.svg",
  27633. extra: 1713/1621,
  27634. bottom: 20/1733
  27635. }
  27636. },
  27637. hand: {
  27638. height: math.unit(0.75, "feet"),
  27639. name: "Hand",
  27640. image: {
  27641. source: "./media/characters/lira/hand.svg"
  27642. }
  27643. },
  27644. maw: {
  27645. height: math.unit(0.65, "feet"),
  27646. name: "Maw",
  27647. image: {
  27648. source: "./media/characters/lira/maw.svg"
  27649. }
  27650. },
  27651. pawDigi: {
  27652. height: math.unit(1.6, "feet"),
  27653. name: "Paw Digi",
  27654. image: {
  27655. source: "./media/characters/lira/paw-digi.svg"
  27656. }
  27657. },
  27658. pawPlanti: {
  27659. height: math.unit(1.4, "feet"),
  27660. name: "Paw Planti",
  27661. image: {
  27662. source: "./media/characters/lira/paw-planti.svg"
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Normal",
  27669. height: math.unit(6 + 2 / 12, "feet"),
  27670. default: true
  27671. },
  27672. {
  27673. name: "Macro",
  27674. height: math.unit(100, "feet")
  27675. },
  27676. {
  27677. name: "Macro²",
  27678. height: math.unit(1600, "feet")
  27679. },
  27680. {
  27681. name: "Planetary",
  27682. height: math.unit(20, "earths")
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27688. {
  27689. front: {
  27690. height: math.unit(6, "feet"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Front",
  27693. image: {
  27694. source: "./media/characters/hadjet/front.svg",
  27695. extra: 1480 / 1346,
  27696. bottom: 26 / 1506
  27697. }
  27698. },
  27699. frontNsfw: {
  27700. height: math.unit(6, "feet"),
  27701. weight: math.unit(150, "lb"),
  27702. name: "Front (NSFW)",
  27703. image: {
  27704. source: "./media/characters/hadjet/front-nsfw.svg",
  27705. extra: 1440 / 1358,
  27706. bottom: 52 / 1492
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Macro",
  27713. height: math.unit(10, "stories"),
  27714. default: true
  27715. },
  27716. {
  27717. name: "Megamacro",
  27718. height: math.unit(1.5, "miles")
  27719. },
  27720. {
  27721. name: "Megamacro+",
  27722. height: math.unit(5, "miles")
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27728. {
  27729. side: {
  27730. height: math.unit(106, "feet"),
  27731. weight: math.unit(500, "tonnes"),
  27732. name: "Side",
  27733. image: {
  27734. source: "./media/characters/kodran/side.svg",
  27735. extra: 553 / 480,
  27736. bottom: 33 / 586
  27737. }
  27738. },
  27739. front: {
  27740. height: math.unit(132, "feet"),
  27741. weight: math.unit(500, "tonnes"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/kodran/front.svg",
  27745. extra: 667 / 643,
  27746. bottom: 42 / 709
  27747. }
  27748. },
  27749. flying: {
  27750. height: math.unit(350, "feet"),
  27751. weight: math.unit(500, "tonnes"),
  27752. name: "Flying",
  27753. image: {
  27754. source: "./media/characters/kodran/flying.svg"
  27755. }
  27756. },
  27757. foot: {
  27758. height: math.unit(33, "feet"),
  27759. name: "Foot",
  27760. image: {
  27761. source: "./media/characters/kodran/foot.svg"
  27762. }
  27763. },
  27764. footFront: {
  27765. height: math.unit(19, "feet"),
  27766. name: "Foot (Front)",
  27767. image: {
  27768. source: "./media/characters/kodran/foot-front.svg",
  27769. extra: 261 / 261,
  27770. bottom: 91 / 352
  27771. }
  27772. },
  27773. headFront: {
  27774. height: math.unit(53, "feet"),
  27775. name: "Head (Front)",
  27776. image: {
  27777. source: "./media/characters/kodran/head-front.svg"
  27778. }
  27779. },
  27780. headSide: {
  27781. height: math.unit(65, "feet"),
  27782. name: "Head (Side)",
  27783. image: {
  27784. source: "./media/characters/kodran/head-side.svg"
  27785. }
  27786. },
  27787. throat: {
  27788. height: math.unit(79, "feet"),
  27789. name: "Throat",
  27790. image: {
  27791. source: "./media/characters/kodran/throat.svg"
  27792. }
  27793. },
  27794. },
  27795. [
  27796. {
  27797. name: "Large",
  27798. height: math.unit(106, "feet"),
  27799. default: true
  27800. },
  27801. ]
  27802. ))
  27803. characterMakers.push(() => makeCharacter(
  27804. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27805. {
  27806. side: {
  27807. height: math.unit(11, "feet"),
  27808. weight: math.unit(150, "lb"),
  27809. name: "Side",
  27810. image: {
  27811. source: "./media/characters/pyxaron/side.svg",
  27812. extra: 305 / 195,
  27813. bottom: 17 / 322
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(11, "feet"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(6, "feet"),
  27830. weight: math.unit(150, "lb"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/meep/front.svg",
  27834. extra: 88 / 80,
  27835. bottom: 6 / 94
  27836. }
  27837. },
  27838. },
  27839. [
  27840. {
  27841. name: "Fun Sized",
  27842. height: math.unit(2, "inches"),
  27843. default: true
  27844. },
  27845. {
  27846. name: "Friend Sized",
  27847. height: math.unit(8, "inches")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(15, "feet"),
  27856. weight: math.unit(2500, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/holly-rabbit/front.svg",
  27860. extra: 1433 / 1233,
  27861. bottom: 125 / 1558
  27862. }
  27863. },
  27864. dick: {
  27865. height: math.unit(4.6, "feet"),
  27866. name: "Dick",
  27867. image: {
  27868. source: "./media/characters/holly-rabbit/dick.svg"
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(15, "feet"),
  27876. default: true
  27877. },
  27878. {
  27879. name: "Macro",
  27880. height: math.unit(250, "feet")
  27881. },
  27882. {
  27883. name: "Macro+",
  27884. height: math.unit(2500, "feet")
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(3.02, "meters"),
  27893. weight: math.unit(500, "kg"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/drena/front.svg",
  27897. extra: 282 / 243,
  27898. bottom: 8 / 290
  27899. }
  27900. },
  27901. side: {
  27902. height: math.unit(3.02, "meters"),
  27903. weight: math.unit(500, "kg"),
  27904. name: "Side",
  27905. image: {
  27906. source: "./media/characters/drena/side.svg",
  27907. extra: 280 / 245,
  27908. bottom: 10 / 290
  27909. }
  27910. },
  27911. back: {
  27912. height: math.unit(3.02, "meters"),
  27913. weight: math.unit(500, "kg"),
  27914. name: "Back",
  27915. image: {
  27916. source: "./media/characters/drena/back.svg",
  27917. extra: 278 / 243,
  27918. bottom: 2 / 280
  27919. }
  27920. },
  27921. foot: {
  27922. height: math.unit(0.75, "meters"),
  27923. name: "Foot",
  27924. image: {
  27925. source: "./media/characters/drena/foot.svg"
  27926. }
  27927. },
  27928. maw: {
  27929. height: math.unit(0.82, "meters"),
  27930. name: "Maw",
  27931. image: {
  27932. source: "./media/characters/drena/maw.svg"
  27933. }
  27934. },
  27935. rump: {
  27936. height: math.unit(0.93, "meters"),
  27937. name: "Rump",
  27938. image: {
  27939. source: "./media/characters/drena/rump.svg"
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(3.02, "meters"),
  27947. default: true
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(6 + 4 / 12, "feet"),
  27956. weight: math.unit(250, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/remmyzilla/front.svg",
  27960. extra: 4033 / 3588,
  27961. bottom: 123 / 4156
  27962. }
  27963. },
  27964. back: {
  27965. height: math.unit(6 + 4 / 12, "feet"),
  27966. weight: math.unit(250, "lb"),
  27967. name: "Back",
  27968. image: {
  27969. source: "./media/characters/remmyzilla/back.svg",
  27970. extra: 2687 / 2555,
  27971. bottom: 48 / 2735
  27972. }
  27973. },
  27974. frontFancy: {
  27975. height: math.unit(6 + 4 / 12, "feet"),
  27976. weight: math.unit(250, "lb"),
  27977. name: "Front (Fancy)",
  27978. image: {
  27979. source: "./media/characters/remmyzilla/front-fancy.svg",
  27980. extra: 4119 / 3419,
  27981. bottom: 237 / 4356
  27982. }
  27983. },
  27984. paw: {
  27985. height: math.unit(1.73, "feet"),
  27986. name: "Paw",
  27987. image: {
  27988. source: "./media/characters/remmyzilla/paw.svg"
  27989. }
  27990. },
  27991. maw: {
  27992. height: math.unit(1.73, "feet"),
  27993. name: "Maw",
  27994. image: {
  27995. source: "./media/characters/remmyzilla/maw.svg"
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(6 + 4 / 12, "feet")
  28003. },
  28004. {
  28005. name: "Minimacro",
  28006. height: math.unit(12 + 8 / 12, "feet")
  28007. },
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(640, "feet"),
  28011. default: true
  28012. },
  28013. {
  28014. name: "Megamacro",
  28015. height: math.unit(6400, "feet")
  28016. },
  28017. {
  28018. name: "Gigamacro",
  28019. height: math.unit(64000, "miles")
  28020. },
  28021. ]
  28022. ))
  28023. characterMakers.push(() => makeCharacter(
  28024. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28025. {
  28026. front: {
  28027. height: math.unit(2.5, "meters"),
  28028. weight: math.unit(300, "lb"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/lawrence/front.svg",
  28032. extra: 357 / 335,
  28033. bottom: 30 / 387
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(2.5, "meters"),
  28038. weight: math.unit(300, "lb"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/lawrence/back.svg",
  28042. extra: 357 / 338,
  28043. bottom: 16 / 373
  28044. }
  28045. },
  28046. head: {
  28047. height: math.unit(0.9, "meter"),
  28048. name: "Head",
  28049. image: {
  28050. source: "./media/characters/lawrence/head.svg"
  28051. }
  28052. },
  28053. maw: {
  28054. height: math.unit(0.7, "meter"),
  28055. name: "Maw",
  28056. image: {
  28057. source: "./media/characters/lawrence/maw.svg"
  28058. }
  28059. },
  28060. footBottom: {
  28061. height: math.unit(0.5, "meter"),
  28062. name: "Foot (Bottom)",
  28063. image: {
  28064. source: "./media/characters/lawrence/foot-bottom.svg"
  28065. }
  28066. },
  28067. footTop: {
  28068. height: math.unit(0.5, "meter"),
  28069. name: "Foot (Top)",
  28070. image: {
  28071. source: "./media/characters/lawrence/foot-top.svg"
  28072. }
  28073. },
  28074. },
  28075. [
  28076. {
  28077. name: "Normal",
  28078. height: math.unit(2.5, "meters"),
  28079. default: true
  28080. },
  28081. {
  28082. name: "Macro",
  28083. height: math.unit(95, "meters")
  28084. },
  28085. {
  28086. name: "Megamacro",
  28087. height: math.unit(150, "km")
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28093. {
  28094. front: {
  28095. height: math.unit(4.2, "meters"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/sydney/front.svg",
  28099. extra: 1323 / 1277,
  28100. bottom: 111 / 1434
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(4.2, "meters"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28114. {
  28115. back: {
  28116. height: math.unit(201, "feet"),
  28117. name: "Back",
  28118. image: {
  28119. source: "./media/characters/jessica/back.svg",
  28120. extra: 273 / 259,
  28121. bottom: 7 / 280
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(201, "feet"),
  28129. default: true
  28130. },
  28131. {
  28132. name: "Megamacro",
  28133. height: math.unit(8, "miles")
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28139. {
  28140. side: {
  28141. height: math.unit(320, "cm"),
  28142. name: "Side",
  28143. image: {
  28144. source: "./media/characters/victoria/side.svg",
  28145. extra: 778 / 346,
  28146. bottom: 56 / 834
  28147. }
  28148. },
  28149. maw: {
  28150. height: math.unit(5.9, "feet"),
  28151. name: "Maw",
  28152. image: {
  28153. source: "./media/characters/victoria/maw.svg"
  28154. }
  28155. },
  28156. },
  28157. [
  28158. {
  28159. name: "Normal",
  28160. height: math.unit(320, "cm"),
  28161. default: true
  28162. },
  28163. ]
  28164. ))
  28165. characterMakers.push(() => makeCharacter(
  28166. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28167. {
  28168. front: {
  28169. height: math.unit(5 + 6 / 12, "feet"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/cat/front.svg",
  28173. extra: 1374 / 1257,
  28174. bottom: 59 / 1433
  28175. }
  28176. },
  28177. back: {
  28178. height: math.unit(5 + 6 / 12, "feet"),
  28179. name: "Back",
  28180. image: {
  28181. source: "./media/characters/cat/back.svg",
  28182. extra: 1337 / 1226,
  28183. bottom: 34 / 1371
  28184. }
  28185. },
  28186. taur: {
  28187. height: math.unit(7, "feet"),
  28188. name: "Taur",
  28189. image: {
  28190. source: "./media/characters/cat/taur.svg",
  28191. extra: 1345 / 1231,
  28192. bottom: 66 / 1411
  28193. }
  28194. },
  28195. lucario: {
  28196. height: math.unit(4, "feet"),
  28197. name: "Lucario",
  28198. image: {
  28199. source: "./media/characters/cat/lucario.svg",
  28200. extra: 1470 / 1318,
  28201. bottom: 65 / 1535
  28202. }
  28203. },
  28204. megaLucario: {
  28205. height: math.unit(4, "feet"),
  28206. name: "Mega Lucario",
  28207. image: {
  28208. source: "./media/characters/cat/mega-lucario.svg",
  28209. extra: 1515 / 1319,
  28210. bottom: 63 / 1578
  28211. }
  28212. },
  28213. nickit: {
  28214. height: math.unit(2, "feet"),
  28215. name: "Nickit",
  28216. image: {
  28217. source: "./media/characters/cat/nickit.svg",
  28218. extra: 1980 / 1585,
  28219. bottom: 102 / 2082
  28220. }
  28221. },
  28222. lopunnyFront: {
  28223. height: math.unit(5, "feet"),
  28224. name: "Lopunny (Front)",
  28225. image: {
  28226. source: "./media/characters/cat/lopunny-front.svg",
  28227. extra: 1782 / 1469,
  28228. bottom: 38 / 1820
  28229. }
  28230. },
  28231. lopunnyBack: {
  28232. height: math.unit(5, "feet"),
  28233. name: "Lopunny (Back)",
  28234. image: {
  28235. source: "./media/characters/cat/lopunny-back.svg",
  28236. extra: 1660 / 1490,
  28237. bottom: 25 / 1685
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Really small",
  28244. height: math.unit(1, "nm")
  28245. },
  28246. {
  28247. name: "Micro",
  28248. height: math.unit(5, "inches")
  28249. },
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(5 + 6 / 12, "feet"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Macro",
  28257. height: math.unit(50, "feet")
  28258. },
  28259. {
  28260. name: "Macro+",
  28261. height: math.unit(150, "feet")
  28262. },
  28263. {
  28264. name: "Megamacro",
  28265. height: math.unit(100, "miles")
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(63.4, "meters"),
  28274. weight: math.unit(3.28349e+6, "kilograms"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/kirina-violet/front.svg",
  28278. extra: 2812 / 2725,
  28279. bottom: 0 / 2812
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(63.4, "meters"),
  28284. weight: math.unit(3.28349e+6, "kilograms"),
  28285. name: "Back",
  28286. image: {
  28287. source: "./media/characters/kirina-violet/back.svg",
  28288. extra: 2812 / 2725,
  28289. bottom: 0 / 2812
  28290. }
  28291. },
  28292. mouth: {
  28293. height: math.unit(4.35, "meters"),
  28294. name: "Mouth",
  28295. image: {
  28296. source: "./media/characters/kirina-violet/mouth.svg"
  28297. }
  28298. },
  28299. paw: {
  28300. height: math.unit(5.6, "meters"),
  28301. name: "Paw",
  28302. image: {
  28303. source: "./media/characters/kirina-violet/paw.svg"
  28304. }
  28305. },
  28306. tail: {
  28307. height: math.unit(18, "meters"),
  28308. name: "Tail",
  28309. image: {
  28310. source: "./media/characters/kirina-violet/tail.svg"
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Macro",
  28317. height: math.unit(63.4, "meters"),
  28318. default: true
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(60, "feet"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/cat-gigachu/front.svg",
  28330. extra: 1024 / 780,
  28331. bottom: 23 / 1047
  28332. }
  28333. },
  28334. back: {
  28335. height: math.unit(60, "feet"),
  28336. name: "Back",
  28337. image: {
  28338. source: "./media/characters/cat-gigachu/back.svg",
  28339. extra: 1024 / 780,
  28340. bottom: 23 / 1047
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Dynamax",
  28347. height: math.unit(60, "feet"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(6, "feet"),
  28357. weight: math.unit(150, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/sfaiyan/front.svg",
  28361. extra: 999 / 978,
  28362. bottom: 5 / 1004
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(1.82, "meters")
  28370. },
  28371. {
  28372. name: "Giant",
  28373. height: math.unit(2.27, "km"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(179, "cm"),
  28383. weight: math.unit(100, "kg"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/raunehkeli/front.svg",
  28387. extra: 1934 / 1926,
  28388. bottom: 0 / 1934
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(179, "cm")
  28396. },
  28397. {
  28398. name: "Maximum",
  28399. height: math.unit(575, "meters"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], 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/beatrice-the-behemoth-heathers/front.svg",
  28413. extra: 2625 / 2518,
  28414. bottom: 60 / 2685
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(6 + 2 / 12, "feet")
  28422. },
  28423. {
  28424. name: "Macro",
  28425. height: math.unit(1180, "feet"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(5 + 6 / 12, "feet"),
  28435. weight: math.unit(108, "lb"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/lilith-zott/front.svg",
  28439. extra: 2510 / 2238,
  28440. bottom: 100 / 2610
  28441. }
  28442. },
  28443. frontDressed: {
  28444. height: math.unit(5 + 6 / 12, "feet"),
  28445. weight: math.unit(108, "lb"),
  28446. name: "Front (Dressed)",
  28447. image: {
  28448. source: "./media/characters/lilith-zott/front-dressed.svg",
  28449. extra: 2510 / 2238,
  28450. bottom: 100 / 2610
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(5 + 6 / 12, "feet")
  28458. },
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(1030, "feet"),
  28462. default: true
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(6, "feet"),
  28471. weight: math.unit(150, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28475. extra: 2567 / 2435,
  28476. bottom: 39 / 2606
  28477. }
  28478. },
  28479. frontSuper: {
  28480. height: math.unit(6, "feet"),
  28481. name: "Front (Super)",
  28482. image: {
  28483. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28484. extra: 2567 / 2435,
  28485. bottom: 39 / 2606
  28486. }
  28487. },
  28488. },
  28489. [
  28490. {
  28491. name: "Normal",
  28492. height: math.unit(5 + 10 / 12, "feet")
  28493. },
  28494. {
  28495. name: "Macro",
  28496. height: math.unit(1100, "feet"),
  28497. default: true
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(100, "miles"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/sona/front.svg",
  28509. extra: 2433 / 2201,
  28510. bottom: 53 / 2486
  28511. }
  28512. },
  28513. foot: {
  28514. height: math.unit(16.1, "miles"),
  28515. name: "Foot",
  28516. image: {
  28517. source: "./media/characters/sona/foot.svg"
  28518. }
  28519. },
  28520. },
  28521. [
  28522. {
  28523. name: "Macro",
  28524. height: math.unit(100, "miles"),
  28525. default: true
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(6, "feet"),
  28534. weight: math.unit(150, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/bailey/front.svg",
  28538. extra: 1778 / 1724,
  28539. bottom: 30 / 1808
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Micro",
  28546. height: math.unit(4, "inches")
  28547. },
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(5 + 5 / 12, "feet"),
  28551. default: true
  28552. },
  28553. {
  28554. name: "Macro",
  28555. height: math.unit(250, "feet")
  28556. },
  28557. {
  28558. name: "Megamacro",
  28559. height: math.unit(100, "miles")
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28565. {
  28566. front: {
  28567. height: math.unit(5 + 2 / 12, "feet"),
  28568. weight: math.unit(120, "lb"),
  28569. name: "Front",
  28570. image: {
  28571. source: "./media/characters/snaps/front.svg",
  28572. extra: 2370 / 2177,
  28573. bottom: 48 / 2418
  28574. }
  28575. },
  28576. back: {
  28577. height: math.unit(5 + 2 / 12, "feet"),
  28578. weight: math.unit(120, "lb"),
  28579. name: "Back",
  28580. image: {
  28581. source: "./media/characters/snaps/back.svg",
  28582. extra: 2408 / 2258,
  28583. bottom: 15 / 2423
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Micro",
  28590. height: math.unit(9, "inches")
  28591. },
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(5 + 2 / 12, "feet"),
  28595. default: true
  28596. },
  28597. {
  28598. name: "Mini Macro",
  28599. height: math.unit(10, "feet")
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(1.8, "meters"),
  28608. weight: math.unit(85, "kg"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/azteck/front.svg",
  28612. extra: 2815 / 2625,
  28613. bottom: 89 / 2904
  28614. }
  28615. },
  28616. back: {
  28617. height: math.unit(1.8, "meters"),
  28618. weight: math.unit(85, "kg"),
  28619. name: "Back",
  28620. image: {
  28621. source: "./media/characters/azteck/back.svg",
  28622. extra: 2856 / 2648,
  28623. bottom: 85 / 2941
  28624. }
  28625. },
  28626. frontDressed: {
  28627. height: math.unit(1.8, "meters"),
  28628. weight: math.unit(85, "kg"),
  28629. name: "Front (Dressed)",
  28630. image: {
  28631. source: "./media/characters/azteck/front-dressed.svg",
  28632. extra: 2147 / 2003,
  28633. bottom: 68 / 2215
  28634. }
  28635. },
  28636. head: {
  28637. height: math.unit(0.47, "meters"),
  28638. weight: math.unit(85, "kg"),
  28639. name: "Head",
  28640. image: {
  28641. source: "./media/characters/azteck/head.svg"
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Bite sized",
  28648. height: math.unit(16, "cm")
  28649. },
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(1.8, "meters"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(6, "feet"),
  28662. weight: math.unit(150, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/pidge/front.svg",
  28666. extra: 620 / 588,
  28667. bottom: 9 / 629
  28668. }
  28669. },
  28670. back: {
  28671. height: math.unit(6, "feet"),
  28672. weight: math.unit(150, "lb"),
  28673. name: "Back",
  28674. image: {
  28675. source: "./media/characters/pidge/back.svg",
  28676. extra: 620 / 588,
  28677. bottom: 9 / 629
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Macro",
  28684. height: math.unit(1, "mile"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(6, "feet"),
  28694. weight: math.unit(150, "lb"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/en/front.svg",
  28698. extra: 1697 / 1563,
  28699. bottom: 103 / 1800
  28700. }
  28701. },
  28702. back: {
  28703. height: math.unit(6, "feet"),
  28704. weight: math.unit(150, "lb"),
  28705. name: "Back",
  28706. image: {
  28707. source: "./media/characters/en/back.svg",
  28708. extra: 1700 / 1570,
  28709. bottom: 51 / 1751
  28710. }
  28711. },
  28712. frontDressed: {
  28713. height: math.unit(6, "feet"),
  28714. weight: math.unit(150, "lb"),
  28715. name: "Front (Dressed)",
  28716. image: {
  28717. source: "./media/characters/en/front-dressed.svg",
  28718. extra: 1697 / 1563,
  28719. bottom: 103 / 1800
  28720. }
  28721. },
  28722. backDressed: {
  28723. height: math.unit(6, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Back (Dressed)",
  28726. image: {
  28727. source: "./media/characters/en/back-dressed.svg",
  28728. extra: 1700 / 1570,
  28729. bottom: 51 / 1751
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Macro",
  28736. height: math.unit(210, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Haze Orris", species: ["cat", "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/haze-orris/front.svg",
  28750. extra: 3975 / 3525,
  28751. bottom: 137 / 4112
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Micro",
  28758. height: math.unit(150, "mm"),
  28759. default: true
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(6, "feet"),
  28768. weight: math.unit(150, "lb"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/casselene-yaro/front.svg",
  28772. extra: 4721 / 4541,
  28773. bottom: 82 / 4803
  28774. }
  28775. },
  28776. back: {
  28777. height: math.unit(6, "feet"),
  28778. weight: math.unit(150, "lb"),
  28779. name: "Back",
  28780. image: {
  28781. source: "./media/characters/casselene-yaro/back.svg",
  28782. extra: 4569 / 4377,
  28783. bottom: 69 / 4638
  28784. }
  28785. },
  28786. frontDressed: {
  28787. height: math.unit(6, "feet"),
  28788. weight: math.unit(150, "lb"),
  28789. name: "Front-dressed",
  28790. image: {
  28791. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28792. extra: 4721 / 4541,
  28793. bottom: 82 / 4803
  28794. }
  28795. },
  28796. },
  28797. [
  28798. {
  28799. name: "Macro",
  28800. height: math.unit(190, "feet"),
  28801. default: true
  28802. },
  28803. ]
  28804. ))
  28805. characterMakers.push(() => makeCharacter(
  28806. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28807. {
  28808. front: {
  28809. height: math.unit(6, "feet"),
  28810. weight: math.unit(150, "lb"),
  28811. name: "Front",
  28812. image: {
  28813. source: "./media/characters/myra-rue-delore/front.svg",
  28814. extra: 1340 / 1308,
  28815. bottom: 67 / 1407
  28816. }
  28817. },
  28818. back: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Back",
  28822. image: {
  28823. source: "./media/characters/myra-rue-delore/back.svg",
  28824. extra: 1341 / 1310,
  28825. bottom: 40 / 1381
  28826. }
  28827. },
  28828. frontDressed: {
  28829. height: math.unit(6, "feet"),
  28830. weight: math.unit(150, "lb"),
  28831. name: "Front (Dressed)",
  28832. image: {
  28833. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28834. extra: 1340 / 1308,
  28835. bottom: 67 / 1407
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Macro",
  28842. height: math.unit(150, "feet"),
  28843. default: true
  28844. },
  28845. ]
  28846. ))
  28847. characterMakers.push(() => makeCharacter(
  28848. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28849. {
  28850. front: {
  28851. height: math.unit(10, "feet"),
  28852. weight: math.unit(15015, "lb"),
  28853. name: "Front",
  28854. image: {
  28855. source: "./media/characters/fem!plat/front.svg",
  28856. extra: 2799 / 2604,
  28857. bottom: 149 / 2948
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(10, "feet"),
  28865. default: true
  28866. },
  28867. {
  28868. name: "Macro",
  28869. height: math.unit(100, "feet")
  28870. },
  28871. {
  28872. name: "Megamacro",
  28873. height: math.unit(1000, "feet")
  28874. },
  28875. ]
  28876. ))
  28877. characterMakers.push(() => makeCharacter(
  28878. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28879. {
  28880. front: {
  28881. height: math.unit(15 + 5 / 12, "feet"),
  28882. weight: math.unit(4600, "lb"),
  28883. name: "Front",
  28884. image: {
  28885. source: "./media/characters/neapolitan-ananassa/front.svg",
  28886. extra: 2903 / 2736,
  28887. bottom: 0 / 2903
  28888. }
  28889. },
  28890. side: {
  28891. height: math.unit(15 + 5 / 12, "feet"),
  28892. weight: math.unit(4600, "lb"),
  28893. name: "Side",
  28894. image: {
  28895. source: "./media/characters/neapolitan-ananassa/side.svg",
  28896. extra: 2925 / 2719,
  28897. bottom: 0 / 2925
  28898. }
  28899. },
  28900. back: {
  28901. height: math.unit(15 + 5 / 12, "feet"),
  28902. weight: math.unit(4600, "lb"),
  28903. name: "Back",
  28904. image: {
  28905. source: "./media/characters/neapolitan-ananassa/back.svg",
  28906. extra: 2903 / 2736,
  28907. bottom: 0 / 2903
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(15 + 5 / 12, "feet"),
  28915. default: true
  28916. },
  28917. {
  28918. name: "Post-Millenium",
  28919. height: math.unit(35 + 5 / 12, "feet")
  28920. },
  28921. {
  28922. name: "Post-Era",
  28923. height: math.unit(450 + 5 / 12, "feet")
  28924. },
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28929. {
  28930. front: {
  28931. height: math.unit(300, "meters"),
  28932. weight: math.unit(125000, "tonnes"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/pazuzu/front.svg",
  28936. extra: 877 / 794,
  28937. bottom: 47 / 924
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Macro",
  28944. height: math.unit(300, "meters"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28951. {
  28952. side: {
  28953. height: math.unit(10 + 7 / 12, "feet"),
  28954. weight: math.unit(2.5, "tons"),
  28955. name: "Side",
  28956. image: {
  28957. source: "./media/characters/aasha/side.svg",
  28958. extra: 1345 / 1245,
  28959. bottom: 111 / 1456
  28960. }
  28961. },
  28962. back: {
  28963. height: math.unit(10 + 7 / 12, "feet"),
  28964. weight: math.unit(2.5, "tons"),
  28965. name: "Back",
  28966. image: {
  28967. source: "./media/characters/aasha/back.svg",
  28968. extra: 1133 / 1057,
  28969. bottom: 257 / 1390
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(10 + 7 / 12, "feet"),
  28977. default: true
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(6 + 3 / 12, "feet"),
  28986. name: "Front",
  28987. image: {
  28988. source: "./media/characters/nevan/front.svg",
  28989. extra: 704 / 704,
  28990. bottom: 28 / 732
  28991. }
  28992. },
  28993. back: {
  28994. height: math.unit(6 + 3 / 12, "feet"),
  28995. name: "Back",
  28996. image: {
  28997. source: "./media/characters/nevan/back.svg",
  28998. extra: 714 / 714,
  28999. bottom: 21 / 735
  29000. }
  29001. },
  29002. frontFlaccid: {
  29003. height: math.unit(6 + 3 / 12, "feet"),
  29004. name: "Front (Flaccid)",
  29005. image: {
  29006. source: "./media/characters/nevan/front-flaccid.svg",
  29007. extra: 704 / 704,
  29008. bottom: 28 / 732
  29009. }
  29010. },
  29011. frontErect: {
  29012. height: math.unit(6 + 3 / 12, "feet"),
  29013. name: "Front (Erect)",
  29014. image: {
  29015. source: "./media/characters/nevan/front-erect.svg",
  29016. extra: 704 / 704,
  29017. bottom: 28 / 732
  29018. }
  29019. },
  29020. backFlaccid: {
  29021. height: math.unit(6 + 3 / 12, "feet"),
  29022. name: "Back (Flaccid)",
  29023. image: {
  29024. source: "./media/characters/nevan/back-flaccid.svg",
  29025. extra: 714 / 714,
  29026. bottom: 21 / 735
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(6 + 3 / 12, "feet"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(4, "feet"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/arhan/front.svg",
  29046. extra: 3368 / 3133,
  29047. bottom: 0 / 3368
  29048. }
  29049. },
  29050. side: {
  29051. height: math.unit(4, "feet"),
  29052. name: "Side",
  29053. image: {
  29054. source: "./media/characters/arhan/side.svg",
  29055. extra: 3347 / 3105,
  29056. bottom: 0 / 3347
  29057. }
  29058. },
  29059. tongue: {
  29060. height: math.unit(1.42, "feet"),
  29061. name: "Tongue",
  29062. image: {
  29063. source: "./media/characters/arhan/tongue.svg"
  29064. }
  29065. },
  29066. head: {
  29067. height: math.unit(0.85, "feet"),
  29068. name: "Head",
  29069. image: {
  29070. source: "./media/characters/arhan/head.svg"
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(4, "feet"),
  29078. default: true
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(5 + 7.5 / 12, "feet"),
  29087. weight: math.unit(120, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/digi-duncan/front.svg",
  29091. extra: 330 / 326,
  29092. bottom: 16 / 346
  29093. }
  29094. },
  29095. side: {
  29096. height: math.unit(5 + 7.5 / 12, "feet"),
  29097. weight: math.unit(120, "lb"),
  29098. name: "Side",
  29099. image: {
  29100. source: "./media/characters/digi-duncan/side.svg",
  29101. extra: 341 / 337,
  29102. bottom: 1 / 342
  29103. }
  29104. },
  29105. back: {
  29106. height: math.unit(5 + 7.5 / 12, "feet"),
  29107. weight: math.unit(120, "lb"),
  29108. name: "Back",
  29109. image: {
  29110. source: "./media/characters/digi-duncan/back.svg",
  29111. extra: 330 / 326,
  29112. bottom: 12 / 342
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Speck",
  29119. height: math.unit(0.25, "mm")
  29120. },
  29121. {
  29122. name: "Micro",
  29123. height: math.unit(5, "mm")
  29124. },
  29125. {
  29126. name: "Tiny",
  29127. height: math.unit(0.5, "inches"),
  29128. default: true
  29129. },
  29130. {
  29131. name: "Human",
  29132. height: math.unit(5 + 7.5 / 12, "feet")
  29133. },
  29134. {
  29135. name: "Minigiant",
  29136. height: math.unit(8 + 5.25, "feet")
  29137. },
  29138. {
  29139. name: "Giant",
  29140. height: math.unit(2000, "feet")
  29141. },
  29142. {
  29143. name: "Mega",
  29144. height: math.unit(371.1, "miles")
  29145. },
  29146. ]
  29147. ))
  29148. characterMakers.push(() => makeCharacter(
  29149. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29150. {
  29151. front: {
  29152. height: math.unit(2, "meters"),
  29153. weight: math.unit(350, "kg"),
  29154. name: "Front",
  29155. image: {
  29156. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29157. extra: 898 / 838,
  29158. bottom: 9 / 907
  29159. }
  29160. },
  29161. },
  29162. [
  29163. {
  29164. name: "Micro",
  29165. height: math.unit(8, "meters")
  29166. },
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(50, "meters"),
  29170. default: true
  29171. },
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(500, "meters")
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(6 + 6 / 12, "feet"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/khardesh/front.svg",
  29186. extra: 888 / 797,
  29187. bottom: 25 / 913
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "Normal",
  29194. height: math.unit(6 + 6 / 12, "feet"),
  29195. default: true
  29196. },
  29197. {
  29198. name: "Normal+",
  29199. height: math.unit(4, "meters")
  29200. },
  29201. {
  29202. name: "Macro",
  29203. height: math.unit(50, "meters")
  29204. },
  29205. {
  29206. name: "Macro+",
  29207. height: math.unit(100, "meters")
  29208. },
  29209. {
  29210. name: "Megamacro",
  29211. height: math.unit(20, "km")
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(6, "feet"),
  29220. weight: math.unit(150, "lb"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/kosho/front.svg",
  29224. extra: 1847 / 1847,
  29225. bottom: 86 / 1933
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Second-stage micro",
  29232. height: math.unit(0.5, "inches")
  29233. },
  29234. {
  29235. name: "First-stage micro",
  29236. height: math.unit(6, "inches")
  29237. },
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(6, "feet"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "First-stage macro",
  29245. height: math.unit(72, "feet")
  29246. },
  29247. {
  29248. name: "Second-stage macro",
  29249. height: math.unit(864, "feet")
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29255. {
  29256. normal: {
  29257. height: math.unit(4 + 6 / 12, "feet"),
  29258. name: "Normal",
  29259. image: {
  29260. source: "./media/characters/hydra/normal.svg",
  29261. extra: 2833 / 2634,
  29262. bottom: 68 / 2901
  29263. }
  29264. },
  29265. smol: {
  29266. height: math.unit(0.705, "inches"),
  29267. name: "Smol",
  29268. image: {
  29269. source: "./media/characters/hydra/smol.svg",
  29270. extra: 2715 / 2540,
  29271. bottom: 0 / 2715
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(4 + 6 / 12, "feet"),
  29279. default: true
  29280. }
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(0.6, "cm"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/daz/front.svg",
  29291. extra: 1682 / 1164,
  29292. bottom: 42 / 1724
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(0.6, "cm"),
  29300. default: true
  29301. },
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(6, "feet"),
  29309. weight: math.unit(235, "lb"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/theo-pangolin/front.svg",
  29313. extra: 1996 / 1969,
  29314. bottom: 115 / 2111
  29315. }
  29316. },
  29317. back: {
  29318. height: math.unit(6, "feet"),
  29319. weight: math.unit(235, "lb"),
  29320. name: "Back",
  29321. image: {
  29322. source: "./media/characters/theo-pangolin/back.svg",
  29323. extra: 1979 / 1979,
  29324. bottom: 40 / 2019
  29325. }
  29326. },
  29327. feral: {
  29328. height: math.unit(2, "feet"),
  29329. weight: math.unit(30, "lb"),
  29330. name: "Feral",
  29331. image: {
  29332. source: "./media/characters/theo-pangolin/feral.svg",
  29333. extra: 803 / 791,
  29334. bottom: 181 / 984
  29335. }
  29336. },
  29337. footFive: {
  29338. height: math.unit(1.43, "feet"),
  29339. name: "Foot (Five Toes)",
  29340. image: {
  29341. source: "./media/characters/theo-pangolin/foot-five.svg"
  29342. }
  29343. },
  29344. footFour: {
  29345. height: math.unit(1.43, "feet"),
  29346. name: "Foot (Four Toes)",
  29347. image: {
  29348. source: "./media/characters/theo-pangolin/foot-four.svg"
  29349. }
  29350. },
  29351. handFour: {
  29352. height: math.unit(0.81, "feet"),
  29353. name: "Hand (Four Fingers)",
  29354. image: {
  29355. source: "./media/characters/theo-pangolin/hand-four.svg"
  29356. }
  29357. },
  29358. handThree: {
  29359. height: math.unit(0.81, "feet"),
  29360. name: "Hand (Three Fingers)",
  29361. image: {
  29362. source: "./media/characters/theo-pangolin/hand-three.svg"
  29363. }
  29364. },
  29365. headFront: {
  29366. height: math.unit(1.37, "feet"),
  29367. name: "Head (Front)",
  29368. image: {
  29369. source: "./media/characters/theo-pangolin/head-front.svg"
  29370. }
  29371. },
  29372. headSide: {
  29373. height: math.unit(1.43, "feet"),
  29374. name: "Head (Side)",
  29375. image: {
  29376. source: "./media/characters/theo-pangolin/head-side.svg"
  29377. }
  29378. },
  29379. tongue: {
  29380. height: math.unit(2.29, "feet"),
  29381. name: "Tongue",
  29382. image: {
  29383. source: "./media/characters/theo-pangolin/tongue.svg"
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Normal",
  29390. height: math.unit(6, "feet")
  29391. },
  29392. {
  29393. name: "Macro",
  29394. height: math.unit(400, "feet"),
  29395. default: true
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29401. {
  29402. front: {
  29403. height: math.unit(6, "inches"),
  29404. weight: math.unit(0.036, "kg"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/renée/front.svg",
  29408. extra: 900 / 886,
  29409. bottom: 8 / 908
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Nano",
  29416. height: math.unit(1, "nm")
  29417. },
  29418. {
  29419. name: "Micro",
  29420. height: math.unit(1, "mm")
  29421. },
  29422. {
  29423. name: "Normal",
  29424. height: math.unit(6, "inches")
  29425. },
  29426. {
  29427. name: "Macro",
  29428. height: math.unit(2000, "feet"),
  29429. default: true
  29430. },
  29431. {
  29432. name: "Megamacro",
  29433. height: math.unit(2, "km")
  29434. },
  29435. {
  29436. name: "Gigamacro",
  29437. height: math.unit(2000, "km")
  29438. },
  29439. {
  29440. name: "Teramacro",
  29441. height: math.unit(250000, "km")
  29442. },
  29443. ]
  29444. ))
  29445. characterMakers.push(() => makeCharacter(
  29446. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29447. {
  29448. front: {
  29449. height: math.unit(4, "meters"),
  29450. weight: math.unit(150, "kg"),
  29451. name: "Front",
  29452. image: {
  29453. source: "./media/characters/caledvwlch/front.svg",
  29454. extra: 1760 / 1551,
  29455. bottom: 28 / 1788
  29456. }
  29457. },
  29458. side: {
  29459. height: math.unit(4, "meters"),
  29460. weight: math.unit(150, "kg"),
  29461. name: "Side",
  29462. image: {
  29463. source: "./media/characters/caledvwlch/side.svg",
  29464. extra: 1605 / 1536,
  29465. bottom: 31 / 1636
  29466. }
  29467. },
  29468. back: {
  29469. height: math.unit(4, "meters"),
  29470. weight: math.unit(150, "kg"),
  29471. name: "Back",
  29472. image: {
  29473. source: "./media/characters/caledvwlch/back.svg",
  29474. extra: 1635 / 1565,
  29475. bottom: 27 / 1662
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "\"Incognito\"",
  29482. height: math.unit(4, "meters")
  29483. },
  29484. {
  29485. name: "Small rampage",
  29486. height: math.unit(600, "meters")
  29487. },
  29488. {
  29489. name: "Mega",
  29490. height: math.unit(30, "km")
  29491. },
  29492. {
  29493. name: "Home-size",
  29494. height: math.unit(50, "km"),
  29495. default: true
  29496. },
  29497. {
  29498. name: "Giga",
  29499. height: math.unit(300, "km")
  29500. },
  29501. {
  29502. name: "Lounging",
  29503. height: math.unit(11000, "km")
  29504. },
  29505. {
  29506. name: "Planet snacking",
  29507. height: math.unit(2000000, "km")
  29508. },
  29509. ]
  29510. ))
  29511. characterMakers.push(() => makeCharacter(
  29512. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29513. {
  29514. front: {
  29515. height: math.unit(6, "feet"),
  29516. weight: math.unit(215, "lb"),
  29517. name: "Front",
  29518. image: {
  29519. source: "./media/characters/sapphire-svell/front.svg",
  29520. extra: 495 / 455,
  29521. bottom: 20 / 515
  29522. }
  29523. },
  29524. back: {
  29525. height: math.unit(6, "feet"),
  29526. weight: math.unit(216, "lb"),
  29527. name: "Back",
  29528. image: {
  29529. source: "./media/characters/sapphire-svell/back.svg",
  29530. extra: 497 / 477,
  29531. bottom: 7 / 504
  29532. }
  29533. },
  29534. maw: {
  29535. height: math.unit(1.57, "feet"),
  29536. name: "Maw",
  29537. image: {
  29538. source: "./media/characters/sapphire-svell/maw.svg"
  29539. }
  29540. },
  29541. foot: {
  29542. height: math.unit(1.07, "feet"),
  29543. name: "Foot",
  29544. image: {
  29545. source: "./media/characters/sapphire-svell/foot.svg"
  29546. }
  29547. },
  29548. toering: {
  29549. height: math.unit(1.7, "inch"),
  29550. name: "Toering",
  29551. image: {
  29552. source: "./media/characters/sapphire-svell/toering.svg"
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(300, "feet"),
  29560. default: true
  29561. },
  29562. {
  29563. name: "Augmented",
  29564. height: math.unit(1250, "feet")
  29565. },
  29566. {
  29567. name: "Unleashed",
  29568. height: math.unit(3000, "feet")
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29574. {
  29575. side: {
  29576. height: math.unit(2 + 3 / 12, "feet"),
  29577. weight: math.unit(110, "lb"),
  29578. name: "Side",
  29579. image: {
  29580. source: "./media/characters/glitch-flux/side.svg",
  29581. extra: 997 / 805,
  29582. bottom: 20 / 1017
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(2 + 3 / 12, "feet"),
  29590. default: true
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(4, "meters"),
  29599. name: "Front",
  29600. image: {
  29601. source: "./media/characters/mid/front.svg",
  29602. extra: 507 / 476,
  29603. bottom: 17 / 524
  29604. }
  29605. },
  29606. back: {
  29607. height: math.unit(4, "meters"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/mid/back.svg",
  29611. extra: 519 / 487,
  29612. bottom: 7 / 526
  29613. }
  29614. },
  29615. stuck: {
  29616. height: math.unit(2.2, "meters"),
  29617. name: "Stuck",
  29618. image: {
  29619. source: "./media/characters/mid/stuck.svg",
  29620. extra: 1951 / 1869,
  29621. bottom: 88 / 2039
  29622. }
  29623. }
  29624. },
  29625. [
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(4, "meters"),
  29629. default: true
  29630. },
  29631. {
  29632. name: "Big",
  29633. height: math.unit(10, "meters")
  29634. },
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(800, "meters")
  29638. },
  29639. {
  29640. name: "Megamacro",
  29641. height: math.unit(100, "km")
  29642. },
  29643. {
  29644. name: "Overgrown",
  29645. height: math.unit(1, "parsec")
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(2.5, "meters"),
  29654. weight: math.unit(225, "kg"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/iris/front.svg",
  29658. extra: 3348 / 3251,
  29659. bottom: 205 / 3553
  29660. }
  29661. },
  29662. maw: {
  29663. height: math.unit(0.56, "meter"),
  29664. name: "Maw",
  29665. image: {
  29666. source: "./media/characters/iris/maw.svg"
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Mewter cat",
  29673. height: math.unit(1.2, "meters")
  29674. },
  29675. {
  29676. name: "Minimacro",
  29677. height: math.unit(2.5, "meters"),
  29678. default: true
  29679. },
  29680. {
  29681. name: "Macro",
  29682. height: math.unit(180, "meters")
  29683. },
  29684. {
  29685. name: "Megamacro",
  29686. height: math.unit(2746, "meters")
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29692. {
  29693. front: {
  29694. height: math.unit(6, "feet"),
  29695. weight: math.unit(135, "lb"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/axel/front.svg",
  29699. extra: 908 / 908,
  29700. bottom: 58 / 966
  29701. }
  29702. },
  29703. side: {
  29704. height: math.unit(6, "feet"),
  29705. weight: math.unit(135, "lb"),
  29706. name: "Side",
  29707. image: {
  29708. source: "./media/characters/axel/side.svg",
  29709. extra: 958 / 958,
  29710. bottom: 11 / 969
  29711. }
  29712. },
  29713. back: {
  29714. height: math.unit(6, "feet"),
  29715. weight: math.unit(135, "lb"),
  29716. name: "Back",
  29717. image: {
  29718. source: "./media/characters/axel/back.svg",
  29719. extra: 887 / 887,
  29720. bottom: 34 / 921
  29721. }
  29722. },
  29723. head: {
  29724. height: math.unit(1.07, "feet"),
  29725. name: "Head",
  29726. image: {
  29727. source: "./media/characters/axel/head.svg"
  29728. }
  29729. },
  29730. beak: {
  29731. height: math.unit(1.4, "feet"),
  29732. name: "Beak",
  29733. image: {
  29734. source: "./media/characters/axel/beak.svg"
  29735. }
  29736. },
  29737. beakSide: {
  29738. height: math.unit(1.4, "feet"),
  29739. name: "Beak Side",
  29740. image: {
  29741. source: "./media/characters/axel/beak-side.svg"
  29742. }
  29743. },
  29744. sheath: {
  29745. height: math.unit(0.5, "feet"),
  29746. name: "Sheath",
  29747. image: {
  29748. source: "./media/characters/axel/sheath.svg"
  29749. }
  29750. },
  29751. dick: {
  29752. height: math.unit(0.98, "feet"),
  29753. name: "Dick",
  29754. image: {
  29755. source: "./media/characters/axel/dick.svg"
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Macro",
  29762. height: math.unit(68, "meters"),
  29763. default: true
  29764. },
  29765. ]
  29766. ))
  29767. characterMakers.push(() => makeCharacter(
  29768. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29769. {
  29770. front: {
  29771. height: math.unit(3.5, "meters"),
  29772. weight: math.unit(1200, "kg"),
  29773. name: "Front",
  29774. image: {
  29775. source: "./media/characters/joanna/front.svg",
  29776. extra: 1596 / 1488,
  29777. bottom: 29 / 1625
  29778. }
  29779. },
  29780. back: {
  29781. height: math.unit(3.5, "meters"),
  29782. weight: math.unit(1200, "kg"),
  29783. name: "Back",
  29784. image: {
  29785. source: "./media/characters/joanna/back.svg",
  29786. extra: 1594 / 1495,
  29787. bottom: 26 / 1620
  29788. }
  29789. },
  29790. frontShorts: {
  29791. height: math.unit(3.5, "meters"),
  29792. weight: math.unit(1200, "kg"),
  29793. name: "Front (Shorts)",
  29794. image: {
  29795. source: "./media/characters/joanna/front-shorts.svg",
  29796. extra: 1596 / 1488,
  29797. bottom: 29 / 1625
  29798. }
  29799. },
  29800. frontBiker: {
  29801. height: math.unit(3.5, "meters"),
  29802. weight: math.unit(1200, "kg"),
  29803. name: "Front (Biker)",
  29804. image: {
  29805. source: "./media/characters/joanna/front-biker.svg",
  29806. extra: 1596 / 1488,
  29807. bottom: 29 / 1625
  29808. }
  29809. },
  29810. backBiker: {
  29811. height: math.unit(3.5, "meters"),
  29812. weight: math.unit(1200, "kg"),
  29813. name: "Back (Biker)",
  29814. image: {
  29815. source: "./media/characters/joanna/back-biker.svg",
  29816. extra: 1594 / 1495,
  29817. bottom: 88 / 1682
  29818. }
  29819. },
  29820. bikeLeft: {
  29821. height: math.unit(2.4, "meters"),
  29822. weight: math.unit(1600, "kg"),
  29823. name: "Bike (Left)",
  29824. image: {
  29825. source: "./media/characters/joanna/bike-left.svg",
  29826. extra: 720 / 720,
  29827. bottom: 8 / 728
  29828. }
  29829. },
  29830. bikeRight: {
  29831. height: math.unit(2.4, "meters"),
  29832. weight: math.unit(1600, "kg"),
  29833. name: "Bike (Right)",
  29834. image: {
  29835. source: "./media/characters/joanna/bike-right.svg",
  29836. extra: 720 / 720,
  29837. bottom: 8 / 728
  29838. }
  29839. },
  29840. },
  29841. [
  29842. {
  29843. name: "Incognito",
  29844. height: math.unit(3.5, "meters")
  29845. },
  29846. {
  29847. name: "Casual Big",
  29848. height: math.unit(200, "meters")
  29849. },
  29850. {
  29851. name: "Macro",
  29852. height: math.unit(600, "meters")
  29853. },
  29854. {
  29855. name: "Original",
  29856. height: math.unit(20, "km"),
  29857. default: true
  29858. },
  29859. {
  29860. name: "Giga",
  29861. height: math.unit(400, "km")
  29862. },
  29863. {
  29864. name: "Lounging",
  29865. height: math.unit(1500, "km")
  29866. },
  29867. {
  29868. name: "Planetary",
  29869. height: math.unit(200000, "km")
  29870. },
  29871. ]
  29872. ))
  29873. characterMakers.push(() => makeCharacter(
  29874. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29875. {
  29876. front: {
  29877. height: math.unit(6, "feet"),
  29878. weight: math.unit(150, "lb"),
  29879. name: "Front",
  29880. image: {
  29881. source: "./media/characters/hugo-sigil/front.svg",
  29882. extra: 522 / 500,
  29883. bottom: 2 / 524
  29884. }
  29885. },
  29886. back: {
  29887. height: math.unit(6, "feet"),
  29888. weight: math.unit(150, "lb"),
  29889. name: "Back",
  29890. image: {
  29891. source: "./media/characters/hugo-sigil/back.svg",
  29892. extra: 519 / 495,
  29893. bottom: 5 / 524
  29894. }
  29895. },
  29896. maw: {
  29897. height: math.unit(1.4, "feet"),
  29898. weight: math.unit(150, "lb"),
  29899. name: "Maw",
  29900. image: {
  29901. source: "./media/characters/hugo-sigil/maw.svg"
  29902. }
  29903. },
  29904. feet: {
  29905. height: math.unit(1.56, "feet"),
  29906. weight: math.unit(150, "lb"),
  29907. name: "Feet",
  29908. image: {
  29909. source: "./media/characters/hugo-sigil/feet.svg",
  29910. extra: 177 / 177,
  29911. bottom: 12 / 189
  29912. }
  29913. },
  29914. },
  29915. [
  29916. {
  29917. name: "Normal",
  29918. height: math.unit(6, "feet")
  29919. },
  29920. {
  29921. name: "Macro",
  29922. height: math.unit(200, "feet"),
  29923. default: true
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29929. {
  29930. front: {
  29931. height: math.unit(6, "feet"),
  29932. weight: math.unit(150, "lb"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/peri/front.svg",
  29936. extra: 2354 / 2233,
  29937. bottom: 49 / 2403
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Really Small",
  29944. height: math.unit(1, "nm")
  29945. },
  29946. {
  29947. name: "Micro",
  29948. height: math.unit(4, "inches")
  29949. },
  29950. {
  29951. name: "Normal",
  29952. height: math.unit(7, "inches"),
  29953. default: true
  29954. },
  29955. {
  29956. name: "Macro",
  29957. height: math.unit(400, "feet")
  29958. },
  29959. {
  29960. name: "Megamacro",
  29961. height: math.unit(100, "miles")
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29967. {
  29968. frontSlim: {
  29969. height: math.unit(7, "feet"),
  29970. name: "Front (Slim)",
  29971. image: {
  29972. source: "./media/characters/issilora/front-slim.svg",
  29973. extra: 529 / 449,
  29974. bottom: 53 / 582
  29975. }
  29976. },
  29977. sideSlim: {
  29978. height: math.unit(7, "feet"),
  29979. name: "Side (Slim)",
  29980. image: {
  29981. source: "./media/characters/issilora/side-slim.svg",
  29982. extra: 570 / 480,
  29983. bottom: 30 / 600
  29984. }
  29985. },
  29986. backSlim: {
  29987. height: math.unit(7, "feet"),
  29988. name: "Back (Slim)",
  29989. image: {
  29990. source: "./media/characters/issilora/back-slim.svg",
  29991. extra: 537 / 455,
  29992. bottom: 46 / 583
  29993. }
  29994. },
  29995. frontBuff: {
  29996. height: math.unit(7, "feet"),
  29997. name: "Front (Buff)",
  29998. image: {
  29999. source: "./media/characters/issilora/front-buff.svg",
  30000. extra: 2310 / 2035,
  30001. bottom: 335 / 2645
  30002. }
  30003. },
  30004. head: {
  30005. height: math.unit(1.94, "feet"),
  30006. name: "Head",
  30007. image: {
  30008. source: "./media/characters/issilora/head.svg"
  30009. }
  30010. },
  30011. },
  30012. [
  30013. {
  30014. name: "Minimum",
  30015. height: math.unit(7, "feet")
  30016. },
  30017. {
  30018. name: "Comfortable",
  30019. height: math.unit(17, "feet")
  30020. },
  30021. {
  30022. name: "Fun Size",
  30023. height: math.unit(47, "feet")
  30024. },
  30025. {
  30026. name: "Natural Macro",
  30027. height: math.unit(137, "feet"),
  30028. default: true
  30029. },
  30030. {
  30031. name: "Maximum Kaiju",
  30032. height: math.unit(397, "feet")
  30033. },
  30034. ]
  30035. ))
  30036. characterMakers.push(() => makeCharacter(
  30037. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30038. {
  30039. front: {
  30040. height: math.unit(50 + 9/12, "feet"),
  30041. weight: math.unit(32.8, "tons"),
  30042. name: "Front",
  30043. image: {
  30044. source: "./media/characters/irb'iiritaahn/front.svg",
  30045. extra: 1878/1826,
  30046. bottom: 326/2204
  30047. }
  30048. },
  30049. back: {
  30050. height: math.unit(50 + 9/12, "feet"),
  30051. weight: math.unit(32.8, "tons"),
  30052. name: "Back",
  30053. image: {
  30054. source: "./media/characters/irb'iiritaahn/back.svg",
  30055. extra: 2052/2018,
  30056. bottom: 152/2204
  30057. }
  30058. },
  30059. head: {
  30060. height: math.unit(12.86, "feet"),
  30061. name: "Head",
  30062. image: {
  30063. source: "./media/characters/irb'iiritaahn/head.svg"
  30064. }
  30065. },
  30066. maw: {
  30067. height: math.unit(9.66, "feet"),
  30068. name: "Maw",
  30069. image: {
  30070. source: "./media/characters/irb'iiritaahn/maw.svg"
  30071. }
  30072. },
  30073. frontDick: {
  30074. height: math.unit(8.78461, "feet"),
  30075. name: "Front Dick",
  30076. image: {
  30077. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30078. }
  30079. },
  30080. rearDick: {
  30081. height: math.unit(8.78461, "feet"),
  30082. name: "Rear Dick",
  30083. image: {
  30084. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30085. }
  30086. },
  30087. rearDickUnfolded: {
  30088. height: math.unit(8.78, "feet"),
  30089. name: "Rear Dick (Unfolded)",
  30090. image: {
  30091. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30092. }
  30093. },
  30094. wings: {
  30095. height: math.unit(43, "feet"),
  30096. name: "Wings",
  30097. image: {
  30098. source: "./media/characters/irb'iiritaahn/wings.svg"
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Macro",
  30105. height: math.unit(50 + 9/12, "feet"),
  30106. default: true
  30107. },
  30108. ]
  30109. ))
  30110. characterMakers.push(() => makeCharacter(
  30111. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30112. {
  30113. front: {
  30114. height: math.unit(205, "cm"),
  30115. weight: math.unit(102, "kg"),
  30116. name: "Front",
  30117. image: {
  30118. source: "./media/characters/irbisgreif/front.svg",
  30119. extra: 785/706,
  30120. bottom: 13/798
  30121. }
  30122. },
  30123. back: {
  30124. height: math.unit(205, "cm"),
  30125. weight: math.unit(102, "kg"),
  30126. name: "Back",
  30127. image: {
  30128. source: "./media/characters/irbisgreif/back.svg",
  30129. extra: 713/701,
  30130. bottom: 26/739
  30131. }
  30132. },
  30133. frontDressed: {
  30134. height: math.unit(216, "cm"),
  30135. weight: math.unit(102, "kg"),
  30136. name: "Front-dressed",
  30137. image: {
  30138. source: "./media/characters/irbisgreif/front-dressed.svg",
  30139. extra: 902/776,
  30140. bottom: 14/916
  30141. }
  30142. },
  30143. sideDressed: {
  30144. height: math.unit(195, "cm"),
  30145. weight: math.unit(102, "kg"),
  30146. name: "Side-dressed",
  30147. image: {
  30148. source: "./media/characters/irbisgreif/side-dressed.svg",
  30149. extra: 788/688,
  30150. bottom: 21/809
  30151. }
  30152. },
  30153. backDressed: {
  30154. height: math.unit(216, "cm"),
  30155. weight: math.unit(102, "kg"),
  30156. name: "Back-dressed",
  30157. image: {
  30158. source: "./media/characters/irbisgreif/back-dressed.svg",
  30159. extra: 901/783,
  30160. bottom: 10/911
  30161. }
  30162. },
  30163. dick: {
  30164. height: math.unit(0.49, "feet"),
  30165. name: "Dick",
  30166. image: {
  30167. source: "./media/characters/irbisgreif/dick.svg"
  30168. }
  30169. },
  30170. wingTop: {
  30171. height: math.unit(1.93 , "feet"),
  30172. name: "Wing-top",
  30173. image: {
  30174. source: "./media/characters/irbisgreif/wing-top.svg"
  30175. }
  30176. },
  30177. wingBottom: {
  30178. height: math.unit(1.93 , "feet"),
  30179. name: "Wing-bottom",
  30180. image: {
  30181. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(216, "cm"),
  30189. default: true
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(6, "feet"),
  30198. weight: math.unit(150, "lb"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/pride/front.svg",
  30202. extra: 1299/1230,
  30203. bottom: 18/1317
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(7, "feet")
  30211. },
  30212. {
  30213. name: "Mini-macro",
  30214. height: math.unit(11, "feet")
  30215. },
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(15, "meters"),
  30219. default: true
  30220. },
  30221. {
  30222. name: "Macro+",
  30223. height: math.unit(40, "meters")
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30229. {
  30230. front: {
  30231. height: math.unit(4 + 2 / 12, "feet"),
  30232. weight: math.unit(95, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/vaelophis-nyx/front.svg",
  30236. extra: 2532/2330,
  30237. bottom: 0/2532
  30238. }
  30239. },
  30240. back: {
  30241. height: math.unit(4 + 2 / 12, "feet"),
  30242. weight: math.unit(95, "lb"),
  30243. name: "Back",
  30244. image: {
  30245. source: "./media/characters/vaelophis-nyx/back.svg",
  30246. extra: 2484/2361,
  30247. bottom: 0/2484
  30248. }
  30249. },
  30250. feralSide: {
  30251. height: math.unit(2 + 1/12, "feet"),
  30252. weight: math.unit(20, "lb"),
  30253. name: "Feral (Side)",
  30254. image: {
  30255. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30256. extra: 1721/1581,
  30257. bottom: 70/1791
  30258. }
  30259. },
  30260. feralLazing: {
  30261. height: math.unit(1.08, "feet"),
  30262. weight: math.unit(20, "lb"),
  30263. name: "Feral (Lazing)",
  30264. image: {
  30265. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30266. extra: 822/822,
  30267. bottom: 248/1070
  30268. }
  30269. },
  30270. ear: {
  30271. height: math.unit(0.416, "feet"),
  30272. name: "Ear",
  30273. image: {
  30274. source: "./media/characters/vaelophis-nyx/ear.svg"
  30275. }
  30276. },
  30277. eye: {
  30278. height: math.unit(0.0748, "feet"),
  30279. name: "Eye",
  30280. image: {
  30281. source: "./media/characters/vaelophis-nyx/eye.svg"
  30282. }
  30283. },
  30284. mouth: {
  30285. height: math.unit(0.378, "feet"),
  30286. name: "Mouth",
  30287. image: {
  30288. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30289. }
  30290. },
  30291. spade: {
  30292. height: math.unit(0.55, "feet"),
  30293. name: "Spade",
  30294. image: {
  30295. source: "./media/characters/vaelophis-nyx/spade.svg"
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(4 + 2/12, "feet"),
  30303. default: true
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30309. {
  30310. front: {
  30311. height: math.unit(7, "feet"),
  30312. weight: math.unit(231, "lb"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/flux/front.svg",
  30316. extra: 919/871,
  30317. bottom: 0/919
  30318. }
  30319. },
  30320. back: {
  30321. height: math.unit(7, "feet"),
  30322. weight: math.unit(231, "lb"),
  30323. name: "Back",
  30324. image: {
  30325. source: "./media/characters/flux/back.svg",
  30326. extra: 1040/992,
  30327. bottom: 0/1040
  30328. }
  30329. },
  30330. frontDressed: {
  30331. height: math.unit(7, "feet"),
  30332. weight: math.unit(231, "lb"),
  30333. name: "Front (Dressed)",
  30334. image: {
  30335. source: "./media/characters/flux/front-dressed.svg",
  30336. extra: 919/871,
  30337. bottom: 0/919
  30338. }
  30339. },
  30340. feralSide: {
  30341. height: math.unit(5, "feet"),
  30342. weight: math.unit(150, "lb"),
  30343. name: "Feral (Side)",
  30344. image: {
  30345. source: "./media/characters/flux/feral-side.svg",
  30346. extra: 598/528,
  30347. bottom: 28/626
  30348. }
  30349. },
  30350. head: {
  30351. height: math.unit(1.585, "feet"),
  30352. name: "Head",
  30353. image: {
  30354. source: "./media/characters/flux/head.svg"
  30355. }
  30356. },
  30357. headSide: {
  30358. height: math.unit(1.74, "feet"),
  30359. name: "Head (Side)",
  30360. image: {
  30361. source: "./media/characters/flux/head-side.svg"
  30362. }
  30363. },
  30364. headSideFire: {
  30365. height: math.unit(1.76, "feet"),
  30366. name: "Head (Side, Fire)",
  30367. image: {
  30368. source: "./media/characters/flux/head-side-fire.svg"
  30369. }
  30370. },
  30371. },
  30372. [
  30373. {
  30374. name: "Normal",
  30375. height: math.unit(7, "feet"),
  30376. default: true
  30377. },
  30378. ]
  30379. ))
  30380. characterMakers.push(() => makeCharacter(
  30381. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30382. {
  30383. front: {
  30384. height: math.unit(9, "feet"),
  30385. weight: math.unit(1012, "lb"),
  30386. name: "Front",
  30387. image: {
  30388. source: "./media/characters/ulfra-lupae/front.svg",
  30389. extra: 1083/1011,
  30390. bottom: 67/1150
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "Micro",
  30397. height: math.unit(6, "inches")
  30398. },
  30399. {
  30400. name: "Socializing",
  30401. height: math.unit(6 + 5/12, "feet")
  30402. },
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(9, "feet"),
  30406. default: true
  30407. },
  30408. {
  30409. name: "Macro",
  30410. height: math.unit(150, "feet")
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30416. {
  30417. front: {
  30418. height: math.unit(5 + 2/12, "feet"),
  30419. weight: math.unit(120, "lb"),
  30420. name: "Front",
  30421. image: {
  30422. source: "./media/characters/timber/front.svg",
  30423. extra: 2814/2705,
  30424. bottom: 181/2995
  30425. }
  30426. },
  30427. },
  30428. [
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(5 + 2/12, "feet"),
  30432. default: true
  30433. },
  30434. ]
  30435. ))
  30436. characterMakers.push(() => makeCharacter(
  30437. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30438. {
  30439. front: {
  30440. height: math.unit(5 + 7/12, "feet"),
  30441. weight: math.unit(220, "lb"),
  30442. name: "Front",
  30443. image: {
  30444. source: "./media/characters/nicki/front.svg",
  30445. extra: 453/419,
  30446. bottom: 7/460
  30447. }
  30448. },
  30449. frontAlt: {
  30450. height: math.unit(5 + 7/12, "feet"),
  30451. weight: math.unit(220, "lb"),
  30452. name: "Front-alt",
  30453. image: {
  30454. source: "./media/characters/nicki/front-alt.svg",
  30455. extra: 435/411,
  30456. bottom: 12/447
  30457. }
  30458. },
  30459. back: {
  30460. height: math.unit(5 + 7/12, "feet"),
  30461. weight: math.unit(220, "lb"),
  30462. name: "Back",
  30463. image: {
  30464. source: "./media/characters/nicki/back.svg",
  30465. extra: 440/413,
  30466. bottom: 19/459
  30467. }
  30468. },
  30469. taur: {
  30470. height: math.unit(7 + 6/12, "feet"),
  30471. weight: math.unit(700, "lb"),
  30472. name: "Taur",
  30473. image: {
  30474. source: "./media/characters/nicki/taur.svg",
  30475. extra: 975/773,
  30476. bottom: 0/975
  30477. }
  30478. },
  30479. frontNsfw: {
  30480. height: math.unit(5 + 7/12, "feet"),
  30481. weight: math.unit(220, "lb"),
  30482. name: "Front (NSFW)",
  30483. image: {
  30484. source: "./media/characters/nicki/front-nsfw.svg",
  30485. extra: 453/419,
  30486. bottom: 7/460
  30487. }
  30488. },
  30489. frontNsfwAlt: {
  30490. height: math.unit(5 + 7/12, "feet"),
  30491. weight: math.unit(220, "lb"),
  30492. name: "Front (Alt, NSFW)",
  30493. image: {
  30494. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30495. extra: 435/411,
  30496. bottom: 12/447
  30497. }
  30498. },
  30499. backNsfw: {
  30500. height: math.unit(5 + 7/12, "feet"),
  30501. weight: math.unit(220, "lb"),
  30502. name: "Back (NSFW)",
  30503. image: {
  30504. source: "./media/characters/nicki/back-nsfw.svg",
  30505. extra: 440/413,
  30506. bottom: 19/459
  30507. }
  30508. },
  30509. head: {
  30510. height: math.unit(2.1, "feet"),
  30511. name: "Head",
  30512. image: {
  30513. source: "./media/characters/nicki/head.svg"
  30514. }
  30515. },
  30516. paw: {
  30517. height: math.unit(1.88, "feet"),
  30518. name: "Paw",
  30519. image: {
  30520. source: "./media/characters/nicki/paw.svg"
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Normal",
  30527. height: math.unit(5 + 7/12, "feet"),
  30528. default: true
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30534. {
  30535. front: {
  30536. height: math.unit(7 + 10/12, "feet"),
  30537. weight: math.unit(3.5, "tons"),
  30538. name: "Front",
  30539. image: {
  30540. source: "./media/characters/lee/front.svg",
  30541. extra: 1773/1615,
  30542. bottom: 86/1859
  30543. }
  30544. },
  30545. hand: {
  30546. height: math.unit(1.78, "feet"),
  30547. name: "Hand",
  30548. image: {
  30549. source: "./media/characters/lee/hand.svg"
  30550. }
  30551. },
  30552. maw: {
  30553. height: math.unit(1.18, "feet"),
  30554. name: "Maw",
  30555. image: {
  30556. source: "./media/characters/lee/maw.svg"
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(7 + 10/12, "feet"),
  30564. default: true
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30570. {
  30571. front: {
  30572. height: math.unit(9, "feet"),
  30573. name: "Front",
  30574. image: {
  30575. source: "./media/characters/guti/front.svg",
  30576. extra: 4551/4355,
  30577. bottom: 123/4674
  30578. }
  30579. },
  30580. tongue: {
  30581. height: math.unit(1, "feet"),
  30582. name: "Tongue",
  30583. image: {
  30584. source: "./media/characters/guti/tongue.svg"
  30585. }
  30586. },
  30587. paw: {
  30588. height: math.unit(1.18, "feet"),
  30589. name: "Paw",
  30590. image: {
  30591. source: "./media/characters/guti/paw.svg"
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Normal",
  30598. height: math.unit(9, "feet"),
  30599. default: true
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30605. {
  30606. side: {
  30607. height: math.unit(5, "meters"),
  30608. name: "Side",
  30609. image: {
  30610. source: "./media/characters/vesper/side.svg",
  30611. extra: 1605/1518,
  30612. bottom: 0/1605
  30613. }
  30614. },
  30615. },
  30616. [
  30617. {
  30618. name: "Small",
  30619. height: math.unit(5, "meters")
  30620. },
  30621. {
  30622. name: "Sage",
  30623. height: math.unit(100, "meters"),
  30624. default: true
  30625. },
  30626. {
  30627. name: "Fun Size",
  30628. height: math.unit(600, "meters")
  30629. },
  30630. {
  30631. name: "Goddess",
  30632. height: math.unit(20000, "km")
  30633. },
  30634. {
  30635. name: "Maximum",
  30636. height: math.unit(5, "galaxies")
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(6 + 3/12, "feet"),
  30645. weight: math.unit(190, "lb"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/gawain/front.svg",
  30649. extra: 2222/2139,
  30650. bottom: 90/2312
  30651. }
  30652. },
  30653. back: {
  30654. height: math.unit(6 + 3/12, "feet"),
  30655. weight: math.unit(190, "lb"),
  30656. name: "Back",
  30657. image: {
  30658. source: "./media/characters/gawain/back.svg",
  30659. extra: 2199/2111,
  30660. bottom: 73/2272
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(6 + 3/12, "feet"),
  30668. default: true
  30669. },
  30670. ]
  30671. ))
  30672. characterMakers.push(() => makeCharacter(
  30673. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30674. {
  30675. side: {
  30676. height: math.unit(3.5, "meters"),
  30677. weight: math.unit(16000, "lb"),
  30678. name: "Side",
  30679. image: {
  30680. source: "./media/characters/dascalti/side.svg",
  30681. extra: 392/273,
  30682. bottom: 47/439
  30683. }
  30684. },
  30685. breath: {
  30686. height: math.unit(7.4, "feet"),
  30687. name: "Breath",
  30688. image: {
  30689. source: "./media/characters/dascalti/breath.svg"
  30690. }
  30691. },
  30692. fed: {
  30693. height: math.unit(3.6, "meters"),
  30694. weight: math.unit(16000, "lb"),
  30695. name: "Fed",
  30696. image: {
  30697. source: "./media/characters/dascalti/fed.svg",
  30698. extra: 1419/820,
  30699. bottom: 95/1514
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(3.5, "meters"),
  30707. default: true
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(3 + 5/12, "feet"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/mauve/front.svg",
  30719. extra: 1126/1033,
  30720. bottom: 65/1191
  30721. }
  30722. },
  30723. side: {
  30724. height: math.unit(3 + 5/12, "feet"),
  30725. name: "Side",
  30726. image: {
  30727. source: "./media/characters/mauve/side.svg",
  30728. extra: 1089/1001,
  30729. bottom: 29/1118
  30730. }
  30731. },
  30732. back: {
  30733. height: math.unit(3 + 5/12, "feet"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/mauve/back.svg",
  30737. extra: 1173/1053,
  30738. bottom: 109/1282
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(3 + 5/12, "feet"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(6 + 3/12, "feet"),
  30755. weight: math.unit(430, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/carlos/front.svg",
  30759. extra: 1964/1913,
  30760. bottom: 70/2034
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Normal",
  30767. height: math.unit(6 + 3/12, "feet"),
  30768. default: true
  30769. },
  30770. ]
  30771. ))
  30772. characterMakers.push(() => makeCharacter(
  30773. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30774. {
  30775. back: {
  30776. height: math.unit(5 + 10/12, "feet"),
  30777. weight: math.unit(200, "lb"),
  30778. name: "Back",
  30779. image: {
  30780. source: "./media/characters/jax/back.svg",
  30781. extra: 764/739,
  30782. bottom: 25/789
  30783. }
  30784. },
  30785. },
  30786. [
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(5 + 10/12, "feet"),
  30790. default: true
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(8, "feet"),
  30799. weight: math.unit(250, "lb"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/eikthynir/front.svg",
  30803. extra: 1332/1166,
  30804. bottom: 82/1414
  30805. }
  30806. },
  30807. back: {
  30808. height: math.unit(8, "feet"),
  30809. weight: math.unit(250, "lb"),
  30810. name: "Back",
  30811. image: {
  30812. source: "./media/characters/eikthynir/back.svg",
  30813. extra: 1342/1190,
  30814. bottom: 19/1361
  30815. }
  30816. },
  30817. dick: {
  30818. height: math.unit(2.35, "feet"),
  30819. name: "Dick",
  30820. image: {
  30821. source: "./media/characters/eikthynir/dick.svg"
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(8, "feet"),
  30829. default: true
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(99, "meters"),
  30838. weight: math.unit(13000, "tons"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/zlmos/front.svg",
  30842. extra: 2202/1992,
  30843. bottom: 315/2517
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Macro",
  30850. height: math.unit(99, "meters"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(6 + 5/12, "feet"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/purri/front.svg",
  30863. extra: 1698/1610,
  30864. bottom: 32/1730
  30865. }
  30866. },
  30867. frontAlt: {
  30868. height: math.unit(6 + 5/12, "feet"),
  30869. name: "Front (Alt)",
  30870. image: {
  30871. source: "./media/characters/purri/front-alt.svg",
  30872. extra: 450/420,
  30873. bottom: 26/476
  30874. }
  30875. },
  30876. boots: {
  30877. height: math.unit(5.5, "feet"),
  30878. name: "Boots",
  30879. image: {
  30880. source: "./media/characters/purri/boots.svg",
  30881. extra: 905/853,
  30882. bottom: 18/923
  30883. }
  30884. },
  30885. lying: {
  30886. height: math.unit(2, "feet"),
  30887. name: "Lying",
  30888. image: {
  30889. source: "./media/characters/purri/lying.svg",
  30890. extra: 940/843,
  30891. bottom: 146/1086
  30892. }
  30893. },
  30894. devious: {
  30895. height: math.unit(1.77, "feet"),
  30896. name: "Devious",
  30897. image: {
  30898. source: "./media/characters/purri/devious.svg",
  30899. extra: 1440/1155,
  30900. bottom: 147/1587
  30901. }
  30902. },
  30903. bean: {
  30904. height: math.unit(1.94, "feet"),
  30905. name: "Bean",
  30906. image: {
  30907. source: "./media/characters/purri/bean.svg"
  30908. }
  30909. },
  30910. },
  30911. [
  30912. {
  30913. name: "Micro",
  30914. height: math.unit(1, "mm")
  30915. },
  30916. {
  30917. name: "Normal",
  30918. height: math.unit(6 + 5/12, "feet"),
  30919. default: true
  30920. },
  30921. {
  30922. name: "Macro :3c",
  30923. height: math.unit(2, "miles")
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30929. {
  30930. front: {
  30931. height: math.unit(6 + 2/12, "feet"),
  30932. weight: math.unit(250, "lb"),
  30933. name: "Front",
  30934. image: {
  30935. source: "./media/characters/moonlight/front.svg",
  30936. extra: 1044/908,
  30937. bottom: 56/1100
  30938. }
  30939. },
  30940. feral: {
  30941. height: math.unit(3 + 1/12, "feet"),
  30942. weight: math.unit(50, "kg"),
  30943. name: "Feral",
  30944. image: {
  30945. source: "./media/characters/moonlight/feral.svg",
  30946. extra: 3705/2791,
  30947. bottom: 145/3850
  30948. }
  30949. },
  30950. paw: {
  30951. height: math.unit(1, "feet"),
  30952. name: "Paw",
  30953. image: {
  30954. source: "./media/characters/moonlight/paw.svg"
  30955. }
  30956. },
  30957. paws: {
  30958. height: math.unit(0.98, "feet"),
  30959. name: "Paws",
  30960. image: {
  30961. source: "./media/characters/moonlight/paws.svg",
  30962. extra: 939/939,
  30963. bottom: 50/989
  30964. }
  30965. },
  30966. mouth: {
  30967. height: math.unit(0.48, "feet"),
  30968. name: "Mouth",
  30969. image: {
  30970. source: "./media/characters/moonlight/mouth.svg"
  30971. }
  30972. },
  30973. dick: {
  30974. height: math.unit(1.46, "feet"),
  30975. name: "Dick",
  30976. image: {
  30977. source: "./media/characters/moonlight/dick.svg"
  30978. }
  30979. },
  30980. },
  30981. [
  30982. {
  30983. name: "Normal",
  30984. height: math.unit(6 + 2/12, "feet"),
  30985. default: true
  30986. },
  30987. {
  30988. name: "Macro",
  30989. height: math.unit(300, "feet")
  30990. },
  30991. {
  30992. name: "Macro+",
  30993. height: math.unit(1, "mile")
  30994. },
  30995. {
  30996. name: "Mt. Moon",
  30997. height: math.unit(5, "miles")
  30998. },
  30999. {
  31000. name: "Megamacro",
  31001. height: math.unit(15, "miles")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31007. {
  31008. back: {
  31009. height: math.unit(6, "feet"),
  31010. weight: math.unit(150, "lb"),
  31011. name: "Back",
  31012. image: {
  31013. source: "./media/characters/sylen/back.svg",
  31014. extra: 1335/1273,
  31015. bottom: 107/1442
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(5 + 5/12, "feet")
  31023. },
  31024. {
  31025. name: "Megamacro",
  31026. height: math.unit(3, "miles"),
  31027. default: true
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31033. {
  31034. front: {
  31035. height: math.unit(6, "feet"),
  31036. weight: math.unit(190, "lb"),
  31037. name: "Front",
  31038. image: {
  31039. source: "./media/characters/huttser/front.svg",
  31040. extra: 1152/1058,
  31041. bottom: 23/1175
  31042. }
  31043. },
  31044. side: {
  31045. height: math.unit(6, "feet"),
  31046. weight: math.unit(190, "lb"),
  31047. name: "Side",
  31048. image: {
  31049. source: "./media/characters/huttser/side.svg",
  31050. extra: 1174/1065,
  31051. bottom: 18/1192
  31052. }
  31053. },
  31054. back: {
  31055. height: math.unit(6, "feet"),
  31056. weight: math.unit(190, "lb"),
  31057. name: "Back",
  31058. image: {
  31059. source: "./media/characters/huttser/back.svg",
  31060. extra: 1158/1056,
  31061. bottom: 12/1170
  31062. }
  31063. },
  31064. },
  31065. [
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31070. {
  31071. side: {
  31072. height: math.unit(12 + 9/12, "feet"),
  31073. weight: math.unit(15000, "lb"),
  31074. name: "Side",
  31075. image: {
  31076. source: "./media/characters/faan/side.svg",
  31077. extra: 2747/2697,
  31078. bottom: 0/2747
  31079. }
  31080. },
  31081. front: {
  31082. height: math.unit(12 + 9/12, "feet"),
  31083. weight: math.unit(15000, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/faan/front.svg",
  31087. extra: 607/571,
  31088. bottom: 24/631
  31089. }
  31090. },
  31091. head: {
  31092. height: math.unit(2.85, "feet"),
  31093. name: "Head",
  31094. image: {
  31095. source: "./media/characters/faan/head.svg"
  31096. }
  31097. },
  31098. headAlt: {
  31099. height: math.unit(3.13, "feet"),
  31100. name: "Head-alt",
  31101. image: {
  31102. source: "./media/characters/faan/head-alt.svg"
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Normal",
  31109. height: math.unit(12 + 9/12, "feet"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(6, "feet"),
  31119. weight: math.unit(300, "lb"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/tanio/front.svg",
  31123. extra: 711/673,
  31124. bottom: 25/736
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(6, "feet"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(3, "inches"),
  31141. name: "Front",
  31142. image: {
  31143. source: "./media/characters/noboru/front.svg",
  31144. extra: 1039/932,
  31145. bottom: 18/1057
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Micro",
  31152. height: math.unit(3, "inches"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31159. {
  31160. front: {
  31161. height: math.unit(1.85, "meters"),
  31162. weight: math.unit(80, "kg"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/daniel-barrett/front.svg",
  31166. extra: 355/337,
  31167. bottom: 9/364
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Pico",
  31174. height: math.unit(0.0433, "mm")
  31175. },
  31176. {
  31177. name: "Nano",
  31178. height: math.unit(1.5, "mm")
  31179. },
  31180. {
  31181. name: "Micro",
  31182. height: math.unit(5.3, "cm"),
  31183. default: true
  31184. },
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(1.85, "meters")
  31188. },
  31189. {
  31190. name: "Macro",
  31191. height: math.unit(64.7, "meters")
  31192. },
  31193. {
  31194. name: "Megamacro",
  31195. height: math.unit(2.26, "km")
  31196. },
  31197. {
  31198. name: "Gigamacro",
  31199. height: math.unit(79, "km")
  31200. },
  31201. {
  31202. name: "Teramacro",
  31203. height: math.unit(2765, "km")
  31204. },
  31205. {
  31206. name: "Petamacro",
  31207. height: math.unit(96678, "km")
  31208. },
  31209. ]
  31210. ))
  31211. characterMakers.push(() => makeCharacter(
  31212. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31213. {
  31214. front: {
  31215. height: math.unit(30, "meters"),
  31216. weight: math.unit(400, "tons"),
  31217. name: "Front",
  31218. image: {
  31219. source: "./media/characters/zeel/front.svg",
  31220. extra: 2599/2599,
  31221. bottom: 226/2825
  31222. }
  31223. },
  31224. },
  31225. [
  31226. {
  31227. name: "Macro",
  31228. height: math.unit(30, "meters"),
  31229. default: true
  31230. },
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31235. {
  31236. front: {
  31237. height: math.unit(6 + 7/12, "feet"),
  31238. weight: math.unit(210, "lb"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/tarn/front.svg",
  31242. extra: 3517/3220,
  31243. bottom: 91/3608
  31244. }
  31245. },
  31246. back: {
  31247. height: math.unit(6 + 7/12, "feet"),
  31248. weight: math.unit(210, "lb"),
  31249. name: "Back",
  31250. image: {
  31251. source: "./media/characters/tarn/back.svg",
  31252. extra: 3566/3241,
  31253. bottom: 34/3600
  31254. }
  31255. },
  31256. dick: {
  31257. height: math.unit(1.65, "feet"),
  31258. name: "Dick",
  31259. image: {
  31260. source: "./media/characters/tarn/dick.svg"
  31261. }
  31262. },
  31263. paw: {
  31264. height: math.unit(1.80, "feet"),
  31265. name: "Paw",
  31266. image: {
  31267. source: "./media/characters/tarn/paw.svg"
  31268. }
  31269. },
  31270. tongue: {
  31271. height: math.unit(0.97, "feet"),
  31272. name: "Tongue",
  31273. image: {
  31274. source: "./media/characters/tarn/tongue.svg"
  31275. }
  31276. },
  31277. },
  31278. [
  31279. {
  31280. name: "Micro",
  31281. height: math.unit(4, "inches")
  31282. },
  31283. {
  31284. name: "Normal",
  31285. height: math.unit(6 + 7/12, "feet"),
  31286. default: true
  31287. },
  31288. {
  31289. name: "Macro",
  31290. height: math.unit(300, "feet")
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31296. {
  31297. front: {
  31298. height: math.unit(5 + 7/12, "feet"),
  31299. weight: math.unit(80, "kg"),
  31300. name: "Front",
  31301. image: {
  31302. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31303. extra: 3023/2865,
  31304. bottom: 33/3056
  31305. }
  31306. },
  31307. back: {
  31308. height: math.unit(5 + 7/12, "feet"),
  31309. weight: math.unit(80, "kg"),
  31310. name: "Back",
  31311. image: {
  31312. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31313. extra: 3020/2886,
  31314. bottom: 30/3050
  31315. }
  31316. },
  31317. dick: {
  31318. height: math.unit(0.98, "feet"),
  31319. name: "Dick",
  31320. image: {
  31321. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31322. }
  31323. },
  31324. anatomy: {
  31325. height: math.unit(2.86, "feet"),
  31326. name: "Anatomy",
  31327. image: {
  31328. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Really Small",
  31335. height: math.unit(2, "inches")
  31336. },
  31337. {
  31338. name: "Micro",
  31339. height: math.unit(5.583, "inches")
  31340. },
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(5 + 7/12, "feet"),
  31344. default: true
  31345. },
  31346. {
  31347. name: "Macro",
  31348. height: math.unit(67, "feet")
  31349. },
  31350. {
  31351. name: "Megamacro",
  31352. height: math.unit(134, "feet")
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(9, "feet"),
  31361. weight: math.unit(120, "lb"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/sally/front.svg",
  31365. extra: 1506/1349,
  31366. bottom: 66/1572
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(9, "feet"),
  31374. default: true
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31380. {
  31381. front: {
  31382. height: math.unit(8, "feet"),
  31383. weight: math.unit(900, "lb"),
  31384. name: "Front",
  31385. image: {
  31386. source: "./media/characters/owen/front.svg",
  31387. extra: 1761/1657,
  31388. bottom: 74/1835
  31389. }
  31390. },
  31391. side: {
  31392. height: math.unit(8, "feet"),
  31393. weight: math.unit(900, "lb"),
  31394. name: "Side",
  31395. image: {
  31396. source: "./media/characters/owen/side.svg",
  31397. extra: 1797/1734,
  31398. bottom: 30/1827
  31399. }
  31400. },
  31401. back: {
  31402. height: math.unit(8, "feet"),
  31403. weight: math.unit(900, "lb"),
  31404. name: "Back",
  31405. image: {
  31406. source: "./media/characters/owen/back.svg",
  31407. extra: 1796/1706,
  31408. bottom: 59/1855
  31409. }
  31410. },
  31411. maw: {
  31412. height: math.unit(1.76, "feet"),
  31413. name: "Maw",
  31414. image: {
  31415. source: "./media/characters/owen/maw.svg"
  31416. }
  31417. },
  31418. },
  31419. [
  31420. {
  31421. name: "Normal",
  31422. height: math.unit(8, "feet"),
  31423. default: true
  31424. },
  31425. ]
  31426. ))
  31427. characterMakers.push(() => makeCharacter(
  31428. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31429. {
  31430. front: {
  31431. height: math.unit(4, "feet"),
  31432. weight: math.unit(400, "lb"),
  31433. name: "Front",
  31434. image: {
  31435. source: "./media/characters/ryth/front.svg",
  31436. extra: 876/691,
  31437. bottom: 25/901
  31438. }
  31439. },
  31440. goia: {
  31441. height: math.unit(12, "feet"),
  31442. weight: math.unit(10800, "lb"),
  31443. name: "Goia",
  31444. image: {
  31445. source: "./media/characters/ryth/goia.svg",
  31446. extra: 3450/3198,
  31447. bottom: 61/3511
  31448. }
  31449. },
  31450. },
  31451. [
  31452. {
  31453. name: "Normal",
  31454. height: math.unit(4, "feet"),
  31455. default: true
  31456. },
  31457. ]
  31458. ))
  31459. characterMakers.push(() => makeCharacter(
  31460. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31461. {
  31462. front: {
  31463. height: math.unit(7, "feet"),
  31464. weight: math.unit(180, "lb"),
  31465. name: "Front",
  31466. image: {
  31467. source: "./media/characters/necrolance/front.svg",
  31468. extra: 1062/947,
  31469. bottom: 41/1103
  31470. }
  31471. },
  31472. back: {
  31473. height: math.unit(7, "feet"),
  31474. weight: math.unit(180, "lb"),
  31475. name: "Back",
  31476. image: {
  31477. source: "./media/characters/necrolance/back.svg",
  31478. extra: 1045/984,
  31479. bottom: 14/1059
  31480. }
  31481. },
  31482. wing: {
  31483. height: math.unit(2.67, "feet"),
  31484. name: "Wing",
  31485. image: {
  31486. source: "./media/characters/necrolance/wing.svg"
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(7, "feet"),
  31494. default: true
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31500. {
  31501. front: {
  31502. height: math.unit(76, "meters"),
  31503. weight: math.unit(30000, "tons"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/tyler/front.svg",
  31507. extra: 1640/1640,
  31508. bottom: 114/1754
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Macro",
  31515. height: math.unit(76, "meters"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(4 + 11/12, "feet"),
  31525. weight: math.unit(132, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/icey/front.svg",
  31529. extra: 2750/2550,
  31530. bottom: 33/2783
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(4 + 11/12, "feet"),
  31535. weight: math.unit(132, "lb"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/icey/back.svg",
  31539. extra: 2624/2481,
  31540. bottom: 35/2659
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Normal",
  31547. height: math.unit(4 + 11/12, "feet"),
  31548. default: true
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31554. {
  31555. front: {
  31556. height: math.unit(100, "feet"),
  31557. weight: math.unit(0, "lb"),
  31558. name: "Front",
  31559. image: {
  31560. source: "./media/characters/smile/front.svg",
  31561. extra: 2983/2912,
  31562. bottom: 162/3145
  31563. }
  31564. },
  31565. back: {
  31566. height: math.unit(100, "feet"),
  31567. weight: math.unit(0, "lb"),
  31568. name: "Back",
  31569. image: {
  31570. source: "./media/characters/smile/back.svg",
  31571. extra: 3143/3031,
  31572. bottom: 91/3234
  31573. }
  31574. },
  31575. head: {
  31576. height: math.unit(26.3, "feet"),
  31577. weight: math.unit(0, "lb"),
  31578. name: "Head",
  31579. image: {
  31580. source: "./media/characters/smile/head.svg"
  31581. }
  31582. },
  31583. collar: {
  31584. height: math.unit(5.3, "feet"),
  31585. weight: math.unit(0, "lb"),
  31586. name: "Collar",
  31587. image: {
  31588. source: "./media/characters/smile/collar.svg"
  31589. }
  31590. },
  31591. },
  31592. [
  31593. {
  31594. name: "Macro",
  31595. height: math.unit(100, "feet"),
  31596. default: true
  31597. },
  31598. ]
  31599. ))
  31600. characterMakers.push(() => makeCharacter(
  31601. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31602. {
  31603. dragon: {
  31604. height: math.unit(26, "feet"),
  31605. weight: math.unit(36, "tons"),
  31606. name: "Dragon",
  31607. image: {
  31608. source: "./media/characters/arimphae/dragon.svg",
  31609. extra: 1574/983,
  31610. bottom: 357/1931
  31611. }
  31612. },
  31613. drake: {
  31614. height: math.unit(9, "feet"),
  31615. weight: math.unit(1.5, "tons"),
  31616. name: "Drake",
  31617. image: {
  31618. source: "./media/characters/arimphae/drake.svg",
  31619. extra: 1120/925,
  31620. bottom: 435/1555
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Small",
  31627. height: math.unit(26*5/9, "feet")
  31628. },
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(26, "feet"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(8 + 9/12, "feet"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/xander/front.svg",
  31644. extra: 848/673,
  31645. bottom: 62/910
  31646. }
  31647. },
  31648. },
  31649. [
  31650. {
  31651. name: "Normal",
  31652. height: math.unit(8 + 9/12, "feet"),
  31653. default: true
  31654. },
  31655. {
  31656. name: "Gaze Grabber",
  31657. height: math.unit(13 + 8/12, "feet")
  31658. },
  31659. {
  31660. name: "Jaw Dropper",
  31661. height: math.unit(27, "feet")
  31662. },
  31663. {
  31664. name: "Show Stopper",
  31665. height: math.unit(136, "feet")
  31666. },
  31667. {
  31668. name: "Superstar",
  31669. height: math.unit(1.9e6, "miles")
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31675. {
  31676. side: {
  31677. height: math.unit(2100, "feet"),
  31678. name: "Side",
  31679. image: {
  31680. source: "./media/characters/osiris/side.svg",
  31681. extra: 1105/939,
  31682. bottom: 167/1272
  31683. }
  31684. },
  31685. },
  31686. [
  31687. {
  31688. name: "Macro",
  31689. height: math.unit(2100, "feet"),
  31690. default: true
  31691. },
  31692. ]
  31693. ))
  31694. characterMakers.push(() => makeCharacter(
  31695. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31696. {
  31697. front: {
  31698. height: math.unit(6 + 8/12, "feet"),
  31699. weight: math.unit(225, "lb"),
  31700. name: "Front",
  31701. image: {
  31702. source: "./media/characters/rhys-londe/front.svg",
  31703. extra: 2258/2141,
  31704. bottom: 188/2446
  31705. }
  31706. },
  31707. back: {
  31708. height: math.unit(6 + 8/12, "feet"),
  31709. weight: math.unit(225, "lb"),
  31710. name: "Back",
  31711. image: {
  31712. source: "./media/characters/rhys-londe/back.svg",
  31713. extra: 2237/2137,
  31714. bottom: 63/2300
  31715. }
  31716. },
  31717. frontNsfw: {
  31718. height: math.unit(6 + 8/12, "feet"),
  31719. weight: math.unit(225, "lb"),
  31720. name: "Front (NSFW)",
  31721. image: {
  31722. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31723. extra: 2258/2141,
  31724. bottom: 188/2446
  31725. }
  31726. },
  31727. backNsfw: {
  31728. height: math.unit(6 + 8/12, "feet"),
  31729. weight: math.unit(225, "lb"),
  31730. name: "Back (NSFW)",
  31731. image: {
  31732. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31733. extra: 2237/2137,
  31734. bottom: 63/2300
  31735. }
  31736. },
  31737. dick: {
  31738. height: math.unit(30, "inches"),
  31739. name: "Dick",
  31740. image: {
  31741. source: "./media/characters/rhys-londe/dick.svg"
  31742. }
  31743. },
  31744. maw: {
  31745. height: math.unit(1.6, "feet"),
  31746. name: "Maw",
  31747. image: {
  31748. source: "./media/characters/rhys-londe/maw.svg"
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(6 + 8/12, "feet"),
  31756. default: true
  31757. },
  31758. ]
  31759. ))
  31760. characterMakers.push(() => makeCharacter(
  31761. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31762. {
  31763. front: {
  31764. height: math.unit(3 + 10/12, "feet"),
  31765. weight: math.unit(90, "lb"),
  31766. name: "Front",
  31767. image: {
  31768. source: "./media/characters/taivas-ensim/front.svg",
  31769. extra: 1327/1216,
  31770. bottom: 96/1423
  31771. }
  31772. },
  31773. back: {
  31774. height: math.unit(3 + 10/12, "feet"),
  31775. weight: math.unit(90, "lb"),
  31776. name: "Back",
  31777. image: {
  31778. source: "./media/characters/taivas-ensim/back.svg",
  31779. extra: 1355/1247,
  31780. bottom: 11/1366
  31781. }
  31782. },
  31783. frontNsfw: {
  31784. height: math.unit(3 + 10/12, "feet"),
  31785. weight: math.unit(90, "lb"),
  31786. name: "Front (NSFW)",
  31787. image: {
  31788. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31789. extra: 1327/1216,
  31790. bottom: 96/1423
  31791. }
  31792. },
  31793. backNsfw: {
  31794. height: math.unit(3 + 10/12, "feet"),
  31795. weight: math.unit(90, "lb"),
  31796. name: "Back (NSFW)",
  31797. image: {
  31798. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31799. extra: 1355/1247,
  31800. bottom: 11/1366
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(3 + 10/12, "feet"),
  31808. default: true
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31814. {
  31815. front: {
  31816. height: math.unit(9 + 6/12, "feet"),
  31817. weight: math.unit(940, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/byliss/front.svg",
  31821. extra: 1327/1290,
  31822. bottom: 82/1409
  31823. }
  31824. },
  31825. back: {
  31826. height: math.unit(9 + 6/12, "feet"),
  31827. weight: math.unit(940, "lb"),
  31828. name: "Back",
  31829. image: {
  31830. source: "./media/characters/byliss/back.svg",
  31831. extra: 1376/1349,
  31832. bottom: 9/1385
  31833. }
  31834. },
  31835. frontNsfw: {
  31836. height: math.unit(9 + 6/12, "feet"),
  31837. weight: math.unit(940, "lb"),
  31838. name: "Front (NSFW)",
  31839. image: {
  31840. source: "./media/characters/byliss/front-nsfw.svg",
  31841. extra: 1327/1290,
  31842. bottom: 82/1409
  31843. }
  31844. },
  31845. backNsfw: {
  31846. height: math.unit(9 + 6/12, "feet"),
  31847. weight: math.unit(940, "lb"),
  31848. name: "Back (NSFW)",
  31849. image: {
  31850. source: "./media/characters/byliss/back-nsfw.svg",
  31851. extra: 1376/1349,
  31852. bottom: 9/1385
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(9 + 6/12, "feet"),
  31860. default: true
  31861. },
  31862. ]
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31866. {
  31867. front: {
  31868. height: math.unit(5 + 2/12, "feet"),
  31869. weight: math.unit(200, "lb"),
  31870. name: "Front",
  31871. image: {
  31872. source: "./media/characters/noraly/front.svg",
  31873. extra: 4985/4773,
  31874. bottom: 150/5135
  31875. }
  31876. },
  31877. full: {
  31878. height: math.unit(5 + 2/12, "feet"),
  31879. weight: math.unit(164, "lb"),
  31880. name: "Full",
  31881. image: {
  31882. source: "./media/characters/noraly/full.svg",
  31883. extra: 1114/1059,
  31884. bottom: 35/1149
  31885. }
  31886. },
  31887. fuller: {
  31888. height: math.unit(5 + 2/12, "feet"),
  31889. weight: math.unit(230, "lb"),
  31890. name: "Fuller",
  31891. image: {
  31892. source: "./media/characters/noraly/fuller.svg",
  31893. extra: 1114/1059,
  31894. bottom: 35/1149
  31895. }
  31896. },
  31897. fullest: {
  31898. height: math.unit(5 + 2/12, "feet"),
  31899. weight: math.unit(300, "lb"),
  31900. name: "Fullest",
  31901. image: {
  31902. source: "./media/characters/noraly/fullest.svg",
  31903. extra: 1114/1059,
  31904. bottom: 35/1149
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(5 + 2/12, "feet"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31918. {
  31919. front: {
  31920. height: math.unit(5 + 2/12, "feet"),
  31921. weight: math.unit(210, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/pera/front.svg",
  31925. extra: 1560/1531,
  31926. bottom: 165/1725
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(5 + 2/12, "feet"),
  31931. weight: math.unit(210, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/pera/back.svg",
  31935. extra: 1523/1493,
  31936. bottom: 152/1675
  31937. }
  31938. },
  31939. dick: {
  31940. height: math.unit(2.4, "feet"),
  31941. name: "Dick",
  31942. image: {
  31943. source: "./media/characters/pera/dick.svg"
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(5 + 2/12, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(12, "feet"),
  31960. weight: math.unit(3200, "lb"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/julian/front.svg",
  31964. extra: 2962/2701,
  31965. bottom: 184/3146
  31966. }
  31967. },
  31968. maw: {
  31969. height: math.unit(5.35, "feet"),
  31970. name: "Maw",
  31971. image: {
  31972. source: "./media/characters/julian/maw.svg"
  31973. }
  31974. },
  31975. paw: {
  31976. height: math.unit(3.07, "feet"),
  31977. name: "Paw",
  31978. image: {
  31979. source: "./media/characters/julian/paw.svg"
  31980. }
  31981. },
  31982. },
  31983. [
  31984. {
  31985. name: "Default",
  31986. height: math.unit(12, "feet"),
  31987. default: true
  31988. },
  31989. {
  31990. name: "Big",
  31991. height: math.unit(50, "feet")
  31992. },
  31993. {
  31994. name: "Really Big",
  31995. height: math.unit(1, "mile")
  31996. },
  31997. {
  31998. name: "Extremely Big",
  31999. height: math.unit(100, "miles")
  32000. },
  32001. {
  32002. name: "Planet Hugger",
  32003. height: math.unit(200, "megameters")
  32004. },
  32005. {
  32006. name: "Unreasonably Big",
  32007. height: math.unit(1e300, "meters")
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32013. {
  32014. solgooleo: {
  32015. height: math.unit(4, "meters"),
  32016. weight: math.unit(6000*1.5, "kg"),
  32017. volume: math.unit(6000, "liters"),
  32018. name: "Solgooleo",
  32019. image: {
  32020. source: "./media/characters/pi/solgooleo.svg",
  32021. extra: 388/331,
  32022. bottom: 29/417
  32023. }
  32024. },
  32025. },
  32026. [
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(4, "meters"),
  32030. default: true
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(8 + 2/12, "feet"),
  32039. weight: math.unit(4, "tons"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/shaun/front.svg",
  32043. extra: 1550/1505,
  32044. bottom: 353/1903
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Lorg",
  32051. height: math.unit(8 + 2/12, "feet"),
  32052. default: true
  32053. },
  32054. ]
  32055. ))
  32056. characterMakers.push(() => makeCharacter(
  32057. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32058. {
  32059. front: {
  32060. height: math.unit(7, "feet"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/sini/front.svg",
  32064. extra: 726/678,
  32065. bottom: 35/761
  32066. }
  32067. },
  32068. back: {
  32069. height: math.unit(7, "feet"),
  32070. name: "Back",
  32071. image: {
  32072. source: "./media/characters/sini/back.svg",
  32073. extra: 743/701,
  32074. bottom: 12/755
  32075. }
  32076. },
  32077. mawAnthro: {
  32078. height: math.unit(2.14, "feet"),
  32079. name: "Maw (Anthro)",
  32080. image: {
  32081. source: "./media/characters/sini/maw-anthro.svg"
  32082. }
  32083. },
  32084. dick: {
  32085. height: math.unit(1.45, "feet"),
  32086. name: "Dick (Anthro)",
  32087. image: {
  32088. source: "./media/characters/sini/dick-anthro.svg"
  32089. }
  32090. },
  32091. feral: {
  32092. height: math.unit(13, "feet"),
  32093. name: "Feral",
  32094. image: {
  32095. source: "./media/characters/sini/feral.svg",
  32096. extra: 814/605,
  32097. bottom: 11/825
  32098. }
  32099. },
  32100. mawFeral: {
  32101. height: math.unit(4.6, "feet"),
  32102. name: "Maw-feral",
  32103. image: {
  32104. source: "./media/characters/sini/maw-feral.svg"
  32105. }
  32106. },
  32107. footFeral: {
  32108. height: math.unit(4.2, "feet"),
  32109. name: "Foot-feral",
  32110. image: {
  32111. source: "./media/characters/sini/foot-feral.svg"
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Normal",
  32118. height: math.unit(7, "feet"),
  32119. default: true
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32125. {
  32126. side: {
  32127. height: math.unit(13, "meters"),
  32128. weight: math.unit(9072, "kg"),
  32129. name: "Side",
  32130. image: {
  32131. source: "./media/characters/raylldo/side.svg",
  32132. extra: 403/344,
  32133. bottom: 42/445
  32134. }
  32135. },
  32136. leaping: {
  32137. height: math.unit(12.3, "meters"),
  32138. weight: math.unit(9072, "kg"),
  32139. name: "Leaping",
  32140. image: {
  32141. source: "./media/characters/raylldo/leaping.svg",
  32142. extra: 470/249,
  32143. bottom: 13/483
  32144. }
  32145. },
  32146. flying: {
  32147. height: math.unit(18, "meters"),
  32148. weight: math.unit(9072, "kg"),
  32149. name: "Flying",
  32150. image: {
  32151. source: "./media/characters/raylldo/flying.svg"
  32152. }
  32153. },
  32154. head: {
  32155. height: math.unit(5.85, "meters"),
  32156. name: "Head",
  32157. image: {
  32158. source: "./media/characters/raylldo/head.svg"
  32159. }
  32160. },
  32161. maw: {
  32162. height: math.unit(5.32, "meters"),
  32163. name: "Maw",
  32164. image: {
  32165. source: "./media/characters/raylldo/maw.svg"
  32166. }
  32167. },
  32168. eye: {
  32169. height: math.unit(0.54, "meters"),
  32170. name: "Eye",
  32171. image: {
  32172. source: "./media/characters/raylldo/eye.svg"
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(13, "meters"),
  32180. default: true
  32181. },
  32182. ]
  32183. ))
  32184. characterMakers.push(() => makeCharacter(
  32185. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32186. {
  32187. anthroFront: {
  32188. height: math.unit(9, "feet"),
  32189. weight: math.unit(600, "lb"),
  32190. name: "Anthro (Front)",
  32191. image: {
  32192. source: "./media/characters/glint/anthro-front.svg",
  32193. extra: 1097/1018,
  32194. bottom: 28/1125
  32195. }
  32196. },
  32197. anthroBack: {
  32198. height: math.unit(9, "feet"),
  32199. weight: math.unit(600, "lb"),
  32200. name: "Anthro (Back)",
  32201. image: {
  32202. source: "./media/characters/glint/anthro-back.svg",
  32203. extra: 1154/997,
  32204. bottom: 36/1190
  32205. }
  32206. },
  32207. feral: {
  32208. height: math.unit(11, "feet"),
  32209. weight: math.unit(50000, "lb"),
  32210. name: "Feral",
  32211. image: {
  32212. source: "./media/characters/glint/feral.svg",
  32213. extra: 3035/1585,
  32214. bottom: 1169/4204
  32215. }
  32216. },
  32217. dickAnthro: {
  32218. height: math.unit(0.7, "meters"),
  32219. name: "Dick (Anthro)",
  32220. image: {
  32221. source: "./media/characters/glint/dick-anthro.svg"
  32222. }
  32223. },
  32224. dickFeral: {
  32225. height: math.unit(2.65, "meters"),
  32226. name: "Dick (Feral)",
  32227. image: {
  32228. source: "./media/characters/glint/dick-feral.svg"
  32229. }
  32230. },
  32231. slitHidden: {
  32232. height: math.unit(5.85, "meters"),
  32233. name: "Slit (Hidden)",
  32234. image: {
  32235. source: "./media/characters/glint/slit-hidden.svg"
  32236. }
  32237. },
  32238. slitErect: {
  32239. height: math.unit(5.85, "meters"),
  32240. name: "Slit (Erect)",
  32241. image: {
  32242. source: "./media/characters/glint/slit-erect.svg"
  32243. }
  32244. },
  32245. mawAnthro: {
  32246. height: math.unit(0.63, "meters"),
  32247. name: "Maw (Anthro)",
  32248. image: {
  32249. source: "./media/characters/glint/maw.svg"
  32250. }
  32251. },
  32252. mawFeral: {
  32253. height: math.unit(2.89, "meters"),
  32254. name: "Maw (Feral)",
  32255. image: {
  32256. source: "./media/characters/glint/maw.svg"
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Normal",
  32263. height: math.unit(9, "feet"),
  32264. default: true
  32265. },
  32266. ]
  32267. ))
  32268. characterMakers.push(() => makeCharacter(
  32269. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32270. {
  32271. side: {
  32272. height: math.unit(15, "feet"),
  32273. weight: math.unit(5000, "kg"),
  32274. name: "Side",
  32275. image: {
  32276. source: "./media/characters/kairne/side.svg",
  32277. extra: 979/811,
  32278. bottom: 13/992
  32279. }
  32280. },
  32281. front: {
  32282. height: math.unit(15, "feet"),
  32283. weight: math.unit(5000, "kg"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/kairne/front.svg",
  32287. extra: 908/814,
  32288. bottom: 26/934
  32289. }
  32290. },
  32291. sideNsfw: {
  32292. height: math.unit(15, "feet"),
  32293. weight: math.unit(5000, "kg"),
  32294. name: "Side (NSFW)",
  32295. image: {
  32296. source: "./media/characters/kairne/side-nsfw.svg",
  32297. extra: 979/811,
  32298. bottom: 13/992
  32299. }
  32300. },
  32301. frontNsfw: {
  32302. height: math.unit(15, "feet"),
  32303. weight: math.unit(5000, "kg"),
  32304. name: "Front (NSFW)",
  32305. image: {
  32306. source: "./media/characters/kairne/front-nsfw.svg",
  32307. extra: 908/814,
  32308. bottom: 26/934
  32309. }
  32310. },
  32311. dickCaged: {
  32312. height: math.unit(0.65, "meters"),
  32313. name: "Dick-caged",
  32314. image: {
  32315. source: "./media/characters/kairne/dick-caged.svg"
  32316. }
  32317. },
  32318. dick: {
  32319. height: math.unit(0.79, "meters"),
  32320. name: "Dick",
  32321. image: {
  32322. source: "./media/characters/kairne/dick.svg"
  32323. }
  32324. },
  32325. genitals: {
  32326. height: math.unit(1.29, "meters"),
  32327. name: "Genitals",
  32328. image: {
  32329. source: "./media/characters/kairne/genitals.svg"
  32330. }
  32331. },
  32332. maw: {
  32333. height: math.unit(1.73, "meters"),
  32334. name: "Maw",
  32335. image: {
  32336. source: "./media/characters/kairne/maw.svg"
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Normal",
  32343. height: math.unit(15, "feet"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32350. {
  32351. front: {
  32352. height: math.unit(5 + 8/12, "feet"),
  32353. weight: math.unit(139, "lb"),
  32354. name: "Front",
  32355. image: {
  32356. source: "./media/characters/biscuit-jackal/front.svg",
  32357. extra: 2106/1961,
  32358. bottom: 58/2164
  32359. }
  32360. },
  32361. back: {
  32362. height: math.unit(5 + 8/12, "feet"),
  32363. weight: math.unit(139, "lb"),
  32364. name: "Back",
  32365. image: {
  32366. source: "./media/characters/biscuit-jackal/back.svg",
  32367. extra: 2132/1976,
  32368. bottom: 57/2189
  32369. }
  32370. },
  32371. werejackal: {
  32372. height: math.unit(6 + 3/12, "feet"),
  32373. weight: math.unit(188, "lb"),
  32374. name: "Werejackal",
  32375. image: {
  32376. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32377. extra: 2373/2178,
  32378. bottom: 53/2426
  32379. }
  32380. },
  32381. },
  32382. [
  32383. {
  32384. name: "Normal",
  32385. height: math.unit(5 + 8/12, "feet"),
  32386. default: true
  32387. },
  32388. ]
  32389. ))
  32390. characterMakers.push(() => makeCharacter(
  32391. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32392. {
  32393. front: {
  32394. height: math.unit(140, "cm"),
  32395. weight: math.unit(45, "kg"),
  32396. name: "Front",
  32397. image: {
  32398. source: "./media/characters/tayra-white/front.svg",
  32399. extra: 2229/2192,
  32400. bottom: 75/2304
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Normal",
  32407. height: math.unit(140, "cm"),
  32408. default: true
  32409. },
  32410. ]
  32411. ))
  32412. characterMakers.push(() => makeCharacter(
  32413. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32414. {
  32415. front: {
  32416. height: math.unit(4 + 5/12, "feet"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/scoop/front.svg",
  32420. extra: 1257/1136,
  32421. bottom: 69/1326
  32422. }
  32423. },
  32424. back: {
  32425. height: math.unit(4 + 5/12, "feet"),
  32426. name: "Back",
  32427. image: {
  32428. source: "./media/characters/scoop/back.svg",
  32429. extra: 1321/1152,
  32430. bottom: 32/1353
  32431. }
  32432. },
  32433. maw: {
  32434. height: math.unit(0.68, "feet"),
  32435. name: "Maw",
  32436. image: {
  32437. source: "./media/characters/scoop/maw.svg"
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Really Small",
  32444. height: math.unit(1, "mm")
  32445. },
  32446. {
  32447. name: "Micro",
  32448. height: math.unit(1, "inch")
  32449. },
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(4 + 5/12, "feet"),
  32453. default: true
  32454. },
  32455. {
  32456. name: "Macro",
  32457. height: math.unit(200, "feet")
  32458. },
  32459. {
  32460. name: "Megamacro",
  32461. height: math.unit(3240, "feet")
  32462. },
  32463. {
  32464. name: "Teramacro",
  32465. height: math.unit(2500, "miles")
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32471. {
  32472. front: {
  32473. height: math.unit(15 + 7/12, "feet"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/saphinara/front.svg",
  32477. extra: 604/546,
  32478. bottom: 19/623
  32479. }
  32480. },
  32481. side: {
  32482. height: math.unit(15 + 7/12, "feet"),
  32483. name: "Side",
  32484. image: {
  32485. source: "./media/characters/saphinara/side.svg",
  32486. extra: 605/547,
  32487. bottom: 6/611
  32488. }
  32489. },
  32490. back: {
  32491. height: math.unit(15 + 7/12, "feet"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/saphinara/back.svg",
  32495. extra: 591/531,
  32496. bottom: 13/604
  32497. }
  32498. },
  32499. frontTail: {
  32500. height: math.unit(15 + 7/12, "feet"),
  32501. name: "Front (Full Tail)",
  32502. image: {
  32503. source: "./media/characters/saphinara/front-tail.svg",
  32504. extra: 748/547,
  32505. bottom: 66/814
  32506. }
  32507. },
  32508. },
  32509. [
  32510. {
  32511. name: "Normal",
  32512. height: math.unit(15 + 7/12, "feet"),
  32513. default: true
  32514. },
  32515. {
  32516. name: "Angry",
  32517. height: math.unit(30 + 6/12, "feet")
  32518. },
  32519. {
  32520. name: "Enraged",
  32521. height: math.unit(102 + 1/12, "feet")
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32527. {
  32528. front: {
  32529. height: math.unit(6 + 8/12, "feet"),
  32530. weight: math.unit(300, "lb"),
  32531. name: "Front",
  32532. image: {
  32533. source: "./media/characters/jrain/front.svg",
  32534. extra: 3039/2865,
  32535. bottom: 399/3438
  32536. }
  32537. },
  32538. back: {
  32539. height: math.unit(6 + 8/12, "feet"),
  32540. weight: math.unit(300, "lb"),
  32541. name: "Back",
  32542. image: {
  32543. source: "./media/characters/jrain/back.svg",
  32544. extra: 3089/2938,
  32545. bottom: 172/3261
  32546. }
  32547. },
  32548. head: {
  32549. height: math.unit(2.14, "feet"),
  32550. name: "Head",
  32551. image: {
  32552. source: "./media/characters/jrain/head.svg"
  32553. }
  32554. },
  32555. maw: {
  32556. height: math.unit(1.77, "feet"),
  32557. name: "Maw",
  32558. image: {
  32559. source: "./media/characters/jrain/maw.svg"
  32560. }
  32561. },
  32562. leftHand: {
  32563. height: math.unit(1.1, "feet"),
  32564. name: "Left Hand",
  32565. image: {
  32566. source: "./media/characters/jrain/left-hand.svg"
  32567. }
  32568. },
  32569. rightHand: {
  32570. height: math.unit(1.1, "feet"),
  32571. name: "Right Hand",
  32572. image: {
  32573. source: "./media/characters/jrain/right-hand.svg"
  32574. }
  32575. },
  32576. eye: {
  32577. height: math.unit(0.35, "feet"),
  32578. name: "Eye",
  32579. image: {
  32580. source: "./media/characters/jrain/eye.svg"
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(6 + 8/12, "feet"),
  32588. default: true
  32589. },
  32590. {
  32591. name: "Casually Large",
  32592. height: math.unit(25, "feet")
  32593. },
  32594. {
  32595. name: "Giant",
  32596. height: math.unit(100, "feet")
  32597. },
  32598. {
  32599. name: "Kaiju",
  32600. height: math.unit(300, "feet")
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32606. {
  32607. dragon: {
  32608. height: math.unit(5, "meters"),
  32609. name: "Dragon",
  32610. image: {
  32611. source: "./media/characters/sabrina/dragon.svg",
  32612. extra: 3670 / 2365,
  32613. bottom: 333 / 4003
  32614. }
  32615. },
  32616. gryphon: {
  32617. height: math.unit(3, "meters"),
  32618. name: "Gryphon",
  32619. image: {
  32620. source: "./media/characters/sabrina/gryphon.svg",
  32621. extra: 1576 / 945,
  32622. bottom: 71 / 1647
  32623. }
  32624. },
  32625. snake: {
  32626. height: math.unit(12, "meters"),
  32627. name: "Snake",
  32628. image: {
  32629. source: "./media/characters/sabrina/snake.svg",
  32630. extra: 1758 / 1320,
  32631. bottom: 186 / 1944
  32632. }
  32633. },
  32634. collar: {
  32635. height: math.unit(1.86, "meters"),
  32636. name: "Collar",
  32637. image: {
  32638. source: "./media/characters/sabrina/collar.svg"
  32639. }
  32640. },
  32641. eye: {
  32642. height: math.unit(0.53, "meters"),
  32643. name: "Eye",
  32644. image: {
  32645. source: "./media/characters/sabrina/eye.svg"
  32646. }
  32647. },
  32648. foot: {
  32649. height: math.unit(1.86, "meters"),
  32650. name: "Foot",
  32651. image: {
  32652. source: "./media/characters/sabrina/foot.svg"
  32653. }
  32654. },
  32655. hand: {
  32656. height: math.unit(1.32, "meters"),
  32657. name: "Hand",
  32658. image: {
  32659. source: "./media/characters/sabrina/hand.svg"
  32660. }
  32661. },
  32662. head: {
  32663. height: math.unit(2.44, "meters"),
  32664. name: "Head",
  32665. image: {
  32666. source: "./media/characters/sabrina/head.svg"
  32667. }
  32668. },
  32669. headAngry: {
  32670. height: math.unit(2.44, "meters"),
  32671. name: "Head (Angry))",
  32672. image: {
  32673. source: "./media/characters/sabrina/head-angry.svg"
  32674. }
  32675. },
  32676. maw: {
  32677. height: math.unit(1.65, "meters"),
  32678. name: "Maw",
  32679. image: {
  32680. source: "./media/characters/sabrina/maw.svg"
  32681. }
  32682. },
  32683. spikes: {
  32684. height: math.unit(1.69, "meters"),
  32685. name: "Spikes",
  32686. image: {
  32687. source: "./media/characters/sabrina/spikes.svg"
  32688. }
  32689. },
  32690. stomach: {
  32691. height: math.unit(1.15, "meters"),
  32692. name: "Stomach",
  32693. image: {
  32694. source: "./media/characters/sabrina/stomach.svg"
  32695. }
  32696. },
  32697. tongue: {
  32698. height: math.unit(1.27, "meters"),
  32699. name: "Tongue",
  32700. image: {
  32701. source: "./media/characters/sabrina/tongue.svg"
  32702. }
  32703. },
  32704. wingDorsal: {
  32705. height: math.unit(4.85, "meters"),
  32706. name: "Wing (Dorsal)",
  32707. image: {
  32708. source: "./media/characters/sabrina/wing-dorsal.svg"
  32709. }
  32710. },
  32711. wingVentral: {
  32712. height: math.unit(4.85, "meters"),
  32713. name: "Wing (Ventral)",
  32714. image: {
  32715. source: "./media/characters/sabrina/wing-ventral.svg"
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(5, "meters"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32729. {
  32730. frontMaid: {
  32731. height: math.unit(5 + 5/12, "feet"),
  32732. weight: math.unit(130, "lb"),
  32733. name: "Front (Maid)",
  32734. image: {
  32735. source: "./media/characters/midnight-tales/front-maid.svg",
  32736. extra: 489/454,
  32737. bottom: 61/550
  32738. }
  32739. },
  32740. frontFormal: {
  32741. height: math.unit(5 + 5/12, "feet"),
  32742. weight: math.unit(130, "lb"),
  32743. name: "Front (Formal)",
  32744. image: {
  32745. source: "./media/characters/midnight-tales/front-formal.svg",
  32746. extra: 489/454,
  32747. bottom: 61/550
  32748. }
  32749. },
  32750. back: {
  32751. height: math.unit(5 + 5/12, "feet"),
  32752. weight: math.unit(130, "lb"),
  32753. name: "Back",
  32754. image: {
  32755. source: "./media/characters/midnight-tales/back.svg",
  32756. extra: 498/456,
  32757. bottom: 33/531
  32758. }
  32759. },
  32760. frontBeast: {
  32761. height: math.unit(40, "feet"),
  32762. weight: math.unit(64000, "lb"),
  32763. name: "Front (Beast)",
  32764. image: {
  32765. source: "./media/characters/midnight-tales/front-beast.svg",
  32766. extra: 927/860,
  32767. bottom: 53/980
  32768. }
  32769. },
  32770. backBeast: {
  32771. height: math.unit(40, "feet"),
  32772. weight: math.unit(64000, "lb"),
  32773. name: "Back (Beast)",
  32774. image: {
  32775. source: "./media/characters/midnight-tales/back-beast.svg",
  32776. extra: 929/855,
  32777. bottom: 16/945
  32778. }
  32779. },
  32780. footBeast: {
  32781. height: math.unit(6.7, "feet"),
  32782. name: "Foot (Beast)",
  32783. image: {
  32784. source: "./media/characters/midnight-tales/foot-beast.svg"
  32785. }
  32786. },
  32787. headBeast: {
  32788. height: math.unit(8, "feet"),
  32789. name: "Head (Beast)",
  32790. image: {
  32791. source: "./media/characters/midnight-tales/head-beast.svg"
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(5 + 5 / 12, "feet"),
  32799. default: true
  32800. },
  32801. {
  32802. name: "Macro",
  32803. height: math.unit(25, "feet")
  32804. },
  32805. ]
  32806. ))
  32807. characterMakers.push(() => makeCharacter(
  32808. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32809. {
  32810. front: {
  32811. height: math.unit(5 + 10/12, "feet"),
  32812. name: "Front",
  32813. image: {
  32814. source: "./media/characters/argon/front.svg",
  32815. extra: 2009/1935,
  32816. bottom: 118/2127
  32817. }
  32818. },
  32819. back: {
  32820. height: math.unit(5 + 10/12, "feet"),
  32821. name: "Back",
  32822. image: {
  32823. source: "./media/characters/argon/back.svg",
  32824. extra: 2047/1992,
  32825. bottom: 20/2067
  32826. }
  32827. },
  32828. frontDressed: {
  32829. height: math.unit(5 + 10/12, "feet"),
  32830. name: "Front (Dressed)",
  32831. image: {
  32832. source: "./media/characters/argon/front-dressed.svg",
  32833. extra: 2009/1935,
  32834. bottom: 118/2127
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Normal",
  32841. height: math.unit(5 + 10/12, "feet"),
  32842. default: true
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(8 + 6/12, "feet"),
  32851. weight: math.unit(1150, "lb"),
  32852. name: "Front",
  32853. image: {
  32854. source: "./media/characters/kichi/front.svg",
  32855. extra: 1267/1164,
  32856. bottom: 61/1328
  32857. }
  32858. },
  32859. back: {
  32860. height: math.unit(8 + 6/12, "feet"),
  32861. weight: math.unit(1150, "lb"),
  32862. name: "Back",
  32863. image: {
  32864. source: "./media/characters/kichi/back.svg",
  32865. extra: 1273/1166,
  32866. bottom: 33/1306
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(8 + 6/12, "feet"),
  32874. default: true
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(6, "feet"),
  32883. weight: math.unit(210, "lb"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/manetel-greyscale/front.svg",
  32887. extra: 350/312,
  32888. bottom: 8/358
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Micro",
  32895. height: math.unit(2, "inches")
  32896. },
  32897. {
  32898. name: "Normal",
  32899. height: math.unit(6, "feet"),
  32900. default: true
  32901. },
  32902. {
  32903. name: "Minimacro",
  32904. height: math.unit(17, "feet")
  32905. },
  32906. {
  32907. name: "Macro",
  32908. height: math.unit(117, "feet")
  32909. },
  32910. ]
  32911. ))
  32912. characterMakers.push(() => makeCharacter(
  32913. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32914. {
  32915. side: {
  32916. height: math.unit(5 + 1/12, "feet"),
  32917. weight: math.unit(418, "lb"),
  32918. name: "Side",
  32919. image: {
  32920. source: "./media/characters/softpurr/side.svg",
  32921. extra: 1993/1945,
  32922. bottom: 134/2127
  32923. }
  32924. },
  32925. front: {
  32926. height: math.unit(5 + 1/12, "feet"),
  32927. weight: math.unit(418, "lb"),
  32928. name: "Front",
  32929. image: {
  32930. source: "./media/characters/softpurr/front.svg",
  32931. extra: 1950/1856,
  32932. bottom: 174/2124
  32933. }
  32934. },
  32935. paw: {
  32936. height: math.unit(1, "feet"),
  32937. name: "Paw",
  32938. image: {
  32939. source: "./media/characters/softpurr/paw.svg"
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Normal",
  32946. height: math.unit(5 + 1/12, "feet"),
  32947. default: true
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32953. {
  32954. front: {
  32955. height: math.unit(260, "meters"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/anahita/front.svg",
  32959. extra: 665/635,
  32960. bottom: 89/754
  32961. }
  32962. },
  32963. },
  32964. [
  32965. {
  32966. name: "Macro",
  32967. height: math.unit(260, "meters"),
  32968. default: true
  32969. },
  32970. ]
  32971. ))
  32972. characterMakers.push(() => makeCharacter(
  32973. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32974. {
  32975. front: {
  32976. height: math.unit(4 + 10/12, "feet"),
  32977. weight: math.unit(160, "lb"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/chip-mouse/front.svg",
  32981. extra: 3528/3408,
  32982. bottom: 0/3528
  32983. }
  32984. },
  32985. frontNsfw: {
  32986. height: math.unit(4 + 10/12, "feet"),
  32987. weight: math.unit(160, "lb"),
  32988. name: "Front (NSFW)",
  32989. image: {
  32990. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32991. extra: 3528/3408,
  32992. bottom: 0/3528
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(4 + 10/12, "feet"),
  33000. default: true
  33001. },
  33002. ]
  33003. ))
  33004. characterMakers.push(() => makeCharacter(
  33005. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33006. {
  33007. side: {
  33008. height: math.unit(10, "feet"),
  33009. weight: math.unit(14000, "lb"),
  33010. name: "Side",
  33011. image: {
  33012. source: "./media/characters/kremm/side.svg",
  33013. extra: 1390/1053,
  33014. bottom: 90/1480
  33015. }
  33016. },
  33017. gut: {
  33018. height: math.unit(5.8, "feet"),
  33019. name: "Gut",
  33020. image: {
  33021. source: "./media/characters/kremm/gut.svg"
  33022. }
  33023. },
  33024. ass: {
  33025. height: math.unit(6.1, "feet"),
  33026. name: "Ass",
  33027. image: {
  33028. source: "./media/characters/kremm/ass.svg"
  33029. }
  33030. },
  33031. jaws: {
  33032. height: math.unit(2.2, "feet"),
  33033. name: "Jaws",
  33034. image: {
  33035. source: "./media/characters/kremm/jaws.svg"
  33036. }
  33037. },
  33038. dick: {
  33039. height: math.unit(4.26, "feet"),
  33040. name: "Dick",
  33041. image: {
  33042. source: "./media/characters/kremm/dick.svg"
  33043. }
  33044. },
  33045. },
  33046. [
  33047. {
  33048. name: "Normal",
  33049. height: math.unit(10, "feet"),
  33050. default: true
  33051. },
  33052. ]
  33053. ))
  33054. characterMakers.push(() => makeCharacter(
  33055. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33056. {
  33057. front: {
  33058. height: math.unit(30, "stories"),
  33059. name: "Front",
  33060. image: {
  33061. source: "./media/characters/kai/front.svg",
  33062. extra: 1892/1718,
  33063. bottom: 162/2054
  33064. }
  33065. },
  33066. },
  33067. [
  33068. {
  33069. name: "Macro",
  33070. height: math.unit(30, "stories"),
  33071. default: true
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33077. {
  33078. front: {
  33079. height: math.unit(6 + 4/12, "feet"),
  33080. weight: math.unit(145, "lb"),
  33081. name: "Front",
  33082. image: {
  33083. source: "./media/characters/sykes/front.svg",
  33084. extra: 1321 / 1187,
  33085. bottom: 66 / 1387
  33086. }
  33087. },
  33088. back: {
  33089. height: math.unit(6 + 4/12, "feet"),
  33090. weight: math.unit(145, "lb"),
  33091. name: "Back",
  33092. image: {
  33093. source: "./media/characters/sykes/back.svg",
  33094. extra: 1326/1181,
  33095. bottom: 31/1357
  33096. }
  33097. },
  33098. handBack: {
  33099. height: math.unit(0.9, "feet"),
  33100. name: "Hand (Back)",
  33101. image: {
  33102. source: "./media/characters/sykes/hand-back.svg"
  33103. }
  33104. },
  33105. handFront: {
  33106. height: math.unit(0.839, "feet"),
  33107. name: "Hand (Front)",
  33108. image: {
  33109. source: "./media/characters/sykes/hand-front.svg"
  33110. }
  33111. },
  33112. leftFoot: {
  33113. height: math.unit(1.2, "feet"),
  33114. name: "Foot (Left)",
  33115. image: {
  33116. source: "./media/characters/sykes/foot-left.svg"
  33117. }
  33118. },
  33119. rightFoot: {
  33120. height: math.unit(1.2, "feet"),
  33121. name: "Foot (Right)",
  33122. image: {
  33123. source: "./media/characters/sykes/foot-right.svg"
  33124. }
  33125. },
  33126. maw: {
  33127. height: math.unit(1.93, "feet"),
  33128. name: "Maw",
  33129. image: {
  33130. source: "./media/characters/sykes/maw.svg"
  33131. }
  33132. },
  33133. teeth: {
  33134. height: math.unit(0.51, "feet"),
  33135. name: "Teeth",
  33136. image: {
  33137. source: "./media/characters/sykes/teeth.svg"
  33138. }
  33139. },
  33140. tongue: {
  33141. height: math.unit(2.13, "feet"),
  33142. name: "Tongue",
  33143. image: {
  33144. source: "./media/characters/sykes/tongue.svg"
  33145. }
  33146. },
  33147. uvula: {
  33148. height: math.unit(0.16, "feet"),
  33149. name: "Uvula",
  33150. image: {
  33151. source: "./media/characters/sykes/uvula.svg"
  33152. }
  33153. },
  33154. collar: {
  33155. height: math.unit(0.287, "feet"),
  33156. name: "Collar",
  33157. image: {
  33158. source: "./media/characters/sykes/collar.svg"
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Shrunken",
  33165. height: math.unit(5, "inches")
  33166. },
  33167. {
  33168. name: "Normal",
  33169. height: math.unit(6 + 4 / 12, "feet"),
  33170. default: true
  33171. },
  33172. {
  33173. name: "Big",
  33174. height: math.unit(15, "feet")
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(5 + 8/12, "feet"),
  33183. weight: math.unit(190, "lb"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/oven-otter/front.svg",
  33187. extra: 1809/1740,
  33188. bottom: 181/1990
  33189. }
  33190. },
  33191. back: {
  33192. height: math.unit(5 + 8/12, "feet"),
  33193. weight: math.unit(190, "lb"),
  33194. name: "Back",
  33195. image: {
  33196. source: "./media/characters/oven-otter/back.svg",
  33197. extra: 1709/1635,
  33198. bottom: 118/1827
  33199. }
  33200. },
  33201. hand: {
  33202. height: math.unit(1.07, "feet"),
  33203. name: "Hand",
  33204. image: {
  33205. source: "./media/characters/oven-otter/hand.svg"
  33206. }
  33207. },
  33208. beans: {
  33209. height: math.unit(1.74, "feet"),
  33210. name: "Beans",
  33211. image: {
  33212. source: "./media/characters/oven-otter/beans.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Micro",
  33219. height: math.unit(0.5, "inches")
  33220. },
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(5 + 8/12, "feet"),
  33224. default: true
  33225. },
  33226. {
  33227. name: "Macro",
  33228. height: math.unit(250, "feet")
  33229. },
  33230. {
  33231. name: "Really High",
  33232. height: math.unit(420, "feet")
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(5, "meters"),
  33241. weight: math.unit(292000000000000, "kg"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/devourer/front.svg",
  33245. extra: 1800/1733,
  33246. bottom: 211/2011
  33247. }
  33248. },
  33249. maw: {
  33250. height: math.unit(1.1, "meter"),
  33251. name: "Maw",
  33252. image: {
  33253. source: "./media/characters/devourer/maw.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Small",
  33260. height: math.unit(3, "meters")
  33261. },
  33262. {
  33263. name: "Large",
  33264. height: math.unit(5, "meters"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33271. {
  33272. front: {
  33273. height: math.unit(6, "feet"),
  33274. weight: math.unit(400, "lb"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/ellarby/front.svg",
  33278. extra: 1909/1763,
  33279. bottom: 80/1989
  33280. }
  33281. },
  33282. back: {
  33283. height: math.unit(6, "feet"),
  33284. weight: math.unit(400, "lb"),
  33285. name: "Back",
  33286. image: {
  33287. source: "./media/characters/ellarby/back.svg",
  33288. extra: 1914/1784,
  33289. bottom: 172/2086
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Mischief",
  33296. height: math.unit(18, "inches")
  33297. },
  33298. {
  33299. name: "Trouble",
  33300. height: math.unit(12, "feet")
  33301. },
  33302. {
  33303. name: "Havoc",
  33304. height: math.unit(200, "feet"),
  33305. default: true
  33306. },
  33307. {
  33308. name: "Pandemonium",
  33309. height: math.unit(1, "mile")
  33310. },
  33311. {
  33312. name: "Catastrophe",
  33313. height: math.unit(100, "miles")
  33314. },
  33315. ]
  33316. ))
  33317. characterMakers.push(() => makeCharacter(
  33318. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33319. {
  33320. front: {
  33321. height: math.unit(4.7, "meters"),
  33322. weight: math.unit(6500, "kg"),
  33323. name: "Front",
  33324. image: {
  33325. source: "./media/characters/vex/front.svg",
  33326. extra: 1288/1140,
  33327. bottom: 100/1388
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Normal",
  33334. height: math.unit(4.7, "meters"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33341. {
  33342. normal: {
  33343. height: math.unit(6, "feet"),
  33344. weight: math.unit(350, "lb"),
  33345. name: "Normal",
  33346. image: {
  33347. source: "./media/characters/teshy/normal.svg",
  33348. extra: 1795/1735,
  33349. bottom: 16/1811
  33350. }
  33351. },
  33352. monsterFront: {
  33353. height: math.unit(12, "feet"),
  33354. weight: math.unit(4700, "lb"),
  33355. name: "Monster (Front)",
  33356. image: {
  33357. source: "./media/characters/teshy/monster-front.svg",
  33358. extra: 2042/2034,
  33359. bottom: 128/2170
  33360. }
  33361. },
  33362. monsterSide: {
  33363. height: math.unit(12, "feet"),
  33364. weight: math.unit(4700, "lb"),
  33365. name: "Monster (Side)",
  33366. image: {
  33367. source: "./media/characters/teshy/monster-side.svg",
  33368. extra: 2067/2056,
  33369. bottom: 70/2137
  33370. }
  33371. },
  33372. monsterBack: {
  33373. height: math.unit(12, "feet"),
  33374. weight: math.unit(4700, "lb"),
  33375. name: "Monster (Back)",
  33376. image: {
  33377. source: "./media/characters/teshy/monster-back.svg",
  33378. extra: 1921/1914,
  33379. bottom: 171/2092
  33380. }
  33381. },
  33382. },
  33383. [
  33384. {
  33385. name: "Normal",
  33386. height: math.unit(6, "feet"),
  33387. default: true
  33388. },
  33389. ]
  33390. ))
  33391. characterMakers.push(() => makeCharacter(
  33392. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33393. {
  33394. front: {
  33395. height: math.unit(6, "feet"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/ramey/front.svg",
  33399. extra: 790/787,
  33400. bottom: 27/817
  33401. }
  33402. },
  33403. },
  33404. [
  33405. {
  33406. name: "Normal",
  33407. height: math.unit(6, "feet"),
  33408. default: true
  33409. },
  33410. ]
  33411. ))
  33412. characterMakers.push(() => makeCharacter(
  33413. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33414. {
  33415. front: {
  33416. height: math.unit(5 + 5/12, "feet"),
  33417. weight: math.unit(120, "lb"),
  33418. name: "Front",
  33419. image: {
  33420. source: "./media/characters/phirae/front.svg",
  33421. extra: 2491/2436,
  33422. bottom: 38/2529
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(5 + 5/12, "feet"),
  33430. default: true
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33436. {
  33437. front: {
  33438. height: math.unit(6, "feet"),
  33439. weight: math.unit(150, "lb"),
  33440. name: "Front",
  33441. image: {
  33442. source: "./media/characters/stagglas/front.svg",
  33443. extra: 962/882,
  33444. bottom: 53/1015
  33445. }
  33446. },
  33447. },
  33448. [
  33449. {
  33450. name: "Normal",
  33451. height: math.unit(5 + 3/12, "feet"),
  33452. default: true
  33453. },
  33454. ]
  33455. ))
  33456. characterMakers.push(() => makeCharacter(
  33457. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33458. {
  33459. front: {
  33460. height: math.unit(5 + 4/12, "feet"),
  33461. weight: math.unit(145, "lb"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/starra/front.svg",
  33465. extra: 1790/1691,
  33466. bottom: 91/1881
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(5 + 4/12, "feet"),
  33474. default: true
  33475. },
  33476. ]
  33477. ))
  33478. characterMakers.push(() => makeCharacter(
  33479. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33480. {
  33481. front: {
  33482. height: math.unit(2.2, "meters"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33486. extra: 1194/1005,
  33487. bottom: 25/1219
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Normal",
  33494. height: math.unit(2.2, "meters"),
  33495. default: true
  33496. },
  33497. ]
  33498. ))
  33499. characterMakers.push(() => makeCharacter(
  33500. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33501. {
  33502. side: {
  33503. height: math.unit(8 + 2/12, "feet"),
  33504. weight: math.unit(1240, "lb"),
  33505. name: "Side",
  33506. image: {
  33507. source: "./media/characters/mika-valentine/side.svg",
  33508. extra: 2670/2501,
  33509. bottom: 250/2920
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(8 + 2/12, "feet"),
  33517. default: true
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(7 + 2/12, "feet"),
  33526. name: "Front",
  33527. image: {
  33528. source: "./media/characters/xoltol/front.svg",
  33529. extra: 2212/2124,
  33530. bottom: 84/2296
  33531. }
  33532. },
  33533. side: {
  33534. height: math.unit(7 + 2/12, "feet"),
  33535. name: "Side",
  33536. image: {
  33537. source: "./media/characters/xoltol/side.svg",
  33538. extra: 2273/2197,
  33539. bottom: 26/2299
  33540. }
  33541. },
  33542. hand: {
  33543. height: math.unit(2.5, "feet"),
  33544. name: "Hand",
  33545. image: {
  33546. source: "./media/characters/xoltol/hand.svg"
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Small-ish",
  33553. height: math.unit(5 + 11/12, "feet")
  33554. },
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(7 + 2/12, "feet")
  33558. },
  33559. {
  33560. name: "\"Macro\"",
  33561. height: math.unit(14 + 9/12, "feet"),
  33562. default: true
  33563. },
  33564. {
  33565. name: "Alternate Height",
  33566. height: math.unit(20, "feet")
  33567. },
  33568. {
  33569. name: "Actually Macro",
  33570. height: math.unit(100, "feet")
  33571. },
  33572. ]
  33573. ))
  33574. characterMakers.push(() => makeCharacter(
  33575. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33576. {
  33577. front: {
  33578. height: math.unit(5 + 2/12, "feet"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/kotetsu-redwood/front.svg",
  33582. extra: 1053/942,
  33583. bottom: 60/1113
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(5 + 2/12, "feet"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(2.4, "meters"),
  33600. weight: math.unit(125, "kg"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/lilith/front.svg",
  33604. extra: 1590/1513,
  33605. bottom: 203/1793
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Humanoid",
  33612. height: math.unit(2.4, "meters")
  33613. },
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(6, "meters"),
  33617. default: true
  33618. },
  33619. {
  33620. name: "Largest",
  33621. height: math.unit(55, "meters")
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(8 + 4/12, "feet"),
  33630. weight: math.unit(535, "lb"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/beh'kah-bolger/front.svg",
  33634. extra: 1660/1603,
  33635. bottom: 37/1697
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(8 + 4/12, "feet"),
  33643. default: true
  33644. },
  33645. {
  33646. name: "Kaiju",
  33647. height: math.unit(250, "feet")
  33648. },
  33649. {
  33650. name: "Still Growing",
  33651. height: math.unit(10, "miles")
  33652. },
  33653. {
  33654. name: "Continental",
  33655. height: math.unit(5000, "miles")
  33656. },
  33657. {
  33658. name: "Final Form",
  33659. height: math.unit(2500000, "miles")
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33665. {
  33666. front: {
  33667. height: math.unit(7 + 2/12, "feet"),
  33668. weight: math.unit(230, "kg"),
  33669. name: "Front",
  33670. image: {
  33671. source: "./media/characters/tatyana-milewska/front.svg",
  33672. extra: 1199/1150,
  33673. bottom: 86/1285
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Normal",
  33680. height: math.unit(7 + 2/12, "feet"),
  33681. default: true
  33682. },
  33683. {
  33684. name: "Big",
  33685. height: math.unit(12, "feet")
  33686. },
  33687. {
  33688. name: "Minimacro",
  33689. height: math.unit(20, "feet")
  33690. },
  33691. {
  33692. name: "Macro",
  33693. height: math.unit(120, "feet")
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(7 + 8/12, "feet"),
  33702. weight: math.unit(152, "kg"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/helen-arri/front.svg",
  33706. extra: 440/423,
  33707. bottom: 14/454
  33708. }
  33709. },
  33710. back: {
  33711. height: math.unit(7 + 8/12, "feet"),
  33712. weight: math.unit(152, "kg"),
  33713. name: "Back",
  33714. image: {
  33715. source: "./media/characters/helen-arri/back.svg",
  33716. extra: 443/426,
  33717. bottom: 8/451
  33718. }
  33719. },
  33720. },
  33721. [
  33722. {
  33723. name: "Normal",
  33724. height: math.unit(7 + 8/12, "feet"),
  33725. default: true
  33726. },
  33727. {
  33728. name: "Big",
  33729. height: math.unit(14, "feet")
  33730. },
  33731. {
  33732. name: "Minimacro",
  33733. height: math.unit(24, "feet")
  33734. },
  33735. {
  33736. name: "Macro",
  33737. height: math.unit(140, "feet")
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33743. {
  33744. front: {
  33745. height: math.unit(6, "meters"),
  33746. name: "Front",
  33747. image: {
  33748. source: "./media/characters/ehanu-rehu/front.svg",
  33749. extra: 1800/1800,
  33750. bottom: 59/1859
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Normal",
  33757. height: math.unit(6, "meters"),
  33758. default: true
  33759. },
  33760. ]
  33761. ))
  33762. characterMakers.push(() => makeCharacter(
  33763. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33764. {
  33765. front: {
  33766. height: math.unit(7 + 3/12, "feet"),
  33767. name: "Front",
  33768. image: {
  33769. source: "./media/characters/renholder/front.svg",
  33770. extra: 3096/2960,
  33771. bottom: 250/3346
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal Bat",
  33778. height: math.unit(7 + 3/12, "feet"),
  33779. default: true
  33780. },
  33781. {
  33782. name: "Slightly Tall Bat",
  33783. height: math.unit(100, "feet")
  33784. },
  33785. {
  33786. name: "Big Bat",
  33787. height: math.unit(1000, "feet")
  33788. },
  33789. {
  33790. name: "City-Sized Bat",
  33791. height: math.unit(200000, "feet")
  33792. },
  33793. {
  33794. name: "Bigger Bat",
  33795. height: math.unit(10000, "miles")
  33796. },
  33797. {
  33798. name: "Solar Sized Bat",
  33799. height: math.unit(100, "AU")
  33800. },
  33801. {
  33802. name: "Galactic Bat",
  33803. height: math.unit(200000, "lightyears")
  33804. },
  33805. {
  33806. name: "Universally Known Bat",
  33807. height: math.unit(1, "universe")
  33808. },
  33809. ]
  33810. ))
  33811. characterMakers.push(() => makeCharacter(
  33812. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33813. {
  33814. front: {
  33815. height: math.unit(6 + 11/12, "feet"),
  33816. weight: math.unit(250, "lb"),
  33817. name: "Front",
  33818. image: {
  33819. source: "./media/characters/cookiecat/front.svg",
  33820. extra: 893/827,
  33821. bottom: 14/907
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Micro",
  33828. height: math.unit(3, "inches")
  33829. },
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(6 + 11/12, "feet"),
  33833. default: true
  33834. },
  33835. {
  33836. name: "Macro",
  33837. height: math.unit(100, "feet")
  33838. },
  33839. {
  33840. name: "Macro+",
  33841. height: math.unit(404, "feet")
  33842. },
  33843. {
  33844. name: "Megamacro",
  33845. height: math.unit(165, "miles")
  33846. },
  33847. {
  33848. name: "Planetary",
  33849. height: math.unit(4600, "miles")
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33855. {
  33856. front: {
  33857. height: math.unit(10 + 3/12, "feet"),
  33858. weight: math.unit(1500, "lb"),
  33859. name: "Front",
  33860. image: {
  33861. source: "./media/characters/tux-kusanagi/front.svg",
  33862. extra: 944/840,
  33863. bottom: 39/983
  33864. }
  33865. },
  33866. back: {
  33867. height: math.unit(10 + 3/12, "feet"),
  33868. weight: math.unit(1500, "lb"),
  33869. name: "Back",
  33870. image: {
  33871. source: "./media/characters/tux-kusanagi/back.svg",
  33872. extra: 941/842,
  33873. bottom: 28/969
  33874. }
  33875. },
  33876. rump: {
  33877. height: math.unit(5.25, "feet"),
  33878. name: "Rump",
  33879. image: {
  33880. source: "./media/characters/tux-kusanagi/rump.svg"
  33881. }
  33882. },
  33883. beak: {
  33884. height: math.unit(1.54, "feet"),
  33885. name: "Beak",
  33886. image: {
  33887. source: "./media/characters/tux-kusanagi/beak.svg"
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(10 + 3/12, "feet"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(58, "feet"),
  33904. weight: math.unit(200, "tons"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/uzarmazari/front.svg",
  33908. extra: 1575/1455,
  33909. bottom: 152/1727
  33910. }
  33911. },
  33912. back: {
  33913. height: math.unit(58, "feet"),
  33914. weight: math.unit(200, "tons"),
  33915. name: "Back",
  33916. image: {
  33917. source: "./media/characters/uzarmazari/back.svg",
  33918. extra: 1585/1510,
  33919. bottom: 157/1742
  33920. }
  33921. },
  33922. head: {
  33923. height: math.unit(26, "feet"),
  33924. name: "Head",
  33925. image: {
  33926. source: "./media/characters/uzarmazari/head.svg"
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(58, "feet"),
  33934. default: true
  33935. },
  33936. ]
  33937. ))
  33938. characterMakers.push(() => makeCharacter(
  33939. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33940. {
  33941. side: {
  33942. height: math.unit(15, "feet"),
  33943. name: "Side",
  33944. image: {
  33945. source: "./media/characters/akitu/side.svg",
  33946. extra: 1421/1321,
  33947. bottom: 157/1578
  33948. }
  33949. },
  33950. front: {
  33951. height: math.unit(15, "feet"),
  33952. name: "Front",
  33953. image: {
  33954. source: "./media/characters/akitu/front.svg",
  33955. extra: 1435/1326,
  33956. bottom: 232/1667
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(15, "feet"),
  33964. default: true
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(10 + 8/12, "feet"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/azalie-croixland/front.svg",
  33976. extra: 1972/1856,
  33977. bottom: 31/2003
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Original Height",
  33984. height: math.unit(5 + 4/12, "feet")
  33985. },
  33986. {
  33987. name: "Normal Height",
  33988. height: math.unit(10 + 8/12, "feet"),
  33989. default: true
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33995. {
  33996. side: {
  33997. height: math.unit(7 + 1/12, "feet"),
  33998. weight: math.unit(245, "lb"),
  33999. name: "Side",
  34000. image: {
  34001. source: "./media/characters/kavus-kazian/side.svg",
  34002. extra: 349/342,
  34003. bottom: 15/364
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Normal",
  34010. height: math.unit(7 + 1/12, "feet"),
  34011. default: true
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34017. {
  34018. normal: {
  34019. height: math.unit(5 + 11/12, "feet"),
  34020. name: "Normal",
  34021. image: {
  34022. source: "./media/characters/moonlight-rose/normal.svg",
  34023. extra: 1979/1835,
  34024. bottom: 14/1993
  34025. }
  34026. },
  34027. demon: {
  34028. height: math.unit(5, "km"),
  34029. name: "Demon",
  34030. image: {
  34031. source: "./media/characters/moonlight-rose/demon.svg",
  34032. extra: 986/916,
  34033. bottom: 28/1014
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "\"Natural\" height",
  34040. height: math.unit(5 + 11/12, "feet")
  34041. },
  34042. {
  34043. name: "Comfortable Size",
  34044. height: math.unit(40, "meters")
  34045. },
  34046. {
  34047. name: "Common Size",
  34048. height: math.unit(50, "km"),
  34049. default: true
  34050. },
  34051. {
  34052. name: "Demonic",
  34053. height: math.unit(1.24415e+21, "meters")
  34054. },
  34055. ]
  34056. ))
  34057. characterMakers.push(() => makeCharacter(
  34058. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34059. {
  34060. front: {
  34061. height: math.unit(16, "feet"),
  34062. weight: math.unit(610, "kg"),
  34063. name: "Front",
  34064. image: {
  34065. source: "./media/characters/huckle/front.svg",
  34066. extra: 1731/1625,
  34067. bottom: 33/1764
  34068. }
  34069. },
  34070. back: {
  34071. height: math.unit(16, "feet"),
  34072. weight: math.unit(610, "kg"),
  34073. name: "Back",
  34074. image: {
  34075. source: "./media/characters/huckle/back.svg",
  34076. extra: 1738/1651,
  34077. bottom: 37/1775
  34078. }
  34079. },
  34080. laughing: {
  34081. height: math.unit(3.75, "feet"),
  34082. name: "Laughing",
  34083. image: {
  34084. source: "./media/characters/huckle/laughing.svg"
  34085. }
  34086. },
  34087. angry: {
  34088. height: math.unit(4.15, "feet"),
  34089. name: "Angry",
  34090. image: {
  34091. source: "./media/characters/huckle/angry.svg"
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(16, "feet"),
  34099. default: true
  34100. },
  34101. {
  34102. name: "Mini Macro",
  34103. height: math.unit(463, "feet")
  34104. },
  34105. {
  34106. name: "Macro",
  34107. height: math.unit(1680, "meters")
  34108. },
  34109. {
  34110. name: "Mega Macro",
  34111. height: math.unit(175, "km")
  34112. },
  34113. {
  34114. name: "Terra Macro",
  34115. height: math.unit(32, "gigameters")
  34116. },
  34117. {
  34118. name: "Multiverse+",
  34119. height: math.unit(2.56e23, "yottameters")
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(6 + 9/12, "feet"),
  34128. weight: math.unit(280, "lb"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/candy/front.svg",
  34132. extra: 234/217,
  34133. bottom: 11/245
  34134. }
  34135. },
  34136. },
  34137. [
  34138. {
  34139. name: "Really Small",
  34140. height: math.unit(0.1, "nm")
  34141. },
  34142. {
  34143. name: "Micro",
  34144. height: math.unit(2, "inches")
  34145. },
  34146. {
  34147. name: "Normal",
  34148. height: math.unit(6 + 9/12, "feet"),
  34149. default: true
  34150. },
  34151. {
  34152. name: "Small Macro",
  34153. height: math.unit(69, "feet")
  34154. },
  34155. {
  34156. name: "Macro",
  34157. height: math.unit(160, "feet")
  34158. },
  34159. {
  34160. name: "Megamacro",
  34161. height: math.unit(22000, "miles")
  34162. },
  34163. {
  34164. name: "Gigamacro",
  34165. height: math.unit(50000, "miles")
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(4, "feet"),
  34174. weight: math.unit(90, "lb"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/joey-mcdonald/front.svg",
  34178. extra: 1059/852,
  34179. bottom: 33/1092
  34180. }
  34181. },
  34182. back: {
  34183. height: math.unit(4, "feet"),
  34184. weight: math.unit(90, "lb"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/joey-mcdonald/back.svg",
  34188. extra: 1077/879,
  34189. bottom: 5/1082
  34190. }
  34191. },
  34192. },
  34193. [
  34194. {
  34195. name: "Normal",
  34196. height: math.unit(4, "feet"),
  34197. default: true
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(12 + 6/12, "feet"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/kass-lockheed/front.svg",
  34209. extra: 354/343,
  34210. bottom: 9/363
  34211. }
  34212. },
  34213. back: {
  34214. height: math.unit(12 + 6/12, "feet"),
  34215. name: "Back",
  34216. image: {
  34217. source: "./media/characters/kass-lockheed/back.svg",
  34218. extra: 364/352,
  34219. bottom: 3/367
  34220. }
  34221. },
  34222. dick: {
  34223. height: math.unit(3.12, "feet"),
  34224. name: "Dick",
  34225. image: {
  34226. source: "./media/characters/kass-lockheed/dick.svg"
  34227. }
  34228. },
  34229. head: {
  34230. height: math.unit(2.6, "feet"),
  34231. name: "Head",
  34232. image: {
  34233. source: "./media/characters/kass-lockheed/head.svg"
  34234. }
  34235. },
  34236. bleh: {
  34237. height: math.unit(2.85, "feet"),
  34238. name: "Bleh",
  34239. image: {
  34240. source: "./media/characters/kass-lockheed/bleh.svg"
  34241. }
  34242. },
  34243. smug: {
  34244. height: math.unit(2.85, "feet"),
  34245. name: "Smug",
  34246. image: {
  34247. source: "./media/characters/kass-lockheed/smug.svg"
  34248. }
  34249. },
  34250. },
  34251. [
  34252. {
  34253. name: "Normal",
  34254. height: math.unit(12 + 6/12, "feet"),
  34255. default: true
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(6 + 2/12, "feet"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/taylor/front.svg",
  34267. extra: 639/495,
  34268. bottom: 12/651
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(6 + 2/12, "feet"),
  34276. default: true
  34277. },
  34278. {
  34279. name: "Big",
  34280. height: math.unit(15, "feet")
  34281. },
  34282. {
  34283. name: "Lorg",
  34284. height: math.unit(80, "feet")
  34285. },
  34286. {
  34287. name: "Too Lorg",
  34288. height: math.unit(120, "feet")
  34289. },
  34290. ]
  34291. ))
  34292. characterMakers.push(() => makeCharacter(
  34293. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34294. {
  34295. front: {
  34296. height: math.unit(15, "feet"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/kaizer/front.svg",
  34300. extra: 1612/1436,
  34301. bottom: 43/1655
  34302. }
  34303. },
  34304. },
  34305. [
  34306. {
  34307. name: "Normal",
  34308. height: math.unit(15, "feet"),
  34309. default: true
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34315. {
  34316. front: {
  34317. height: math.unit(2, "feet"),
  34318. weight: math.unit(30, "lb"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/sandy/front.svg",
  34322. extra: 1439/1307,
  34323. bottom: 194/1633
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(2, "feet"),
  34331. default: true
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34337. {
  34338. front: {
  34339. height: math.unit(3, "feet"),
  34340. name: "Front",
  34341. image: {
  34342. source: "./media/characters/mellvi/front.svg",
  34343. extra: 1831/1630,
  34344. bottom: 58/1889
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Normal",
  34351. height: math.unit(3, "feet"),
  34352. default: true
  34353. },
  34354. ]
  34355. ))
  34356. characterMakers.push(() => makeCharacter(
  34357. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34358. {
  34359. front: {
  34360. height: math.unit(5 + 11/12, "feet"),
  34361. weight: math.unit(200, "lb"),
  34362. name: "Front",
  34363. image: {
  34364. source: "./media/characters/shirou/front.svg",
  34365. extra: 2491/2383,
  34366. bottom: 189/2680
  34367. }
  34368. },
  34369. back: {
  34370. height: math.unit(5 + 11/12, "feet"),
  34371. weight: math.unit(200, "lb"),
  34372. name: "Back",
  34373. image: {
  34374. source: "./media/characters/shirou/back.svg",
  34375. extra: 2554/2450,
  34376. bottom: 76/2630
  34377. }
  34378. },
  34379. },
  34380. [
  34381. {
  34382. name: "Normal",
  34383. height: math.unit(5 + 11/12, "feet"),
  34384. default: true
  34385. },
  34386. ]
  34387. ))
  34388. characterMakers.push(() => makeCharacter(
  34389. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34390. {
  34391. front: {
  34392. height: math.unit(6 + 3/12, "feet"),
  34393. weight: math.unit(177, "lb"),
  34394. name: "Front",
  34395. image: {
  34396. source: "./media/characters/noryu/front.svg",
  34397. extra: 973/885,
  34398. bottom: 10/983
  34399. }
  34400. },
  34401. },
  34402. [
  34403. {
  34404. name: "Normal",
  34405. height: math.unit(6 + 3/12, "feet"),
  34406. default: true
  34407. },
  34408. ]
  34409. ))
  34410. characterMakers.push(() => makeCharacter(
  34411. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34412. {
  34413. front: {
  34414. height: math.unit(5 + 6/12, "feet"),
  34415. weight: math.unit(170, "lb"),
  34416. name: "Front",
  34417. image: {
  34418. source: "./media/characters/mevolas-rubenido/front.svg",
  34419. extra: 2109/1901,
  34420. bottom: 96/2205
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(5 + 6/12, "feet"),
  34428. default: true
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(100, "feet"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/dee/front.svg",
  34440. extra: 2153/2036,
  34441. bottom: 59/2212
  34442. }
  34443. },
  34444. back: {
  34445. height: math.unit(100, "feet"),
  34446. name: "Back",
  34447. image: {
  34448. source: "./media/characters/dee/back.svg",
  34449. extra: 2183/2058,
  34450. bottom: 75/2258
  34451. }
  34452. },
  34453. foot: {
  34454. height: math.unit(19.43, "feet"),
  34455. name: "Foot",
  34456. image: {
  34457. source: "./media/characters/dee/foot.svg"
  34458. }
  34459. },
  34460. hoof: {
  34461. height: math.unit(20.6, "feet"),
  34462. name: "Hoof",
  34463. image: {
  34464. source: "./media/characters/dee/hoof.svg"
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Macro",
  34471. height: math.unit(100, "feet"),
  34472. default: true
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(5 + 6/12, "feet"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/teh/front.svg",
  34484. extra: 1002/847,
  34485. bottom: 62/1064
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Normal",
  34492. height: math.unit(5 + 6/12, "feet"),
  34493. default: true
  34494. },
  34495. ]
  34496. ))
  34497. characterMakers.push(() => makeCharacter(
  34498. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34499. {
  34500. side: {
  34501. height: math.unit(6 + 1/12, "feet"),
  34502. weight: math.unit(204, "lb"),
  34503. name: "Side",
  34504. image: {
  34505. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34506. extra: 974/775,
  34507. bottom: 169/1143
  34508. }
  34509. },
  34510. sitting: {
  34511. height: math.unit(6 + 2/12, "feet"),
  34512. weight: math.unit(204, "lb"),
  34513. name: "Sitting",
  34514. image: {
  34515. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34516. extra: 1175/964,
  34517. bottom: 378/1553
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Normal",
  34524. height: math.unit(6 + 1/12, "feet"),
  34525. default: true
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(6, "inches"),
  34534. name: "Front",
  34535. image: {
  34536. source: "./media/characters/tululi/front.svg",
  34537. extra: 1997/1876,
  34538. bottom: 20/2017
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(6, "inches"),
  34546. default: true
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34552. {
  34553. front: {
  34554. height: math.unit(4 + 1/12, "feet"),
  34555. name: "Front",
  34556. image: {
  34557. source: "./media/characters/star/front.svg",
  34558. extra: 1493/1189,
  34559. bottom: 48/1541
  34560. }
  34561. },
  34562. },
  34563. [
  34564. {
  34565. name: "Normal",
  34566. height: math.unit(4 + 1/12, "feet"),
  34567. default: true
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34573. {
  34574. front: {
  34575. height: math.unit(6 + 3/12, "feet"),
  34576. name: "Front",
  34577. image: {
  34578. source: "./media/characters/comet/front.svg",
  34579. extra: 1681/1462,
  34580. bottom: 26/1707
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Normal",
  34587. height: math.unit(6 + 3/12, "feet"),
  34588. default: true
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34594. {
  34595. front: {
  34596. height: math.unit(950, "feet"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/vortex/front.svg",
  34600. extra: 1497/1434,
  34601. bottom: 56/1553
  34602. }
  34603. },
  34604. maw: {
  34605. height: math.unit(285, "feet"),
  34606. name: "Maw",
  34607. image: {
  34608. source: "./media/characters/vortex/maw.svg"
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Macro",
  34615. height: math.unit(950, "feet"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(600, "feet"),
  34625. weight: math.unit(0.02, "grams"),
  34626. name: "Front",
  34627. image: {
  34628. source: "./media/characters/doodle/front.svg",
  34629. extra: 1578/1413,
  34630. bottom: 37/1615
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Macro",
  34637. height: math.unit(600, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(6 + 6/12, "feet"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/jai/front.svg",
  34650. extra: 1645/1534,
  34651. bottom: 115/1760
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(6 + 6/12, "feet"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34665. {
  34666. front: {
  34667. height: math.unit(6 + 8/12, "feet"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/pixel/front.svg",
  34671. extra: 1900/1735,
  34672. bottom: 63/1963
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(6 + 8/12, "feet"),
  34680. default: true
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34686. {
  34687. front: {
  34688. height: math.unit(4 + 11/12, "feet"),
  34689. weight: math.unit(111, "lb"),
  34690. name: "Front",
  34691. image: {
  34692. source: "./media/characters/rhett/front.svg",
  34693. extra: 1682/1586,
  34694. bottom: 92/1774
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Mini",
  34701. height: math.unit(1 + 1/12, "feet")
  34702. },
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(4 + 11/12, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(3 + 3/12, "feet"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/penny/front.svg",
  34718. extra: 1406/1311,
  34719. bottom: 26/1432
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(3 + 3/12, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(4 + 11/12, "feet"),
  34736. name: "Front",
  34737. image: {
  34738. source: "./media/characters/monty/front.svg",
  34739. extra: 1479/1209,
  34740. bottom: 0/1479
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(4 + 11/12, "feet"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(8 + 4/12, "feet"),
  34757. name: "Front",
  34758. image: {
  34759. source: "./media/characters/sterling/front.svg",
  34760. extra: 1420/1236,
  34761. bottom: 27/1447
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Normal",
  34768. height: math.unit(8 + 4/12, "feet"),
  34769. default: true
  34770. },
  34771. ]
  34772. ))
  34773. characterMakers.push(() => makeCharacter(
  34774. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34775. {
  34776. front: {
  34777. height: math.unit(15, "feet"),
  34778. name: "Front",
  34779. image: {
  34780. source: "./media/characters/marble/front.svg",
  34781. extra: 973/937,
  34782. bottom: 32/1005
  34783. }
  34784. },
  34785. },
  34786. [
  34787. {
  34788. name: "Normal",
  34789. height: math.unit(15, "feet"),
  34790. default: true
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34796. {
  34797. front: {
  34798. height: math.unit(3, "inches"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/powder/front.svg",
  34802. extra: 1504/1334,
  34803. bottom: 518/2022
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(3, "inches"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(4 + 5/12, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/joey-raccoon/front.svg",
  34823. extra: 1273/1197,
  34824. bottom: 0/1273
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(4 + 5/12, "feet"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(8 + 4/12, "feet"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/vick/front.svg",
  34844. extra: 2187/2118,
  34845. bottom: 47/2234
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(8 + 4/12, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(5 + 5/12, "feet"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/mitsy/front.svg",
  34865. extra: 1842/1695,
  34866. bottom: 0/1842
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Normal",
  34873. height: math.unit(5 + 5/12, "feet"),
  34874. default: true
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(6 + 3/12, "feet"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/silvy/front.svg",
  34886. extra: 1995/1836,
  34887. bottom: 225/2220
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "Normal",
  34894. height: math.unit(6 + 3/12, "feet"),
  34895. default: true
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34901. {
  34902. front: {
  34903. height: math.unit(3 + 8/12, "feet"),
  34904. name: "Front",
  34905. image: {
  34906. source: "./media/characters/rodney/front.svg",
  34907. extra: 1956/1747,
  34908. bottom: 31/1987
  34909. }
  34910. },
  34911. frontDressed: {
  34912. height: math.unit(2.9, "feet"),
  34913. name: "Front (Dressed)",
  34914. image: {
  34915. source: "./media/characters/rodney/front-dressed.svg",
  34916. extra: 1382/1241,
  34917. bottom: 385/1767
  34918. }
  34919. },
  34920. },
  34921. [
  34922. {
  34923. name: "Normal",
  34924. height: math.unit(3 + 8/12, "feet"),
  34925. default: true
  34926. },
  34927. ]
  34928. ))
  34929. characterMakers.push(() => makeCharacter(
  34930. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34931. {
  34932. front: {
  34933. height: math.unit(5 + 9/12, "feet"),
  34934. weight: math.unit(194, "lbs"),
  34935. name: "Front",
  34936. image: {
  34937. source: "./media/characters/zakail-sudekai/front.svg",
  34938. extra: 2696/2533,
  34939. bottom: 248/2944
  34940. }
  34941. },
  34942. maw: {
  34943. height: math.unit(1.35, "feet"),
  34944. name: "Maw",
  34945. image: {
  34946. source: "./media/characters/zakail-sudekai/maw.svg"
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Normal",
  34953. height: math.unit(5 + 9/12, "feet"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(8 + 4/12, "feet"),
  34963. weight: math.unit(1200, "lb"),
  34964. name: "Front",
  34965. image: {
  34966. source: "./media/characters/eleanor/front.svg",
  34967. extra: 1226/1192,
  34968. bottom: 52/1278
  34969. }
  34970. },
  34971. back: {
  34972. height: math.unit(8 + 4/12, "feet"),
  34973. weight: math.unit(1200, "lb"),
  34974. name: "Back",
  34975. image: {
  34976. source: "./media/characters/eleanor/back.svg",
  34977. extra: 1242/1184,
  34978. bottom: 60/1302
  34979. }
  34980. },
  34981. head: {
  34982. height: math.unit(2.62, "feet"),
  34983. name: "Head",
  34984. image: {
  34985. source: "./media/characters/eleanor/head.svg"
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(8 + 4/12, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34999. {
  35000. front: {
  35001. height: math.unit(8 + 4/12, "feet"),
  35002. weight: math.unit(750, "lb"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/tanya/front.svg",
  35006. extra: 1749/1615,
  35007. bottom: 33/1782
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(8 + 4/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(5, "feet"),
  35024. weight: math.unit(225, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/cindy/front.svg",
  35028. extra: 1320/1250,
  35029. bottom: 42/1362
  35030. }
  35031. },
  35032. frontDressed: {
  35033. height: math.unit(5, "feet"),
  35034. weight: math.unit(225, "lb"),
  35035. name: "Front (Dressed)",
  35036. image: {
  35037. source: "./media/characters/cindy/front-dressed.svg",
  35038. extra: 1320/1250,
  35039. bottom: 42/1362
  35040. }
  35041. },
  35042. back: {
  35043. height: math.unit(5, "feet"),
  35044. weight: math.unit(225, "lb"),
  35045. name: "Back",
  35046. image: {
  35047. source: "./media/characters/cindy/back.svg",
  35048. extra: 1384/1346,
  35049. bottom: 14/1398
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Normal",
  35056. height: math.unit(5, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(6 + 9/12, "feet"),
  35066. weight: math.unit(440, "lb"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/wilbur-owen/front.svg",
  35070. extra: 1575/1448,
  35071. bottom: 72/1647
  35072. }
  35073. },
  35074. back: {
  35075. height: math.unit(6 + 9/12, "feet"),
  35076. weight: math.unit(440, "lb"),
  35077. name: "Back",
  35078. image: {
  35079. source: "./media/characters/wilbur-owen/back.svg",
  35080. extra: 1578/1445,
  35081. bottom: 36/1614
  35082. }
  35083. },
  35084. },
  35085. [
  35086. {
  35087. name: "Normal",
  35088. height: math.unit(6 + 9/12, "feet"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(6 + 5/12, "feet"),
  35098. weight: math.unit(650, "lb"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/keegan/front.svg",
  35102. extra: 2387/2198,
  35103. bottom: 33/2420
  35104. }
  35105. },
  35106. side: {
  35107. height: math.unit(6 + 5/12, "feet"),
  35108. weight: math.unit(650, "lb"),
  35109. name: "Side",
  35110. image: {
  35111. source: "./media/characters/keegan/side.svg",
  35112. extra: 2390/2202,
  35113. bottom: 47/2437
  35114. }
  35115. },
  35116. back: {
  35117. height: math.unit(6 + 5/12, "feet"),
  35118. weight: math.unit(650, "lb"),
  35119. name: "Back",
  35120. image: {
  35121. source: "./media/characters/keegan/back.svg",
  35122. extra: 2418/2268,
  35123. bottom: 15/2433
  35124. }
  35125. },
  35126. frontSfw: {
  35127. height: math.unit(6 + 5/12, "feet"),
  35128. weight: math.unit(650, "lb"),
  35129. name: "Front (SFW)",
  35130. image: {
  35131. source: "./media/characters/keegan/front-sfw.svg",
  35132. extra: 2387/2198,
  35133. bottom: 33/2420
  35134. }
  35135. },
  35136. beans: {
  35137. height: math.unit(1.85, "feet"),
  35138. name: "Beans",
  35139. image: {
  35140. source: "./media/characters/keegan/beans.svg"
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(6 + 5/12, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35154. {
  35155. front: {
  35156. height: math.unit(9, "feet"),
  35157. name: "Front",
  35158. image: {
  35159. source: "./media/characters/colton/front.svg",
  35160. extra: 1589/1326,
  35161. bottom: 139/1728
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(9, "feet"),
  35169. default: true
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35175. {
  35176. front: {
  35177. height: math.unit(2 + 9/12, "feet"),
  35178. name: "Front",
  35179. image: {
  35180. source: "./media/characters/bora/front.svg",
  35181. extra: 1265/1250,
  35182. bottom: 24/1289
  35183. }
  35184. },
  35185. },
  35186. [
  35187. {
  35188. name: "Normal",
  35189. height: math.unit(2 + 9/12, "feet"),
  35190. default: true
  35191. },
  35192. ]
  35193. ))
  35194. characterMakers.push(() => makeCharacter(
  35195. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35196. {
  35197. front: {
  35198. height: math.unit(8, "feet"),
  35199. name: "Front",
  35200. image: {
  35201. source: "./media/characters/myu-myu/front.svg",
  35202. extra: 1949/1857,
  35203. bottom: 90/2039
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Normal",
  35210. height: math.unit(8, "feet"),
  35211. default: true
  35212. },
  35213. {
  35214. name: "Big",
  35215. height: math.unit(15, "feet")
  35216. },
  35217. {
  35218. name: "BIG",
  35219. height: math.unit(25, "feet")
  35220. },
  35221. ]
  35222. ))
  35223. characterMakers.push(() => makeCharacter(
  35224. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35225. {
  35226. side: {
  35227. height: math.unit(7 + 5/12, "feet"),
  35228. weight: math.unit(2800, "lb"),
  35229. name: "Side",
  35230. image: {
  35231. source: "./media/characters/haloren/side.svg",
  35232. extra: 1793/409,
  35233. bottom: 59/1852
  35234. }
  35235. },
  35236. frontPaw: {
  35237. height: math.unit(2.36, "feet"),
  35238. name: "Front paw",
  35239. image: {
  35240. source: "./media/characters/haloren/front-paw.svg"
  35241. }
  35242. },
  35243. hindPaw: {
  35244. height: math.unit(3.18, "feet"),
  35245. name: "Hind paw",
  35246. image: {
  35247. source: "./media/characters/haloren/hind-paw.svg"
  35248. }
  35249. },
  35250. maw: {
  35251. height: math.unit(5.05, "feet"),
  35252. name: "Maw",
  35253. image: {
  35254. source: "./media/characters/haloren/maw.svg"
  35255. }
  35256. },
  35257. dick: {
  35258. height: math.unit(2.90, "feet"),
  35259. name: "Dick",
  35260. image: {
  35261. source: "./media/characters/haloren/dick.svg"
  35262. }
  35263. },
  35264. },
  35265. [
  35266. {
  35267. name: "Normal",
  35268. height: math.unit(7 + 5/12, "feet"),
  35269. default: true
  35270. },
  35271. {
  35272. name: "Enhanced",
  35273. height: math.unit(14 + 3/12, "feet")
  35274. },
  35275. ]
  35276. ))
  35277. characterMakers.push(() => makeCharacter(
  35278. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35279. {
  35280. front: {
  35281. height: math.unit(171, "cm"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/kimmy/front.svg",
  35285. extra: 1491/1435,
  35286. bottom: 53/1544
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Small",
  35293. height: math.unit(9, "cm")
  35294. },
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(171, "cm"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(8, "feet"),
  35307. weight: math.unit(300, "lb"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/galeboomer/front.svg",
  35311. extra: 4651/4415,
  35312. bottom: 162/4813
  35313. }
  35314. },
  35315. back: {
  35316. height: math.unit(8, "feet"),
  35317. weight: math.unit(300, "lb"),
  35318. name: "Back",
  35319. image: {
  35320. source: "./media/characters/galeboomer/back.svg",
  35321. extra: 4544/4314,
  35322. bottom: 16/4560
  35323. }
  35324. },
  35325. frontAlt: {
  35326. height: math.unit(8, "feet"),
  35327. weight: math.unit(300, "lb"),
  35328. name: "Front (Alt)",
  35329. image: {
  35330. source: "./media/characters/galeboomer/front-alt.svg",
  35331. extra: 4458/4228,
  35332. bottom: 68/4526
  35333. }
  35334. },
  35335. maw: {
  35336. height: math.unit(1.2, "feet"),
  35337. name: "Maw",
  35338. image: {
  35339. source: "./media/characters/galeboomer/maw.svg"
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(8, "feet"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(5 + 9/12, "feet"),
  35356. weight: math.unit(120, "lb"),
  35357. name: "Front",
  35358. image: {
  35359. source: "./media/characters/chyr/front.svg",
  35360. extra: 1323/1254,
  35361. bottom: 63/1386
  35362. }
  35363. },
  35364. back: {
  35365. height: math.unit(5 + 9/12, "feet"),
  35366. weight: math.unit(120, "lb"),
  35367. name: "Back",
  35368. image: {
  35369. source: "./media/characters/chyr/back.svg",
  35370. extra: 1323/1252,
  35371. bottom: 48/1371
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(5 + 9/12, "feet"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35385. {
  35386. front: {
  35387. height: math.unit(7, "feet"),
  35388. weight: math.unit(310, "lb"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/solarus/front.svg",
  35392. extra: 2415/2021,
  35393. bottom: 103/2518
  35394. }
  35395. },
  35396. back: {
  35397. height: math.unit(7, "feet"),
  35398. weight: math.unit(310, "lb"),
  35399. name: "Back",
  35400. image: {
  35401. source: "./media/characters/solarus/back.svg",
  35402. extra: 2463/2089,
  35403. bottom: 79/2542
  35404. }
  35405. },
  35406. },
  35407. [
  35408. {
  35409. name: "Normal",
  35410. height: math.unit(7, "feet"),
  35411. default: true
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35417. {
  35418. front: {
  35419. height: math.unit(16, "feet"),
  35420. name: "Front",
  35421. image: {
  35422. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35423. extra: 1844/1780,
  35424. bottom: 58/1902
  35425. }
  35426. },
  35427. },
  35428. [
  35429. {
  35430. name: "Normal",
  35431. height: math.unit(16, "feet"),
  35432. default: true
  35433. },
  35434. ]
  35435. ))
  35436. characterMakers.push(() => makeCharacter(
  35437. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35438. {
  35439. front: {
  35440. height: math.unit(11 + 6/12, "feet"),
  35441. weight: math.unit(1366, "lb"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/lexor/front.svg",
  35445. extra: 1560/1481,
  35446. bottom: 211/1771
  35447. }
  35448. },
  35449. back: {
  35450. height: math.unit(11 + 6/12, "feet"),
  35451. weight: math.unit(1366, "lb"),
  35452. name: "Back",
  35453. image: {
  35454. source: "./media/characters/lexor/back.svg",
  35455. extra: 1614/1533,
  35456. bottom: 76/1690
  35457. }
  35458. },
  35459. maw: {
  35460. height: math.unit(3, "feet"),
  35461. name: "Maw",
  35462. image: {
  35463. source: "./media/characters/lexor/maw.svg"
  35464. }
  35465. },
  35466. dick: {
  35467. height: math.unit(2.59, "feet"),
  35468. name: "Dick",
  35469. image: {
  35470. source: "./media/characters/lexor/dick.svg"
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(11 + 6/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(5 + 8/12, "feet"),
  35487. name: "Front",
  35488. image: {
  35489. source: "./media/characters/magnum/front.svg",
  35490. extra: 942/855,
  35491. bottom: 26/968
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(5 + 8/12, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(18 + 4/12, "feet"),
  35508. weight: math.unit(1500, "kg"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/solas-sharpsman/front.svg",
  35512. extra: 1698/1589,
  35513. bottom: 0/1698
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(18 + 4/12, "feet"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(5 + 5/12, "feet"),
  35530. weight: math.unit(180, "lb"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/october/front.svg",
  35534. extra: 1800/1650,
  35535. bottom: 0/1800
  35536. }
  35537. },
  35538. frontNsfw: {
  35539. height: math.unit(5 + 5/12, "feet"),
  35540. weight: math.unit(180, "lb"),
  35541. name: "Front (NSFW)",
  35542. image: {
  35543. source: "./media/characters/october/front-nsfw.svg",
  35544. extra: 1392/1307,
  35545. bottom: 42/1434
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(5 + 5/12, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(8 + 6/12, "feet"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/essynkardi/front.svg",
  35565. extra: 1914/1846,
  35566. bottom: 22/1936
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(8 + 6/12, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(6 + 6/12, "feet"),
  35583. weight: math.unit(7, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/icky/front.svg",
  35587. extra: 813/782,
  35588. bottom: 66/879
  35589. }
  35590. },
  35591. back: {
  35592. height: math.unit(6 + 6/12, "feet"),
  35593. weight: math.unit(7, "lb"),
  35594. name: "Back",
  35595. image: {
  35596. source: "./media/characters/icky/back.svg",
  35597. extra: 754/735,
  35598. bottom: 56/810
  35599. }
  35600. },
  35601. },
  35602. [
  35603. {
  35604. name: "Normal",
  35605. height: math.unit(6 + 6/12, "feet"),
  35606. default: true
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(15, "feet"),
  35615. name: "Front",
  35616. image: {
  35617. source: "./media/characters/rojas/front.svg",
  35618. extra: 1462/1408,
  35619. bottom: 95/1557
  35620. }
  35621. },
  35622. back: {
  35623. height: math.unit(15, "feet"),
  35624. name: "Back",
  35625. image: {
  35626. source: "./media/characters/rojas/back.svg",
  35627. extra: 1023/954,
  35628. bottom: 28/1051
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(15, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35642. {
  35643. frontHuman: {
  35644. height: math.unit(5 + 7/12, "feet"),
  35645. name: "Front (Human)",
  35646. image: {
  35647. source: "./media/characters/alek-dryagan/front-human.svg",
  35648. extra: 1687/1667,
  35649. bottom: 69/1756
  35650. }
  35651. },
  35652. backHuman: {
  35653. height: math.unit(5 + 7/12, "feet"),
  35654. name: "Back (Human)",
  35655. image: {
  35656. source: "./media/characters/alek-dryagan/back-human.svg",
  35657. extra: 1670/1649,
  35658. bottom: 65/1735
  35659. }
  35660. },
  35661. frontDemi: {
  35662. height: math.unit(65, "feet"),
  35663. name: "Front (Demi)",
  35664. image: {
  35665. source: "./media/characters/alek-dryagan/front-demi.svg",
  35666. extra: 1669/1642,
  35667. bottom: 49/1718
  35668. }
  35669. },
  35670. backDemi: {
  35671. height: math.unit(65, "feet"),
  35672. name: "Back (Demi)",
  35673. image: {
  35674. source: "./media/characters/alek-dryagan/back-demi.svg",
  35675. extra: 1658/1637,
  35676. bottom: 40/1698
  35677. }
  35678. },
  35679. mawHuman: {
  35680. height: math.unit(0.3, "feet"),
  35681. name: "Maw (Human)",
  35682. image: {
  35683. source: "./media/characters/alek-dryagan/maw-human.svg"
  35684. }
  35685. },
  35686. mawDemi: {
  35687. height: math.unit(3.8, "feet"),
  35688. name: "Maw (Demi)",
  35689. image: {
  35690. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Normal",
  35697. height: math.unit(5 + 7/12, "feet"),
  35698. default: true
  35699. },
  35700. ]
  35701. ))
  35702. characterMakers.push(() => makeCharacter(
  35703. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35704. {
  35705. frontHuman: {
  35706. height: math.unit(5 + 2/12, "feet"),
  35707. name: "Front (Human)",
  35708. image: {
  35709. source: "./media/characters/gen/front-human.svg",
  35710. extra: 1627/1538,
  35711. bottom: 71/1698
  35712. }
  35713. },
  35714. backHuman: {
  35715. height: math.unit(5 + 2/12, "feet"),
  35716. name: "Back (Human)",
  35717. image: {
  35718. source: "./media/characters/gen/back-human.svg",
  35719. extra: 1638/1548,
  35720. bottom: 69/1707
  35721. }
  35722. },
  35723. frontDemi: {
  35724. height: math.unit(5 + 2/12, "feet"),
  35725. name: "Front (Demi)",
  35726. image: {
  35727. source: "./media/characters/gen/front-demi.svg",
  35728. extra: 1627/1538,
  35729. bottom: 71/1698
  35730. }
  35731. },
  35732. backDemi: {
  35733. height: math.unit(5 + 2/12, "feet"),
  35734. name: "Back (Demi)",
  35735. image: {
  35736. source: "./media/characters/gen/back-demi.svg",
  35737. extra: 1638/1548,
  35738. bottom: 69/1707
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(5 + 2/12, "feet"),
  35746. default: true
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35752. {
  35753. frontImp: {
  35754. height: math.unit(1 + 11/12, "feet"),
  35755. name: "Front (Imp)",
  35756. image: {
  35757. source: "./media/characters/max-kobold/front-imp.svg",
  35758. extra: 1238/1134,
  35759. bottom: 81/1319
  35760. }
  35761. },
  35762. backImp: {
  35763. height: math.unit(1 + 11/12, "feet"),
  35764. name: "Back (Imp)",
  35765. image: {
  35766. source: "./media/characters/max-kobold/back-imp.svg",
  35767. extra: 1334/1175,
  35768. bottom: 34/1368
  35769. }
  35770. },
  35771. frontDemi: {
  35772. height: math.unit(5 + 9/12, "feet"),
  35773. name: "Front (Demi)",
  35774. image: {
  35775. source: "./media/characters/max-kobold/front-demi.svg",
  35776. extra: 1715/1685,
  35777. bottom: 54/1769
  35778. }
  35779. },
  35780. backDemi: {
  35781. height: math.unit(5 + 9/12, "feet"),
  35782. name: "Back (Demi)",
  35783. image: {
  35784. source: "./media/characters/max-kobold/back-demi.svg",
  35785. extra: 1752/1729,
  35786. bottom: 41/1793
  35787. }
  35788. },
  35789. handImp: {
  35790. height: math.unit(0.45, "feet"),
  35791. name: "Hand (Imp)",
  35792. image: {
  35793. source: "./media/characters/max-kobold/hand.svg"
  35794. }
  35795. },
  35796. pawImp: {
  35797. height: math.unit(0.46, "feet"),
  35798. name: "Paw (Imp)",
  35799. image: {
  35800. source: "./media/characters/max-kobold/paw.svg"
  35801. }
  35802. },
  35803. handDemi: {
  35804. height: math.unit(0.80, "feet"),
  35805. name: "Hand (Demi)",
  35806. image: {
  35807. source: "./media/characters/max-kobold/hand.svg"
  35808. }
  35809. },
  35810. pawDemi: {
  35811. height: math.unit(1.1, "feet"),
  35812. name: "Paw (Demi)",
  35813. image: {
  35814. source: "./media/characters/max-kobold/paw.svg"
  35815. }
  35816. },
  35817. headImp: {
  35818. height: math.unit(1.33, "feet"),
  35819. name: "Head (Imp)",
  35820. image: {
  35821. source: "./media/characters/max-kobold/head-imp.svg"
  35822. }
  35823. },
  35824. mawImp: {
  35825. height: math.unit(0.75, "feet"),
  35826. name: "Maw (Imp)",
  35827. image: {
  35828. source: "./media/characters/max-kobold/maw-imp.svg"
  35829. }
  35830. },
  35831. mawDemi: {
  35832. height: math.unit(0.42, "feet"),
  35833. name: "Maw (Demi)",
  35834. image: {
  35835. source: "./media/characters/max-kobold/maw-demi.svg"
  35836. }
  35837. },
  35838. },
  35839. [
  35840. {
  35841. name: "Normal",
  35842. height: math.unit(1 + 11/12, "feet"),
  35843. default: true
  35844. },
  35845. ]
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35849. {
  35850. front: {
  35851. height: math.unit(7 + 5/12, "feet"),
  35852. name: "Front",
  35853. image: {
  35854. source: "./media/characters/carbon/front.svg",
  35855. extra: 1754/1689,
  35856. bottom: 65/1819
  35857. }
  35858. },
  35859. back: {
  35860. height: math.unit(7 + 5/12, "feet"),
  35861. name: "Back",
  35862. image: {
  35863. source: "./media/characters/carbon/back.svg",
  35864. extra: 1762/1695,
  35865. bottom: 24/1786
  35866. }
  35867. },
  35868. frontGigantamax: {
  35869. height: math.unit(150, "feet"),
  35870. name: "Front (Gigantamax)",
  35871. image: {
  35872. source: "./media/characters/carbon/front-gigantamax.svg",
  35873. extra: 1826/1669,
  35874. bottom: 59/1885
  35875. }
  35876. },
  35877. backGigantamax: {
  35878. height: math.unit(150, "feet"),
  35879. name: "Back (Gigantamax)",
  35880. image: {
  35881. source: "./media/characters/carbon/back-gigantamax.svg",
  35882. extra: 1796/1653,
  35883. bottom: 53/1849
  35884. }
  35885. },
  35886. maw: {
  35887. height: math.unit(0.48, "feet"),
  35888. name: "Maw",
  35889. image: {
  35890. source: "./media/characters/carbon/maw.svg"
  35891. }
  35892. },
  35893. mawGigantamax: {
  35894. height: math.unit(7.5, "feet"),
  35895. name: "Maw (Gigantamax)",
  35896. image: {
  35897. source: "./media/characters/carbon/maw-gigantamax.svg"
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(7 + 5/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(6, "feet"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/maverick/front.svg",
  35917. extra: 1672/1661,
  35918. bottom: 85/1757
  35919. }
  35920. },
  35921. back: {
  35922. height: math.unit(6, "feet"),
  35923. name: "Back",
  35924. image: {
  35925. source: "./media/characters/maverick/back.svg",
  35926. extra: 1642/1631,
  35927. bottom: 38/1680
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(6, "feet"),
  35935. default: true
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  35941. {
  35942. front: {
  35943. height: math.unit(15, "feet"),
  35944. weight: math.unit(615, "lb"),
  35945. name: "Front",
  35946. image: {
  35947. source: "./media/characters/grockle/front.svg",
  35948. extra: 1535/1427,
  35949. bottom: 56/1591
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Normal",
  35956. height: math.unit(15, "feet"),
  35957. default: true
  35958. },
  35959. {
  35960. name: "Large",
  35961. height: math.unit(150, "feet")
  35962. },
  35963. {
  35964. name: "Macro",
  35965. height: math.unit(1876, "feet")
  35966. },
  35967. {
  35968. name: "Mega Macro",
  35969. height: math.unit(121940, "feet")
  35970. },
  35971. {
  35972. name: "Giga Macro",
  35973. height: math.unit(750, "km")
  35974. },
  35975. {
  35976. name: "Tera Macro",
  35977. height: math.unit(750000, "km")
  35978. },
  35979. {
  35980. name: "Galactic",
  35981. height: math.unit(1.4e5, "km")
  35982. },
  35983. {
  35984. name: "Godlike",
  35985. height: math.unit(9.8e280, "galaxies")
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(11, "meters"),
  35994. weight: math.unit(20, "tonnes"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/alistair/front.svg",
  35998. extra: 1265/1009,
  35999. bottom: 93/1358
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(11, "meters"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(5 + 8/12, "feet"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/haruka/front.svg",
  36019. extra: 2012/1952,
  36020. bottom: 0/2012
  36021. }
  36022. },
  36023. },
  36024. [
  36025. {
  36026. name: "Normal",
  36027. height: math.unit(5 + 8/12, "feet"),
  36028. default: true
  36029. },
  36030. ]
  36031. ))
  36032. characterMakers.push(() => makeCharacter(
  36033. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36034. {
  36035. back: {
  36036. height: math.unit(9, "feet"),
  36037. name: "Back",
  36038. image: {
  36039. source: "./media/characters/vivian-sylveon/back.svg",
  36040. extra: 1853/1714,
  36041. bottom: 0/1853
  36042. }
  36043. },
  36044. },
  36045. [
  36046. {
  36047. name: "Normal",
  36048. height: math.unit(9, "feet"),
  36049. default: true
  36050. },
  36051. {
  36052. name: "Macro",
  36053. height: math.unit(500, "feet")
  36054. },
  36055. {
  36056. name: "Megamacro",
  36057. height: math.unit(600, "miles")
  36058. },
  36059. {
  36060. name: "Gigamacro",
  36061. height: math.unit(30000, "miles")
  36062. },
  36063. ]
  36064. ))
  36065. //characters
  36066. function makeCharacters() {
  36067. const results = [];
  36068. characterMakers.forEach(character => {
  36069. results.push(character());
  36070. });
  36071. return results;
  36072. }