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

36492 строки
917 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. }
  1580. //species
  1581. function getSpeciesInfo(speciesList) {
  1582. let result = new Set();
  1583. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1584. result.add(entry)
  1585. });
  1586. return Array.from(result);
  1587. };
  1588. function getSpeciesInfoHelper(species) {
  1589. if (!speciesData[species]) {
  1590. console.warn(species + " doesn't exist");
  1591. return [];
  1592. }
  1593. if (speciesData[species].parents) {
  1594. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1595. } else {
  1596. return [species];
  1597. }
  1598. }
  1599. characterMakers.push(() => makeCharacter(
  1600. {
  1601. name: "Fen",
  1602. species: ["crux"],
  1603. description: {
  1604. title: "Bio",
  1605. text: "Very furry. Sheds on everything."
  1606. },
  1607. tags: [
  1608. "anthro",
  1609. "goo"
  1610. ]
  1611. },
  1612. {
  1613. back: {
  1614. height: math.unit(2.2428, "meter"),
  1615. weight: math.unit(124.738, "kg"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/fen/back.svg",
  1619. extra: 2024 / 1867,
  1620. bottom: 13 / 2037
  1621. },
  1622. info: {
  1623. description: {
  1624. mode: "append",
  1625. text: "\n\nHe is not currently looking at you."
  1626. }
  1627. }
  1628. },
  1629. full: {
  1630. height: math.unit(1.34, "meter"),
  1631. weight: math.unit(225, "kg"),
  1632. name: "Full",
  1633. image: {
  1634. source: "./media/characters/fen/full.svg"
  1635. },
  1636. info: {
  1637. description: {
  1638. mode: "append",
  1639. text: "\n\nMunch."
  1640. }
  1641. }
  1642. },
  1643. kneeling: {
  1644. height: math.unit(5.4, "feet"),
  1645. weight: math.unit(124.738, "kg"),
  1646. name: "Kneeling",
  1647. image: {
  1648. source: "./media/characters/fen/kneeling.svg",
  1649. extra: 563 / 507
  1650. }
  1651. },
  1652. goo: {
  1653. height: math.unit(2.8, "feet"),
  1654. weight: math.unit(125, "kg"),
  1655. capacity: math.unit(1, "people"),
  1656. name: "Goo",
  1657. image: {
  1658. source: "./media/characters/fen/goo.svg",
  1659. bottom: 116 / 613
  1660. }
  1661. },
  1662. lounging: {
  1663. height: math.unit(6.5, "feet"),
  1664. weight: math.unit(125, "kg"),
  1665. name: "Lounging",
  1666. image: {
  1667. source: "./media/characters/fen/lounging.svg"
  1668. }
  1669. },
  1670. },
  1671. [
  1672. {
  1673. name: "Normal",
  1674. height: math.unit(2.2428, "meter")
  1675. },
  1676. {
  1677. name: "Big",
  1678. height: math.unit(12, "feet")
  1679. },
  1680. {
  1681. name: "Minimacro",
  1682. height: math.unit(40, "feet"),
  1683. default: true,
  1684. info: {
  1685. description: {
  1686. mode: "append",
  1687. text: "\n\nTOO DAMN BIG"
  1688. }
  1689. }
  1690. },
  1691. {
  1692. name: "Macro",
  1693. height: math.unit(100, "feet"),
  1694. info: {
  1695. description: {
  1696. mode: "append",
  1697. text: "\n\nTOO DAMN BIG"
  1698. }
  1699. }
  1700. },
  1701. {
  1702. name: "Macro+",
  1703. height: math.unit(300, "feet")
  1704. },
  1705. {
  1706. name: "Megamacro",
  1707. height: math.unit(2, "miles")
  1708. }
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(183, "cm"),
  1716. weight: math.unit(80, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/sofia-fluttertail/front.svg",
  1720. bottom: 0.01,
  1721. extra: 2154 / 2081
  1722. }
  1723. },
  1724. frontAlt: {
  1725. height: math.unit(183, "cm"),
  1726. weight: math.unit(80, "kg"),
  1727. name: "Front (alt)",
  1728. image: {
  1729. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1730. }
  1731. },
  1732. back: {
  1733. height: math.unit(183, "cm"),
  1734. weight: math.unit(80, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/sofia-fluttertail/back.svg"
  1738. }
  1739. },
  1740. kneeling: {
  1741. height: math.unit(125, "cm"),
  1742. weight: math.unit(80, "kg"),
  1743. name: "Kneeling",
  1744. image: {
  1745. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1746. extra: 1033 / 977,
  1747. bottom: 23.7 / 1057
  1748. }
  1749. },
  1750. maw: {
  1751. height: math.unit(183 / 5, "cm"),
  1752. name: "Maw",
  1753. image: {
  1754. source: "./media/characters/sofia-fluttertail/maw.svg"
  1755. }
  1756. },
  1757. mawcloseup: {
  1758. height: math.unit(183 / 5 * 0.41, "cm"),
  1759. name: "Maw (Closeup)",
  1760. image: {
  1761. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1762. }
  1763. },
  1764. paws: {
  1765. height: math.unit(1.17, "feet"),
  1766. name: "Paws",
  1767. image: {
  1768. source: "./media/characters/sofia-fluttertail/paws.svg",
  1769. extra: 851 / 851,
  1770. bottom: 17 / 868
  1771. }
  1772. },
  1773. },
  1774. [
  1775. {
  1776. name: "Normal",
  1777. height: math.unit(1.83, "meter")
  1778. },
  1779. {
  1780. name: "Size Thief",
  1781. height: math.unit(18, "feet")
  1782. },
  1783. {
  1784. name: "50 Foot Collie",
  1785. height: math.unit(50, "feet")
  1786. },
  1787. {
  1788. name: "Macro",
  1789. height: math.unit(96, "feet"),
  1790. default: true
  1791. },
  1792. {
  1793. name: "Megamerger",
  1794. height: math.unit(650, "feet")
  1795. },
  1796. ]
  1797. ))
  1798. characterMakers.push(() => makeCharacter(
  1799. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1800. {
  1801. front: {
  1802. height: math.unit(7, "feet"),
  1803. weight: math.unit(100, "kg"),
  1804. name: "Front",
  1805. image: {
  1806. source: "./media/characters/march/front.svg",
  1807. extra: 1,
  1808. bottom: 0.015
  1809. }
  1810. },
  1811. foot: {
  1812. height: math.unit(0.9, "feet"),
  1813. name: "Foot",
  1814. image: {
  1815. source: "./media/characters/march/foot.svg"
  1816. }
  1817. },
  1818. },
  1819. [
  1820. {
  1821. name: "Normal",
  1822. height: math.unit(7.9, "feet")
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(220, "meters")
  1827. },
  1828. {
  1829. name: "Megamacro",
  1830. height: math.unit(2.98, "km"),
  1831. default: true
  1832. },
  1833. {
  1834. name: "Gigamacro",
  1835. height: math.unit(15963, "km")
  1836. },
  1837. {
  1838. name: "Teramacro",
  1839. height: math.unit(2980000000, "km")
  1840. },
  1841. {
  1842. name: "Examacro",
  1843. height: math.unit(250, "parsecs")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(6, "feet"),
  1852. weight: math.unit(60, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/noir/front.svg",
  1856. extra: 1,
  1857. bottom: 0.032
  1858. }
  1859. },
  1860. },
  1861. [
  1862. {
  1863. name: "Normal",
  1864. height: math.unit(6.6, "feet")
  1865. },
  1866. {
  1867. name: "Macro",
  1868. height: math.unit(500, "feet")
  1869. },
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(2.5, "km"),
  1873. default: true
  1874. },
  1875. {
  1876. name: "Gigamacro",
  1877. height: math.unit(22500, "km")
  1878. },
  1879. {
  1880. name: "Teramacro",
  1881. height: math.unit(2500000000, "km")
  1882. },
  1883. {
  1884. name: "Examacro",
  1885. height: math.unit(200, "parsecs")
  1886. },
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1891. {
  1892. front: {
  1893. height: math.unit(7, "feet"),
  1894. weight: math.unit(100, "kg"),
  1895. name: "Front",
  1896. image: {
  1897. source: "./media/characters/okuri/front.svg",
  1898. extra: 1,
  1899. bottom: 0.037
  1900. }
  1901. },
  1902. back: {
  1903. height: math.unit(7, "feet"),
  1904. weight: math.unit(100, "kg"),
  1905. name: "Back",
  1906. image: {
  1907. source: "./media/characters/okuri/back.svg",
  1908. extra: 1,
  1909. bottom: 0.007
  1910. }
  1911. },
  1912. },
  1913. [
  1914. {
  1915. name: "Megamacro",
  1916. height: math.unit(100, "miles"),
  1917. default: true
  1918. },
  1919. ]
  1920. ))
  1921. characterMakers.push(() => makeCharacter(
  1922. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1923. {
  1924. front: {
  1925. height: math.unit(7, "feet"),
  1926. weight: math.unit(100, "kg"),
  1927. name: "Front",
  1928. image: {
  1929. source: "./media/characters/manny/front.svg",
  1930. extra: 1,
  1931. bottom: 0.06
  1932. }
  1933. },
  1934. back: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Back",
  1938. image: {
  1939. source: "./media/characters/manny/back.svg",
  1940. extra: 1,
  1941. bottom: 0.014
  1942. }
  1943. },
  1944. },
  1945. [
  1946. {
  1947. name: "Normal",
  1948. height: math.unit(7, "feet"),
  1949. },
  1950. {
  1951. name: "Macro",
  1952. height: math.unit(78, "feet"),
  1953. default: true
  1954. },
  1955. {
  1956. name: "Macro+",
  1957. height: math.unit(300, "meters")
  1958. },
  1959. {
  1960. name: "Macro++",
  1961. height: math.unit(2400, "meters")
  1962. },
  1963. {
  1964. name: "Megamacro",
  1965. height: math.unit(5167, "meters")
  1966. },
  1967. {
  1968. name: "Gigamacro",
  1969. height: math.unit(41769, "miles")
  1970. },
  1971. ]
  1972. ))
  1973. characterMakers.push(() => makeCharacter(
  1974. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1975. {
  1976. front: {
  1977. height: math.unit(7, "feet"),
  1978. weight: math.unit(100, "kg"),
  1979. name: "Front",
  1980. image: {
  1981. source: "./media/characters/adake/front-1.svg"
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(7, "feet"),
  1986. weight: math.unit(100, "kg"),
  1987. name: "Front (Alt)",
  1988. image: {
  1989. source: "./media/characters/adake/front-2.svg",
  1990. extra: 1,
  1991. bottom: 0.01
  1992. }
  1993. },
  1994. back: {
  1995. height: math.unit(7, "feet"),
  1996. weight: math.unit(100, "kg"),
  1997. name: "Back",
  1998. image: {
  1999. source: "./media/characters/adake/back.svg",
  2000. }
  2001. },
  2002. kneel: {
  2003. height: math.unit(5.385, "feet"),
  2004. weight: math.unit(100, "kg"),
  2005. name: "Kneeling",
  2006. image: {
  2007. source: "./media/characters/adake/kneel.svg",
  2008. bottom: 0.052
  2009. }
  2010. },
  2011. },
  2012. [
  2013. {
  2014. name: "Normal",
  2015. height: math.unit(7, "feet"),
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(78, "feet"),
  2020. default: true
  2021. },
  2022. {
  2023. name: "Macro+",
  2024. height: math.unit(300, "meters")
  2025. },
  2026. {
  2027. name: "Macro++",
  2028. height: math.unit(2400, "meters")
  2029. },
  2030. {
  2031. name: "Megamacro",
  2032. height: math.unit(5167, "meters")
  2033. },
  2034. {
  2035. name: "Gigamacro",
  2036. height: math.unit(41769, "miles")
  2037. },
  2038. ]
  2039. ))
  2040. characterMakers.push(() => makeCharacter(
  2041. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2042. {
  2043. front: {
  2044. height: math.unit(1.65, "meters"),
  2045. weight: math.unit(50, "kg"),
  2046. name: "Front",
  2047. image: {
  2048. source: "./media/characters/elijah/front.svg",
  2049. extra: 858 / 830,
  2050. bottom: 95.5 / 953.8559
  2051. }
  2052. },
  2053. back: {
  2054. height: math.unit(1.65, "meters"),
  2055. weight: math.unit(50, "kg"),
  2056. name: "Back",
  2057. image: {
  2058. source: "./media/characters/elijah/back.svg",
  2059. extra: 895 / 850,
  2060. bottom: 5.3 / 897.956
  2061. }
  2062. },
  2063. frontNsfw: {
  2064. height: math.unit(1.65, "meters"),
  2065. weight: math.unit(50, "kg"),
  2066. name: "Front (NSFW)",
  2067. image: {
  2068. source: "./media/characters/elijah/front-nsfw.svg",
  2069. extra: 858 / 830,
  2070. bottom: 95.5 / 953.8559
  2071. }
  2072. },
  2073. backNsfw: {
  2074. height: math.unit(1.65, "meters"),
  2075. weight: math.unit(50, "kg"),
  2076. name: "Back (NSFW)",
  2077. image: {
  2078. source: "./media/characters/elijah/back-nsfw.svg",
  2079. extra: 895 / 850,
  2080. bottom: 5.3 / 897.956
  2081. }
  2082. },
  2083. dick: {
  2084. height: math.unit(1, "feet"),
  2085. name: "Dick",
  2086. image: {
  2087. source: "./media/characters/elijah/dick.svg"
  2088. }
  2089. },
  2090. beakOpen: {
  2091. height: math.unit(1.25, "feet"),
  2092. name: "Beak (Open)",
  2093. image: {
  2094. source: "./media/characters/elijah/beak-open.svg"
  2095. }
  2096. },
  2097. beakShut: {
  2098. height: math.unit(1.25, "feet"),
  2099. name: "Beak (Shut)",
  2100. image: {
  2101. source: "./media/characters/elijah/beak-shut.svg"
  2102. }
  2103. },
  2104. footFlexing: {
  2105. height: math.unit(1.61, "feet"),
  2106. name: "Foot (Flexing)",
  2107. image: {
  2108. source: "./media/characters/elijah/foot-flexing.svg"
  2109. }
  2110. },
  2111. footStepping: {
  2112. height: math.unit(1.44, "feet"),
  2113. name: "Foot (Stepping)",
  2114. image: {
  2115. source: "./media/characters/elijah/foot-stepping.svg"
  2116. }
  2117. },
  2118. plantigradeLeg: {
  2119. height: math.unit(2.34, "feet"),
  2120. name: "Plantigrade Leg",
  2121. image: {
  2122. source: "./media/characters/elijah/plantigrade-leg.svg"
  2123. }
  2124. },
  2125. plantigradeFootLeft: {
  2126. height: math.unit(0.9, "feet"),
  2127. name: "Plantigrade Foot (Left)",
  2128. image: {
  2129. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2130. }
  2131. },
  2132. plantigradeFootRight: {
  2133. height: math.unit(0.9, "feet"),
  2134. name: "Plantigrade Foot (Right)",
  2135. image: {
  2136. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(1.65, "meters")
  2144. },
  2145. {
  2146. name: "Macro",
  2147. height: math.unit(55, "meters"),
  2148. default: true
  2149. },
  2150. {
  2151. name: "Macro+",
  2152. height: math.unit(105, "meters")
  2153. },
  2154. ]
  2155. ))
  2156. characterMakers.push(() => makeCharacter(
  2157. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2158. {
  2159. front: {
  2160. height: math.unit(11, "feet"),
  2161. weight: math.unit(320, "kg"),
  2162. name: "Front",
  2163. image: {
  2164. source: "./media/characters/rai/front.svg",
  2165. extra: 1802/1696,
  2166. bottom: 68/1870
  2167. }
  2168. },
  2169. frontDressed: {
  2170. height: math.unit(11, "feet"),
  2171. weight: math.unit(320, "kg"),
  2172. name: "Front (Dressed)",
  2173. image: {
  2174. source: "./media/characters/rai/front-dressed.svg",
  2175. extra: 1802/1696,
  2176. bottom: 68/1870
  2177. }
  2178. },
  2179. side: {
  2180. height: math.unit(11, "feet"),
  2181. weight: math.unit(320, "kg"),
  2182. name: "Side",
  2183. image: {
  2184. source: "./media/characters/rai/side.svg",
  2185. extra: 1789/1710,
  2186. bottom: 115/1904
  2187. }
  2188. },
  2189. back: {
  2190. height: math.unit(11, "feet"),
  2191. weight: math.unit(320, "kg"),
  2192. name: "Back",
  2193. image: {
  2194. source: "./media/characters/rai/back.svg",
  2195. extra: 1770/1707,
  2196. bottom: 28/1798
  2197. }
  2198. },
  2199. feral: {
  2200. height: math.unit(11, "feet"),
  2201. weight: math.unit(640, "kg"),
  2202. name: "Feral",
  2203. image: {
  2204. source: "./media/characters/rai/feral.svg",
  2205. extra: 1035/642,
  2206. bottom: 86/1121
  2207. }
  2208. },
  2209. dragon: {
  2210. height: math.unit(23, "feet"),
  2211. weight: math.unit(50000, "lb"),
  2212. name: "Dragon",
  2213. image: {
  2214. source: "./media/characters/rai/dragon.svg",
  2215. extra: 2498 / 2030,
  2216. bottom: 85.2 / 2584
  2217. }
  2218. },
  2219. maw: {
  2220. height: math.unit(6 / 3.81416, "feet"),
  2221. name: "Maw",
  2222. image: {
  2223. source: "./media/characters/rai/maw.svg"
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(11, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(302, "feet"),
  2235. default: true
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2241. {
  2242. frontDressed: {
  2243. height: math.unit(216, "feet"),
  2244. weight: math.unit(7000000, "lb"),
  2245. name: "Front (Dressed)",
  2246. image: {
  2247. source: "./media/characters/jazzy/front-dressed.svg",
  2248. extra: 2738 / 2651,
  2249. bottom: 41.8 / 2786
  2250. }
  2251. },
  2252. backDressed: {
  2253. height: math.unit(216, "feet"),
  2254. weight: math.unit(7000000, "lb"),
  2255. name: "Back (Dressed)",
  2256. image: {
  2257. source: "./media/characters/jazzy/back-dressed.svg",
  2258. extra: 2775 / 2673,
  2259. bottom: 36.8 / 2817
  2260. }
  2261. },
  2262. front: {
  2263. height: math.unit(216, "feet"),
  2264. weight: math.unit(7000000, "lb"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/jazzy/front.svg",
  2268. extra: 2738 / 2651,
  2269. bottom: 41.8 / 2786
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(216, "feet"),
  2274. weight: math.unit(7000000, "lb"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/jazzy/back.svg",
  2278. extra: 2775 / 2673,
  2279. bottom: 36.8 / 2817
  2280. }
  2281. },
  2282. maw: {
  2283. height: math.unit(20, "feet"),
  2284. name: "Maw",
  2285. image: {
  2286. source: "./media/characters/jazzy/maw.svg"
  2287. }
  2288. },
  2289. paws: {
  2290. height: math.unit(27.5, "feet"),
  2291. name: "Paws",
  2292. image: {
  2293. source: "./media/characters/jazzy/paws.svg"
  2294. }
  2295. },
  2296. eye: {
  2297. height: math.unit(4.4, "feet"),
  2298. name: "Eye",
  2299. image: {
  2300. source: "./media/characters/jazzy/eye.svg"
  2301. }
  2302. },
  2303. droneOffense: {
  2304. height: math.unit(9.5, "inches"),
  2305. name: "Drone (Offense)",
  2306. image: {
  2307. source: "./media/characters/jazzy/drone-offense.svg"
  2308. }
  2309. },
  2310. droneRecon: {
  2311. height: math.unit(9.5, "inches"),
  2312. name: "Drone (Recon)",
  2313. image: {
  2314. source: "./media/characters/jazzy/drone-recon.svg"
  2315. }
  2316. },
  2317. droneDefense: {
  2318. height: math.unit(9.5, "inches"),
  2319. name: "Drone (Defense)",
  2320. image: {
  2321. source: "./media/characters/jazzy/drone-defense.svg"
  2322. }
  2323. },
  2324. },
  2325. [
  2326. {
  2327. name: "Macro",
  2328. height: math.unit(216, "feet"),
  2329. default: true
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(9 + 6/12, "feet"),
  2338. weight: math.unit(700, "lb"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/flamm/front.svg",
  2342. extra: 1751/1632,
  2343. bottom: 46/1797
  2344. }
  2345. },
  2346. buff: {
  2347. height: math.unit(9 + 6/12, "feet"),
  2348. weight: math.unit(950, "lb"),
  2349. name: "Buff",
  2350. image: {
  2351. source: "./media/characters/flamm/buff.svg",
  2352. extra: 3018/2874,
  2353. bottom: 221/3239
  2354. }
  2355. },
  2356. },
  2357. [
  2358. {
  2359. name: "Normal",
  2360. height: math.unit(9.5, "feet")
  2361. },
  2362. {
  2363. name: "Macro",
  2364. height: math.unit(200, "feet"),
  2365. default: true
  2366. },
  2367. ]
  2368. ))
  2369. characterMakers.push(() => makeCharacter(
  2370. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2371. {
  2372. front: {
  2373. height: math.unit(5 + 3/12, "feet"),
  2374. weight: math.unit(60, "kg"),
  2375. name: "Front",
  2376. image: {
  2377. source: "./media/characters/zephiro/front.svg",
  2378. extra: 2309 / 2162,
  2379. bottom: 0.069
  2380. }
  2381. },
  2382. side: {
  2383. height: math.unit(5 + 3/12, "feet"),
  2384. weight: math.unit(60, "kg"),
  2385. name: "Side",
  2386. image: {
  2387. source: "./media/characters/zephiro/side.svg",
  2388. extra: 2403 / 2279,
  2389. bottom: 0.015
  2390. }
  2391. },
  2392. back: {
  2393. height: math.unit(5 + 3/12, "feet"),
  2394. weight: math.unit(60, "kg"),
  2395. name: "Back",
  2396. image: {
  2397. source: "./media/characters/zephiro/back.svg",
  2398. extra: 2373 / 2244,
  2399. bottom: 0.013
  2400. }
  2401. },
  2402. hand: {
  2403. height: math.unit(0.68, "feet"),
  2404. name: "Hand",
  2405. image: {
  2406. source: "./media/characters/zephiro/hand.svg"
  2407. }
  2408. },
  2409. paw: {
  2410. height: math.unit(1, "feet"),
  2411. name: "Paw",
  2412. image: {
  2413. source: "./media/characters/zephiro/paw.svg"
  2414. }
  2415. },
  2416. beans: {
  2417. height: math.unit(0.93, "feet"),
  2418. name: "Beans",
  2419. image: {
  2420. source: "./media/characters/zephiro/beans.svg"
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Micro",
  2427. height: math.unit(3, "inches")
  2428. },
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(5 + 3 / 12, "feet"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Macro",
  2436. height: math.unit(118, "feet")
  2437. },
  2438. ]
  2439. ))
  2440. characterMakers.push(() => makeCharacter(
  2441. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2442. {
  2443. front: {
  2444. height: math.unit(5, "feet"),
  2445. weight: math.unit(90, "kg"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/fory/front.svg",
  2449. extra: 2862 / 2674,
  2450. bottom: 180 / 3043.8
  2451. }
  2452. },
  2453. back: {
  2454. height: math.unit(5, "feet"),
  2455. weight: math.unit(90, "kg"),
  2456. name: "Back",
  2457. image: {
  2458. source: "./media/characters/fory/back.svg",
  2459. extra: 2962 / 2791,
  2460. bottom: 106 / 3071.8
  2461. }
  2462. },
  2463. foot: {
  2464. height: math.unit(2.14, "feet"),
  2465. name: "Foot",
  2466. image: {
  2467. source: "./media/characters/fory/foot.svg"
  2468. }
  2469. },
  2470. },
  2471. [
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(5, "feet")
  2475. },
  2476. {
  2477. name: "Macro",
  2478. height: math.unit(50, "feet"),
  2479. default: true
  2480. },
  2481. {
  2482. name: "Megamacro",
  2483. height: math.unit(10, "miles")
  2484. },
  2485. {
  2486. name: "Gigamacro",
  2487. height: math.unit(5, "earths")
  2488. },
  2489. ]
  2490. ))
  2491. characterMakers.push(() => makeCharacter(
  2492. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2493. {
  2494. front: {
  2495. height: math.unit(7, "feet"),
  2496. weight: math.unit(90, "kg"),
  2497. name: "Front",
  2498. image: {
  2499. source: "./media/characters/kurrikage/front.svg",
  2500. extra: 1,
  2501. bottom: 0.035
  2502. }
  2503. },
  2504. back: {
  2505. height: math.unit(7, "feet"),
  2506. weight: math.unit(90, "lb"),
  2507. name: "Back",
  2508. image: {
  2509. source: "./media/characters/kurrikage/back.svg"
  2510. }
  2511. },
  2512. paw: {
  2513. height: math.unit(1.5, "feet"),
  2514. name: "Paw",
  2515. image: {
  2516. source: "./media/characters/kurrikage/paw.svg"
  2517. }
  2518. },
  2519. staff: {
  2520. height: math.unit(6.7, "feet"),
  2521. name: "Staff",
  2522. image: {
  2523. source: "./media/characters/kurrikage/staff.svg"
  2524. }
  2525. },
  2526. peek: {
  2527. height: math.unit(1.05, "feet"),
  2528. name: "Peeking",
  2529. image: {
  2530. source: "./media/characters/kurrikage/peek.svg",
  2531. bottom: 0.08
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(12, "feet"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Big",
  2543. height: math.unit(20, "feet")
  2544. },
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(500, "feet")
  2548. },
  2549. {
  2550. name: "Megamacro",
  2551. height: math.unit(20, "miles")
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(6, "feet"),
  2560. weight: math.unit(75, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/shingo/front.svg",
  2564. extra: 706/681,
  2565. bottom: 11/717
  2566. }
  2567. },
  2568. frontAlt: {
  2569. height: math.unit(6, "feet"),
  2570. weight: math.unit(75, "kg"),
  2571. name: "Front (Alt)",
  2572. image: {
  2573. source: "./media/characters/shingo/front-alt.svg",
  2574. extra: 3511 / 3338,
  2575. bottom: 0.005
  2576. }
  2577. },
  2578. paw: {
  2579. height: math.unit(1, "feet"),
  2580. name: "Paw",
  2581. image: {
  2582. source: "./media/characters/shingo/paw.svg"
  2583. }
  2584. },
  2585. },
  2586. [
  2587. {
  2588. name: "Micro",
  2589. height: math.unit(4, "inches")
  2590. },
  2591. {
  2592. name: "Normal",
  2593. height: math.unit(6, "feet"),
  2594. default: true
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(108, "feet")
  2599. },
  2600. {
  2601. name: "Macro+",
  2602. height: math.unit(1500, "feet")
  2603. },
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2608. {
  2609. side: {
  2610. height: math.unit(6, "feet"),
  2611. weight: math.unit(75, "kg"),
  2612. name: "Side",
  2613. image: {
  2614. source: "./media/characters/aigey/side.svg"
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Macro",
  2621. height: math.unit(200, "feet"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Megamacro",
  2626. height: math.unit(100, "miles")
  2627. },
  2628. ]
  2629. )
  2630. )
  2631. characterMakers.push(() => makeCharacter(
  2632. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2633. {
  2634. front: {
  2635. height: math.unit(5 + 5 / 12, "feet"),
  2636. weight: math.unit(75, "kg"),
  2637. name: "Front",
  2638. image: {
  2639. source: "./media/characters/natasha/front.svg",
  2640. extra: 859 / 824,
  2641. bottom: 23 / 879.6
  2642. }
  2643. },
  2644. frontNsfw: {
  2645. height: math.unit(5 + 5 / 12, "feet"),
  2646. weight: math.unit(75, "kg"),
  2647. name: "Front (NSFW)",
  2648. image: {
  2649. source: "./media/characters/natasha/front-nsfw.svg",
  2650. extra: 859 / 824,
  2651. bottom: 23 / 879.6
  2652. }
  2653. },
  2654. frontErect: {
  2655. height: math.unit(5 + 5 / 12, "feet"),
  2656. weight: math.unit(75, "kg"),
  2657. name: "Front (Erect)",
  2658. image: {
  2659. source: "./media/characters/natasha/front-erect.svg",
  2660. extra: 859 / 824,
  2661. bottom: 23 / 879.6
  2662. }
  2663. },
  2664. back: {
  2665. height: math.unit(5 + 5 / 12, "feet"),
  2666. weight: math.unit(75, "kg"),
  2667. name: "Back",
  2668. image: {
  2669. source: "./media/characters/natasha/back.svg",
  2670. extra: 887.9 / 852.6,
  2671. bottom: 9.7 / 896.4
  2672. }
  2673. },
  2674. backAlt: {
  2675. height: math.unit(5 + 5 / 12, "feet"),
  2676. weight: math.unit(75, "kg"),
  2677. name: "Back (Alt)",
  2678. image: {
  2679. source: "./media/characters/natasha/back-alt.svg",
  2680. extra: 1236.7 / 1192,
  2681. bottom: 22.3 / 1258.2
  2682. }
  2683. },
  2684. dick: {
  2685. height: math.unit(1.772, "feet"),
  2686. name: "Dick",
  2687. image: {
  2688. source: "./media/characters/natasha/dick.svg"
  2689. }
  2690. },
  2691. paw: {
  2692. height: math.unit(0.250, "meters"),
  2693. name: "Paw",
  2694. image: {
  2695. source: "./media/characters/natasha/paw.svg"
  2696. }
  2697. },
  2698. },
  2699. [
  2700. {
  2701. name: "Normal",
  2702. height: math.unit(5 + 5 / 12, "feet")
  2703. },
  2704. {
  2705. name: "Large",
  2706. height: math.unit(12, "feet")
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(100, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro+",
  2715. height: math.unit(260, "feet")
  2716. },
  2717. {
  2718. name: "Macro++",
  2719. height: math.unit(1, "mile")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2725. {
  2726. front: {
  2727. height: math.unit(6, "feet"),
  2728. weight: math.unit(75, "kg"),
  2729. name: "Front",
  2730. image: {
  2731. source: "./media/characters/malik/front.svg"
  2732. }
  2733. },
  2734. side: {
  2735. height: math.unit(6, "feet"),
  2736. weight: math.unit(75, "kg"),
  2737. name: "Side",
  2738. image: {
  2739. source: "./media/characters/malik/side.svg",
  2740. extra: 1.1539
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(6, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/malik/back.svg"
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Macro",
  2755. height: math.unit(156, "feet"),
  2756. default: true
  2757. },
  2758. {
  2759. name: "Macro+",
  2760. height: math.unit(1188, "feet")
  2761. },
  2762. ]
  2763. ))
  2764. characterMakers.push(() => makeCharacter(
  2765. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2766. {
  2767. front: {
  2768. height: math.unit(6, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Front",
  2771. image: {
  2772. source: "./media/characters/sefer/front.svg",
  2773. extra: 848 / 659,
  2774. bottom: 28.3 / 876.442
  2775. }
  2776. },
  2777. back: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Back",
  2781. image: {
  2782. source: "./media/characters/sefer/back.svg",
  2783. extra: 864 / 695,
  2784. bottom: 10 / 871
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front (Dressed)",
  2791. image: {
  2792. source: "./media/characters/sefer/front-dressed.svg",
  2793. extra: 839 / 653,
  2794. bottom: 37.6 / 878
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(6, "feet"),
  2802. default: true
  2803. },
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2808. {
  2809. body: {
  2810. height: math.unit(2.2428, "meter"),
  2811. weight: math.unit(124.738, "kg"),
  2812. name: "Body",
  2813. image: {
  2814. extra: 1225 / 1050,
  2815. source: "./media/characters/north/front.svg"
  2816. }
  2817. }
  2818. },
  2819. [
  2820. {
  2821. name: "Micro",
  2822. height: math.unit(4, "inches")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(63, "meters")
  2827. },
  2828. {
  2829. name: "Megamacro",
  2830. height: math.unit(101, "miles"),
  2831. default: true
  2832. }
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2837. {
  2838. angled: {
  2839. height: math.unit(4, "meter"),
  2840. weight: math.unit(150, "kg"),
  2841. name: "Angled",
  2842. image: {
  2843. source: "./media/characters/talan/angled-sfw.svg",
  2844. bottom: 29 / 3734
  2845. }
  2846. },
  2847. angledNsfw: {
  2848. height: math.unit(4, "meter"),
  2849. weight: math.unit(150, "kg"),
  2850. name: "Angled (NSFW)",
  2851. image: {
  2852. source: "./media/characters/talan/angled-nsfw.svg",
  2853. bottom: 29 / 3734
  2854. }
  2855. },
  2856. frontNsfw: {
  2857. height: math.unit(4, "meter"),
  2858. weight: math.unit(150, "kg"),
  2859. name: "Front (NSFW)",
  2860. image: {
  2861. source: "./media/characters/talan/front-nsfw.svg",
  2862. bottom: 29 / 3734
  2863. }
  2864. },
  2865. sideNsfw: {
  2866. height: math.unit(4, "meter"),
  2867. weight: math.unit(150, "kg"),
  2868. name: "Side (NSFW)",
  2869. image: {
  2870. source: "./media/characters/talan/side-nsfw.svg",
  2871. bottom: 29 / 3734
  2872. }
  2873. },
  2874. back: {
  2875. height: math.unit(4, "meter"),
  2876. weight: math.unit(150, "kg"),
  2877. name: "Back",
  2878. image: {
  2879. source: "./media/characters/talan/back.svg"
  2880. }
  2881. },
  2882. dickBottom: {
  2883. height: math.unit(0.621, "meter"),
  2884. name: "Dick (Bottom)",
  2885. image: {
  2886. source: "./media/characters/talan/dick-bottom.svg"
  2887. }
  2888. },
  2889. dickTop: {
  2890. height: math.unit(0.621, "meter"),
  2891. name: "Dick (Top)",
  2892. image: {
  2893. source: "./media/characters/talan/dick-top.svg"
  2894. }
  2895. },
  2896. dickSide: {
  2897. height: math.unit(0.305, "meter"),
  2898. name: "Dick (Side)",
  2899. image: {
  2900. source: "./media/characters/talan/dick-side.svg"
  2901. }
  2902. },
  2903. dickFront: {
  2904. height: math.unit(0.305, "meter"),
  2905. name: "Dick (Front)",
  2906. image: {
  2907. source: "./media/characters/talan/dick-front.svg"
  2908. }
  2909. },
  2910. },
  2911. [
  2912. {
  2913. name: "Normal",
  2914. height: math.unit(4, "meters")
  2915. },
  2916. {
  2917. name: "Macro",
  2918. height: math.unit(100, "meters")
  2919. },
  2920. {
  2921. name: "Megamacro",
  2922. height: math.unit(2, "miles"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Gigamacro",
  2927. height: math.unit(5000, "miles")
  2928. },
  2929. {
  2930. name: "Teramacro",
  2931. height: math.unit(100, "parsecs")
  2932. }
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(90, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/gael'rathus/front.svg"
  2944. }
  2945. },
  2946. frontAlt: {
  2947. height: math.unit(2, "meter"),
  2948. weight: math.unit(90, "kg"),
  2949. name: "Front (alt)",
  2950. image: {
  2951. source: "./media/characters/gael'rathus/front-alt.svg"
  2952. }
  2953. },
  2954. frontAlt2: {
  2955. height: math.unit(2, "meter"),
  2956. weight: math.unit(90, "kg"),
  2957. name: "Front (alt 2)",
  2958. image: {
  2959. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2960. }
  2961. }
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(9, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Large",
  2971. height: math.unit(25, "feet")
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(0.25, "miles")
  2976. },
  2977. {
  2978. name: "Megamacro",
  2979. height: math.unit(10, "miles")
  2980. }
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2985. {
  2986. side: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(140, "kg"),
  2989. name: "Side",
  2990. image: {
  2991. source: "./media/characters/sosha/side.svg",
  2992. bottom: 0.042
  2993. }
  2994. },
  2995. },
  2996. [
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(12, "feet"),
  3000. default: true
  3001. }
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3006. {
  3007. side: {
  3008. height: math.unit(5 + 5 / 12, "feet"),
  3009. weight: math.unit(170, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/runnola/side.svg",
  3013. extra: 741 / 448,
  3014. bottom: 0.05
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Small",
  3021. height: math.unit(3, "feet")
  3022. },
  3023. {
  3024. name: "Normal",
  3025. height: math.unit(5 + 5 / 12, "feet"),
  3026. default: true
  3027. },
  3028. {
  3029. name: "Big",
  3030. height: math.unit(10, "feet")
  3031. },
  3032. ]
  3033. ))
  3034. characterMakers.push(() => makeCharacter(
  3035. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3036. {
  3037. front: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(50, "kg"),
  3040. name: "Front",
  3041. image: {
  3042. source: "./media/characters/kurribird/front.svg",
  3043. bottom: 0.015
  3044. }
  3045. },
  3046. frontAlt: {
  3047. height: math.unit(1.5, "meter"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Front (Alt)",
  3050. image: {
  3051. source: "./media/characters/kurribird/front-alt.svg",
  3052. extra: 1.45
  3053. }
  3054. },
  3055. },
  3056. [
  3057. {
  3058. name: "Normal",
  3059. height: math.unit(7, "feet")
  3060. },
  3061. {
  3062. name: "Big",
  3063. height: math.unit(12, "feet"),
  3064. default: true
  3065. },
  3066. {
  3067. name: "Macro",
  3068. height: math.unit(1500, "feet")
  3069. },
  3070. {
  3071. name: "Megamacro",
  3072. height: math.unit(2, "miles")
  3073. }
  3074. ]
  3075. ))
  3076. characterMakers.push(() => makeCharacter(
  3077. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3078. {
  3079. front: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(80, "kg"),
  3082. name: "Front",
  3083. image: {
  3084. source: "./media/characters/elbial/front.svg",
  3085. extra: 1643 / 1556,
  3086. bottom: 60.2 / 1696
  3087. }
  3088. },
  3089. side: {
  3090. height: math.unit(2, "meter"),
  3091. weight: math.unit(80, "kg"),
  3092. name: "Side",
  3093. image: {
  3094. source: "./media/characters/elbial/side.svg",
  3095. extra: 1630 / 1565,
  3096. bottom: 71.5 / 1697
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(80, "kg"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/elbial/back.svg",
  3105. extra: 1668 / 1595,
  3106. bottom: 5.6 / 1672
  3107. }
  3108. },
  3109. frontDressed: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(80, "kg"),
  3112. name: "Front (Dressed)",
  3113. image: {
  3114. source: "./media/characters/elbial/front-dressed.svg",
  3115. extra: 1653 / 1584,
  3116. bottom: 57 / 1708
  3117. }
  3118. },
  3119. genitals: {
  3120. height: math.unit(2 / 3.367, "meter"),
  3121. name: "Genitals",
  3122. image: {
  3123. source: "./media/characters/elbial/genitals.svg"
  3124. }
  3125. },
  3126. },
  3127. [
  3128. {
  3129. name: "Large",
  3130. height: math.unit(100, "feet")
  3131. },
  3132. {
  3133. name: "Macro",
  3134. height: math.unit(500, "feet"),
  3135. default: true
  3136. },
  3137. {
  3138. name: "Megamacro",
  3139. height: math.unit(10, "miles")
  3140. },
  3141. {
  3142. name: "Gigamacro",
  3143. height: math.unit(25000, "miles")
  3144. },
  3145. {
  3146. name: "Full-Size",
  3147. height: math.unit(8000000, "gigaparsecs")
  3148. }
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(60, "kg"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/noah/front.svg"
  3160. }
  3161. },
  3162. talons: {
  3163. height: math.unit(0.315, "meter"),
  3164. name: "Talons",
  3165. image: {
  3166. source: "./media/characters/noah/talons.svg"
  3167. }
  3168. }
  3169. },
  3170. [
  3171. {
  3172. name: "Large",
  3173. height: math.unit(50, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(750, "feet"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Megamacro",
  3182. height: math.unit(50, "miles")
  3183. },
  3184. {
  3185. name: "Gigamacro",
  3186. height: math.unit(100000, "miles")
  3187. },
  3188. {
  3189. name: "Full-Size",
  3190. height: math.unit(3000000000, "miles")
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(80, "kg"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/natalya/front.svg"
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(80, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/natalya/back.svg"
  3211. }
  3212. }
  3213. },
  3214. [
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(150, "feet"),
  3218. default: true
  3219. },
  3220. {
  3221. name: "Megamacro",
  3222. height: math.unit(5, "miles")
  3223. },
  3224. {
  3225. name: "Full-Size",
  3226. height: math.unit(600, "kiloparsecs")
  3227. }
  3228. ]
  3229. ))
  3230. characterMakers.push(() => makeCharacter(
  3231. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3232. {
  3233. front: {
  3234. height: math.unit(2, "meter"),
  3235. weight: math.unit(50, "kg"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/erestrebah/front.svg",
  3239. extra: 208 / 193,
  3240. bottom: 0.055
  3241. }
  3242. },
  3243. back: {
  3244. height: math.unit(2, "meter"),
  3245. weight: math.unit(50, "kg"),
  3246. name: "Back",
  3247. image: {
  3248. source: "./media/characters/erestrebah/back.svg",
  3249. extra: 1.3
  3250. }
  3251. }
  3252. },
  3253. [
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(10, "feet")
  3257. },
  3258. {
  3259. name: "Large",
  3260. height: math.unit(50, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Macro",
  3265. height: math.unit(300, "feet")
  3266. },
  3267. {
  3268. name: "Macro+",
  3269. height: math.unit(750, "feet")
  3270. },
  3271. {
  3272. name: "Megamacro",
  3273. height: math.unit(3, "miles")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(80, "kg"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/jennifer/front.svg",
  3286. bottom: 0.11,
  3287. extra: 1.16
  3288. }
  3289. },
  3290. frontAlt: {
  3291. height: math.unit(2, "meter"),
  3292. weight: math.unit(80, "kg"),
  3293. name: "Front (Alt)",
  3294. image: {
  3295. source: "./media/characters/jennifer/front-alt.svg"
  3296. }
  3297. }
  3298. },
  3299. [
  3300. {
  3301. name: "Canon Height",
  3302. height: math.unit(120, "feet"),
  3303. default: true
  3304. },
  3305. {
  3306. name: "Macro+",
  3307. height: math.unit(300, "feet")
  3308. },
  3309. {
  3310. name: "Megamacro",
  3311. height: math.unit(20000, "feet")
  3312. }
  3313. ]
  3314. ))
  3315. characterMakers.push(() => makeCharacter(
  3316. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3317. {
  3318. front: {
  3319. height: math.unit(2, "meter"),
  3320. weight: math.unit(50, "kg"),
  3321. name: "Front",
  3322. image: {
  3323. source: "./media/characters/kalista/front.svg",
  3324. extra: 1947 / 1700,
  3325. bottom: 76.6 / 1412.98
  3326. }
  3327. },
  3328. back: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(50, "kg"),
  3331. name: "Back",
  3332. image: {
  3333. source: "./media/characters/kalista/back.svg",
  3334. extra: 1366 / 1156,
  3335. bottom: 33.9 / 1362.78
  3336. }
  3337. }
  3338. },
  3339. [
  3340. {
  3341. name: "Uncomfortably Small",
  3342. height: math.unit(10, "feet")
  3343. },
  3344. {
  3345. name: "Small",
  3346. height: math.unit(30, "feet")
  3347. },
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(100, "feet"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Macro+",
  3355. height: math.unit(2000, "feet")
  3356. },
  3357. {
  3358. name: "True Form",
  3359. height: math.unit(8924, "miles")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2, "meter"),
  3368. weight: math.unit(120, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/ggv/front.svg"
  3372. }
  3373. },
  3374. side: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(120, "kg"),
  3377. name: "Side",
  3378. image: {
  3379. source: "./media/characters/ggv/side.svg"
  3380. }
  3381. }
  3382. },
  3383. [
  3384. {
  3385. name: "Extremely Puny",
  3386. height: math.unit(9 + 5 / 12, "feet")
  3387. },
  3388. {
  3389. name: "Horribly Small",
  3390. height: math.unit(47.7, "miles"),
  3391. default: true
  3392. },
  3393. {
  3394. name: "Reasonably Sized",
  3395. height: math.unit(25000, "parsecs")
  3396. },
  3397. {
  3398. name: "Slightly Uncompressed",
  3399. height: math.unit(7.77e31, "parsecs")
  3400. },
  3401. {
  3402. name: "Omniversal",
  3403. height: math.unit(1e300, "meters")
  3404. },
  3405. ]
  3406. ))
  3407. characterMakers.push(() => makeCharacter(
  3408. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3409. {
  3410. front: {
  3411. height: math.unit(2, "meter"),
  3412. weight: math.unit(75, "lb"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/napalm/front.svg"
  3416. }
  3417. },
  3418. back: {
  3419. height: math.unit(2, "meter"),
  3420. weight: math.unit(75, "lb"),
  3421. name: "Back",
  3422. image: {
  3423. source: "./media/characters/napalm/back.svg"
  3424. }
  3425. }
  3426. },
  3427. [
  3428. {
  3429. name: "Standard",
  3430. height: math.unit(55, "feet"),
  3431. default: true
  3432. }
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(7 + 5 / 6, "feet"),
  3440. weight: math.unit(325, "lb"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/asana/front.svg",
  3444. extra: 1133 / 1060,
  3445. bottom: 15.2 / 1148.6
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(7 + 5 / 6, "feet"),
  3450. weight: math.unit(325, "lb"),
  3451. name: "Back",
  3452. image: {
  3453. source: "./media/characters/asana/back.svg",
  3454. extra: 1114 / 1043,
  3455. bottom: 5 / 1120
  3456. }
  3457. },
  3458. dressedDark: {
  3459. height: math.unit(7 + 5 / 6, "feet"),
  3460. weight: math.unit(325, "lb"),
  3461. name: "Dressed (Dark)",
  3462. image: {
  3463. source: "./media/characters/asana/dressed-dark.svg",
  3464. extra: 1133 / 1060,
  3465. bottom: 15.2 / 1148.6
  3466. }
  3467. },
  3468. dressedLight: {
  3469. height: math.unit(7 + 5 / 6, "feet"),
  3470. weight: math.unit(325, "lb"),
  3471. name: "Dressed (Light)",
  3472. image: {
  3473. source: "./media/characters/asana/dressed-light.svg",
  3474. extra: 1133 / 1060,
  3475. bottom: 15.2 / 1148.6
  3476. }
  3477. },
  3478. },
  3479. [
  3480. {
  3481. name: "Standard",
  3482. height: math.unit(7 + 5 / 6, "feet"),
  3483. default: true
  3484. },
  3485. {
  3486. name: "Large",
  3487. height: math.unit(10, "meters")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(2500, "meters")
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(5e6, "meters")
  3496. },
  3497. {
  3498. name: "Examacro",
  3499. height: math.unit(5e12, "lightyears")
  3500. },
  3501. {
  3502. name: "Max Size",
  3503. height: math.unit(1e31, "lightyears")
  3504. }
  3505. ]
  3506. ))
  3507. characterMakers.push(() => makeCharacter(
  3508. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3509. {
  3510. front: {
  3511. height: math.unit(2, "meter"),
  3512. weight: math.unit(60, "kg"),
  3513. name: "Front",
  3514. image: {
  3515. source: "./media/characters/ebony/front.svg",
  3516. bottom: 0.03,
  3517. extra: 1045 / 810 + 0.03
  3518. }
  3519. },
  3520. side: {
  3521. height: math.unit(2, "meter"),
  3522. weight: math.unit(60, "kg"),
  3523. name: "Side",
  3524. image: {
  3525. source: "./media/characters/ebony/side.svg",
  3526. bottom: 0.03,
  3527. extra: 1045 / 810 + 0.03
  3528. }
  3529. },
  3530. back: {
  3531. height: math.unit(2, "meter"),
  3532. weight: math.unit(60, "kg"),
  3533. name: "Back",
  3534. image: {
  3535. source: "./media/characters/ebony/back.svg",
  3536. bottom: 0.01,
  3537. extra: 1045 / 810 + 0.01
  3538. }
  3539. },
  3540. },
  3541. [
  3542. // TODO check why I did this lol
  3543. {
  3544. name: "Standard",
  3545. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(200, "feet")
  3551. },
  3552. {
  3553. name: "Gigamacro",
  3554. height: math.unit(13000, "km")
  3555. }
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(6, "feet"),
  3563. weight: math.unit(175, "lb"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/mountain/front.svg",
  3567. extra: 972 / 955,
  3568. bottom: 64 / 1036.6
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(6, "feet"),
  3573. weight: math.unit(175, "lb"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/mountain/back.svg",
  3577. extra: 970 / 950,
  3578. bottom: 28.25 / 999
  3579. }
  3580. },
  3581. },
  3582. [
  3583. {
  3584. name: "Large",
  3585. height: math.unit(20, "meters")
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(300, "meters")
  3590. },
  3591. {
  3592. name: "Gigamacro",
  3593. height: math.unit(10000, "km"),
  3594. default: true
  3595. },
  3596. {
  3597. name: "Examacro",
  3598. height: math.unit(10e9, "lightyears")
  3599. }
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3604. {
  3605. front: {
  3606. height: math.unit(8, "feet"),
  3607. weight: math.unit(500, "lb"),
  3608. name: "Front",
  3609. image: {
  3610. source: "./media/characters/rick/front.svg"
  3611. }
  3612. }
  3613. },
  3614. [
  3615. {
  3616. name: "Normal",
  3617. height: math.unit(8, "feet"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Macro",
  3622. height: math.unit(5, "km")
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(8, "feet"),
  3631. weight: math.unit(120, "lb"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/ona/front.svg"
  3635. }
  3636. },
  3637. frontAlt: {
  3638. height: math.unit(8, "feet"),
  3639. weight: math.unit(120, "lb"),
  3640. name: "Front (Alt)",
  3641. image: {
  3642. source: "./media/characters/ona/front-alt.svg"
  3643. }
  3644. },
  3645. back: {
  3646. height: math.unit(8, "feet"),
  3647. weight: math.unit(120, "lb"),
  3648. name: "Back",
  3649. image: {
  3650. source: "./media/characters/ona/back.svg"
  3651. }
  3652. },
  3653. foot: {
  3654. height: math.unit(1.1, "feet"),
  3655. name: "Foot",
  3656. image: {
  3657. source: "./media/characters/ona/foot.svg"
  3658. }
  3659. }
  3660. },
  3661. [
  3662. {
  3663. name: "Megamacro",
  3664. height: math.unit(70, "km"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Gigamacro",
  3669. height: math.unit(681818, "miles")
  3670. },
  3671. {
  3672. name: "Examacro",
  3673. height: math.unit(3800000, "lightyears")
  3674. },
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(12, "feet"),
  3682. weight: math.unit(3000, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/mech/front.svg",
  3686. extra: 2900 / 2770,
  3687. bottom: 110 / 3010
  3688. }
  3689. },
  3690. back: {
  3691. height: math.unit(12, "feet"),
  3692. weight: math.unit(3000, "lb"),
  3693. name: "Back",
  3694. image: {
  3695. source: "./media/characters/mech/back.svg",
  3696. extra: 3011 / 2890,
  3697. bottom: 94 / 3105
  3698. }
  3699. },
  3700. maw: {
  3701. height: math.unit(3.07, "feet"),
  3702. name: "Maw",
  3703. image: {
  3704. source: "./media/characters/mech/maw.svg"
  3705. }
  3706. },
  3707. head: {
  3708. height: math.unit(2.82, "feet"),
  3709. name: "Head",
  3710. image: {
  3711. source: "./media/characters/mech/head.svg"
  3712. }
  3713. },
  3714. dick: {
  3715. height: math.unit(1.43, "feet"),
  3716. name: "Dick",
  3717. image: {
  3718. source: "./media/characters/mech/dick.svg"
  3719. }
  3720. },
  3721. },
  3722. [
  3723. {
  3724. name: "Normal",
  3725. height: math.unit(12, "feet")
  3726. },
  3727. {
  3728. name: "Macro",
  3729. height: math.unit(300, "feet"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Macro+",
  3734. height: math.unit(1500, "feet")
  3735. },
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(1.3, "meter"),
  3743. weight: math.unit(30, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/gregory/front.svg",
  3747. }
  3748. }
  3749. },
  3750. [
  3751. {
  3752. name: "Normal",
  3753. height: math.unit(1.3, "meter"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(20, "meter")
  3759. }
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(2.8, "meter"),
  3767. weight: math.unit(200, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/elory/front.svg",
  3771. }
  3772. }
  3773. },
  3774. [
  3775. {
  3776. name: "Normal",
  3777. height: math.unit(2.8, "meter"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(38, "meter")
  3783. }
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(470, "feet"),
  3791. weight: math.unit(924, "tons"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/angelpatamon/front.svg",
  3795. }
  3796. }
  3797. },
  3798. [
  3799. {
  3800. name: "Normal",
  3801. height: math.unit(470, "feet"),
  3802. default: true
  3803. },
  3804. {
  3805. name: "Deity Size I",
  3806. height: math.unit(28651.2, "km")
  3807. },
  3808. {
  3809. name: "Deity Size II",
  3810. height: math.unit(171907.2, "km")
  3811. }
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3816. {
  3817. side: {
  3818. height: math.unit(7.2, "meter"),
  3819. weight: math.unit(8.2, "tons"),
  3820. name: "Side",
  3821. image: {
  3822. source: "./media/characters/cryae/side.svg",
  3823. extra: 3500 / 1500
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(7.2, "meter"),
  3831. default: true
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3837. {
  3838. front: {
  3839. height: math.unit(6, "feet"),
  3840. weight: math.unit(175, "lb"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/xera/front.svg",
  3844. extra: 2377 / 1972,
  3845. bottom: 75.5 / 2452
  3846. }
  3847. },
  3848. side: {
  3849. height: math.unit(6, "feet"),
  3850. weight: math.unit(175, "lb"),
  3851. name: "Side",
  3852. image: {
  3853. source: "./media/characters/xera/side.svg",
  3854. extra: 2345 / 2019,
  3855. bottom: 39.7 / 2384
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(175, "lb"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/xera/back.svg",
  3864. extra: 2095 / 1984,
  3865. bottom: 67 / 2166
  3866. }
  3867. },
  3868. },
  3869. [
  3870. {
  3871. name: "Small",
  3872. height: math.unit(10, "feet")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(500, "meters"),
  3877. default: true
  3878. },
  3879. {
  3880. name: "Macro+",
  3881. height: math.unit(10, "km")
  3882. },
  3883. {
  3884. name: "Gigamacro",
  3885. height: math.unit(25000, "km")
  3886. },
  3887. {
  3888. name: "Teramacro",
  3889. height: math.unit(3e6, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3895. {
  3896. front: {
  3897. height: math.unit(6, "feet"),
  3898. weight: math.unit(175, "lb"),
  3899. name: "Front",
  3900. image: {
  3901. source: "./media/characters/nebula/front.svg",
  3902. extra: 2566 / 2362,
  3903. bottom: 81 / 2644
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Small",
  3910. height: math.unit(4.5, "meters")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(1500, "meters"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(150, "km")
  3920. },
  3921. {
  3922. name: "Gigamacro",
  3923. height: math.unit(27000, "km")
  3924. }
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3929. {
  3930. front: {
  3931. height: math.unit(6, "feet"),
  3932. weight: math.unit(225, "lb"),
  3933. name: "Front",
  3934. image: {
  3935. source: "./media/characters/abysgar/front.svg"
  3936. }
  3937. }
  3938. },
  3939. [
  3940. {
  3941. name: "Small",
  3942. height: math.unit(4.5, "meters")
  3943. },
  3944. {
  3945. name: "Macro",
  3946. height: math.unit(1250, "meters"),
  3947. default: true
  3948. },
  3949. {
  3950. name: "Megamacro",
  3951. height: math.unit(125, "km")
  3952. },
  3953. {
  3954. name: "Gigamacro",
  3955. height: math.unit(26000, "km")
  3956. }
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3961. {
  3962. front: {
  3963. height: math.unit(6, "feet"),
  3964. weight: math.unit(180, "lb"),
  3965. name: "Front",
  3966. image: {
  3967. source: "./media/characters/yakuz/front.svg"
  3968. }
  3969. }
  3970. },
  3971. [
  3972. {
  3973. name: "Small",
  3974. height: math.unit(5, "meters")
  3975. },
  3976. {
  3977. name: "Macro",
  3978. height: math.unit(1500, "meters"),
  3979. default: true
  3980. },
  3981. {
  3982. name: "Megamacro",
  3983. height: math.unit(200, "km")
  3984. },
  3985. {
  3986. name: "Gigamacro",
  3987. height: math.unit(100000, "km")
  3988. }
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3993. {
  3994. front: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(175, "lb"),
  3997. name: "Front",
  3998. image: {
  3999. source: "./media/characters/mirova/front.svg",
  4000. extra: 3334 / 3071,
  4001. bottom: 42 / 3375.6
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Small",
  4008. height: math.unit(5, "meters")
  4009. },
  4010. {
  4011. name: "Macro",
  4012. height: math.unit(900, "meters"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(135, "km")
  4018. },
  4019. {
  4020. name: "Gigamacro",
  4021. height: math.unit(20000, "km")
  4022. }
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4027. {
  4028. side: {
  4029. height: math.unit(28.35, "feet"),
  4030. weight: math.unit(99.75, "tons"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/asana-mech/side.svg",
  4034. extra: 923 / 699,
  4035. bottom: 50 / 975
  4036. }
  4037. },
  4038. chaingun: {
  4039. height: math.unit(7, "feet"),
  4040. weight: math.unit(2400, "lb"),
  4041. name: "Chaingun",
  4042. image: {
  4043. source: "./media/characters/asana-mech/chaingun.svg"
  4044. }
  4045. },
  4046. laser: {
  4047. height: math.unit(7.12, "feet"),
  4048. weight: math.unit(2000, "lb"),
  4049. name: "Laser",
  4050. image: {
  4051. source: "./media/characters/asana-mech/laser.svg"
  4052. }
  4053. },
  4054. },
  4055. [
  4056. {
  4057. name: "Normal",
  4058. height: math.unit(28.35, "feet"),
  4059. default: true
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(2500, "feet")
  4064. },
  4065. {
  4066. name: "Megamacro",
  4067. height: math.unit(25, "miles")
  4068. },
  4069. {
  4070. name: "Examacro",
  4071. height: math.unit(6e8, "lightyears")
  4072. },
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(5, "meters"),
  4080. weight: math.unit(1000, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/asche/front.svg",
  4084. extra: 1258 / 1190,
  4085. bottom: 47 / 1305
  4086. }
  4087. },
  4088. frontUnderwear: {
  4089. height: math.unit(5, "meters"),
  4090. weight: math.unit(1000, "kg"),
  4091. name: "Front (Underwear)",
  4092. image: {
  4093. source: "./media/characters/asche/front-underwear.svg",
  4094. extra: 1258 / 1190,
  4095. bottom: 47 / 1305
  4096. }
  4097. },
  4098. frontDressed: {
  4099. height: math.unit(5, "meters"),
  4100. weight: math.unit(1000, "kg"),
  4101. name: "Front (Dressed)",
  4102. image: {
  4103. source: "./media/characters/asche/front-dressed.svg",
  4104. extra: 1258 / 1190,
  4105. bottom: 47 / 1305
  4106. }
  4107. },
  4108. frontArmor: {
  4109. height: math.unit(5, "meters"),
  4110. weight: math.unit(1000, "kg"),
  4111. name: "Front (Armored)",
  4112. image: {
  4113. source: "./media/characters/asche/front-armored.svg",
  4114. extra: 1374 / 1308,
  4115. bottom: 23 / 1397
  4116. }
  4117. },
  4118. mp724: {
  4119. height: math.unit(0.96, "meters"),
  4120. weight: math.unit(38, "kg"),
  4121. name: "H&K MP724",
  4122. image: {
  4123. source: "./media/characters/asche/h&k-mp724.svg"
  4124. }
  4125. },
  4126. side: {
  4127. height: math.unit(5, "meters"),
  4128. weight: math.unit(1000, "kg"),
  4129. name: "Side",
  4130. image: {
  4131. source: "./media/characters/asche/side.svg",
  4132. extra: 1717 / 1609,
  4133. bottom: 0.005
  4134. }
  4135. },
  4136. back: {
  4137. height: math.unit(5, "meters"),
  4138. weight: math.unit(1000, "kg"),
  4139. name: "Back",
  4140. image: {
  4141. source: "./media/characters/asche/back.svg",
  4142. extra: 1570 / 1501
  4143. }
  4144. },
  4145. },
  4146. [
  4147. {
  4148. name: "DEFCON 5",
  4149. height: math.unit(5, "meters")
  4150. },
  4151. {
  4152. name: "DEFCON 4",
  4153. height: math.unit(500, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "DEFCON 3",
  4158. height: math.unit(5, "km")
  4159. },
  4160. {
  4161. name: "DEFCON 2",
  4162. height: math.unit(500, "km")
  4163. },
  4164. {
  4165. name: "DEFCON 1",
  4166. height: math.unit(500000, "km")
  4167. },
  4168. {
  4169. name: "DEFCON 0",
  4170. height: math.unit(3, "gigaparsecs")
  4171. },
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(2, "meters"),
  4179. weight: math.unit(76, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/gale/front.svg"
  4183. }
  4184. },
  4185. frontAlt1: {
  4186. height: math.unit(2, "meters"),
  4187. weight: math.unit(76, "kg"),
  4188. name: "Front (Alt 1)",
  4189. image: {
  4190. source: "./media/characters/gale/front-alt-1.svg"
  4191. }
  4192. },
  4193. frontAlt2: {
  4194. height: math.unit(2, "meters"),
  4195. weight: math.unit(76, "kg"),
  4196. name: "Front (Alt 2)",
  4197. image: {
  4198. source: "./media/characters/gale/front-alt-2.svg"
  4199. }
  4200. },
  4201. },
  4202. [
  4203. {
  4204. name: "Normal",
  4205. height: math.unit(7, "feet")
  4206. },
  4207. {
  4208. name: "Macro",
  4209. height: math.unit(150, "feet"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Macro+",
  4214. height: math.unit(300, "feet")
  4215. },
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(2, "meters"),
  4223. weight: math.unit(76, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/draylen/front.svg"
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(150, "feet"),
  4234. default: true
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(7 + 9 / 12, "feet"),
  4243. weight: math.unit(379, "lbs"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/chez/front.svg"
  4247. }
  4248. },
  4249. side: {
  4250. height: math.unit(7 + 9 / 12, "feet"),
  4251. weight: math.unit(379, "lbs"),
  4252. name: "Side",
  4253. image: {
  4254. source: "./media/characters/chez/side.svg"
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(7 + 9 / 12, "feet"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "God King",
  4266. height: math.unit(9750000, "meters")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4272. {
  4273. front: {
  4274. height: math.unit(6, "feet"),
  4275. weight: math.unit(275, "lbs"),
  4276. name: "Front",
  4277. image: {
  4278. source: "./media/characters/kaylum/front.svg",
  4279. bottom: 0.01,
  4280. extra: 1166 / 1031
  4281. }
  4282. },
  4283. frontWingless: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(275, "lbs"),
  4286. name: "Front (Wingless)",
  4287. image: {
  4288. source: "./media/characters/kaylum/front-wingless.svg",
  4289. bottom: 0.01,
  4290. extra: 1117 / 1031
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(3.05, "meters")
  4298. },
  4299. {
  4300. name: "Master",
  4301. height: math.unit(5.5, "meters")
  4302. },
  4303. {
  4304. name: "Rampage",
  4305. height: math.unit(19, "meters")
  4306. },
  4307. {
  4308. name: "Macro Lite",
  4309. height: math.unit(37, "meters")
  4310. },
  4311. {
  4312. name: "Hyper Predator",
  4313. height: math.unit(61, "meters")
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(138, "meters"),
  4318. default: true
  4319. }
  4320. ]
  4321. ))
  4322. characterMakers.push(() => makeCharacter(
  4323. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4324. {
  4325. front: {
  4326. height: math.unit(6, "feet"),
  4327. weight: math.unit(150, "lbs"),
  4328. name: "Front",
  4329. image: {
  4330. source: "./media/characters/geta/front.svg"
  4331. }
  4332. }
  4333. },
  4334. [
  4335. {
  4336. name: "Micro",
  4337. height: math.unit(3, "inches"),
  4338. default: true
  4339. },
  4340. {
  4341. name: "Normal",
  4342. height: math.unit(5 + 5 / 12, "feet")
  4343. }
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4348. {
  4349. front: {
  4350. height: math.unit(6, "feet"),
  4351. weight: math.unit(300, "lbs"),
  4352. name: "Front",
  4353. image: {
  4354. source: "./media/characters/tyrnn/front.svg"
  4355. }
  4356. }
  4357. },
  4358. [
  4359. {
  4360. name: "Main Height",
  4361. height: math.unit(355, "feet"),
  4362. default: true
  4363. },
  4364. {
  4365. name: "Fave. Height",
  4366. height: math.unit(2400, "feet")
  4367. }
  4368. ]
  4369. ))
  4370. characterMakers.push(() => makeCharacter(
  4371. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4372. {
  4373. front: {
  4374. height: math.unit(6, "feet"),
  4375. weight: math.unit(300, "lbs"),
  4376. name: "Front",
  4377. image: {
  4378. source: "./media/characters/appledectomy/front.svg"
  4379. }
  4380. }
  4381. },
  4382. [
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(2500, "feet")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(50, "miles"),
  4390. default: true
  4391. },
  4392. {
  4393. name: "Gigamacro",
  4394. height: math.unit(5000, "miles")
  4395. },
  4396. {
  4397. name: "Teramacro",
  4398. height: math.unit(250000, "miles")
  4399. },
  4400. ]
  4401. ))
  4402. characterMakers.push(() => makeCharacter(
  4403. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4404. {
  4405. front: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(200, "lbs"),
  4408. name: "Front",
  4409. image: {
  4410. source: "./media/characters/vulpes/front.svg",
  4411. extra: 573 / 543,
  4412. bottom: 0.033
  4413. }
  4414. },
  4415. side: {
  4416. height: math.unit(6, "feet"),
  4417. weight: math.unit(200, "lbs"),
  4418. name: "Side",
  4419. image: {
  4420. source: "./media/characters/vulpes/side.svg",
  4421. extra: 577 / 549,
  4422. bottom: 11 / 588
  4423. }
  4424. },
  4425. back: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(200, "lbs"),
  4428. name: "Back",
  4429. image: {
  4430. source: "./media/characters/vulpes/back.svg",
  4431. extra: 573 / 549,
  4432. bottom: 20 / 593
  4433. }
  4434. },
  4435. feet: {
  4436. height: math.unit(1.276, "feet"),
  4437. name: "Feet",
  4438. image: {
  4439. source: "./media/characters/vulpes/feet.svg"
  4440. }
  4441. },
  4442. maw: {
  4443. height: math.unit(1.18, "feet"),
  4444. name: "Maw",
  4445. image: {
  4446. source: "./media/characters/vulpes/maw.svg"
  4447. }
  4448. },
  4449. },
  4450. [
  4451. {
  4452. name: "Micro",
  4453. height: math.unit(2, "inches")
  4454. },
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(6.3, "feet")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(850, "feet")
  4462. },
  4463. {
  4464. name: "Megamacro",
  4465. height: math.unit(7500, "feet"),
  4466. default: true
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(570000, "miles")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4476. {
  4477. front: {
  4478. height: math.unit(6, "feet"),
  4479. weight: math.unit(210, "lbs"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/rain-fallen/front.svg"
  4483. }
  4484. },
  4485. side: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(210, "lbs"),
  4488. name: "Side",
  4489. image: {
  4490. source: "./media/characters/rain-fallen/side.svg"
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(6, "feet"),
  4495. weight: math.unit(210, "lbs"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/rain-fallen/back.svg"
  4499. }
  4500. },
  4501. feral: {
  4502. height: math.unit(9, "feet"),
  4503. weight: math.unit(700, "lbs"),
  4504. name: "Feral",
  4505. image: {
  4506. source: "./media/characters/rain-fallen/feral.svg"
  4507. }
  4508. },
  4509. },
  4510. [
  4511. {
  4512. name: "Meddling with Mortals",
  4513. height: math.unit(8 + 8/12, "feet")
  4514. },
  4515. {
  4516. name: "Normal",
  4517. height: math.unit(5, "meter")
  4518. },
  4519. {
  4520. name: "Macro",
  4521. height: math.unit(150, "meter"),
  4522. default: true
  4523. },
  4524. {
  4525. name: "Megamacro",
  4526. height: math.unit(278e6, "meter")
  4527. },
  4528. {
  4529. name: "Gigamacro",
  4530. height: math.unit(2e9, "meter")
  4531. },
  4532. {
  4533. name: "Teramacro",
  4534. height: math.unit(8e12, "meter")
  4535. },
  4536. {
  4537. name: "Devourer",
  4538. height: math.unit(14, "zettameters")
  4539. },
  4540. {
  4541. name: "Scarlet King",
  4542. height: math.unit(18, "yottameters")
  4543. },
  4544. {
  4545. name: "Void",
  4546. height: math.unit(1e88, "yottameters")
  4547. }
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4552. {
  4553. standing: {
  4554. height: math.unit(6, "feet"),
  4555. weight: math.unit(180, "lbs"),
  4556. name: "Standing",
  4557. image: {
  4558. source: "./media/characters/zaakira/standing.svg",
  4559. extra: 1599/1504,
  4560. bottom: 39/1638
  4561. }
  4562. },
  4563. laying: {
  4564. height: math.unit(3, "feet"),
  4565. weight: math.unit(180, "lbs"),
  4566. name: "Laying",
  4567. image: {
  4568. source: "./media/characters/zaakira/laying.svg"
  4569. }
  4570. },
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(12, "feet")
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(279, "feet"),
  4580. default: true
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4586. {
  4587. femSfw: {
  4588. height: math.unit(8, "feet"),
  4589. weight: math.unit(350, "lb"),
  4590. name: "Fem",
  4591. image: {
  4592. source: "./media/characters/sigvald/fem-sfw.svg",
  4593. extra: 182 / 164,
  4594. bottom: 8.7 / 190.5
  4595. }
  4596. },
  4597. femNsfw: {
  4598. height: math.unit(8, "feet"),
  4599. weight: math.unit(350, "lb"),
  4600. name: "Fem (NSFW)",
  4601. image: {
  4602. source: "./media/characters/sigvald/fem-nsfw.svg",
  4603. extra: 182 / 164,
  4604. bottom: 8.7 / 190.5
  4605. }
  4606. },
  4607. maleNsfw: {
  4608. height: math.unit(8, "feet"),
  4609. weight: math.unit(350, "lb"),
  4610. name: "Male (NSFW)",
  4611. image: {
  4612. source: "./media/characters/sigvald/male-nsfw.svg",
  4613. extra: 182 / 164,
  4614. bottom: 8.7 / 190.5
  4615. }
  4616. },
  4617. hermNsfw: {
  4618. height: math.unit(8, "feet"),
  4619. weight: math.unit(350, "lb"),
  4620. name: "Herm (NSFW)",
  4621. image: {
  4622. source: "./media/characters/sigvald/herm-nsfw.svg",
  4623. extra: 182 / 164,
  4624. bottom: 8.7 / 190.5
  4625. }
  4626. },
  4627. dick: {
  4628. height: math.unit(2.36, "feet"),
  4629. name: "Dick",
  4630. image: {
  4631. source: "./media/characters/sigvald/dick.svg"
  4632. }
  4633. },
  4634. eye: {
  4635. height: math.unit(0.31, "feet"),
  4636. name: "Eye",
  4637. image: {
  4638. source: "./media/characters/sigvald/eye.svg"
  4639. }
  4640. },
  4641. mouth: {
  4642. height: math.unit(0.92, "feet"),
  4643. name: "Mouth",
  4644. image: {
  4645. source: "./media/characters/sigvald/mouth.svg"
  4646. }
  4647. },
  4648. paws: {
  4649. height: math.unit(2.2, "feet"),
  4650. name: "Paws",
  4651. image: {
  4652. source: "./media/characters/sigvald/paws.svg"
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(8, "feet")
  4660. },
  4661. {
  4662. name: "Large",
  4663. height: math.unit(12, "feet")
  4664. },
  4665. {
  4666. name: "Larger",
  4667. height: math.unit(20, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(150, "feet")
  4672. },
  4673. {
  4674. name: "Macro+",
  4675. height: math.unit(200, "feet"),
  4676. default: true
  4677. },
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4682. {
  4683. side: {
  4684. height: math.unit(12, "feet"),
  4685. weight: math.unit(2000, "kg"),
  4686. name: "Side",
  4687. image: {
  4688. source: "./media/characters/scott/side.svg",
  4689. extra: 754 / 724,
  4690. bottom: 0.069
  4691. }
  4692. },
  4693. upright: {
  4694. height: math.unit(12, "feet"),
  4695. weight: math.unit(2000, "kg"),
  4696. name: "Upright",
  4697. image: {
  4698. source: "./media/characters/scott/upright.svg",
  4699. extra: 3881 / 3722,
  4700. bottom: 0.05
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(12, "feet"),
  4708. default: true
  4709. },
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4714. {
  4715. side: {
  4716. height: math.unit(8, "meters"),
  4717. weight: math.unit(84755, "lbs"),
  4718. name: "Side",
  4719. image: {
  4720. source: "./media/characters/tobias/side.svg",
  4721. extra: 1474 / 1096,
  4722. bottom: 38.9 / 1513.1235
  4723. }
  4724. },
  4725. },
  4726. [
  4727. {
  4728. name: "Normal",
  4729. height: math.unit(8, "meters"),
  4730. default: true
  4731. },
  4732. ]
  4733. ))
  4734. characterMakers.push(() => makeCharacter(
  4735. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4736. {
  4737. front: {
  4738. height: math.unit(5.5, "feet"),
  4739. weight: math.unit(400, "lbs"),
  4740. name: "Front",
  4741. image: {
  4742. source: "./media/characters/kieran/front.svg",
  4743. extra: 2694 / 2364,
  4744. bottom: 217 / 2908
  4745. }
  4746. },
  4747. side: {
  4748. height: math.unit(5.5, "feet"),
  4749. weight: math.unit(400, "lbs"),
  4750. name: "Side",
  4751. image: {
  4752. source: "./media/characters/kieran/side.svg",
  4753. extra: 875 / 777,
  4754. bottom: 84.6 / 959
  4755. }
  4756. },
  4757. },
  4758. [
  4759. {
  4760. name: "Normal",
  4761. height: math.unit(5.5, "feet"),
  4762. default: true
  4763. },
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4768. {
  4769. side: {
  4770. height: math.unit(2, "meters"),
  4771. weight: math.unit(70, "kg"),
  4772. name: "Side",
  4773. image: {
  4774. source: "./media/characters/sanya/side.svg",
  4775. bottom: 0.02,
  4776. extra: 1.02
  4777. }
  4778. },
  4779. },
  4780. [
  4781. {
  4782. name: "Small",
  4783. height: math.unit(2, "meters")
  4784. },
  4785. {
  4786. name: "Normal",
  4787. height: math.unit(3, "meters")
  4788. },
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(16, "meters"),
  4792. default: true
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(2, "meters"),
  4801. weight: math.unit(120, "kg"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/miranda/front.svg",
  4805. extra: 195 / 185,
  4806. bottom: 10.9 / 206.5
  4807. }
  4808. },
  4809. back: {
  4810. height: math.unit(2, "meters"),
  4811. weight: math.unit(120, "kg"),
  4812. name: "Back",
  4813. image: {
  4814. source: "./media/characters/miranda/back.svg",
  4815. extra: 201 / 193,
  4816. bottom: 2.3 / 203.7
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(10, "feet"),
  4824. default: true
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "James", species: ["deer"], tags: ["anthro"] },
  4830. {
  4831. side: {
  4832. height: math.unit(2, "meters"),
  4833. weight: math.unit(100, "kg"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/james/front.svg",
  4837. extra: 10 / 8.5
  4838. }
  4839. },
  4840. },
  4841. [
  4842. {
  4843. name: "Normal",
  4844. height: math.unit(8.5, "feet"),
  4845. default: true
  4846. }
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4851. {
  4852. side: {
  4853. height: math.unit(9.5, "feet"),
  4854. weight: math.unit(2500, "lbs"),
  4855. name: "Side",
  4856. image: {
  4857. source: "./media/characters/heather/side.svg"
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Normal",
  4864. height: math.unit(9.5, "feet"),
  4865. default: true
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4871. {
  4872. side: {
  4873. height: math.unit(6.5, "feet"),
  4874. weight: math.unit(400, "lbs"),
  4875. name: "Side",
  4876. image: {
  4877. source: "./media/characters/lukas/side.svg",
  4878. extra: 7.25 / 6.5
  4879. }
  4880. },
  4881. },
  4882. [
  4883. {
  4884. name: "Normal",
  4885. height: math.unit(6.5, "feet"),
  4886. default: true
  4887. }
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4892. {
  4893. side: {
  4894. height: math.unit(5, "feet"),
  4895. weight: math.unit(3000, "lbs"),
  4896. name: "Side",
  4897. image: {
  4898. source: "./media/characters/louise/side.svg"
  4899. }
  4900. },
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(5, "feet"),
  4906. default: true
  4907. }
  4908. ]
  4909. ))
  4910. characterMakers.push(() => makeCharacter(
  4911. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4912. {
  4913. side: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(150, "lbs"),
  4916. name: "Side",
  4917. image: {
  4918. source: "./media/characters/ramona/side.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(5.3, "meters"),
  4926. default: true
  4927. },
  4928. {
  4929. name: "Macro",
  4930. height: math.unit(20, "stories")
  4931. },
  4932. {
  4933. name: "Macro+",
  4934. height: math.unit(50, "stories")
  4935. },
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4940. {
  4941. standing: {
  4942. height: math.unit(5.75, "feet"),
  4943. weight: math.unit(160, "lbs"),
  4944. name: "Standing",
  4945. image: {
  4946. source: "./media/characters/deerpuff/standing.svg",
  4947. extra: 682 / 624
  4948. }
  4949. },
  4950. sitting: {
  4951. height: math.unit(5.75 / 1.79, "feet"),
  4952. weight: math.unit(160, "lbs"),
  4953. name: "Sitting",
  4954. image: {
  4955. source: "./media/characters/deerpuff/sitting.svg",
  4956. bottom: 44 / 400,
  4957. extra: 1
  4958. }
  4959. },
  4960. taurLaying: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(400, "lbs"),
  4963. name: "Taur (Laying)",
  4964. image: {
  4965. source: "./media/characters/deerpuff/taur-laying.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Puffball",
  4972. height: math.unit(6, "inches")
  4973. },
  4974. {
  4975. name: "Normalpuff",
  4976. height: math.unit(5.75, "feet")
  4977. },
  4978. {
  4979. name: "Macropuff",
  4980. height: math.unit(1500, "feet"),
  4981. default: true
  4982. },
  4983. {
  4984. name: "Megapuff",
  4985. height: math.unit(500, "miles")
  4986. },
  4987. {
  4988. name: "Gigapuff",
  4989. height: math.unit(250000, "miles")
  4990. },
  4991. {
  4992. name: "Omegapuff",
  4993. height: math.unit(1000, "lightyears")
  4994. },
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4999. {
  5000. stomping: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(170, "lbs"),
  5003. name: "Stomping",
  5004. image: {
  5005. source: "./media/characters/vivian/stomping.svg"
  5006. }
  5007. },
  5008. sitting: {
  5009. height: math.unit(6 / 1.75, "feet"),
  5010. weight: math.unit(170, "lbs"),
  5011. name: "Sitting",
  5012. image: {
  5013. source: "./media/characters/vivian/sitting.svg",
  5014. bottom: 1 / 6.4,
  5015. extra: 1,
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(7, "feet"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "Macro",
  5027. height: math.unit(10, "stories")
  5028. },
  5029. {
  5030. name: "Macro+",
  5031. height: math.unit(30, "stories")
  5032. },
  5033. {
  5034. name: "Megamacro",
  5035. height: math.unit(10, "miles")
  5036. },
  5037. {
  5038. name: "Megamacro+",
  5039. height: math.unit(2750000, "meters")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(160, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/prince/front.svg",
  5052. extra: 3400 / 3000
  5053. }
  5054. },
  5055. jumping: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(160, "lbs"),
  5058. name: "Jumping",
  5059. image: {
  5060. source: "./media/characters/prince/jump.svg",
  5061. extra: 2555 / 2134
  5062. }
  5063. },
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(7.75, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Not cute",
  5073. height: math.unit(17, "feet")
  5074. },
  5075. {
  5076. name: "I said NOT",
  5077. height: math.unit(91, "feet")
  5078. },
  5079. {
  5080. name: "Please stop",
  5081. height: math.unit(560, "feet")
  5082. },
  5083. {
  5084. name: "What have you done",
  5085. height: math.unit(2200, "feet")
  5086. },
  5087. {
  5088. name: "Deer God",
  5089. height: math.unit(3.6, "miles")
  5090. },
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5095. {
  5096. standing: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(300, "lbs"),
  5099. name: "Standing",
  5100. image: {
  5101. source: "./media/characters/psymon/standing.svg",
  5102. extra: 1888 / 1810,
  5103. bottom: 0.05
  5104. }
  5105. },
  5106. slithering: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(300, "lbs"),
  5109. name: "Slithering",
  5110. image: {
  5111. source: "./media/characters/psymon/slithering.svg",
  5112. extra: 1330 / 1224
  5113. }
  5114. },
  5115. slitheringAlt: {
  5116. height: math.unit(6, "feet"),
  5117. weight: math.unit(300, "lbs"),
  5118. name: "Slithering (Alt)",
  5119. image: {
  5120. source: "./media/characters/psymon/slithering-alt.svg",
  5121. extra: 1330 / 1224
  5122. }
  5123. },
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(11.25, "feet"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Large",
  5133. height: math.unit(27, "feet")
  5134. },
  5135. {
  5136. name: "Giant",
  5137. height: math.unit(87, "feet")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(365, "feet")
  5142. },
  5143. {
  5144. name: "Megamacro",
  5145. height: math.unit(3, "miles")
  5146. },
  5147. {
  5148. name: "World Serpent",
  5149. height: math.unit(8000, "miles")
  5150. },
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5155. {
  5156. front: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(180, "lbs"),
  5159. name: "Front",
  5160. image: {
  5161. source: "./media/characters/daimos/front.svg",
  5162. extra: 4160 / 3897,
  5163. bottom: 0.021
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(8, "feet"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Big Dog",
  5175. height: math.unit(22, "feet")
  5176. },
  5177. {
  5178. name: "Macro",
  5179. height: math.unit(127, "feet")
  5180. },
  5181. {
  5182. name: "Megamacro",
  5183. height: math.unit(3600, "feet")
  5184. },
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5189. {
  5190. side: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lbs"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/blake/side.svg",
  5196. extra: 1212 / 1120,
  5197. bottom: 0.05
  5198. }
  5199. },
  5200. crouched: {
  5201. height: math.unit(6 * 0.57, "feet"),
  5202. weight: math.unit(180, "lbs"),
  5203. name: "Crouched",
  5204. image: {
  5205. source: "./media/characters/blake/crouched.svg",
  5206. extra: 840 / 587,
  5207. bottom: 0.04
  5208. }
  5209. },
  5210. bent: {
  5211. height: math.unit(6 * 0.75, "feet"),
  5212. weight: math.unit(180, "lbs"),
  5213. name: "Bent",
  5214. image: {
  5215. source: "./media/characters/blake/bent.svg",
  5216. extra: 592 / 544,
  5217. bottom: 0.035
  5218. }
  5219. },
  5220. },
  5221. [
  5222. {
  5223. name: "Normal",
  5224. height: math.unit(8 + 1 / 6, "feet"),
  5225. default: true
  5226. },
  5227. {
  5228. name: "Big Backside",
  5229. height: math.unit(37, "feet")
  5230. },
  5231. {
  5232. name: "Subway Shredder",
  5233. height: math.unit(72, "feet")
  5234. },
  5235. {
  5236. name: "City Carver",
  5237. height: math.unit(1675, "feet")
  5238. },
  5239. {
  5240. name: "Tectonic Tweaker",
  5241. height: math.unit(2300, "miles")
  5242. },
  5243. ]
  5244. ))
  5245. characterMakers.push(() => makeCharacter(
  5246. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5247. {
  5248. front: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(180, "lbs"),
  5251. name: "Front",
  5252. image: {
  5253. source: "./media/characters/guisetto/front.svg",
  5254. extra: 856 / 817,
  5255. bottom: 0.06
  5256. }
  5257. },
  5258. airborne: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(180, "lbs"),
  5261. name: "Airborne",
  5262. image: {
  5263. source: "./media/characters/guisetto/airborne.svg",
  5264. extra: 584 / 525
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(10 + 11 / 12, "feet"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Large",
  5276. height: math.unit(35, "feet")
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(475, "feet")
  5281. },
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(180, "lbs"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/luxor/front.svg",
  5293. extra: 2940 / 2152
  5294. }
  5295. },
  5296. back: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(180, "lbs"),
  5299. name: "Back",
  5300. image: {
  5301. source: "./media/characters/luxor/back.svg",
  5302. extra: 1083 / 960
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(5 + 5 / 6, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Lamp",
  5314. height: math.unit(50, "feet")
  5315. },
  5316. {
  5317. name: "Lämp",
  5318. height: math.unit(300, "feet")
  5319. },
  5320. {
  5321. name: "The sun is a lamp",
  5322. height: math.unit(250000, "miles")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(50, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/huoyan/front.svg"
  5335. }
  5336. },
  5337. side: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(180, "lbs"),
  5340. name: "Side",
  5341. image: {
  5342. source: "./media/characters/huoyan/side.svg"
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Chef",
  5349. height: math.unit(9, "feet")
  5350. },
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(65, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(780, "feet")
  5359. },
  5360. {
  5361. name: "Flaming Mountain",
  5362. height: math.unit(4.8, "miles")
  5363. },
  5364. {
  5365. name: "Celestial",
  5366. height: math.unit(765000, "miles")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(5 + 3 / 4, "feet"),
  5375. weight: math.unit(120, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/tails/front.svg"
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(5 + 3 / 4, "feet"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(4, "feet"),
  5395. weight: math.unit(50, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/rainy/front.svg"
  5399. }
  5400. }
  5401. },
  5402. [
  5403. {
  5404. name: "Macro",
  5405. height: math.unit(800, "feet"),
  5406. default: true
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(150, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/rainier/front.svg"
  5419. }
  5420. }
  5421. },
  5422. [
  5423. {
  5424. name: "Micro",
  5425. height: math.unit(2, "mm"),
  5426. default: true
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5432. {
  5433. front: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(180, "lbs"),
  5436. name: "Front",
  5437. image: {
  5438. source: "./media/characters/andy/front.svg"
  5439. }
  5440. }
  5441. },
  5442. [
  5443. {
  5444. name: "Normal",
  5445. height: math.unit(8, "feet"),
  5446. default: true
  5447. },
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(1000, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(5, "miles")
  5455. },
  5456. {
  5457. name: "Gigamacro",
  5458. height: math.unit(5000, "miles")
  5459. },
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5464. {
  5465. front: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(210, "lbs"),
  5468. name: "Front",
  5469. image: {
  5470. source: "./media/characters/cimmaron/front-sfw.svg",
  5471. extra: 701 / 676,
  5472. bottom: 0.046
  5473. }
  5474. },
  5475. back: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(210, "lbs"),
  5478. name: "Back",
  5479. image: {
  5480. source: "./media/characters/cimmaron/back-sfw.svg",
  5481. extra: 701 / 676,
  5482. bottom: 0.046
  5483. }
  5484. },
  5485. frontNsfw: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(210, "lbs"),
  5488. name: "Front (NSFW)",
  5489. image: {
  5490. source: "./media/characters/cimmaron/front-nsfw.svg",
  5491. extra: 701 / 676,
  5492. bottom: 0.046
  5493. }
  5494. },
  5495. backNsfw: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(210, "lbs"),
  5498. name: "Back (NSFW)",
  5499. image: {
  5500. source: "./media/characters/cimmaron/back-nsfw.svg",
  5501. extra: 701 / 676,
  5502. bottom: 0.046
  5503. }
  5504. },
  5505. dick: {
  5506. height: math.unit(1.714, "feet"),
  5507. name: "Dick",
  5508. image: {
  5509. source: "./media/characters/cimmaron/dick.svg"
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(6, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Macro Mayor",
  5521. height: math.unit(350, "meters")
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(200, "lbs"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/akari/front.svg",
  5534. extra: 962 / 901,
  5535. bottom: 0.04
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(5, "inches"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(7, "feet")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(140, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/cynosura/front.svg",
  5560. extra: 896 / 847
  5561. }
  5562. },
  5563. back: {
  5564. height: math.unit(6, "feet"),
  5565. weight: math.unit(140, "lbs"),
  5566. name: "Back",
  5567. image: {
  5568. source: "./media/characters/cynosura/back.svg",
  5569. extra: 1365 / 1250
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Micro",
  5576. height: math.unit(4, "inches")
  5577. },
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(5.75, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Tall",
  5585. height: math.unit(10, "feet")
  5586. },
  5587. {
  5588. name: "Big",
  5589. height: math.unit(20, "feet")
  5590. },
  5591. {
  5592. name: "Macro",
  5593. height: math.unit(50, "feet")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(13 + 2/12, "feet"),
  5602. weight: math.unit(800, "kg"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/gin/front.svg",
  5606. extra: 1312/1191,
  5607. bottom: 45/1357
  5608. }
  5609. },
  5610. mouth: {
  5611. height: math.unit(2.39 * 1.8, "feet"),
  5612. name: "Mouth",
  5613. image: {
  5614. source: "./media/characters/gin/mouth.svg"
  5615. }
  5616. },
  5617. hand: {
  5618. height: math.unit(1.57 * 2.19, "feet"),
  5619. name: "Hand",
  5620. image: {
  5621. source: "./media/characters/gin/hand.svg"
  5622. }
  5623. },
  5624. foot: {
  5625. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5626. name: "Foot",
  5627. image: {
  5628. source: "./media/characters/gin/foot.svg"
  5629. }
  5630. },
  5631. sole: {
  5632. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5633. name: "Sole",
  5634. image: {
  5635. source: "./media/characters/gin/sole.svg"
  5636. }
  5637. },
  5638. },
  5639. [
  5640. {
  5641. name: "Very Small",
  5642. height: math.unit(13 + 2 / 12, "feet")
  5643. },
  5644. {
  5645. name: "Micro",
  5646. height: math.unit(600, "miles")
  5647. },
  5648. {
  5649. name: "Regular",
  5650. height: math.unit(20, "earths"),
  5651. default: true
  5652. },
  5653. {
  5654. name: "Macro",
  5655. height: math.unit(2.2, "solarradii")
  5656. },
  5657. {
  5658. name: "Teramacro",
  5659. height: math.unit(1.2, "galaxies")
  5660. },
  5661. {
  5662. name: "Omegamacro",
  5663. height: math.unit(200, "universes")
  5664. },
  5665. ]
  5666. ))
  5667. characterMakers.push(() => makeCharacter(
  5668. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5669. {
  5670. front: {
  5671. height: math.unit(6 + 1 / 6, "feet"),
  5672. weight: math.unit(178, "lbs"),
  5673. name: "Front",
  5674. image: {
  5675. source: "./media/characters/guy/front.svg"
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(6 + 1 / 6, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Large",
  5687. height: math.unit(25 + 7 / 12, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(60 + 9 / 12, "feet")
  5692. },
  5693. {
  5694. name: "Macro+",
  5695. height: math.unit(246, "feet")
  5696. },
  5697. {
  5698. name: "Macro++",
  5699. height: math.unit(878, "feet")
  5700. }
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5705. {
  5706. front: {
  5707. height: math.unit(9, "feet"),
  5708. weight: math.unit(800, "lbs"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/tiberius/front.svg",
  5712. extra: 2295 / 2071
  5713. }
  5714. },
  5715. back: {
  5716. height: math.unit(9, "feet"),
  5717. weight: math.unit(800, "lbs"),
  5718. name: "Back",
  5719. image: {
  5720. source: "./media/characters/tiberius/back.svg",
  5721. extra: 2373 / 2160
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(9, "feet"),
  5729. default: true
  5730. }
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5735. {
  5736. front: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(600, "lbs"),
  5739. name: "Front",
  5740. image: {
  5741. source: "./media/characters/surgo/front.svg",
  5742. extra: 3591 / 2227
  5743. }
  5744. },
  5745. back: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(600, "lbs"),
  5748. name: "Back",
  5749. image: {
  5750. source: "./media/characters/surgo/back.svg",
  5751. extra: 3557 / 2228
  5752. }
  5753. },
  5754. laying: {
  5755. height: math.unit(6 * 0.85, "feet"),
  5756. weight: math.unit(600, "lbs"),
  5757. name: "Laying",
  5758. image: {
  5759. source: "./media/characters/surgo/laying.svg"
  5760. }
  5761. },
  5762. },
  5763. [
  5764. {
  5765. name: "Normal",
  5766. height: math.unit(6, "feet"),
  5767. default: true
  5768. }
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5773. {
  5774. side: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(150, "lbs"),
  5777. name: "Side",
  5778. image: {
  5779. source: "./media/characters/cibus/side.svg",
  5780. extra: 800 / 400
  5781. }
  5782. },
  5783. },
  5784. [
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(6, "feet"),
  5788. default: true
  5789. }
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(240, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/nibbles/front.svg"
  5801. }
  5802. },
  5803. side: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(240, "lbs"),
  5806. name: "Side",
  5807. image: {
  5808. source: "./media/characters/nibbles/side.svg"
  5809. }
  5810. },
  5811. },
  5812. [
  5813. {
  5814. name: "Normal",
  5815. height: math.unit(9, "feet"),
  5816. default: true
  5817. }
  5818. ]
  5819. ))
  5820. characterMakers.push(() => makeCharacter(
  5821. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5822. {
  5823. side: {
  5824. height: math.unit(5 + 1 / 6, "feet"),
  5825. weight: math.unit(130, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/rikky/side.svg",
  5829. extra: 851 / 801
  5830. }
  5831. },
  5832. },
  5833. [
  5834. {
  5835. name: "Normal",
  5836. height: math.unit(5 + 1 / 6, "feet")
  5837. },
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(152, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Megamacro",
  5845. height: math.unit(7, "miles")
  5846. }
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5851. {
  5852. side: {
  5853. height: math.unit(370, "cm"),
  5854. weight: math.unit(350, "lbs"),
  5855. name: "Side",
  5856. image: {
  5857. source: "./media/characters/malfressa/side.svg"
  5858. }
  5859. },
  5860. walking: {
  5861. height: math.unit(370, "cm"),
  5862. weight: math.unit(350, "lbs"),
  5863. name: "Walking",
  5864. image: {
  5865. source: "./media/characters/malfressa/walking.svg"
  5866. }
  5867. },
  5868. feral: {
  5869. height: math.unit(2500, "cm"),
  5870. weight: math.unit(100000, "lbs"),
  5871. name: "Feral",
  5872. image: {
  5873. source: "./media/characters/malfressa/feral.svg",
  5874. extra: 2108 / 837,
  5875. bottom: 0.02
  5876. }
  5877. },
  5878. },
  5879. [
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(370, "cm")
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(300, "meters"),
  5887. default: true
  5888. }
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(6, "feet"),
  5896. weight: math.unit(60, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/jaro/front.svg"
  5900. }
  5901. },
  5902. back: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(60, "kg"),
  5905. name: "Back",
  5906. image: {
  5907. source: "./media/characters/jaro/back.svg"
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(7, "inches")
  5915. },
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(5.5, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Minimacro",
  5923. height: math.unit(20, "feet")
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(200, "meters")
  5928. }
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(195, "lb"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/rogue/front.svg"
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Macro",
  5946. height: math.unit(90, "feet"),
  5947. default: true
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(5 + 8 / 12, "feet"),
  5956. weight: math.unit(140, "lb"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/piper/front.svg",
  5960. extra: 3948/3655,
  5961. bottom: 0/3948
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Micro",
  5968. height: math.unit(2, "inches")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(5 + 8 / 12, "feet")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(250, "feet"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(7, "miles")
  5982. },
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5987. {
  5988. front: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(220, "lb"),
  5991. name: "Front",
  5992. image: {
  5993. source: "./media/characters/gemini/front.svg"
  5994. }
  5995. },
  5996. back: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(220, "lb"),
  5999. name: "Back",
  6000. image: {
  6001. source: "./media/characters/gemini/back.svg"
  6002. }
  6003. },
  6004. kneeling: {
  6005. height: math.unit(6 / 1.5, "feet"),
  6006. weight: math.unit(220, "lb"),
  6007. name: "Kneeling",
  6008. image: {
  6009. source: "./media/characters/gemini/kneeling.svg",
  6010. bottom: 0.02
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Macro",
  6017. height: math.unit(300, "meters"),
  6018. default: true
  6019. },
  6020. {
  6021. name: "Megamacro",
  6022. height: math.unit(6900, "meters")
  6023. },
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6028. {
  6029. anthro: {
  6030. height: math.unit(2.35, "meters"),
  6031. weight: math.unit(73, "kg"),
  6032. name: "Anthro",
  6033. image: {
  6034. source: "./media/characters/alicia/anthro.svg",
  6035. extra: 2571 / 2385,
  6036. bottom: 75 / 2648
  6037. }
  6038. },
  6039. paw: {
  6040. height: math.unit(1.32, "feet"),
  6041. name: "Paw",
  6042. image: {
  6043. source: "./media/characters/alicia/paw.svg"
  6044. }
  6045. },
  6046. feral: {
  6047. height: math.unit(1.69, "meters"),
  6048. weight: math.unit(73, "kg"),
  6049. name: "Feral",
  6050. image: {
  6051. source: "./media/characters/alicia/feral.svg",
  6052. extra: 2123 / 1715,
  6053. bottom: 222 / 2349
  6054. }
  6055. },
  6056. },
  6057. [
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(2.35, "meters")
  6061. },
  6062. {
  6063. name: "Macro",
  6064. height: math.unit(60, "meters"),
  6065. default: true
  6066. },
  6067. {
  6068. name: "Megamacro",
  6069. height: math.unit(10000, "kilometers")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(7, "feet"),
  6078. weight: math.unit(250, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/archy/front.svg"
  6082. }
  6083. }
  6084. },
  6085. [
  6086. {
  6087. name: "Micro",
  6088. height: math.unit(1, "inch")
  6089. },
  6090. {
  6091. name: "Shorty",
  6092. height: math.unit(5, "feet")
  6093. },
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(7, "feet")
  6097. },
  6098. {
  6099. name: "Macro",
  6100. height: math.unit(600, "meters"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Megamacro",
  6105. height: math.unit(1, "mile")
  6106. },
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(1.65, "meters"),
  6114. weight: math.unit(74, "kg"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/berri/front.svg",
  6118. extra: 857 / 837,
  6119. bottom: 18 / 877
  6120. }
  6121. },
  6122. bum: {
  6123. height: math.unit(1.46, "feet"),
  6124. name: "Bum",
  6125. image: {
  6126. source: "./media/characters/berri/bum.svg"
  6127. }
  6128. },
  6129. mouth: {
  6130. height: math.unit(0.44, "feet"),
  6131. name: "Mouth",
  6132. image: {
  6133. source: "./media/characters/berri/mouth.svg"
  6134. }
  6135. },
  6136. paw: {
  6137. height: math.unit(0.826, "feet"),
  6138. name: "Paw",
  6139. image: {
  6140. source: "./media/characters/berri/paw.svg"
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(1.65, "meters")
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(60, "m"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Megamacro",
  6156. height: math.unit(9.213, "km")
  6157. },
  6158. {
  6159. name: "Planet Eater",
  6160. height: math.unit(489, "megameters")
  6161. },
  6162. {
  6163. name: "Teramacro",
  6164. height: math.unit(2471635000000, "meters")
  6165. },
  6166. {
  6167. name: "Examacro",
  6168. height: math.unit(8.0624e+26, "meters")
  6169. }
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6174. {
  6175. front: {
  6176. height: math.unit(1.72, "meters"),
  6177. weight: math.unit(68, "kg"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/lexi/front.svg"
  6181. }
  6182. }
  6183. },
  6184. [
  6185. {
  6186. name: "Very Smol",
  6187. height: math.unit(10, "mm")
  6188. },
  6189. {
  6190. name: "Micro",
  6191. height: math.unit(6.8, "cm"),
  6192. default: true
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(1.72, "m")
  6197. }
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(1.69, "meters"),
  6205. weight: math.unit(68, "kg"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/martin/front.svg",
  6209. extra: 596 / 581
  6210. }
  6211. }
  6212. },
  6213. [
  6214. {
  6215. name: "Micro",
  6216. height: math.unit(6.85, "cm"),
  6217. default: true
  6218. },
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(1.69, "m")
  6222. }
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6227. {
  6228. front: {
  6229. height: math.unit(1.69, "meters"),
  6230. weight: math.unit(68, "kg"),
  6231. name: "Front",
  6232. image: {
  6233. source: "./media/characters/juno/front.svg"
  6234. }
  6235. }
  6236. },
  6237. [
  6238. {
  6239. name: "Micro",
  6240. height: math.unit(7, "cm")
  6241. },
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(1.89, "m")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(353, "meters"),
  6249. default: true
  6250. }
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(1.93, "meters"),
  6258. weight: math.unit(83, "kg"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/samantha/front.svg"
  6262. }
  6263. },
  6264. frontClothed: {
  6265. height: math.unit(1.93, "meters"),
  6266. weight: math.unit(83, "kg"),
  6267. name: "Front (Clothed)",
  6268. image: {
  6269. source: "./media/characters/samantha/front-clothed.svg"
  6270. }
  6271. },
  6272. back: {
  6273. height: math.unit(1.93, "meters"),
  6274. weight: math.unit(83, "kg"),
  6275. name: "Back",
  6276. image: {
  6277. source: "./media/characters/samantha/back.svg"
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(1.93, "m")
  6285. },
  6286. {
  6287. name: "Macro",
  6288. height: math.unit(74, "meters"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Macro+",
  6293. height: math.unit(223, "meters"),
  6294. },
  6295. {
  6296. name: "Megamacro",
  6297. height: math.unit(8381, "meters"),
  6298. },
  6299. {
  6300. name: "Megamacro+",
  6301. height: math.unit(12000, "kilometers")
  6302. },
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(1.92, "meters"),
  6310. weight: math.unit(80, "kg"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/dr-clay/front.svg"
  6314. }
  6315. },
  6316. frontClothed: {
  6317. height: math.unit(1.92, "meters"),
  6318. weight: math.unit(80, "kg"),
  6319. name: "Front (Clothed)",
  6320. image: {
  6321. source: "./media/characters/dr-clay/front-clothed.svg"
  6322. }
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(1.92, "m")
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(214, "meters"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Macro+",
  6337. height: math.unit(12.237, "meters"),
  6338. },
  6339. {
  6340. name: "Megamacro",
  6341. height: math.unit(557, "megameters"),
  6342. },
  6343. {
  6344. name: "Unimaginable",
  6345. height: math.unit(120e9, "lightyears")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(2, "meters"),
  6354. weight: math.unit(80, "kg"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6358. }
  6359. }
  6360. },
  6361. [
  6362. {
  6363. name: "Teramacro",
  6364. height: math.unit(500000, "lightyears"),
  6365. default: true
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(2, "meters"),
  6374. weight: math.unit(150, "kg"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/vemus/front.svg",
  6378. extra: 2384 / 2084,
  6379. bottom: 0.0123
  6380. }
  6381. }
  6382. },
  6383. [
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(3.75, "meters"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Big",
  6391. height: math.unit(8, "meters")
  6392. },
  6393. {
  6394. name: "Macro",
  6395. height: math.unit(100, "meters")
  6396. },
  6397. {
  6398. name: "Macro+",
  6399. height: math.unit(1500, "meters")
  6400. },
  6401. {
  6402. name: "Stellar",
  6403. height: math.unit(14e8, "meters")
  6404. },
  6405. ]
  6406. ))
  6407. characterMakers.push(() => makeCharacter(
  6408. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6409. {
  6410. front: {
  6411. height: math.unit(2, "meters"),
  6412. weight: math.unit(70, "kg"),
  6413. name: "Front",
  6414. image: {
  6415. source: "./media/characters/beherit/front.svg",
  6416. extra: 1408 / 1242
  6417. }
  6418. }
  6419. },
  6420. [
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(6, "feet")
  6424. },
  6425. {
  6426. name: "Lorg",
  6427. height: math.unit(25, "feet"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Lorger",
  6432. height: math.unit(75, "feet")
  6433. },
  6434. {
  6435. name: "Macro",
  6436. height: math.unit(200, "meters")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(2, "meters"),
  6445. weight: math.unit(150, "kg"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/everett/front.svg",
  6449. extra: 2038 / 1737,
  6450. bottom: 0.03
  6451. }
  6452. },
  6453. paw: {
  6454. height: math.unit(2 / 3.6, "meters"),
  6455. name: "Paw",
  6456. image: {
  6457. source: "./media/characters/everett/paw.svg"
  6458. }
  6459. },
  6460. },
  6461. [
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(15, "feet"),
  6465. default: true
  6466. },
  6467. {
  6468. name: "Lorg",
  6469. height: math.unit(70, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Lorger",
  6474. height: math.unit(250, "feet")
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(500, "meters")
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(2, "meters"),
  6487. weight: math.unit(86, "kg"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/rose/front.svg",
  6491. extra: 350/335,
  6492. bottom: 10/360
  6493. }
  6494. },
  6495. frontAlt: {
  6496. height: math.unit(1.6, "meters"),
  6497. weight: math.unit(86, "kg"),
  6498. name: "Front (Alt)",
  6499. image: {
  6500. source: "./media/characters/rose/front-alt.svg",
  6501. extra: 299/283,
  6502. bottom: 3/302
  6503. }
  6504. },
  6505. plush: {
  6506. height: math.unit(2, "meters"),
  6507. weight: math.unit(86/3, "kg"),
  6508. name: "Plush",
  6509. image: {
  6510. source: "./media/characters/rose/plush.svg",
  6511. extra: 361/337,
  6512. bottom: 11/372
  6513. }
  6514. },
  6515. },
  6516. [
  6517. {
  6518. name: "Mini-Micro",
  6519. height: math.unit(1, "cm")
  6520. },
  6521. {
  6522. name: "Micro",
  6523. height: math.unit(3.5, "inches"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(6 + 1 / 6, "feet")
  6529. },
  6530. {
  6531. name: "Mini-Macro",
  6532. height: math.unit(9 + 10 / 12, "feet")
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(2, "meters"),
  6541. weight: math.unit(350, "lbs"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/regal/front.svg"
  6545. }
  6546. },
  6547. back: {
  6548. height: math.unit(2, "meters"),
  6549. weight: math.unit(350, "lbs"),
  6550. name: "Back",
  6551. image: {
  6552. source: "./media/characters/regal/back.svg"
  6553. }
  6554. },
  6555. },
  6556. [
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(350, "feet"),
  6560. default: true
  6561. }
  6562. ]
  6563. ))
  6564. characterMakers.push(() => makeCharacter(
  6565. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6566. {
  6567. front: {
  6568. height: math.unit(4 + 11 / 12, "feet"),
  6569. weight: math.unit(100, "lbs"),
  6570. name: "Front",
  6571. image: {
  6572. source: "./media/characters/opal/front.svg"
  6573. }
  6574. },
  6575. frontAlt: {
  6576. height: math.unit(4 + 11 / 12, "feet"),
  6577. weight: math.unit(100, "lbs"),
  6578. name: "Front (Alt)",
  6579. image: {
  6580. source: "./media/characters/opal/front-alt.svg"
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Small",
  6587. height: math.unit(4 + 11 / 12, "feet")
  6588. },
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(20, "feet"),
  6592. default: true
  6593. },
  6594. {
  6595. name: "Macro",
  6596. height: math.unit(120, "feet")
  6597. },
  6598. {
  6599. name: "Megamacro",
  6600. height: math.unit(80, "miles")
  6601. },
  6602. {
  6603. name: "True Size",
  6604. height: math.unit(100000, "lightyears")
  6605. },
  6606. ]
  6607. ))
  6608. characterMakers.push(() => makeCharacter(
  6609. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6610. {
  6611. front: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(200, "lbs"),
  6614. name: "Front",
  6615. image: {
  6616. source: "./media/characters/vector-wuff/front.svg"
  6617. }
  6618. }
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(2.8, "meters")
  6624. },
  6625. {
  6626. name: "Macro",
  6627. height: math.unit(450, "meters"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Megamacro",
  6632. height: math.unit(15, "kilometers")
  6633. }
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(256, "lbs"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/dannik/front.svg"
  6645. }
  6646. }
  6647. },
  6648. [
  6649. {
  6650. name: "Macro",
  6651. height: math.unit(69.57, "meters"),
  6652. default: true
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(120, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/azura-saharah/front.svg"
  6665. }
  6666. },
  6667. back: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(120, "lbs"),
  6670. name: "Back",
  6671. image: {
  6672. source: "./media/characters/azura-saharah/back.svg"
  6673. }
  6674. },
  6675. },
  6676. [
  6677. {
  6678. name: "Macro",
  6679. height: math.unit(100, "feet"),
  6680. default: true
  6681. },
  6682. ]
  6683. ))
  6684. characterMakers.push(() => makeCharacter(
  6685. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6686. {
  6687. side: {
  6688. height: math.unit(5 + 4 / 12, "feet"),
  6689. weight: math.unit(163, "lbs"),
  6690. name: "Side",
  6691. image: {
  6692. source: "./media/characters/kennedy/side.svg"
  6693. }
  6694. }
  6695. },
  6696. [
  6697. {
  6698. name: "Standard Doggo",
  6699. height: math.unit(5 + 4 / 12, "feet")
  6700. },
  6701. {
  6702. name: "Big Doggo",
  6703. height: math.unit(25 + 3 / 12, "feet"),
  6704. default: true
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6710. {
  6711. front: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(90, "lbs"),
  6714. name: "Front",
  6715. image: {
  6716. source: "./media/characters/odi-lunar/front.svg"
  6717. }
  6718. }
  6719. },
  6720. [
  6721. {
  6722. name: "Micro",
  6723. height: math.unit(3, "inches"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(5.5, "feet")
  6729. }
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6734. {
  6735. back: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(220, "lbs"),
  6738. name: "Back",
  6739. image: {
  6740. source: "./media/characters/mandake/back.svg"
  6741. }
  6742. }
  6743. },
  6744. [
  6745. {
  6746. name: "Normal",
  6747. height: math.unit(7, "feet"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(78, "feet")
  6753. },
  6754. {
  6755. name: "Macro+",
  6756. height: math.unit(300, "meters")
  6757. },
  6758. {
  6759. name: "Macro++",
  6760. height: math.unit(2400, "feet")
  6761. },
  6762. {
  6763. name: "Megamacro",
  6764. height: math.unit(5167, "meters")
  6765. },
  6766. {
  6767. name: "Gigamacro",
  6768. height: math.unit(41769, "miles")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6774. {
  6775. front: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(120, "lbs"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/yozey/front.svg"
  6781. }
  6782. },
  6783. frontAlt: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(120, "lbs"),
  6786. name: "Front (Alt)",
  6787. image: {
  6788. source: "./media/characters/yozey/front-alt.svg"
  6789. }
  6790. },
  6791. side: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(120, "lbs"),
  6794. name: "Side",
  6795. image: {
  6796. source: "./media/characters/yozey/side.svg"
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Micro",
  6803. height: math.unit(3, "inches"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(6, "feet")
  6809. }
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(103, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/valeska-voss/front.svg"
  6821. }
  6822. }
  6823. },
  6824. [
  6825. {
  6826. name: "Mini-Sized Sub",
  6827. height: math.unit(3.1, "inches")
  6828. },
  6829. {
  6830. name: "Mid-Sized Sub",
  6831. height: math.unit(6.2, "inches")
  6832. },
  6833. {
  6834. name: "Full-Sized Sub",
  6835. height: math.unit(9.3, "inches")
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(5 + 2 / 12, "foot"),
  6840. default: true
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(160, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/gene-zeta/front.svg",
  6853. extra: 3006 / 2826,
  6854. bottom: 182 / 3188
  6855. }
  6856. }
  6857. },
  6858. [
  6859. {
  6860. name: "Micro",
  6861. height: math.unit(6, "inches")
  6862. },
  6863. {
  6864. name: "Normal",
  6865. height: math.unit(5 + 11 / 12, "foot"),
  6866. default: true
  6867. },
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(140, "feet")
  6871. },
  6872. {
  6873. name: "Supercharged",
  6874. height: math.unit(2500, "feet")
  6875. },
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(350, "lbs"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/razinox/front.svg",
  6887. extra: 1686 / 1548,
  6888. bottom: 28.2 / 1868
  6889. }
  6890. },
  6891. back: {
  6892. height: math.unit(6, "feet"),
  6893. weight: math.unit(350, "lbs"),
  6894. name: "Back",
  6895. image: {
  6896. source: "./media/characters/razinox/back.svg",
  6897. extra: 1660 / 1590,
  6898. bottom: 15 / 1665
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Normal",
  6905. height: math.unit(10 + 8 / 12, "foot")
  6906. },
  6907. {
  6908. name: "Minimacro",
  6909. height: math.unit(15, "foot")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(60, "foot"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Megamacro",
  6918. height: math.unit(5, "miles")
  6919. },
  6920. {
  6921. name: "Gigamacro",
  6922. height: math.unit(6000, "miles")
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6928. {
  6929. front: {
  6930. height: math.unit(6, "feet"),
  6931. weight: math.unit(150, "lbs"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/cobalt/front.svg"
  6935. }
  6936. }
  6937. },
  6938. [
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(8 + 1 / 12, "foot")
  6942. },
  6943. {
  6944. name: "Macro",
  6945. height: math.unit(111, "foot"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Supracosmic",
  6950. height: math.unit(1e42, "feet")
  6951. },
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6956. {
  6957. front: {
  6958. height: math.unit(6, "feet"),
  6959. weight: math.unit(140, "lbs"),
  6960. name: "Front",
  6961. image: {
  6962. source: "./media/characters/amanda/front.svg"
  6963. }
  6964. }
  6965. },
  6966. [
  6967. {
  6968. name: "Micro",
  6969. height: math.unit(5, "inches"),
  6970. default: true
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(2.75, "meters"),
  6979. weight: math.unit(1200, "lb"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/teal/front.svg",
  6983. extra: 2463 / 2320,
  6984. bottom: 166 / 2629
  6985. }
  6986. },
  6987. back: {
  6988. height: math.unit(2.75, "meters"),
  6989. weight: math.unit(1200, "lb"),
  6990. name: "Back",
  6991. image: {
  6992. source: "./media/characters/teal/back.svg",
  6993. extra: 2580 / 2489,
  6994. bottom: 151 / 2731
  6995. }
  6996. },
  6997. sitting: {
  6998. height: math.unit(1.9, "meters"),
  6999. weight: math.unit(1200, "lb"),
  7000. name: "Sitting",
  7001. image: {
  7002. source: "./media/characters/teal/sitting.svg",
  7003. extra: 623 / 590,
  7004. bottom: 121 / 744
  7005. }
  7006. },
  7007. standing: {
  7008. height: math.unit(2.75, "meters"),
  7009. weight: math.unit(1200, "lb"),
  7010. name: "Standing",
  7011. image: {
  7012. source: "./media/characters/teal/standing.svg",
  7013. extra: 923 / 893,
  7014. bottom: 60 / 983
  7015. }
  7016. },
  7017. stretching: {
  7018. height: math.unit(3.65, "meters"),
  7019. weight: math.unit(1200, "lb"),
  7020. name: "Stretching",
  7021. image: {
  7022. source: "./media/characters/teal/stretching.svg",
  7023. extra: 1276 / 1244,
  7024. bottom: 0 / 1276
  7025. }
  7026. },
  7027. legged: {
  7028. height: math.unit(1.3, "meters"),
  7029. weight: math.unit(100, "lb"),
  7030. name: "Legged",
  7031. image: {
  7032. source: "./media/characters/teal/legged.svg",
  7033. extra: 462 / 437,
  7034. bottom: 24 / 486
  7035. }
  7036. },
  7037. naga: {
  7038. height: math.unit(5.4, "meters"),
  7039. weight: math.unit(4000, "lb"),
  7040. name: "Naga",
  7041. image: {
  7042. source: "./media/characters/teal/naga.svg",
  7043. extra: 1902 / 1858,
  7044. bottom: 0 / 1902
  7045. }
  7046. },
  7047. hand: {
  7048. height: math.unit(0.52, "meters"),
  7049. name: "Hand",
  7050. image: {
  7051. source: "./media/characters/teal/hand.svg"
  7052. }
  7053. },
  7054. maw: {
  7055. height: math.unit(0.43, "meters"),
  7056. name: "Maw",
  7057. image: {
  7058. source: "./media/characters/teal/maw.svg"
  7059. }
  7060. },
  7061. slit: {
  7062. height: math.unit(0.25, "meters"),
  7063. name: "Slit",
  7064. image: {
  7065. source: "./media/characters/teal/slit.svg"
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(2.75, "meters"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(300, "feet")
  7078. },
  7079. {
  7080. name: "Macro+",
  7081. height: math.unit(2000, "feet")
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7087. {
  7088. frontCat: {
  7089. height: math.unit(6, "feet"),
  7090. weight: math.unit(180, "lbs"),
  7091. name: "Front (Cat)",
  7092. image: {
  7093. source: "./media/characters/ravin-amulet/front-cat.svg"
  7094. }
  7095. },
  7096. frontCatAlt: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(180, "lbs"),
  7099. name: "Front (Alt, Cat)",
  7100. image: {
  7101. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7102. }
  7103. },
  7104. frontWerewolf: {
  7105. height: math.unit(6 * 1.2, "feet"),
  7106. weight: math.unit(225, "lbs"),
  7107. name: "Front (Werewolf)",
  7108. image: {
  7109. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7110. }
  7111. },
  7112. backWerewolf: {
  7113. height: math.unit(6 * 1.2, "feet"),
  7114. weight: math.unit(225, "lbs"),
  7115. name: "Back (Werewolf)",
  7116. image: {
  7117. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Nano",
  7124. height: math.unit(1, "micrometer")
  7125. },
  7126. {
  7127. name: "Micro",
  7128. height: math.unit(1, "inch")
  7129. },
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(6, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(60, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(165, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/fluoresce/front.svg"
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Micro",
  7156. height: math.unit(6, "cm")
  7157. },
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(5 + 7 / 12, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(56, "feet")
  7166. },
  7167. {
  7168. name: "Megamacro",
  7169. height: math.unit(1.9, "miles")
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(9 + 6 / 12, "feet"),
  7178. weight: math.unit(523, "lbs"),
  7179. name: "Side",
  7180. image: {
  7181. source: "./media/characters/aurora/side.svg"
  7182. }
  7183. }
  7184. },
  7185. [
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(9 + 6 / 12, "feet")
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(96, "feet"),
  7193. default: true
  7194. },
  7195. {
  7196. name: "Macro+",
  7197. height: math.unit(243, "feet")
  7198. },
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(194, "cm"),
  7206. weight: math.unit(90, "kg"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/ranek/front.svg"
  7210. }
  7211. },
  7212. side: {
  7213. height: math.unit(194, "cm"),
  7214. weight: math.unit(90, "kg"),
  7215. name: "Side",
  7216. image: {
  7217. source: "./media/characters/ranek/side.svg"
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(194, "cm"),
  7222. weight: math.unit(90, "kg"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/ranek/back.svg"
  7226. }
  7227. },
  7228. feral: {
  7229. height: math.unit(30, "cm"),
  7230. weight: math.unit(1.6, "lbs"),
  7231. name: "Feral",
  7232. image: {
  7233. source: "./media/characters/ranek/feral.svg"
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(194, "cm"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(100, "meters")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7251. {
  7252. front: {
  7253. height: math.unit(5 + 6 / 12, "feet"),
  7254. weight: math.unit(153, "lbs"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/andrew-cooper/front.svg"
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Nano",
  7264. height: math.unit(1, "mm")
  7265. },
  7266. {
  7267. name: "Micro",
  7268. height: math.unit(2, "inches")
  7269. },
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(5 + 6 / 12, "feet"),
  7273. default: true
  7274. }
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(6, "feet"),
  7282. weight: math.unit(180, "lbs"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/akane-sato/front.svg",
  7286. extra: 1219 / 1140
  7287. }
  7288. },
  7289. back: {
  7290. height: math.unit(6, "feet"),
  7291. weight: math.unit(180, "lbs"),
  7292. name: "Back",
  7293. image: {
  7294. source: "./media/characters/akane-sato/back.svg",
  7295. extra: 1219 / 1170
  7296. }
  7297. },
  7298. },
  7299. [
  7300. {
  7301. name: "Normal",
  7302. height: math.unit(2.5, "meters")
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(250, "meters"),
  7307. default: true
  7308. },
  7309. {
  7310. name: "Megamacro",
  7311. height: math.unit(25, "km")
  7312. },
  7313. ]
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(6, "feet"),
  7320. weight: math.unit(65, "kg"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/rook/front.svg",
  7324. extra: 960 / 950
  7325. }
  7326. }
  7327. },
  7328. [
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(8.8, "feet")
  7332. },
  7333. {
  7334. name: "Macro",
  7335. height: math.unit(88, "feet"),
  7336. default: true
  7337. },
  7338. {
  7339. name: "Megamacro",
  7340. height: math.unit(8, "miles")
  7341. },
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7346. {
  7347. front: {
  7348. height: math.unit(12 + 2 / 12, "feet"),
  7349. weight: math.unit(808, "lbs"),
  7350. name: "Front",
  7351. image: {
  7352. source: "./media/characters/prodigy/front.svg"
  7353. }
  7354. }
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(12 + 2 / 12, "feet"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(143, "feet")
  7365. },
  7366. {
  7367. name: "Macro+",
  7368. height: math.unit(400, "feet")
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(225, "lbs"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/daniel/front.svg"
  7381. }
  7382. },
  7383. leaning: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(225, "lbs"),
  7386. name: "Leaning",
  7387. image: {
  7388. source: "./media/characters/daniel/leaning.svg"
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Macro",
  7395. height: math.unit(1000, "feet"),
  7396. default: true
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7402. {
  7403. front: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(88, "lbs"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/chiros/front.svg",
  7409. extra: 306 / 226
  7410. }
  7411. },
  7412. side: {
  7413. height: math.unit(6, "feet"),
  7414. weight: math.unit(88, "lbs"),
  7415. name: "Side",
  7416. image: {
  7417. source: "./media/characters/chiros/side.svg",
  7418. extra: 306 / 226
  7419. }
  7420. },
  7421. },
  7422. [
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(6, "cm"),
  7426. default: true
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7432. {
  7433. front: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(100, "lbs"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/selka/front.svg",
  7439. extra: 947 / 887
  7440. }
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(5, "cm"),
  7447. default: true
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(8 + 3 / 12, "feet"),
  7456. weight: math.unit(424, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/verin/front.svg",
  7460. extra: 1845 / 1550
  7461. }
  7462. },
  7463. frontArmored: {
  7464. height: math.unit(8 + 3 / 12, "feet"),
  7465. weight: math.unit(424, "lbs"),
  7466. name: "Front (Armored)",
  7467. image: {
  7468. source: "./media/characters/verin/front-armor.svg",
  7469. extra: 1845 / 1550,
  7470. bottom: 0.01
  7471. }
  7472. },
  7473. back: {
  7474. height: math.unit(8 + 3 / 12, "feet"),
  7475. weight: math.unit(424, "lbs"),
  7476. name: "Back",
  7477. image: {
  7478. source: "./media/characters/verin/back.svg",
  7479. bottom: 0.1,
  7480. extra: 1
  7481. }
  7482. },
  7483. foot: {
  7484. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7485. name: "Foot",
  7486. image: {
  7487. source: "./media/characters/verin/foot.svg"
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Normal",
  7494. height: math.unit(8 + 3 / 12, "feet")
  7495. },
  7496. {
  7497. name: "Minimacro",
  7498. height: math.unit(21, "feet"),
  7499. default: true
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(626, "feet")
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(2.718, "meters"),
  7512. weight: math.unit(150, "lbs"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/sovrim-terraquian/front.svg"
  7516. }
  7517. },
  7518. back: {
  7519. height: math.unit(2.718, "meters"),
  7520. weight: math.unit(150, "lbs"),
  7521. name: "Back",
  7522. image: {
  7523. source: "./media/characters/sovrim-terraquian/back.svg"
  7524. }
  7525. }
  7526. },
  7527. [
  7528. {
  7529. name: "Micro",
  7530. height: math.unit(2, "inches")
  7531. },
  7532. {
  7533. name: "Small",
  7534. height: math.unit(1, "meter")
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(Math.E, "meters"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(20, "meters")
  7544. },
  7545. {
  7546. name: "Macro+",
  7547. height: math.unit(400, "meters")
  7548. },
  7549. ]
  7550. ))
  7551. characterMakers.push(() => makeCharacter(
  7552. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7553. {
  7554. front: {
  7555. height: math.unit(7, "feet"),
  7556. weight: math.unit(489, "lbs"),
  7557. name: "Front",
  7558. image: {
  7559. source: "./media/characters/reece-silvermane/front.svg",
  7560. bottom: 0.02,
  7561. extra: 1
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(1.5, "miles"),
  7569. default: true
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(78, "kg"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/kane/front.svg",
  7582. extra: 978 / 899
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(2.1, "m"),
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(1, "km"),
  7594. default: true
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(200, "kg"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/tegon/front.svg",
  7607. bottom: 0.01,
  7608. extra: 1
  7609. }
  7610. },
  7611. },
  7612. [
  7613. {
  7614. name: "Micro",
  7615. height: math.unit(1, "inch")
  7616. },
  7617. {
  7618. name: "Normal",
  7619. height: math.unit(6 + 3 / 12, "feet"),
  7620. default: true
  7621. },
  7622. {
  7623. name: "Macro",
  7624. height: math.unit(300, "feet")
  7625. },
  7626. {
  7627. name: "Megamacro",
  7628. height: math.unit(69, "miles")
  7629. },
  7630. ]
  7631. ))
  7632. characterMakers.push(() => makeCharacter(
  7633. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7634. {
  7635. side: {
  7636. height: math.unit(6, "feet"),
  7637. weight: math.unit(2304, "lbs"),
  7638. name: "Side",
  7639. image: {
  7640. source: "./media/characters/arcturax/side.svg",
  7641. extra: 790 / 376,
  7642. bottom: 0.01
  7643. }
  7644. },
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(2, "inch")
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(6, "feet")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(39, "feet"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(7, "miles")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(50, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/sentri/front.svg",
  7675. extra: 1750 / 1570,
  7676. bottom: 0.025
  7677. }
  7678. },
  7679. frontAlt: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(50, "lbs"),
  7682. name: "Front (Alt)",
  7683. image: {
  7684. source: "./media/characters/sentri/front-alt.svg",
  7685. extra: 1750 / 1570,
  7686. bottom: 0.025
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(15, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(2500, "feet")
  7699. }
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(5 + 8 / 12, "feet"),
  7707. weight: math.unit(130, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/corvin/front.svg",
  7711. extra: 1803 / 1629
  7712. }
  7713. },
  7714. frontShirt: {
  7715. height: math.unit(5 + 8 / 12, "feet"),
  7716. weight: math.unit(130, "lbs"),
  7717. name: "Front (Shirt)",
  7718. image: {
  7719. source: "./media/characters/corvin/front-shirt.svg",
  7720. extra: 1803 / 1629
  7721. }
  7722. },
  7723. frontPoncho: {
  7724. height: math.unit(5 + 8 / 12, "feet"),
  7725. weight: math.unit(130, "lbs"),
  7726. name: "Front (Poncho)",
  7727. image: {
  7728. source: "./media/characters/corvin/front-poncho.svg",
  7729. extra: 1803 / 1629
  7730. }
  7731. },
  7732. side: {
  7733. height: math.unit(5 + 8 / 12, "feet"),
  7734. weight: math.unit(130, "lbs"),
  7735. name: "Side",
  7736. image: {
  7737. source: "./media/characters/corvin/side.svg",
  7738. extra: 1012 / 945
  7739. }
  7740. },
  7741. back: {
  7742. height: math.unit(5 + 8 / 12, "feet"),
  7743. weight: math.unit(130, "lbs"),
  7744. name: "Back",
  7745. image: {
  7746. source: "./media/characters/corvin/back.svg",
  7747. extra: 1803 / 1629
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Micro",
  7754. height: math.unit(3, "inches")
  7755. },
  7756. {
  7757. name: "Normal",
  7758. height: math.unit(5 + 8 / 12, "feet")
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(300, "feet"),
  7763. default: true
  7764. },
  7765. {
  7766. name: "Megamacro",
  7767. height: math.unit(500, "miles")
  7768. }
  7769. ]
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(135, "lbs"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/q/front.svg",
  7780. extra: 854 / 752,
  7781. bottom: 0.005
  7782. }
  7783. },
  7784. back: {
  7785. height: math.unit(6, "feet"),
  7786. weight: math.unit(130, "lbs"),
  7787. name: "Back",
  7788. image: {
  7789. source: "./media/characters/q/back.svg",
  7790. extra: 854 / 752
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Macro",
  7797. height: math.unit(90, "feet"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Extra Macro",
  7802. height: math.unit(300, "feet"),
  7803. },
  7804. {
  7805. name: "BIG WALF",
  7806. height: math.unit(750, "feet"),
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(6, "feet"),
  7815. weight: math.unit(150, "lbs"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/carley/front.svg",
  7819. extra: 3927 / 3540,
  7820. bottom: 29.2 / 735
  7821. }
  7822. }
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(6 + 3 / 12, "feet")
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(185, "feet"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Megamacro",
  7836. height: math.unit(8, "miles"),
  7837. },
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(3, "feet"),
  7845. weight: math.unit(28, "lbs"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/citrine/front.svg"
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(3, "feet"),
  7856. default: true
  7857. }
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7862. {
  7863. front: {
  7864. height: math.unit(14, "feet"),
  7865. weight: math.unit(1450, "kg"),
  7866. capacity: math.unit(15, "people"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/aura-starwind/front.svg",
  7870. extra: 1455 / 1335
  7871. }
  7872. },
  7873. side: {
  7874. height: math.unit(14, "feet"),
  7875. weight: math.unit(1450, "kg"),
  7876. capacity: math.unit(15, "people"),
  7877. name: "Side",
  7878. image: {
  7879. source: "./media/characters/aura-starwind/side.svg",
  7880. extra: 1654 / 1497
  7881. }
  7882. },
  7883. taur: {
  7884. height: math.unit(18, "feet"),
  7885. weight: math.unit(5500, "kg"),
  7886. capacity: math.unit(50, "people"),
  7887. name: "Taur",
  7888. image: {
  7889. source: "./media/characters/aura-starwind/taur.svg",
  7890. extra: 1760 / 1650
  7891. }
  7892. },
  7893. feral: {
  7894. height: math.unit(46, "feet"),
  7895. weight: math.unit(25000, "kg"),
  7896. capacity: math.unit(120, "people"),
  7897. name: "Feral",
  7898. image: {
  7899. source: "./media/characters/aura-starwind/feral.svg"
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(14, "feet"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(50, "meters")
  7912. },
  7913. {
  7914. name: "Megamacro",
  7915. height: math.unit(5000, "meters")
  7916. },
  7917. {
  7918. name: "Gigamacro",
  7919. height: math.unit(100000, "kilometers")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(2 + 7 / 12, "feet"),
  7928. weight: math.unit(32, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/rivet/front.svg",
  7932. extra: 1716 / 1658,
  7933. bottom: 0.03
  7934. }
  7935. },
  7936. foot: {
  7937. height: math.unit(0.551, "feet"),
  7938. name: "Rivet's Foot",
  7939. image: {
  7940. source: "./media/characters/rivet/foot.svg"
  7941. },
  7942. rename: true
  7943. }
  7944. },
  7945. [
  7946. {
  7947. name: "Micro",
  7948. height: math.unit(1.5, "inches"),
  7949. },
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(2 + 7 / 12, "feet"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(85, "feet")
  7958. },
  7959. {
  7960. name: "Megamacro",
  7961. height: math.unit(2.2, "km")
  7962. }
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(5 + 9 / 12, "feet"),
  7970. weight: math.unit(150, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/coffee/front.svg",
  7974. extra: 3666 / 3032,
  7975. bottom: 0.04
  7976. }
  7977. },
  7978. foot: {
  7979. height: math.unit(1.29, "feet"),
  7980. name: "Foot",
  7981. image: {
  7982. source: "./media/characters/coffee/foot.svg"
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Micro",
  7989. height: math.unit(2, "inches"),
  7990. },
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(5 + 9 / 12, "feet"),
  7994. default: true
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(800, "feet")
  7999. },
  8000. {
  8001. name: "Megamacro",
  8002. height: math.unit(25, "miles")
  8003. }
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(6, "feet"),
  8011. weight: math.unit(200, "lbs"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/chari-gal/front.svg",
  8015. extra: 1568 / 1385,
  8016. bottom: 0.047
  8017. }
  8018. },
  8019. gigantamax: {
  8020. height: math.unit(6 * 16, "feet"),
  8021. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8022. name: "Gigantamax",
  8023. image: {
  8024. source: "./media/characters/chari-gal/gigantamax.svg",
  8025. extra: 1124 / 888,
  8026. bottom: 0.03
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Normal",
  8033. height: math.unit(5 + 7 / 12, "feet")
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(200, "feet"),
  8038. default: true
  8039. }
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(6, "feet"),
  8047. weight: math.unit(150, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/nova/front.svg",
  8051. extra: 5000 / 4722,
  8052. bottom: 0.02
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Micro-",
  8059. height: math.unit(0.8, "inches")
  8060. },
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(2, "inches"),
  8064. default: true
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(3 + 1 / 12, "feet"),
  8073. weight: math.unit(21.7, "lbs"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/argent/front.svg",
  8077. extra: 1471 / 1331,
  8078. bottom: 100.8 / 1575.5
  8079. }
  8080. }
  8081. },
  8082. [
  8083. {
  8084. name: "Micro",
  8085. height: math.unit(2, "inches")
  8086. },
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(3 + 1 / 12, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(120, "feet")
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8100. {
  8101. lamp: {
  8102. height: math.unit(7 * 1559 / 989, "feet"),
  8103. name: "Magic Lamp",
  8104. image: {
  8105. source: "./media/characters/mira-al-cul/lamp.svg",
  8106. extra: 1617 / 1559
  8107. }
  8108. },
  8109. front: {
  8110. height: math.unit(7, "feet"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/mira-al-cul/front.svg",
  8114. extra: 1044 / 990
  8115. }
  8116. },
  8117. },
  8118. [
  8119. {
  8120. name: "Heavily Restricted",
  8121. height: math.unit(7 * 1559 / 989, "feet")
  8122. },
  8123. {
  8124. name: "Freshly Freed",
  8125. height: math.unit(50 * 1559 / 989, "feet")
  8126. },
  8127. {
  8128. name: "World Encompassing",
  8129. height: math.unit(10000 * 1559 / 989, "miles")
  8130. },
  8131. {
  8132. name: "Galactic",
  8133. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8134. },
  8135. {
  8136. name: "Palmed Universe",
  8137. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Multiversal Matriarch",
  8142. height: math.unit(8.87e10, "yottameters")
  8143. },
  8144. {
  8145. name: "Void Mother",
  8146. height: math.unit(3.14e110, "yottaparsecs")
  8147. },
  8148. {
  8149. name: "Toying with Transcendence",
  8150. height: math.unit(1e307, "meters")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8156. {
  8157. front: {
  8158. height: math.unit(17 + 1 / 12, "feet"),
  8159. weight: math.unit(476.2 * 5, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/kuro-shi-uchū/front.svg",
  8163. extra: 2329 / 1835,
  8164. bottom: 0.02
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Micro",
  8171. height: math.unit(2, "inches")
  8172. },
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(12, "meters")
  8176. },
  8177. {
  8178. name: "Planetary",
  8179. height: math.unit(0.00929, "AU"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Universal",
  8184. height: math.unit(20, "gigaparsecs")
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(5 + 2 / 12, "feet"),
  8193. weight: math.unit(120, "lbs"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/katherine/front.svg",
  8197. extra: 2075 / 1969
  8198. }
  8199. },
  8200. dress: {
  8201. height: math.unit(5 + 2 / 12, "feet"),
  8202. weight: math.unit(120, "lbs"),
  8203. name: "Dress",
  8204. image: {
  8205. source: "./media/characters/katherine/dress.svg",
  8206. extra: 2258 / 2064
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Micro",
  8213. height: math.unit(1, "inches"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(5 + 2 / 12, "feet")
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(100, "meters")
  8223. },
  8224. {
  8225. name: "Megamacro",
  8226. height: math.unit(80, "miles")
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(7 + 8 / 12, "feet"),
  8235. weight: math.unit(250, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/yevis/front.svg",
  8239. extra: 1938 / 1755
  8240. }
  8241. }
  8242. },
  8243. [
  8244. {
  8245. name: "Mortal",
  8246. height: math.unit(7 + 8 / 12, "feet")
  8247. },
  8248. {
  8249. name: "Battle",
  8250. height: math.unit(25 + 11 / 12, "feet")
  8251. },
  8252. {
  8253. name: "Wrath",
  8254. height: math.unit(1654 + 11 / 12, "feet")
  8255. },
  8256. {
  8257. name: "Planet Destroyer",
  8258. height: math.unit(12000, "miles")
  8259. },
  8260. {
  8261. name: "Galaxy Conqueror",
  8262. height: math.unit(1.45, "zettameters"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Universal War",
  8267. height: math.unit(184, "gigaparsecs")
  8268. },
  8269. {
  8270. name: "Eternity War",
  8271. height: math.unit(1.98e55, "yottaparsecs")
  8272. },
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8277. {
  8278. front: {
  8279. height: math.unit(5 + 8 / 12, "feet"),
  8280. weight: math.unit(63, "kg"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/xavier/front.svg",
  8284. extra: 944 / 883
  8285. }
  8286. },
  8287. frontStretch: {
  8288. height: math.unit(5 + 8 / 12, "feet"),
  8289. weight: math.unit(63, "kg"),
  8290. name: "Stretching",
  8291. image: {
  8292. source: "./media/characters/xavier/front-stretch.svg",
  8293. extra: 962 / 820
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(5 + 8 / 12, "feet")
  8301. },
  8302. {
  8303. name: "Macro",
  8304. height: math.unit(100, "meters"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "McLargeHuge",
  8309. height: math.unit(10, "miles")
  8310. },
  8311. ]
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(5 + 5 / 12, "feet"),
  8318. weight: math.unit(150, "lb"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/joshii/front.svg",
  8322. extra: 765 / 653,
  8323. bottom: 51 / 816
  8324. }
  8325. },
  8326. foot: {
  8327. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8328. name: "Foot",
  8329. image: {
  8330. source: "./media/characters/joshii/foot.svg"
  8331. }
  8332. },
  8333. },
  8334. [
  8335. {
  8336. name: "Micro",
  8337. height: math.unit(2, "inches"),
  8338. default: true
  8339. },
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(5 + 5 / 12, "feet")
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(785, "feet")
  8347. },
  8348. {
  8349. name: "Megamacro",
  8350. height: math.unit(24.5, "miles")
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(6, "feet"),
  8359. weight: math.unit(150, "lb"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/goddess-elizabeth/front.svg",
  8363. extra: 1800 / 1525,
  8364. bottom: 0.005
  8365. }
  8366. },
  8367. foot: {
  8368. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8369. name: "Foot",
  8370. image: {
  8371. source: "./media/characters/goddess-elizabeth/foot.svg"
  8372. }
  8373. },
  8374. mouth: {
  8375. height: math.unit(6, "feet"),
  8376. name: "Mouth",
  8377. image: {
  8378. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(12, "feet")
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(80, "miles"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(15000, "parsecs")
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(5 + 9 / 12, "feet"),
  8403. weight: math.unit(144, "lb"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/kara/front.svg"
  8407. }
  8408. },
  8409. feet: {
  8410. height: math.unit(6 / 6.765, "feet"),
  8411. name: "Kara's Feet",
  8412. rename: true,
  8413. image: {
  8414. source: "./media/characters/kara/feet.svg"
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(5 + 9 / 12, "feet")
  8422. },
  8423. {
  8424. name: "Macro",
  8425. height: math.unit(174, "feet"),
  8426. default: true
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8432. {
  8433. front: {
  8434. height: math.unit(18, "feet"),
  8435. weight: math.unit(4050, "lb"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/tyrone/front.svg",
  8439. extra: 2405 / 2270,
  8440. bottom: 182 / 2587
  8441. }
  8442. },
  8443. },
  8444. [
  8445. {
  8446. name: "Normal",
  8447. height: math.unit(18, "feet"),
  8448. default: true
  8449. },
  8450. {
  8451. name: "Macro",
  8452. height: math.unit(300, "feet")
  8453. },
  8454. {
  8455. name: "Megamacro",
  8456. height: math.unit(15, "km")
  8457. },
  8458. {
  8459. name: "Gigamacro",
  8460. height: math.unit(500, "km")
  8461. },
  8462. {
  8463. name: "Teramacro",
  8464. height: math.unit(0.5, "gigameters")
  8465. },
  8466. {
  8467. name: "Omnimacro",
  8468. height: math.unit(1e252, "yottauniverse")
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(7 + 8 / 12, "feet"),
  8477. weight: math.unit(120, "lb"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/danny/front.svg",
  8481. extra: 1490 / 1350
  8482. }
  8483. },
  8484. back: {
  8485. height: math.unit(7 + 8 / 12, "feet"),
  8486. weight: math.unit(120, "lb"),
  8487. name: "Back",
  8488. image: {
  8489. source: "./media/characters/danny/back.svg",
  8490. extra: 1490 / 1350
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(7 + 8 / 12, "feet"),
  8498. default: true
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8504. {
  8505. front: {
  8506. height: math.unit(3.5, "inches"),
  8507. weight: math.unit(19, "grams"),
  8508. name: "Front",
  8509. image: {
  8510. source: "./media/characters/mallow/front.svg",
  8511. extra: 471 / 431
  8512. }
  8513. },
  8514. back: {
  8515. height: math.unit(3.5, "inches"),
  8516. weight: math.unit(19, "grams"),
  8517. name: "Back",
  8518. image: {
  8519. source: "./media/characters/mallow/back.svg",
  8520. extra: 471 / 431
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(3.5, "inches"),
  8528. default: true
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(9, "feet"),
  8537. weight: math.unit(230, "kg"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/starry-aqua/front.svg"
  8541. }
  8542. },
  8543. back: {
  8544. height: math.unit(9, "feet"),
  8545. weight: math.unit(230, "kg"),
  8546. name: "Back",
  8547. image: {
  8548. source: "./media/characters/starry-aqua/back.svg"
  8549. }
  8550. },
  8551. hand: {
  8552. height: math.unit(9 * 0.1168, "feet"),
  8553. name: "Hand",
  8554. image: {
  8555. source: "./media/characters/starry-aqua/hand.svg"
  8556. }
  8557. },
  8558. foot: {
  8559. height: math.unit(9 * 0.18, "feet"),
  8560. name: "Foot",
  8561. image: {
  8562. source: "./media/characters/starry-aqua/foot.svg"
  8563. }
  8564. }
  8565. },
  8566. [
  8567. {
  8568. name: "Micro",
  8569. height: math.unit(3, "inches")
  8570. },
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(9, "feet")
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(300, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Megamacro",
  8582. height: math.unit(3200, "feet")
  8583. }
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(230, "lb"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/luka/front.svg",
  8595. extra: 1,
  8596. bottom: 0.025
  8597. }
  8598. },
  8599. },
  8600. [
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(12 + 8 / 12, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Minimacro",
  8608. height: math.unit(20, "feet")
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(250, "feet")
  8613. },
  8614. {
  8615. name: "Megamacro",
  8616. height: math.unit(5, "miles")
  8617. },
  8618. {
  8619. name: "Gigamacro",
  8620. height: math.unit(8000, "miles")
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(150, "lb"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/natalie-nightring/front.svg",
  8633. extra: 1,
  8634. bottom: 0.06
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Uh Oh",
  8641. height: math.unit(0.1, "mm")
  8642. },
  8643. {
  8644. name: "Small",
  8645. height: math.unit(3, "inches")
  8646. },
  8647. {
  8648. name: "Human Scale",
  8649. height: math.unit(6, "feet")
  8650. },
  8651. {
  8652. name: "Librarian",
  8653. height: math.unit(50, "feet"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Immense",
  8658. height: math.unit(200, "miles")
  8659. },
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(6, "feet"),
  8667. weight: math.unit(180, "lbs"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/danni-rosie/front.svg",
  8671. extra: 1260 / 1128,
  8672. bottom: 0.022
  8673. }
  8674. },
  8675. },
  8676. [
  8677. {
  8678. name: "Micro",
  8679. height: math.unit(2, "inches"),
  8680. default: true
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8686. {
  8687. front: {
  8688. height: math.unit(5 + 9 / 12, "feet"),
  8689. weight: math.unit(220, "lb"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/samantha-kruse/front.svg",
  8693. extra: (985 / 935),
  8694. bottom: 0.03
  8695. }
  8696. },
  8697. frontUndressed: {
  8698. height: math.unit(5 + 9 / 12, "feet"),
  8699. weight: math.unit(220, "lb"),
  8700. name: "Front (Undressed)",
  8701. image: {
  8702. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8703. extra: (973 / 923),
  8704. bottom: 0.025
  8705. }
  8706. },
  8707. fat: {
  8708. height: math.unit(5 + 9 / 12, "feet"),
  8709. weight: math.unit(900, "lb"),
  8710. name: "Front (Fat)",
  8711. image: {
  8712. source: "./media/characters/samantha-kruse/fat.svg",
  8713. extra: 2688 / 2561
  8714. }
  8715. },
  8716. },
  8717. [
  8718. {
  8719. name: "Normal",
  8720. height: math.unit(5 + 9 / 12, "feet"),
  8721. default: true
  8722. }
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8727. {
  8728. back: {
  8729. height: math.unit(5 + 4 / 12, "feet"),
  8730. weight: math.unit(4963, "lb"),
  8731. name: "Back",
  8732. image: {
  8733. source: "./media/characters/amelia-rosie/back.svg",
  8734. extra: 1113 / 963,
  8735. bottom: 0.01
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Level 0",
  8742. height: math.unit(5 + 4 / 12, "feet")
  8743. },
  8744. {
  8745. name: "Level 1",
  8746. height: math.unit(164597, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Level 2",
  8751. height: math.unit(956243, "miles")
  8752. },
  8753. {
  8754. name: "Level 3",
  8755. height: math.unit(29421709423, "miles")
  8756. },
  8757. {
  8758. name: "Level 4",
  8759. height: math.unit(154, "lightyears")
  8760. },
  8761. {
  8762. name: "Level 5",
  8763. height: math.unit(4738272, "lightyears")
  8764. },
  8765. {
  8766. name: "Level 6",
  8767. height: math.unit(145787152896, "lightyears")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(5 + 11 / 12, "feet"),
  8776. weight: math.unit(65, "kg"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/rook-kitara/front.svg",
  8780. extra: 1347 / 1274,
  8781. bottom: 0.005
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Totally Unfair",
  8788. height: math.unit(1.8, "mm")
  8789. },
  8790. {
  8791. name: "Lap Rookie",
  8792. height: math.unit(1.4, "feet")
  8793. },
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(5 + 11 / 12, "feet"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "How Did This Happen",
  8801. height: math.unit(80, "miles")
  8802. }
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8807. {
  8808. front: {
  8809. height: math.unit(7, "feet"),
  8810. weight: math.unit(300, "lb"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/pisces/front.svg",
  8814. extra: 2255 / 2115,
  8815. bottom: 0.03
  8816. }
  8817. },
  8818. back: {
  8819. height: math.unit(7, "feet"),
  8820. weight: math.unit(300, "lb"),
  8821. name: "Back",
  8822. image: {
  8823. source: "./media/characters/pisces/back.svg",
  8824. extra: 2146 / 2055,
  8825. bottom: 0.04
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(7, "feet"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Swimming Pool",
  8837. height: math.unit(12.2, "meters")
  8838. },
  8839. {
  8840. name: "Olympic Swimming Pool",
  8841. height: math.unit(56.3, "meters")
  8842. },
  8843. {
  8844. name: "Lake Superior",
  8845. height: math.unit(93900, "meters")
  8846. },
  8847. {
  8848. name: "Mediterranean Sea",
  8849. height: math.unit(644457, "meters")
  8850. },
  8851. {
  8852. name: "World's Oceans",
  8853. height: math.unit(4567491, "meters")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(2.3, "meters"),
  8862. weight: math.unit(120, "kg"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/zelas/front.svg"
  8866. }
  8867. },
  8868. side: {
  8869. height: math.unit(2.3, "meters"),
  8870. weight: math.unit(120, "kg"),
  8871. name: "Side",
  8872. image: {
  8873. source: "./media/characters/zelas/side.svg"
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(2.3, "meters"),
  8878. weight: math.unit(120, "kg"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/zelas/back.svg"
  8882. }
  8883. },
  8884. foot: {
  8885. height: math.unit(1.116, "feet"),
  8886. name: "Foot",
  8887. image: {
  8888. source: "./media/characters/zelas/foot.svg"
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(2.3, "meters")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(30, "meters"),
  8900. default: true
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(1, "inch"),
  8909. weight: math.unit(0.21, "grams"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/talbot/front.svg",
  8913. extra: 594 / 544
  8914. }
  8915. },
  8916. },
  8917. [
  8918. {
  8919. name: "Micro",
  8920. height: math.unit(1, "inch"),
  8921. default: true
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8927. {
  8928. front: {
  8929. height: math.unit(3 + 3 / 12, "feet"),
  8930. weight: math.unit(51.8, "lb"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/fliss/front.svg",
  8934. extra: 840 / 640
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Teeny Tiny",
  8941. height: math.unit(1, "mm")
  8942. },
  8943. {
  8944. name: "Small",
  8945. height: math.unit(1, "inch"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Standard Sylveon",
  8950. height: math.unit(3 + 3 / 12, "feet")
  8951. },
  8952. {
  8953. name: "Large Nuisance",
  8954. height: math.unit(33, "feet")
  8955. },
  8956. {
  8957. name: "City Filler",
  8958. height: math.unit(3000, "feet")
  8959. },
  8960. {
  8961. name: "New Horizon",
  8962. height: math.unit(6000, "miles")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(5, "cm"),
  8971. weight: math.unit(1.94, "g"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/fleta/front.svg",
  8975. extra: 835 / 803
  8976. }
  8977. },
  8978. back: {
  8979. height: math.unit(5, "cm"),
  8980. weight: math.unit(1.94, "g"),
  8981. name: "Back",
  8982. image: {
  8983. source: "./media/characters/fleta/back.svg",
  8984. extra: 835 / 803
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(5, "cm"),
  8992. default: true
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(225, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/dominic/front.svg",
  9005. extra: 1770 / 1620,
  9006. bottom: 0.025
  9007. }
  9008. },
  9009. back: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(225, "lb"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/dominic/back.svg",
  9015. extra: 1745 / 1620,
  9016. bottom: 0.065
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Nano",
  9023. height: math.unit(0.1, "mm")
  9024. },
  9025. {
  9026. name: "Micro-",
  9027. height: math.unit(1, "mm")
  9028. },
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(4, "inches")
  9032. },
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(6 + 4 / 12, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Macro",
  9040. height: math.unit(115, "feet")
  9041. },
  9042. {
  9043. name: "Macro+",
  9044. height: math.unit(955, "feet")
  9045. },
  9046. {
  9047. name: "Megamacro",
  9048. height: math.unit(8990, "feet")
  9049. },
  9050. {
  9051. name: "Gigmacro",
  9052. height: math.unit(9310, "miles")
  9053. },
  9054. {
  9055. name: "Teramacro",
  9056. height: math.unit(1567005010, "miles")
  9057. },
  9058. {
  9059. name: "Examacro",
  9060. height: math.unit(1425, "parsecs")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(400, "feet"),
  9069. weight: math.unit(44444444, "lb"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/major-colonel/front.svg"
  9073. }
  9074. },
  9075. back: {
  9076. height: math.unit(400, "feet"),
  9077. weight: math.unit(44444444, "lb"),
  9078. name: "Back",
  9079. image: {
  9080. source: "./media/characters/major-colonel/back.svg"
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Macro",
  9087. height: math.unit(400, "feet"),
  9088. default: true
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9094. {
  9095. catFront: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(120, "lb"),
  9098. name: "Front (Cat Side)",
  9099. image: {
  9100. source: "./media/characters/axel-lycan/cat-front.svg",
  9101. extra: 430 / 402,
  9102. bottom: 43 / 472.35
  9103. }
  9104. },
  9105. catBack: {
  9106. height: math.unit(6, "feet"),
  9107. weight: math.unit(120, "lb"),
  9108. name: "Back (Cat Side)",
  9109. image: {
  9110. source: "./media/characters/axel-lycan/cat-back.svg",
  9111. extra: 447 / 419,
  9112. bottom: 23.3 / 469
  9113. }
  9114. },
  9115. wolfFront: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(120, "lb"),
  9118. name: "Front (Wolf Side)",
  9119. image: {
  9120. source: "./media/characters/axel-lycan/wolf-front.svg",
  9121. extra: 485 / 456,
  9122. bottom: 19 / 504
  9123. }
  9124. },
  9125. wolfBack: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(120, "lb"),
  9128. name: "Back (Wolf Side)",
  9129. image: {
  9130. source: "./media/characters/axel-lycan/wolf-back.svg",
  9131. extra: 475 / 438,
  9132. bottom: 39.2 / 514
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(1, "km"),
  9140. default: true
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9146. {
  9147. front: {
  9148. height: math.unit(5 + 9 / 12, "feet"),
  9149. weight: math.unit(175, "lb"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/vanrel-hyena/front.svg",
  9153. extra: 1086 / 1010,
  9154. bottom: 0.04
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(5 + 9 / 12, "feet"),
  9162. default: true
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(6, "feet"),
  9171. weight: math.unit(103, "lb"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/abbott-absol/front.svg",
  9175. extra: 2010 / 1842
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Megamicro",
  9182. height: math.unit(0.1, "mm")
  9183. },
  9184. {
  9185. name: "Micro",
  9186. height: math.unit(1, "inch")
  9187. },
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(6, "feet"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(264, "lb"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/hector/front.svg",
  9204. extra: 2280 / 2130,
  9205. bottom: 0.07
  9206. }
  9207. },
  9208. },
  9209. [
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(12.25, "foot"),
  9213. default: true
  9214. },
  9215. {
  9216. name: "Macro",
  9217. height: math.unit(160, "feet")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(6, "feet"),
  9226. weight: math.unit(150, "lb"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/sal/front.svg",
  9230. extra: 1846 / 1699,
  9231. bottom: 0.04
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Megamacro",
  9238. height: math.unit(10, "miles"),
  9239. default: true
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9245. {
  9246. front: {
  9247. height: math.unit(3, "meters"),
  9248. weight: math.unit(450, "kg"),
  9249. name: "front",
  9250. image: {
  9251. source: "./media/characters/ranger/front.svg",
  9252. extra: 2401 / 2243,
  9253. bottom: 0.05
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(3, "meters"),
  9261. default: true
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9267. {
  9268. front: {
  9269. height: math.unit(14, "feet"),
  9270. weight: math.unit(800, "kg"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/theresa/front.svg",
  9274. extra: 3575 / 3346,
  9275. bottom: 0.03
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(14, "feet"),
  9283. default: true
  9284. },
  9285. ]
  9286. ))
  9287. characterMakers.push(() => makeCharacter(
  9288. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9289. {
  9290. front: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(3, "kg"),
  9293. name: "Front",
  9294. image: {
  9295. source: "./media/characters/ine/front.svg",
  9296. extra: 678 / 539,
  9297. bottom: 0.023
  9298. }
  9299. },
  9300. },
  9301. [
  9302. {
  9303. name: "Normal",
  9304. height: math.unit(2.265, "feet"),
  9305. default: true
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(5, "feet"),
  9314. weight: math.unit(30, "kg"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/vial/front.svg",
  9318. extra: 1365 / 1277,
  9319. bottom: 0.04
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(5, "feet"),
  9327. default: true
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9333. {
  9334. side: {
  9335. height: math.unit(3.4, "meters"),
  9336. weight: math.unit(1000, "lb"),
  9337. name: "Side",
  9338. image: {
  9339. source: "./media/characters/rovoska/side.svg",
  9340. extra: 4403 / 1515
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(3.4, "meters"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(8, "feet"),
  9357. weight: math.unit(315, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/gunner-rotthbauer/front.svg"
  9361. }
  9362. },
  9363. back: {
  9364. height: math.unit(8, "feet"),
  9365. weight: math.unit(315, "lb"),
  9366. name: "Back",
  9367. image: {
  9368. source: "./media/characters/gunner-rotthbauer/back.svg"
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Micro",
  9375. height: math.unit(3.5, "inches")
  9376. },
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(8, "feet"),
  9380. default: true
  9381. },
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(250, "feet")
  9385. },
  9386. {
  9387. name: "Megamacro",
  9388. height: math.unit(1, "AU")
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9394. {
  9395. front: {
  9396. height: math.unit(5 + 5 / 12, "feet"),
  9397. weight: math.unit(140, "lb"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/allatia/front.svg",
  9401. extra: 1227 / 1180,
  9402. bottom: 0.027
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(5 + 5 / 12, "feet")
  9410. },
  9411. {
  9412. name: "Macro",
  9413. height: math.unit(250, "feet"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Megamacro",
  9418. height: math.unit(8, "miles")
  9419. }
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/tene/front.svg",
  9431. extra: 1728 / 1578,
  9432. bottom: 0.022
  9433. }
  9434. },
  9435. stomping: {
  9436. height: math.unit(2.025, "meters"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Stomping",
  9439. image: {
  9440. source: "./media/characters/tene/stomping.svg",
  9441. extra: 938 / 873,
  9442. bottom: 0.01
  9443. }
  9444. },
  9445. sitting: {
  9446. height: math.unit(1, "meter"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Sitting",
  9449. image: {
  9450. source: "./media/characters/tene/sitting.svg",
  9451. extra: 437 / 415,
  9452. bottom: 0.1
  9453. }
  9454. },
  9455. feral: {
  9456. height: math.unit(3.9, "feet"),
  9457. weight: math.unit(250, "lb"),
  9458. name: "Feral",
  9459. image: {
  9460. source: "./media/characters/tene/feral.svg",
  9461. extra: 717 / 458,
  9462. bottom: 0.179
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(6, "feet")
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(300, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Megamacro",
  9478. height: math.unit(5, "miles")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9484. {
  9485. side: {
  9486. height: math.unit(6, "feet"),
  9487. name: "Side",
  9488. image: {
  9489. source: "./media/characters/evander/side.svg",
  9490. extra: 877 / 477
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(0.83, "meters"),
  9498. default: true
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9504. {
  9505. front: {
  9506. height: math.unit(12, "feet"),
  9507. weight: math.unit(1000, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9511. extra: 1762 / 1611
  9512. }
  9513. },
  9514. back: {
  9515. height: math.unit(12, "feet"),
  9516. weight: math.unit(1000, "lb"),
  9517. name: "Back",
  9518. image: {
  9519. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9520. extra: 1762 / 1611
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Normal",
  9527. height: math.unit(12, "feet"),
  9528. default: true
  9529. },
  9530. {
  9531. name: "Kaiju",
  9532. height: math.unit(150, "feet")
  9533. },
  9534. ]
  9535. ))
  9536. characterMakers.push(() => makeCharacter(
  9537. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9538. {
  9539. front: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(150, "lb"),
  9542. name: "Front",
  9543. image: {
  9544. source: "./media/characters/zero-alurus/front.svg"
  9545. }
  9546. },
  9547. back: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(150, "lb"),
  9550. name: "Back",
  9551. image: {
  9552. source: "./media/characters/zero-alurus/back.svg"
  9553. }
  9554. },
  9555. },
  9556. [
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(5 + 10 / 12, "feet")
  9560. },
  9561. {
  9562. name: "Macro",
  9563. height: math.unit(60, "feet"),
  9564. default: true
  9565. },
  9566. {
  9567. name: "Macro+",
  9568. height: math.unit(450, "feet")
  9569. },
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9574. {
  9575. front: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(200, "lb"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/mega-shi/front.svg",
  9581. extra: 1279 / 1250,
  9582. bottom: 0.02
  9583. }
  9584. },
  9585. back: {
  9586. height: math.unit(6, "feet"),
  9587. weight: math.unit(200, "lb"),
  9588. name: "Back",
  9589. image: {
  9590. source: "./media/characters/mega-shi/back.svg",
  9591. extra: 1279 / 1250,
  9592. bottom: 0.02
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(16 + 6 / 12, "feet")
  9600. },
  9601. {
  9602. name: "Third Dimension",
  9603. height: math.unit(40, "meters")
  9604. },
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(660, "feet"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Megamacro",
  9612. height: math.unit(10, "miles")
  9613. },
  9614. {
  9615. name: "Planetary Launch",
  9616. height: math.unit(500, "miles")
  9617. },
  9618. {
  9619. name: "Interstellar",
  9620. height: math.unit(1e9, "miles")
  9621. },
  9622. {
  9623. name: "Leaving the Universe",
  9624. height: math.unit(1, "gigaparsec")
  9625. },
  9626. {
  9627. name: "Travelling Universes",
  9628. height: math.unit(30e15, "parsecs")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(150, "lb"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/odyssey/front.svg",
  9641. extra: 1782 / 1582,
  9642. bottom: 0.01
  9643. }
  9644. },
  9645. side: {
  9646. height: math.unit(5.7, "feet"),
  9647. weight: math.unit(140, "lb"),
  9648. name: "Side",
  9649. image: {
  9650. source: "./media/characters/odyssey/side.svg",
  9651. extra: 6462 / 5700
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Normal",
  9658. height: math.unit(5 + 4 / 12, "feet")
  9659. },
  9660. {
  9661. name: "Macro",
  9662. height: math.unit(1, "km")
  9663. },
  9664. {
  9665. name: "Megamacro",
  9666. height: math.unit(3000, "km")
  9667. },
  9668. {
  9669. name: "Gigamacro",
  9670. height: math.unit(1, "AU"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Omniversal",
  9675. height: math.unit(100e14, "lightyears")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(300, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/mekuto/front.svg",
  9688. extra: 921 / 832,
  9689. bottom: 0.03
  9690. }
  9691. },
  9692. hand: {
  9693. height: math.unit(6 / 10.24, "feet"),
  9694. name: "Hand",
  9695. image: {
  9696. source: "./media/characters/mekuto/hand.svg"
  9697. }
  9698. },
  9699. foot: {
  9700. height: math.unit(6 / 5.05, "feet"),
  9701. name: "Foot",
  9702. image: {
  9703. source: "./media/characters/mekuto/foot.svg"
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Minimicro",
  9710. height: math.unit(0.2, "inches")
  9711. },
  9712. {
  9713. name: "Micro",
  9714. height: math.unit(1.5, "inches")
  9715. },
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(5 + 11 / 12, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Minimacro",
  9723. height: math.unit(17 + 9 / 12, "feet")
  9724. },
  9725. {
  9726. name: "Macro",
  9727. height: math.unit(177.5, "feet")
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(152, "miles")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(6.5, "inches"),
  9740. weight: math.unit(13, "oz"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/dafydd-tomos/front.svg",
  9744. extra: 2990 / 2603,
  9745. bottom: 0.03
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(6.5, "inches"),
  9753. default: true
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(6, "feet"),
  9762. weight: math.unit(150, "lb"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/splinter/front.svg",
  9766. extra: 2990 / 2882,
  9767. bottom: 0.04
  9768. }
  9769. },
  9770. back: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(150, "lb"),
  9773. name: "Back",
  9774. image: {
  9775. source: "./media/characters/splinter/back.svg",
  9776. extra: 2990 / 2882,
  9777. bottom: 0.04
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(6, "feet")
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(230, "meters"),
  9789. default: true
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(4 + 10 / 12, "feet"),
  9798. weight: math.unit(480, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/snow-gabumon/front.svg",
  9802. extra: 1140 / 963,
  9803. bottom: 0.058
  9804. }
  9805. },
  9806. back: {
  9807. height: math.unit(4 + 10 / 12, "feet"),
  9808. weight: math.unit(480, "lb"),
  9809. name: "Back",
  9810. image: {
  9811. source: "./media/characters/snow-gabumon/back.svg",
  9812. extra: 1115 / 962,
  9813. bottom: 0.041
  9814. }
  9815. },
  9816. frontUndresed: {
  9817. height: math.unit(4 + 10 / 12, "feet"),
  9818. weight: math.unit(480, "lb"),
  9819. name: "Front (Undressed)",
  9820. image: {
  9821. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9822. extra: 1061 / 960,
  9823. bottom: 0.045
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Micro",
  9830. height: math.unit(1, "inch")
  9831. },
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(4 + 10 / 12, "feet"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(200, "feet")
  9840. },
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(120, "miles")
  9844. },
  9845. {
  9846. name: "Gigamacro",
  9847. height: math.unit(9800, "miles")
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(1.7, "meters"),
  9856. weight: math.unit(140, "lb"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/moody/front.svg",
  9860. extra: 3226 / 3007,
  9861. bottom: 0.087
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Micro",
  9868. height: math.unit(1, "mm")
  9869. },
  9870. {
  9871. name: "Normal",
  9872. height: math.unit(1.7, "meters"),
  9873. default: true
  9874. },
  9875. {
  9876. name: "Macro",
  9877. height: math.unit(80, "meters")
  9878. },
  9879. {
  9880. name: "Macro+",
  9881. height: math.unit(500, "meters")
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9887. {
  9888. front: {
  9889. height: math.unit(6, "feet"),
  9890. weight: math.unit(150, "lb"),
  9891. name: "Front",
  9892. image: {
  9893. source: "./media/characters/zyas/front.svg",
  9894. extra: 1180 / 1120,
  9895. bottom: 0.045
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(10, "feet"),
  9903. default: true
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(500, "feet")
  9908. },
  9909. {
  9910. name: "Megamacro",
  9911. height: math.unit(5, "miles")
  9912. },
  9913. {
  9914. name: "Teramacro",
  9915. height: math.unit(150000, "miles")
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(6, "feet"),
  9924. weight: math.unit(150, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/cuon/front.svg",
  9928. extra: 1390 / 1320,
  9929. bottom: 0.008
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(3, "inches")
  9937. },
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(18 + 9 / 12, "feet"),
  9941. default: true
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(360, "feet")
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(360, "miles")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(2.4, "meters"),
  9958. weight: math.unit(70, "kg"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/nyanuxk/front.svg",
  9962. extra: 1172 / 1084,
  9963. bottom: 0.065
  9964. }
  9965. },
  9966. side: {
  9967. height: math.unit(2.4, "meters"),
  9968. weight: math.unit(70, "kg"),
  9969. name: "Side",
  9970. image: {
  9971. source: "./media/characters/nyanuxk/side.svg",
  9972. extra: 1190 / 1132,
  9973. bottom: 0.007
  9974. }
  9975. },
  9976. back: {
  9977. height: math.unit(2.4, "meters"),
  9978. weight: math.unit(70, "kg"),
  9979. name: "Back",
  9980. image: {
  9981. source: "./media/characters/nyanuxk/back.svg",
  9982. extra: 1200 / 1141,
  9983. bottom: 0.015
  9984. }
  9985. },
  9986. foot: {
  9987. height: math.unit(0.52, "meters"),
  9988. name: "Foot",
  9989. image: {
  9990. source: "./media/characters/nyanuxk/foot.svg"
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Micro",
  9997. height: math.unit(2, "cm")
  9998. },
  9999. {
  10000. name: "Normal",
  10001. height: math.unit(2.4, "meters"),
  10002. default: true
  10003. },
  10004. {
  10005. name: "Smaller Macro",
  10006. height: math.unit(120, "meters")
  10007. },
  10008. {
  10009. name: "Bigger Macro",
  10010. height: math.unit(1.2, "km")
  10011. },
  10012. {
  10013. name: "Megamacro",
  10014. height: math.unit(15, "kilometers")
  10015. },
  10016. {
  10017. name: "Gigamacro",
  10018. height: math.unit(2000, "km")
  10019. },
  10020. {
  10021. name: "Teramacro",
  10022. height: math.unit(500000, "km")
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10028. {
  10029. side: {
  10030. height: math.unit(6, "feet"),
  10031. name: "Side",
  10032. image: {
  10033. source: "./media/characters/ailbhe/side.svg",
  10034. extra: 757 / 464,
  10035. bottom: 0.041
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Normal",
  10042. height: math.unit(1.07, "meters"),
  10043. default: true
  10044. },
  10045. ]
  10046. ))
  10047. characterMakers.push(() => makeCharacter(
  10048. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10049. {
  10050. front: {
  10051. height: math.unit(6, "feet"),
  10052. weight: math.unit(120, "kg"),
  10053. name: "Front",
  10054. image: {
  10055. source: "./media/characters/zevulfius/front.svg",
  10056. extra: 965 / 903
  10057. }
  10058. },
  10059. side: {
  10060. height: math.unit(6, "feet"),
  10061. weight: math.unit(120, "kg"),
  10062. name: "Side",
  10063. image: {
  10064. source: "./media/characters/zevulfius/side.svg",
  10065. extra: 939 / 900
  10066. }
  10067. },
  10068. back: {
  10069. height: math.unit(6, "feet"),
  10070. weight: math.unit(120, "kg"),
  10071. name: "Back",
  10072. image: {
  10073. source: "./media/characters/zevulfius/back.svg",
  10074. extra: 918 / 854,
  10075. bottom: 0.005
  10076. }
  10077. },
  10078. foot: {
  10079. height: math.unit(6 / 3.72, "feet"),
  10080. name: "Foot",
  10081. image: {
  10082. source: "./media/characters/zevulfius/foot.svg"
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Macro",
  10089. height: math.unit(750, "meters")
  10090. },
  10091. {
  10092. name: "Megamacro",
  10093. height: math.unit(20, "km"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Gigamacro",
  10098. height: math.unit(2000, "km")
  10099. },
  10100. {
  10101. name: "Teramacro",
  10102. height: math.unit(250000, "km")
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10108. {
  10109. front: {
  10110. height: math.unit(100, "feet"),
  10111. weight: math.unit(350, "kg"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/rikes/front.svg",
  10115. extra: 1565 / 1483,
  10116. bottom: 0.017
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Macro",
  10123. height: math.unit(100, "feet"),
  10124. default: true
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10130. {
  10131. anthro: {
  10132. height: math.unit(8, "feet"),
  10133. weight: math.unit(120, "kg"),
  10134. name: "Anthro",
  10135. image: {
  10136. source: "./media/characters/adam-silver-mane/anthro.svg",
  10137. extra: 5743 / 5339,
  10138. bottom: 0.07
  10139. }
  10140. },
  10141. taur: {
  10142. height: math.unit(16, "feet"),
  10143. weight: math.unit(1500, "kg"),
  10144. name: "Taur",
  10145. image: {
  10146. source: "./media/characters/adam-silver-mane/taur.svg",
  10147. extra: 1713 / 1571,
  10148. bottom: 0.01
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(8, "feet")
  10156. },
  10157. {
  10158. name: "Minimacro",
  10159. height: math.unit(80, "feet")
  10160. },
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(800, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(8000, "feet")
  10169. },
  10170. {
  10171. name: "Gigamacro",
  10172. height: math.unit(800, "miles")
  10173. },
  10174. {
  10175. name: "Teramacro",
  10176. height: math.unit(80000, "miles")
  10177. },
  10178. {
  10179. name: "Celestial",
  10180. height: math.unit(8e6, "miles")
  10181. },
  10182. {
  10183. name: "Star Dragon",
  10184. height: math.unit(800000, "parsecs")
  10185. },
  10186. {
  10187. name: "Godly",
  10188. height: math.unit(800, "teraparsecs")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(150, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/ky'owin/front.svg",
  10201. extra: 3888 / 3068,
  10202. bottom: 0.015
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(6 + 8 / 12, "feet")
  10210. },
  10211. {
  10212. name: "Large",
  10213. height: math.unit(68, "feet")
  10214. },
  10215. {
  10216. name: "Macro",
  10217. height: math.unit(132, "feet")
  10218. },
  10219. {
  10220. name: "Macro+",
  10221. height: math.unit(340, "feet")
  10222. },
  10223. {
  10224. name: "Macro++",
  10225. height: math.unit(680, "feet"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Megamacro",
  10230. height: math.unit(1, "mile")
  10231. },
  10232. {
  10233. name: "Megamacro+",
  10234. height: math.unit(10, "miles")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(4, "feet"),
  10243. weight: math.unit(50, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/mal/front.svg",
  10247. extra: 785 / 724,
  10248. bottom: 0.07
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Micro",
  10255. height: math.unit(4, "inches")
  10256. },
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(4, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(200, "feet")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(150, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/jordan-deware/front.svg",
  10277. extra: 1191 / 1012
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Nano",
  10284. height: math.unit(0.01, "mm")
  10285. },
  10286. {
  10287. name: "Minimicro",
  10288. height: math.unit(1, "mm")
  10289. },
  10290. {
  10291. name: "Micro",
  10292. height: math.unit(0.5, "inches")
  10293. },
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(4, "feet"),
  10297. default: true
  10298. },
  10299. {
  10300. name: "Minimacro",
  10301. height: math.unit(40, "meters")
  10302. },
  10303. {
  10304. name: "Small Macro",
  10305. height: math.unit(400, "meters")
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(4, "miles")
  10310. },
  10311. {
  10312. name: "Megamacro",
  10313. height: math.unit(40, "miles")
  10314. },
  10315. {
  10316. name: "Megamacro+",
  10317. height: math.unit(400, "miles")
  10318. },
  10319. {
  10320. name: "Gigamacro",
  10321. height: math.unit(400000, "miles")
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10327. {
  10328. side: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(150, "lb"),
  10331. name: "Side",
  10332. image: {
  10333. source: "./media/characters/kimiko/side.svg",
  10334. extra: 600 / 358
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(15, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(220, "feet")
  10347. },
  10348. {
  10349. name: "Macro+",
  10350. height: math.unit(1450, "feet")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(11500, "feet")
  10355. },
  10356. {
  10357. name: "Gigamacro",
  10358. height: math.unit(9500, "miles")
  10359. },
  10360. {
  10361. name: "Teramacro",
  10362. height: math.unit(2208005005, "miles")
  10363. },
  10364. {
  10365. name: "Examacro",
  10366. height: math.unit(2750, "parsecs")
  10367. },
  10368. {
  10369. name: "Zettamacro",
  10370. height: math.unit(101500, "parsecs")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(70, "kg"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/andrew-sleepy/front.svg"
  10383. }
  10384. },
  10385. side: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(70, "kg"),
  10388. name: "Side",
  10389. image: {
  10390. source: "./media/characters/andrew-sleepy/side.svg"
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Micro",
  10397. height: math.unit(1, "mm"),
  10398. default: true
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(150, "lb"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/judio/front.svg",
  10411. extra: 1258 / 1110
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(5 + 6 / 12, "feet")
  10419. },
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(1000, "feet"),
  10423. default: true
  10424. },
  10425. {
  10426. name: "Megamacro",
  10427. height: math.unit(10, "miles")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10433. {
  10434. front: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(68, "kg"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/nomaxice/front.svg",
  10440. extra: 1498 / 1073,
  10441. bottom: 0.075
  10442. }
  10443. },
  10444. foot: {
  10445. height: math.unit(1.1, "feet"),
  10446. name: "Foot",
  10447. image: {
  10448. source: "./media/characters/nomaxice/foot.svg"
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Micro",
  10455. height: math.unit(8, "cm")
  10456. },
  10457. {
  10458. name: "Norm",
  10459. height: math.unit(1.82, "m")
  10460. },
  10461. {
  10462. name: "Norm+",
  10463. height: math.unit(8.8, "feet")
  10464. },
  10465. {
  10466. name: "Big",
  10467. height: math.unit(8, "meters"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Macro",
  10472. height: math.unit(18, "meters")
  10473. },
  10474. {
  10475. name: "Macro+",
  10476. height: math.unit(88, "meters")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(12, "feet"),
  10485. weight: math.unit(1.5, "tons"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/dydros/front.svg",
  10489. extra: 863 / 800,
  10490. bottom: 0.015
  10491. }
  10492. },
  10493. back: {
  10494. height: math.unit(12, "feet"),
  10495. weight: math.unit(1.5, "tons"),
  10496. name: "Back",
  10497. image: {
  10498. source: "./media/characters/dydros/back.svg",
  10499. extra: 900 / 843,
  10500. bottom: 0.005
  10501. }
  10502. },
  10503. },
  10504. [
  10505. {
  10506. name: "Normal",
  10507. height: math.unit(12, "feet"),
  10508. default: true
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(100, "kg"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/riggi/front.svg",
  10521. extra: 5787 / 5303
  10522. }
  10523. },
  10524. hyper: {
  10525. height: math.unit(6 * 5 / 3, "feet"),
  10526. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10527. name: "Hyper",
  10528. image: {
  10529. source: "./media/characters/riggi/hyper.svg",
  10530. extra: 3595 / 3485
  10531. }
  10532. },
  10533. },
  10534. [
  10535. {
  10536. name: "Small Macro",
  10537. height: math.unit(50, "feet")
  10538. },
  10539. {
  10540. name: "Default",
  10541. height: math.unit(200, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Loom",
  10546. height: math.unit(10000, "feet")
  10547. },
  10548. {
  10549. name: "Cruising Altitude",
  10550. height: math.unit(30000, "feet")
  10551. },
  10552. {
  10553. name: "Megamacro",
  10554. height: math.unit(100, "miles")
  10555. },
  10556. {
  10557. name: "Continent Sized",
  10558. height: math.unit(2800, "miles")
  10559. },
  10560. {
  10561. name: "Earth Sized",
  10562. height: math.unit(8000, "miles")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(250, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/alexi/front.svg",
  10575. extra: 3483 / 3291,
  10576. bottom: 0.04
  10577. }
  10578. },
  10579. back: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(250, "lb"),
  10582. name: "Back",
  10583. image: {
  10584. source: "./media/characters/alexi/back.svg",
  10585. extra: 3533 / 3356,
  10586. bottom: 0.021
  10587. }
  10588. },
  10589. frontTransforming: {
  10590. height: math.unit(8.58, "feet"),
  10591. weight: math.unit(1300, "lb"),
  10592. name: "Transforming",
  10593. image: {
  10594. source: "./media/characters/alexi/front-transforming.svg",
  10595. extra: 437 / 409,
  10596. bottom: 19 / 458.66
  10597. }
  10598. },
  10599. frontTransformed: {
  10600. height: math.unit(12.5, "feet"),
  10601. weight: math.unit(4000, "lb"),
  10602. name: "Transformed",
  10603. image: {
  10604. source: "./media/characters/alexi/front-transformed.svg",
  10605. extra: 639 / 614,
  10606. bottom: 30.55 / 671
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(14, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Minimacro",
  10618. height: math.unit(30, "meters")
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(500, "meters")
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(9000, "km")
  10627. },
  10628. {
  10629. name: "Teramacro",
  10630. height: math.unit(384000, "km")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(150, "lb"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/kayroo/front.svg",
  10643. extra: 1153 / 1038,
  10644. bottom: 0.06
  10645. }
  10646. },
  10647. foot: {
  10648. height: math.unit(6, "feet"),
  10649. weight: math.unit(150, "lb"),
  10650. name: "Foot",
  10651. image: {
  10652. source: "./media/characters/kayroo/foot.svg"
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(8, "feet"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Minimacro",
  10664. height: math.unit(250, "feet")
  10665. },
  10666. {
  10667. name: "Macro",
  10668. height: math.unit(2800, "feet")
  10669. },
  10670. {
  10671. name: "Megamacro",
  10672. height: math.unit(5200, "feet")
  10673. },
  10674. {
  10675. name: "Gigamacro",
  10676. height: math.unit(27000, "feet")
  10677. },
  10678. {
  10679. name: "Omega",
  10680. height: math.unit(45000, "feet")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(18, "feet"),
  10689. weight: math.unit(5800, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/rhys/front.svg",
  10693. extra: 3386 / 3090,
  10694. bottom: 0.07
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(18, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Working Size",
  10706. height: math.unit(200, "feet")
  10707. },
  10708. {
  10709. name: "Demolition Size",
  10710. height: math.unit(2000, "feet")
  10711. },
  10712. {
  10713. name: "Maximum Licensed Size",
  10714. height: math.unit(5, "miles")
  10715. },
  10716. {
  10717. name: "Maximum Observed Size",
  10718. height: math.unit(10, "yottameters")
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10724. {
  10725. front: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(250, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/toto/front.svg",
  10731. extra: 527 / 479,
  10732. bottom: 0.05
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Micro",
  10739. height: math.unit(3, "feet")
  10740. },
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(10, "feet")
  10744. },
  10745. {
  10746. name: "Macro",
  10747. height: math.unit(150, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Megamacro",
  10752. height: math.unit(1200, "feet")
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "King", species: ["lion"], tags: ["anthro"] },
  10758. {
  10759. back: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(150, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/king/back.svg"
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Micro",
  10771. height: math.unit(2, "inches")
  10772. },
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(8, "feet")
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(200, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(50, "miles")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10790. {
  10791. anthro: {
  10792. height: math.unit(6 + 5 / 12, "feet"),
  10793. weight: math.unit(280, "lb"),
  10794. name: "Anthro",
  10795. image: {
  10796. source: "./media/characters/cordite/anthro.svg",
  10797. extra: 1986 / 1905,
  10798. bottom: 0.025
  10799. }
  10800. },
  10801. feral: {
  10802. height: math.unit(2, "feet"),
  10803. weight: math.unit(90, "lb"),
  10804. name: "Feral",
  10805. image: {
  10806. source: "./media/characters/cordite/feral.svg",
  10807. extra: 1260 / 755,
  10808. bottom: 0.05
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(6 + 5 / 12, "feet"),
  10816. default: true
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(150, "lb"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/pianostrong/front.svg",
  10829. extra: 6577 / 6254,
  10830. bottom: 0.02
  10831. }
  10832. },
  10833. side: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(150, "lb"),
  10836. name: "Side",
  10837. image: {
  10838. source: "./media/characters/pianostrong/side.svg",
  10839. extra: 6106 / 5730
  10840. }
  10841. },
  10842. back: {
  10843. height: math.unit(6, "feet"),
  10844. weight: math.unit(150, "lb"),
  10845. name: "Back",
  10846. image: {
  10847. source: "./media/characters/pianostrong/back.svg",
  10848. extra: 6085 / 5733,
  10849. bottom: 0.01
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Macro",
  10856. height: math.unit(100, "feet")
  10857. },
  10858. {
  10859. name: "Macro+",
  10860. height: math.unit(300, "feet"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Macro++",
  10865. height: math.unit(1000, "feet")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(150, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/kona/front.svg",
  10878. extra: 2960 / 2629,
  10879. bottom: 0.005
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(11 + 8 / 12, "feet")
  10887. },
  10888. {
  10889. name: "Macro",
  10890. height: math.unit(850, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro+",
  10895. height: math.unit(1.5, "km"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Megamacro",
  10900. height: math.unit(80, "miles")
  10901. },
  10902. {
  10903. name: "Gigamacro",
  10904. height: math.unit(3500, "miles")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10910. {
  10911. side: {
  10912. height: math.unit(1.9, "meters"),
  10913. weight: math.unit(326, "kg"),
  10914. name: "Side",
  10915. image: {
  10916. source: "./media/characters/levi/side.svg",
  10917. extra: 1704 / 1334,
  10918. bottom: 0.02
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Normal",
  10925. height: math.unit(1.9, "meters"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(20, "meters")
  10931. },
  10932. {
  10933. name: "Macro+",
  10934. height: math.unit(200, "meters")
  10935. },
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(2, "km")
  10939. },
  10940. {
  10941. name: "Megamacro+",
  10942. height: math.unit(20, "km")
  10943. },
  10944. {
  10945. name: "Gigamacro",
  10946. height: math.unit(2500, "km")
  10947. },
  10948. {
  10949. name: "Gigamacro+",
  10950. height: math.unit(120000, "km")
  10951. },
  10952. {
  10953. name: "Teramacro",
  10954. height: math.unit(7.77e6, "km")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6 + 4 / 12, "feet"),
  10963. weight: math.unit(188, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/bmc/front.svg",
  10967. extra: 1067 / 1022,
  10968. bottom: 0.047
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Human-sized",
  10975. height: math.unit(6 + 4 / 12, "feet")
  10976. },
  10977. {
  10978. name: "Small",
  10979. height: math.unit(250, "feet")
  10980. },
  10981. {
  10982. name: "Normal",
  10983. height: math.unit(1250, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Good Day",
  10988. height: math.unit(88, "miles")
  10989. },
  10990. {
  10991. name: "Largest Measured Size",
  10992. height: math.unit(11.2e6, "lightyears")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(20, "feet"),
  11001. weight: math.unit(2016, "kg"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/sven-the-kaiju/front.svg",
  11005. extra: 1479 / 1449,
  11006. bottom: 0.05
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Fairy",
  11013. height: math.unit(6, "inches")
  11014. },
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(20, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Rampage",
  11022. height: math.unit(200, "feet")
  11023. },
  11024. {
  11025. name: "Archfey Forest Guardian",
  11026. height: math.unit(1, "mile")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(4, "meters"),
  11035. weight: math.unit(2, "tons"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/marik/front.svg",
  11039. extra: 1057 / 1003,
  11040. bottom: 0.08
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(4, "meters"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Macro",
  11052. height: math.unit(20, "meters")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(50, "km")
  11057. },
  11058. {
  11059. name: "Gigamacro",
  11060. height: math.unit(100, "km")
  11061. },
  11062. {
  11063. name: "Alpha Macro",
  11064. height: math.unit(7.88e7, "yottameters")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(110, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/mel/front.svg",
  11077. extra: 736 / 617,
  11078. bottom: 0.017
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Pico",
  11085. height: math.unit(3, "pm")
  11086. },
  11087. {
  11088. name: "Nano",
  11089. height: math.unit(3, "nm")
  11090. },
  11091. {
  11092. name: "Micro",
  11093. height: math.unit(0.3, "mm"),
  11094. default: true
  11095. },
  11096. {
  11097. name: "Micro+",
  11098. height: math.unit(3, "mm")
  11099. },
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(5 + 10.5 / 12, "feet")
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11108. {
  11109. kaiju: {
  11110. height: math.unit(1.75, "meters"),
  11111. weight: math.unit(55, "kg"),
  11112. name: "Kaiju",
  11113. image: {
  11114. source: "./media/characters/lykonous/kaiju.svg",
  11115. extra: 1055 / 946,
  11116. bottom: 0.135
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(2.5, "meters"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Kaiju Dragon",
  11128. height: math.unit(60, "meters")
  11129. },
  11130. {
  11131. name: "Mega Kaiju",
  11132. height: math.unit(120, "km")
  11133. },
  11134. {
  11135. name: "Giga Kaiju",
  11136. height: math.unit(200, "megameters")
  11137. },
  11138. {
  11139. name: "Terra Kaiju",
  11140. height: math.unit(400, "gigameters")
  11141. },
  11142. {
  11143. name: "Kaiju Dragon God",
  11144. height: math.unit(13000, "exaparsecs")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/blü/front.svg",
  11157. extra: 1883 / 1564,
  11158. bottom: 0.031
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(13, "feet"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Big Boi",
  11170. height: math.unit(150, "meters")
  11171. },
  11172. {
  11173. name: "Mini Stomper",
  11174. height: math.unit(300, "meters")
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(1000, "meters")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(11000, "meters")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(11000, "km")
  11187. },
  11188. {
  11189. name: "Teramacro",
  11190. height: math.unit(420000, "km")
  11191. },
  11192. {
  11193. name: "Examacro",
  11194. height: math.unit(120, "parsecs")
  11195. },
  11196. {
  11197. name: "God Tho",
  11198. height: math.unit(98000000000, "parsecs")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11204. {
  11205. taurFront: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(200, "lb"),
  11208. name: "Taur (Front)",
  11209. image: {
  11210. source: "./media/characters/scales/taur-front.svg",
  11211. extra: 1,
  11212. bottom: 0.05
  11213. }
  11214. },
  11215. taurBack: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(200, "lb"),
  11218. name: "Taur (Back)",
  11219. image: {
  11220. source: "./media/characters/scales/taur-back.svg",
  11221. extra: 1,
  11222. bottom: 0.08
  11223. }
  11224. },
  11225. anthro: {
  11226. height: math.unit(6 * 7 / 12, "feet"),
  11227. weight: math.unit(100, "lb"),
  11228. name: "Anthro",
  11229. image: {
  11230. source: "./media/characters/scales/anthro.svg",
  11231. extra: 1,
  11232. bottom: 0.06
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(12, "feet"),
  11240. default: true
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(6, "feet"),
  11249. weight: math.unit(150, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/koragos/front.svg",
  11253. extra: 841 / 794,
  11254. bottom: 0.035
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(6, "feet"),
  11259. weight: math.unit(150, "lb"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/koragos/back.svg",
  11263. extra: 841 / 810,
  11264. bottom: 0.022
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(6 + 11 / 12, "feet"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(490, "feet")
  11277. },
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(10, "miles")
  11281. },
  11282. {
  11283. name: "Gigamacro",
  11284. height: math.unit(50, "miles")
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(6, "feet"),
  11293. weight: math.unit(250, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/xylrem/front.svg",
  11297. extra: 3323 / 3050,
  11298. bottom: 0.065
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Micro",
  11305. height: math.unit(4, "feet")
  11306. },
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(16, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(2720, "feet")
  11315. },
  11316. {
  11317. name: "Megamacro",
  11318. height: math.unit(25000, "miles")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(8, "feet"),
  11327. weight: math.unit(250, "kg"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/ikideru/front.svg",
  11331. extra: 930 / 870,
  11332. bottom: 0.087
  11333. }
  11334. },
  11335. back: {
  11336. height: math.unit(8, "feet"),
  11337. weight: math.unit(250, "kg"),
  11338. name: "Back",
  11339. image: {
  11340. source: "./media/characters/ikideru/back.svg",
  11341. extra: 919 / 852,
  11342. bottom: 0.055
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Rare",
  11349. height: math.unit(8, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Playful Loom",
  11354. height: math.unit(80, "feet")
  11355. },
  11356. {
  11357. name: "City Leaner",
  11358. height: math.unit(230, "feet")
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(2500, "feet")
  11363. },
  11364. {
  11365. name: "Gigamacro",
  11366. height: math.unit(26400, "feet")
  11367. },
  11368. {
  11369. name: "Tectonic Shifter",
  11370. height: math.unit(1.7, "megameters")
  11371. },
  11372. {
  11373. name: "Planet Carer",
  11374. height: math.unit(21, "megameters")
  11375. },
  11376. {
  11377. name: "God",
  11378. height: math.unit(11157.22, "parsecs")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(6, "feet"),
  11387. weight: math.unit(120, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/neo/front.svg"
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Micro",
  11397. height: math.unit(2, "inches"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Human Size",
  11402. height: math.unit(5 + 8 / 12, "feet")
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11408. {
  11409. front: {
  11410. height: math.unit(13 + 10 / 12, "feet"),
  11411. weight: math.unit(5320, "lb"),
  11412. name: "Front",
  11413. image: {
  11414. source: "./media/characters/chauncey-chantz/front.svg",
  11415. extra: 1587 / 1435,
  11416. bottom: 0.02
  11417. }
  11418. },
  11419. },
  11420. [
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(13 + 10 / 12, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(45, "feet")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(250, "miles")
  11433. },
  11434. {
  11435. name: "Planetary",
  11436. height: math.unit(10000, "miles")
  11437. },
  11438. {
  11439. name: "Galactic",
  11440. height: math.unit(40000, "parsecs")
  11441. },
  11442. {
  11443. name: "Universal",
  11444. height: math.unit(1, "yottameter")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11450. {
  11451. front: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/epifox/front.svg",
  11457. extra: 1,
  11458. bottom: 0.075
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Micro",
  11465. height: math.unit(6, "inches")
  11466. },
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(12, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(3810, "feet")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(500, "miles")
  11479. },
  11480. ]
  11481. ))
  11482. characterMakers.push(() => makeCharacter(
  11483. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11484. {
  11485. front: {
  11486. height: math.unit(1.8796, "m"),
  11487. weight: math.unit(230, "lb"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/colin-t/front.svg",
  11491. extra: 1272 / 1193,
  11492. bottom: 0.07
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Micro",
  11499. height: math.unit(0.571, "meters")
  11500. },
  11501. {
  11502. name: "Normal",
  11503. height: math.unit(1.8796, "meters"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Tall",
  11508. height: math.unit(4, "meters")
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(67.241, "meters")
  11513. },
  11514. {
  11515. name: "Megamacro",
  11516. height: math.unit(371.856, "meters")
  11517. },
  11518. {
  11519. name: "Planetary",
  11520. height: math.unit(12631.5689, "km")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(1.85, "meters"),
  11529. weight: math.unit(80, "kg"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/matvei/front.svg",
  11533. extra: 614 / 594,
  11534. bottom: 0.01
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(1.85, "meters"),
  11542. default: true
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(5 + 9 / 12, "feet"),
  11551. weight: math.unit(70, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/quincy/front.svg",
  11555. extra: 3041 / 2751
  11556. }
  11557. },
  11558. back: {
  11559. height: math.unit(5 + 9 / 12, "feet"),
  11560. weight: math.unit(70, "lb"),
  11561. name: "Back",
  11562. image: {
  11563. source: "./media/characters/quincy/back.svg",
  11564. extra: 3041 / 2751
  11565. }
  11566. },
  11567. flying: {
  11568. height: math.unit(5 + 4 / 12, "feet"),
  11569. weight: math.unit(70, "lb"),
  11570. name: "Flying",
  11571. image: {
  11572. source: "./media/characters/quincy/flying.svg",
  11573. extra: 1044 / 930
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Micro",
  11580. height: math.unit(3, "cm")
  11581. },
  11582. {
  11583. name: "Normal",
  11584. height: math.unit(5 + 9 / 12, "feet")
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(200, "meters"),
  11589. default: true
  11590. },
  11591. {
  11592. name: "Megamacro",
  11593. height: math.unit(1000, "meters")
  11594. },
  11595. ]
  11596. ))
  11597. characterMakers.push(() => makeCharacter(
  11598. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11599. {
  11600. front: {
  11601. height: math.unit(4 + 7 / 12, "feet"),
  11602. weight: math.unit(50, "lb"),
  11603. name: "Front",
  11604. image: {
  11605. source: "./media/characters/vanrel/front.svg",
  11606. extra: 1,
  11607. bottom: 0.02
  11608. }
  11609. },
  11610. frontAlt: {
  11611. height: math.unit(4 + 7 / 12, "feet"),
  11612. weight: math.unit(50, "lb"),
  11613. name: "Front-alt",
  11614. image: {
  11615. source: "./media/characters/vanrel/front-alt.svg",
  11616. extra: 1,
  11617. bottom: 15 / 1511
  11618. }
  11619. },
  11620. elemental: {
  11621. height: math.unit(3, "feet"),
  11622. weight: math.unit(50, "lb"),
  11623. name: "Elemental",
  11624. image: {
  11625. source: "./media/characters/vanrel/elemental.svg",
  11626. extra: 192.3 / 162.8,
  11627. bottom: 1.79 / 194.17
  11628. }
  11629. },
  11630. side: {
  11631. height: math.unit(4 + 7 / 12, "feet"),
  11632. weight: math.unit(50, "lb"),
  11633. name: "Side",
  11634. image: {
  11635. source: "./media/characters/vanrel/side.svg",
  11636. extra: 1,
  11637. bottom: 0.025
  11638. }
  11639. },
  11640. tome: {
  11641. height: math.unit(1.35, "feet"),
  11642. weight: math.unit(10, "lb"),
  11643. name: "Vanrel's Tome",
  11644. rename: true,
  11645. image: {
  11646. source: "./media/characters/vanrel/tome.svg"
  11647. }
  11648. },
  11649. beans: {
  11650. height: math.unit(0.89, "feet"),
  11651. name: "Beans",
  11652. image: {
  11653. source: "./media/characters/vanrel/beans.svg"
  11654. }
  11655. },
  11656. },
  11657. [
  11658. {
  11659. name: "Normal",
  11660. height: math.unit(4 + 7 / 12, "feet"),
  11661. default: true
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11667. {
  11668. front: {
  11669. height: math.unit(7 + 5 / 12, "feet"),
  11670. weight: math.unit(150, "lb"),
  11671. name: "Front",
  11672. image: {
  11673. source: "./media/characters/kuiper-vanrel/front.svg",
  11674. extra: 1118 / 1068,
  11675. bottom: 0.09
  11676. }
  11677. },
  11678. foot: {
  11679. height: math.unit(0.55, "meters"),
  11680. name: "Foot",
  11681. image: {
  11682. source: "./media/characters/kuiper-vanrel/foot.svg",
  11683. }
  11684. },
  11685. battle: {
  11686. height: math.unit(6.824, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Battle",
  11689. image: {
  11690. source: "./media/characters/kuiper-vanrel/battle.svg",
  11691. extra: 1466 / 1327,
  11692. bottom: 29 / 1492.5
  11693. }
  11694. },
  11695. battleAlt: {
  11696. height: math.unit(6.824, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Battle (Alt)",
  11699. image: {
  11700. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11701. extra: 2081 / 1965,
  11702. bottom: 40 / 2121
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(7 + 5 / 12, "feet"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(8 + 5 / 12, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/keset-vanrel/front.svg",
  11723. extra: 1150 / 1084,
  11724. bottom: 0.05
  11725. }
  11726. },
  11727. hand: {
  11728. height: math.unit(0.6, "meters"),
  11729. name: "Hand",
  11730. image: {
  11731. source: "./media/characters/keset-vanrel/hand.svg"
  11732. }
  11733. },
  11734. foot: {
  11735. height: math.unit(0.94978, "meters"),
  11736. name: "Foot",
  11737. image: {
  11738. source: "./media/characters/keset-vanrel/foot.svg"
  11739. }
  11740. },
  11741. battle: {
  11742. height: math.unit(7.408, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Battle",
  11745. image: {
  11746. source: "./media/characters/keset-vanrel/battle.svg",
  11747. extra: 1890 / 1386,
  11748. bottom: 73.28 / 1970
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(8 + 5 / 12, "feet"),
  11756. default: true
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/neos/front.svg",
  11769. extra: 1696 / 992,
  11770. bottom: 0.14
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Normal",
  11777. height: math.unit(54, "cm"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Macro",
  11782. height: math.unit(100, "m")
  11783. },
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(10, "km")
  11787. },
  11788. {
  11789. name: "Megamacro+",
  11790. height: math.unit(100, "km")
  11791. },
  11792. {
  11793. name: "Gigamacro",
  11794. height: math.unit(100, "Mm")
  11795. },
  11796. {
  11797. name: "Teramacro",
  11798. height: math.unit(100, "Gm")
  11799. },
  11800. {
  11801. name: "Examacro",
  11802. height: math.unit(100, "Em")
  11803. },
  11804. {
  11805. name: "Godly",
  11806. height: math.unit(10000, "Ym")
  11807. },
  11808. {
  11809. name: "Beyond Godly",
  11810. height: math.unit(25, "multiverses")
  11811. },
  11812. ]
  11813. ))
  11814. characterMakers.push(() => makeCharacter(
  11815. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11816. {
  11817. feminine: {
  11818. height: math.unit(5, "feet"),
  11819. weight: math.unit(100, "lb"),
  11820. name: "Feminine",
  11821. image: {
  11822. source: "./media/characters/sammy-mouse/feminine.svg",
  11823. extra: 2526 / 2425,
  11824. bottom: 0.123
  11825. }
  11826. },
  11827. masculine: {
  11828. height: math.unit(5, "feet"),
  11829. weight: math.unit(100, "lb"),
  11830. name: "Masculine",
  11831. image: {
  11832. source: "./media/characters/sammy-mouse/masculine.svg",
  11833. extra: 2526 / 2425,
  11834. bottom: 0.123
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Micro",
  11841. height: math.unit(5, "inches")
  11842. },
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(5, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Macro",
  11850. height: math.unit(60, "feet")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(4, "feet"),
  11859. weight: math.unit(50, "lb"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/kole/front.svg",
  11863. extra: 1423 / 1303,
  11864. bottom: 0.025
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(4, "feet"),
  11869. weight: math.unit(50, "lb"),
  11870. name: "Back",
  11871. image: {
  11872. source: "./media/characters/kole/back.svg",
  11873. extra: 1426 / 1280,
  11874. bottom: 0.02
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(4, "feet"),
  11882. default: true
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(2 + 6 / 12, "feet"),
  11891. weight: math.unit(20, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/rufran/front.svg",
  11895. extra: 2041 / 1839,
  11896. bottom: 0.055
  11897. }
  11898. },
  11899. back: {
  11900. height: math.unit(2 + 6 / 12, "feet"),
  11901. weight: math.unit(20, "lb"),
  11902. name: "Back",
  11903. image: {
  11904. source: "./media/characters/rufran/back.svg",
  11905. extra: 2054 / 1839,
  11906. bottom: 0.01
  11907. }
  11908. },
  11909. hand: {
  11910. height: math.unit(0.2166, "meters"),
  11911. name: "Hand",
  11912. image: {
  11913. source: "./media/characters/rufran/hand.svg"
  11914. }
  11915. },
  11916. foot: {
  11917. height: math.unit(0.185, "meters"),
  11918. name: "Foot",
  11919. image: {
  11920. source: "./media/characters/rufran/foot.svg"
  11921. }
  11922. },
  11923. },
  11924. [
  11925. {
  11926. name: "Micro",
  11927. height: math.unit(1, "inch")
  11928. },
  11929. {
  11930. name: "Normal",
  11931. height: math.unit(2 + 6 / 12, "feet"),
  11932. default: true
  11933. },
  11934. {
  11935. name: "Big",
  11936. height: math.unit(60, "feet")
  11937. },
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(325, "feet")
  11941. },
  11942. ]
  11943. ))
  11944. characterMakers.push(() => makeCharacter(
  11945. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11946. {
  11947. front: {
  11948. height: math.unit(0.3, "meters"),
  11949. weight: math.unit(3.5, "kg"),
  11950. name: "Front",
  11951. image: {
  11952. source: "./media/characters/chip/front.svg",
  11953. extra: 748 / 674
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Micro",
  11960. height: math.unit(1, "inch"),
  11961. default: true
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11967. {
  11968. side: {
  11969. height: math.unit(2.3, "meters"),
  11970. weight: math.unit(3500, "lb"),
  11971. name: "Side",
  11972. image: {
  11973. source: "./media/characters/torvid/side.svg",
  11974. extra: 1972 / 722,
  11975. bottom: 0.035
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(2.3, "meters"),
  11983. default: true
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(2, "meters"),
  11992. weight: math.unit(150.5, "kg"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/susan/front.svg",
  11996. extra: 693 / 635,
  11997. bottom: 0.05
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Megamacro",
  12004. height: math.unit(505, "miles"),
  12005. default: true
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/raindrops/front.svg",
  12018. extra: 2655 / 2461,
  12019. bottom: 49 / 2705
  12020. }
  12021. },
  12022. back: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(150, "lb"),
  12025. name: "Back",
  12026. image: {
  12027. source: "./media/characters/raindrops/back.svg",
  12028. extra: 2574 / 2400,
  12029. bottom: 65 / 2634
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Micro",
  12036. height: math.unit(6, "inches")
  12037. },
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(6 + 2 / 12, "feet")
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(131, "feet"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Megamacro",
  12049. height: math.unit(15, "miles")
  12050. },
  12051. {
  12052. name: "Gigamacro",
  12053. height: math.unit(4000, "miles")
  12054. },
  12055. {
  12056. name: "Teramacro",
  12057. height: math.unit(315000, "miles")
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(2.794, "meters"),
  12066. weight: math.unit(325, "kg"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/tezwa/front.svg",
  12070. extra: 2083 / 1906,
  12071. bottom: 0.031
  12072. }
  12073. },
  12074. foot: {
  12075. height: math.unit(0.687, "meters"),
  12076. name: "Foot",
  12077. image: {
  12078. source: "./media/characters/tezwa/foot.svg"
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Normal",
  12085. height: math.unit(9 + 2 / 12, "feet"),
  12086. default: true
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(58, "feet"),
  12095. weight: math.unit(89000, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/typhus/front.svg",
  12099. extra: 816 / 800,
  12100. bottom: 0.065
  12101. }
  12102. },
  12103. },
  12104. [
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(58, "feet"),
  12108. default: true
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12114. {
  12115. front: {
  12116. height: math.unit(12, "feet"),
  12117. weight: math.unit(6, "tonnes"),
  12118. name: "Front",
  12119. image: {
  12120. source: "./media/characters/lyra-von-wulf/front.svg",
  12121. extra: 1,
  12122. bottom: 0.10
  12123. }
  12124. },
  12125. frontMecha: {
  12126. height: math.unit(12, "feet"),
  12127. weight: math.unit(12, "tonnes"),
  12128. name: "Front (Mecha)",
  12129. image: {
  12130. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12131. extra: 1,
  12132. bottom: 0.042
  12133. }
  12134. },
  12135. maw: {
  12136. height: math.unit(2.2, "feet"),
  12137. name: "Maw",
  12138. image: {
  12139. source: "./media/characters/lyra-von-wulf/maw.svg"
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(12, "feet"),
  12147. default: true
  12148. },
  12149. {
  12150. name: "Classic",
  12151. height: math.unit(50, "feet")
  12152. },
  12153. {
  12154. name: "Macro",
  12155. height: math.unit(500, "feet")
  12156. },
  12157. {
  12158. name: "Megamacro",
  12159. height: math.unit(1, "mile")
  12160. },
  12161. {
  12162. name: "Gigamacro",
  12163. height: math.unit(400, "miles")
  12164. },
  12165. {
  12166. name: "Teramacro",
  12167. height: math.unit(22000, "miles")
  12168. },
  12169. {
  12170. name: "Solarmacro",
  12171. height: math.unit(8600000, "miles")
  12172. },
  12173. {
  12174. name: "Galactic",
  12175. height: math.unit(1057000, "lightyears")
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(6 + 10 / 12, "feet"),
  12184. weight: math.unit(150, "lb"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/dixon/front.svg",
  12188. extra: 3361 / 3209,
  12189. bottom: 0.01
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(6 + 10 / 12, "feet"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Big",
  12201. height: math.unit(12, "meters")
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(500, "meters")
  12206. },
  12207. {
  12208. name: "Megamacro",
  12209. height: math.unit(2, "km")
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(185, "cm"),
  12218. weight: math.unit(68, "kg"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/kauko/front.svg",
  12222. extra: 1455 / 1421,
  12223. bottom: 0.03
  12224. }
  12225. },
  12226. back: {
  12227. height: math.unit(185, "cm"),
  12228. weight: math.unit(68, "kg"),
  12229. name: "Back",
  12230. image: {
  12231. source: "./media/characters/kauko/back.svg",
  12232. extra: 1455 / 1421,
  12233. bottom: 0.004
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(185, "cm"),
  12241. default: true
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "kg"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/varg/front.svg",
  12254. extra: 1108 / 1018,
  12255. bottom: 0.0375
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(5, "meters")
  12263. },
  12264. {
  12265. name: "Macro",
  12266. height: math.unit(200, "meters")
  12267. },
  12268. {
  12269. name: "Megamacro",
  12270. height: math.unit(20, "kilometers")
  12271. },
  12272. {
  12273. name: "True Size",
  12274. height: math.unit(211, "km"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Gigamacro",
  12279. height: math.unit(1000, "km")
  12280. },
  12281. {
  12282. name: "Gigamacro+",
  12283. height: math.unit(8000, "km")
  12284. },
  12285. {
  12286. name: "Teramacro",
  12287. height: math.unit(1000000, "km")
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12293. {
  12294. front: {
  12295. height: math.unit(7 + 7 / 12, "feet"),
  12296. weight: math.unit(267, "lb"),
  12297. name: "Front",
  12298. image: {
  12299. source: "./media/characters/dayza/front.svg",
  12300. extra: 1262 / 1200,
  12301. bottom: 0.035
  12302. }
  12303. },
  12304. side: {
  12305. height: math.unit(7 + 7 / 12, "feet"),
  12306. weight: math.unit(267, "lb"),
  12307. name: "Side",
  12308. image: {
  12309. source: "./media/characters/dayza/side.svg",
  12310. extra: 1295 / 1245,
  12311. bottom: 0.05
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(7 + 7 / 12, "feet"),
  12316. weight: math.unit(267, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/dayza/back.svg",
  12320. extra: 1241 / 1170
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(7 + 7 / 12, "feet"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Macro",
  12332. height: math.unit(155, "feet")
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12338. {
  12339. front: {
  12340. height: math.unit(6 + 5 / 12, "feet"),
  12341. weight: math.unit(160, "lb"),
  12342. name: "Front",
  12343. image: {
  12344. source: "./media/characters/xanthos/front.svg",
  12345. extra: 1,
  12346. bottom: 0.04
  12347. }
  12348. },
  12349. back: {
  12350. height: math.unit(6 + 5 / 12, "feet"),
  12351. weight: math.unit(160, "lb"),
  12352. name: "Back",
  12353. image: {
  12354. source: "./media/characters/xanthos/back.svg",
  12355. extra: 1,
  12356. bottom: 0.03
  12357. }
  12358. },
  12359. hand: {
  12360. height: math.unit(0.928, "feet"),
  12361. name: "Hand",
  12362. image: {
  12363. source: "./media/characters/xanthos/hand.svg"
  12364. }
  12365. },
  12366. foot: {
  12367. height: math.unit(1.286, "feet"),
  12368. name: "Foot",
  12369. image: {
  12370. source: "./media/characters/xanthos/foot.svg"
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(6 + 5 / 12, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Normal+",
  12382. height: math.unit(6, "meters")
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(40, "feet")
  12387. },
  12388. {
  12389. name: "Macro+",
  12390. height: math.unit(200, "meters")
  12391. },
  12392. {
  12393. name: "Megamacro",
  12394. height: math.unit(20, "km")
  12395. },
  12396. {
  12397. name: "Megamacro+",
  12398. height: math.unit(100, "km")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(6 + 3 / 12, "feet"),
  12407. weight: math.unit(215, "lb"),
  12408. name: "Front",
  12409. image: {
  12410. source: "./media/characters/grynn/front.svg",
  12411. extra: 4627 / 4209,
  12412. bottom: 0.047
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Micro",
  12419. height: math.unit(6, "inches")
  12420. },
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(6 + 3 / 12, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Big",
  12428. height: math.unit(104, "feet")
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(944, "feet")
  12433. },
  12434. {
  12435. name: "Macro+",
  12436. height: math.unit(9480, "feet")
  12437. },
  12438. {
  12439. name: "Megamacro",
  12440. height: math.unit(78752, "feet")
  12441. },
  12442. {
  12443. name: "Megamacro+",
  12444. height: math.unit(630128, "feet")
  12445. },
  12446. {
  12447. name: "Megamacro++",
  12448. height: math.unit(3150695, "feet")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(7 + 5 / 12, "feet"),
  12457. weight: math.unit(450, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/mocha-aura/front.svg",
  12461. extra: 1907 / 1817,
  12462. bottom: 0.04
  12463. }
  12464. },
  12465. back: {
  12466. height: math.unit(7 + 5 / 12, "feet"),
  12467. weight: math.unit(450, "lb"),
  12468. name: "Back",
  12469. image: {
  12470. source: "./media/characters/mocha-aura/back.svg",
  12471. extra: 1900 / 1825,
  12472. bottom: 0.045
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Nano",
  12479. height: math.unit(1, "nm")
  12480. },
  12481. {
  12482. name: "Megamicro",
  12483. height: math.unit(1, "mm")
  12484. },
  12485. {
  12486. name: "Micro",
  12487. height: math.unit(3, "inches")
  12488. },
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(7 + 5 / 12, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(30, "feet")
  12497. },
  12498. {
  12499. name: "Megamacro",
  12500. height: math.unit(3500, "feet")
  12501. },
  12502. {
  12503. name: "Teramacro",
  12504. height: math.unit(500000, "miles")
  12505. },
  12506. {
  12507. name: "Petamacro",
  12508. height: math.unit(50000000000000000, "parsecs")
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/ilisha-devya/front.svg",
  12521. extra: 1,
  12522. bottom: 0.175
  12523. }
  12524. },
  12525. back: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(150, "lb"),
  12528. name: "Back",
  12529. image: {
  12530. source: "./media/characters/ilisha-devya/back.svg",
  12531. extra: 1,
  12532. bottom: 0.015
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Macro",
  12539. height: math.unit(500, "feet"),
  12540. default: true
  12541. },
  12542. {
  12543. name: "Megamacro",
  12544. height: math.unit(10, "miles")
  12545. },
  12546. {
  12547. name: "Gigamacro",
  12548. height: math.unit(100000, "miles")
  12549. },
  12550. {
  12551. name: "Examacro",
  12552. height: math.unit(1e9, "lightyears")
  12553. },
  12554. {
  12555. name: "Omniversal",
  12556. height: math.unit(1e33, "lightyears")
  12557. },
  12558. {
  12559. name: "Beyond Infinite",
  12560. height: math.unit(1e100, "lightyears")
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12566. {
  12567. Side: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Side",
  12571. image: {
  12572. source: "./media/characters/mira/side.svg",
  12573. extra: 900 / 799,
  12574. bottom: 0.02
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Human Size",
  12581. height: math.unit(6, "feet")
  12582. },
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(100, "feet"),
  12586. default: true
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(10, "miles")
  12591. },
  12592. {
  12593. name: "Gigamacro",
  12594. height: math.unit(25000, "miles")
  12595. },
  12596. {
  12597. name: "Teramacro",
  12598. height: math.unit(300, "AU")
  12599. },
  12600. {
  12601. name: "Full Size",
  12602. height: math.unit(4.5e10, "lightyears")
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12608. {
  12609. front: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(150, "lb"),
  12612. name: "Front",
  12613. image: {
  12614. source: "./media/characters/holly/front.svg",
  12615. extra: 639 / 606
  12616. }
  12617. },
  12618. back: {
  12619. height: math.unit(6, "feet"),
  12620. weight: math.unit(150, "lb"),
  12621. name: "Back",
  12622. image: {
  12623. source: "./media/characters/holly/back.svg",
  12624. extra: 623 / 598
  12625. }
  12626. },
  12627. frontWorking: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Front (Working)",
  12631. image: {
  12632. source: "./media/characters/holly/front-working.svg",
  12633. extra: 607 / 577,
  12634. bottom: 0.048
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(12 + 3 / 12, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/porter/front.svg",
  12655. extra: 1,
  12656. bottom: 0.01
  12657. }
  12658. },
  12659. frontRobes: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(150, "lb"),
  12662. name: "Front (Robes)",
  12663. image: {
  12664. source: "./media/characters/porter/front-robes.svg",
  12665. extra: 1.01,
  12666. bottom: 0.01
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(11 + 9 / 12, "feet"),
  12674. default: true
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12680. {
  12681. legendary: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Legendary",
  12685. image: {
  12686. source: "./media/characters/lucy/legendary.svg",
  12687. extra: 1355 / 1100,
  12688. bottom: 0.045
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Legendary",
  12695. height: math.unit(86882 * 2, "miles"),
  12696. default: true
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(150, "lb"),
  12706. name: "Front",
  12707. image: {
  12708. source: "./media/characters/drusilla/front.svg",
  12709. extra: 678 / 635,
  12710. bottom: 0.03
  12711. }
  12712. },
  12713. back: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(150, "lb"),
  12716. name: "Back",
  12717. image: {
  12718. source: "./media/characters/drusilla/back.svg",
  12719. extra: 678 / 635,
  12720. bottom: 0.005
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(100, "feet")
  12728. },
  12729. {
  12730. name: "Canon Height",
  12731. height: math.unit(2000, "feet"),
  12732. default: true
  12733. },
  12734. ]
  12735. ))
  12736. characterMakers.push(() => makeCharacter(
  12737. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12738. {
  12739. front: {
  12740. height: math.unit(6, "feet"),
  12741. weight: math.unit(180, "lb"),
  12742. name: "Front",
  12743. image: {
  12744. source: "./media/characters/renard-thatch/front.svg",
  12745. extra: 2411 / 2275,
  12746. bottom: 0.01
  12747. }
  12748. },
  12749. frontPosing: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(180, "lb"),
  12752. name: "Front (Posing)",
  12753. image: {
  12754. source: "./media/characters/renard-thatch/front-posing.svg",
  12755. extra: 2381 / 2261,
  12756. bottom: 0.01
  12757. }
  12758. },
  12759. back: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(180, "lb"),
  12762. name: "Back",
  12763. image: {
  12764. source: "./media/characters/renard-thatch/back.svg",
  12765. extra: 2428 / 2288
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Micro",
  12772. height: math.unit(3, "inches")
  12773. },
  12774. {
  12775. name: "Default",
  12776. height: math.unit(6, "feet"),
  12777. default: true
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(75, "feet")
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12787. {
  12788. front: {
  12789. height: math.unit(1450, "feet"),
  12790. weight: math.unit(1.21e6, "tons"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/sekvra/front.svg",
  12794. extra: 1,
  12795. bottom: 0.03
  12796. }
  12797. },
  12798. frontClothed: {
  12799. height: math.unit(1450, "feet"),
  12800. weight: math.unit(1.21e6, "tons"),
  12801. name: "Front (Clothed)",
  12802. image: {
  12803. source: "./media/characters/sekvra/front-clothed.svg",
  12804. extra: 1,
  12805. bottom: 0.03
  12806. }
  12807. },
  12808. side: {
  12809. height: math.unit(1450, "feet"),
  12810. weight: math.unit(1.21e6, "tons"),
  12811. name: "Side",
  12812. image: {
  12813. source: "./media/characters/sekvra/side.svg",
  12814. extra: 1,
  12815. bottom: 0.025
  12816. }
  12817. },
  12818. back: {
  12819. height: math.unit(1450, "feet"),
  12820. weight: math.unit(1.21e6, "tons"),
  12821. name: "Back",
  12822. image: {
  12823. source: "./media/characters/sekvra/back.svg",
  12824. extra: 1,
  12825. bottom: 0.005
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Macro",
  12832. height: math.unit(1450, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(15000, "feet")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(6, "feet"),
  12846. weight: math.unit(150, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/carmine/front.svg",
  12850. extra: 1,
  12851. bottom: 0.035
  12852. }
  12853. },
  12854. frontArmor: {
  12855. height: math.unit(6, "feet"),
  12856. weight: math.unit(150, "lb"),
  12857. name: "Front (Armor)",
  12858. image: {
  12859. source: "./media/characters/carmine/front-armor.svg",
  12860. extra: 1,
  12861. bottom: 0.035
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Large",
  12868. height: math.unit(1, "mile")
  12869. },
  12870. {
  12871. name: "Huge",
  12872. height: math.unit(40, "miles"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Colossal",
  12877. height: math.unit(2500, "miles")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(6, "feet"),
  12886. weight: math.unit(150, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/elyssia/front.svg",
  12890. extra: 2201 / 2035,
  12891. bottom: 0.05
  12892. }
  12893. },
  12894. frontClothed: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Front (Clothed)",
  12898. image: {
  12899. source: "./media/characters/elyssia/front-clothed.svg",
  12900. extra: 2201 / 2035,
  12901. bottom: 0.05
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/elyssia/back.svg",
  12910. extra: 2201 / 2035,
  12911. bottom: 0.013
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Smaller",
  12918. height: math.unit(150, "feet")
  12919. },
  12920. {
  12921. name: "Standard",
  12922. height: math.unit(1400, "feet"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Distracted",
  12927. height: math.unit(15000, "feet")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(7 + 4 / 12, "feet"),
  12936. weight: math.unit(500, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/geno-maxwell/front.svg",
  12940. extra: 2207 / 2040,
  12941. bottom: 0.015
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Micro",
  12948. height: math.unit(3, "inches")
  12949. },
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(7 + 4 / 12, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(220, "feet")
  12958. },
  12959. {
  12960. name: "Megamacro",
  12961. height: math.unit(11, "miles")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(7 + 4 / 12, "feet"),
  12970. weight: math.unit(500, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/regena-maxwell/front.svg",
  12974. extra: 3115 / 2770,
  12975. bottom: 0.02
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(7 + 4 / 12, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Macro",
  12987. height: math.unit(220, "feet")
  12988. },
  12989. {
  12990. name: "Megamacro",
  12991. height: math.unit(11, "miles")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13004. extra: 860 / 690,
  13005. bottom: 0.03
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(1.7, "meters"),
  13013. default: true
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13019. {
  13020. front: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/quilly/front.svg",
  13026. extra: 890 / 776
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Gigamacro",
  13033. height: math.unit(404090, "miles"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(7 + 8 / 12, "feet"),
  13043. weight: math.unit(350, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/tempest/front.svg",
  13047. extra: 1175 / 1086,
  13048. bottom: 0.02
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(7 + 8 / 12, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13062. {
  13063. side: {
  13064. height: math.unit(4 + 5 / 12, "feet"),
  13065. weight: math.unit(80, "lb"),
  13066. name: "Side",
  13067. image: {
  13068. source: "./media/characters/rodger/side.svg",
  13069. extra: 1235 / 1118
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Micro",
  13076. height: math.unit(1, "inch")
  13077. },
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(4 + 5 / 12, "feet"),
  13081. default: true
  13082. },
  13083. {
  13084. name: "Macro",
  13085. height: math.unit(120, "feet")
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/danyel/front.svg",
  13098. extra: 1185 / 1123,
  13099. bottom: 0.05
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Shrunken",
  13106. height: math.unit(0.5, "mm")
  13107. },
  13108. {
  13109. name: "Micro",
  13110. height: math.unit(1, "mm"),
  13111. default: true
  13112. },
  13113. {
  13114. name: "Upsized",
  13115. height: math.unit(5 + 5 / 12, "feet")
  13116. },
  13117. ]
  13118. ))
  13119. characterMakers.push(() => makeCharacter(
  13120. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13121. {
  13122. front: {
  13123. height: math.unit(5 + 6 / 12, "feet"),
  13124. weight: math.unit(200, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/vivian-bijoux/front.svg",
  13128. extra: 1,
  13129. bottom: 0.072
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Normal",
  13136. height: math.unit(5 + 6 / 12, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Bad Dream",
  13141. height: math.unit(500, "feet")
  13142. },
  13143. {
  13144. name: "Nightmare",
  13145. height: math.unit(500, "miles")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(6 + 1 / 12, "feet"),
  13154. weight: math.unit(260, "lb"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/zeta/front.svg",
  13158. extra: 1968 / 1889,
  13159. bottom: 0.06
  13160. }
  13161. },
  13162. back: {
  13163. height: math.unit(6 + 1 / 12, "feet"),
  13164. weight: math.unit(260, "lb"),
  13165. name: "Back",
  13166. image: {
  13167. source: "./media/characters/zeta/back.svg",
  13168. extra: 1944 / 1858,
  13169. bottom: 0.03
  13170. }
  13171. },
  13172. hand: {
  13173. height: math.unit(1.112, "feet"),
  13174. name: "Hand",
  13175. image: {
  13176. source: "./media/characters/zeta/hand.svg"
  13177. }
  13178. },
  13179. foot: {
  13180. height: math.unit(1.48, "feet"),
  13181. name: "Foot",
  13182. image: {
  13183. source: "./media/characters/zeta/foot.svg"
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Micro",
  13190. height: math.unit(6, "inches")
  13191. },
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(6 + 1 / 12, "feet"),
  13195. default: true
  13196. },
  13197. {
  13198. name: "Macro",
  13199. height: math.unit(20, "feet")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/jamie-larsen/front.svg",
  13212. extra: 962 / 933,
  13213. bottom: 0.02
  13214. }
  13215. },
  13216. back: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "lb"),
  13219. name: "Back",
  13220. image: {
  13221. source: "./media/characters/jamie-larsen/back.svg",
  13222. extra: 997 / 946
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(28 + 7 / 12, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Macro+",
  13234. height: math.unit(180, "feet")
  13235. },
  13236. {
  13237. name: "Megamacro",
  13238. height: math.unit(10, "miles")
  13239. },
  13240. {
  13241. name: "Gigamacro",
  13242. height: math.unit(200000, "miles")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(120, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/vance/front.svg",
  13255. extra: 1980 / 1890,
  13256. bottom: 0.09
  13257. }
  13258. },
  13259. back: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(120, "lb"),
  13262. name: "Back",
  13263. image: {
  13264. source: "./media/characters/vance/back.svg",
  13265. extra: 2081 / 1994,
  13266. bottom: 0.014
  13267. }
  13268. },
  13269. hand: {
  13270. height: math.unit(0.88, "feet"),
  13271. name: "Hand",
  13272. image: {
  13273. source: "./media/characters/vance/hand.svg"
  13274. }
  13275. },
  13276. foot: {
  13277. height: math.unit(0.64, "feet"),
  13278. name: "Foot",
  13279. image: {
  13280. source: "./media/characters/vance/foot.svg"
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Small",
  13287. height: math.unit(90, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(100, "meters")
  13293. },
  13294. {
  13295. name: "Megamacro",
  13296. height: math.unit(15, "miles")
  13297. },
  13298. ]
  13299. ))
  13300. characterMakers.push(() => makeCharacter(
  13301. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13302. {
  13303. front: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(180, "lb"),
  13306. name: "Front",
  13307. image: {
  13308. source: "./media/characters/xochitl/front.svg",
  13309. extra: 2297 / 2261,
  13310. bottom: 0.065
  13311. }
  13312. },
  13313. back: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(180, "lb"),
  13316. name: "Back",
  13317. image: {
  13318. source: "./media/characters/xochitl/back.svg",
  13319. extra: 2386 / 2354,
  13320. bottom: 0.01
  13321. }
  13322. },
  13323. foot: {
  13324. height: math.unit(6 / 5 * 1.15, "feet"),
  13325. weight: math.unit(150, "lb"),
  13326. name: "Foot",
  13327. image: {
  13328. source: "./media/characters/xochitl/foot.svg"
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(80, "feet")
  13336. },
  13337. {
  13338. name: "Macro+",
  13339. height: math.unit(400, "feet"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Gigamacro",
  13344. height: math.unit(80000, "miles")
  13345. },
  13346. {
  13347. name: "Gigamacro+",
  13348. height: math.unit(400000, "miles")
  13349. },
  13350. {
  13351. name: "Teramacro",
  13352. height: math.unit(300, "AU")
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/vincent/front.svg",
  13365. extra: 1130 / 1080,
  13366. bottom: 0.055
  13367. }
  13368. },
  13369. beak: {
  13370. height: math.unit(6 * 0.1, "feet"),
  13371. name: "Beak",
  13372. image: {
  13373. source: "./media/characters/vincent/beak.svg"
  13374. }
  13375. },
  13376. hand: {
  13377. height: math.unit(6 * 0.85, "feet"),
  13378. weight: math.unit(150, "lb"),
  13379. name: "Hand",
  13380. image: {
  13381. source: "./media/characters/vincent/hand.svg"
  13382. }
  13383. },
  13384. foot: {
  13385. height: math.unit(6 * 0.19, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Foot",
  13388. image: {
  13389. source: "./media/characters/vincent/foot.svg"
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Base",
  13396. height: math.unit(6 + 5 / 12, "feet"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Macro",
  13401. height: math.unit(300, "feet")
  13402. },
  13403. {
  13404. name: "Megamacro",
  13405. height: math.unit(2, "miles")
  13406. },
  13407. {
  13408. name: "Gigamacro",
  13409. height: math.unit(1000, "miles")
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(6 + 2 / 12, "feet"),
  13418. weight: math.unit(265, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/jay/front.svg",
  13422. extra: 1510 / 1430,
  13423. bottom: 0.042
  13424. }
  13425. },
  13426. back: {
  13427. height: math.unit(6 + 2 / 12, "feet"),
  13428. weight: math.unit(265, "lb"),
  13429. name: "Back",
  13430. image: {
  13431. source: "./media/characters/jay/back.svg",
  13432. extra: 1510 / 1430,
  13433. bottom: 0.025
  13434. }
  13435. },
  13436. clothed: {
  13437. height: math.unit(6 + 2 / 12, "feet"),
  13438. weight: math.unit(265, "lb"),
  13439. name: "Front (Clothed)",
  13440. image: {
  13441. source: "./media/characters/jay/clothed.svg",
  13442. extra: 744 / 699,
  13443. bottom: 0.043
  13444. }
  13445. },
  13446. head: {
  13447. height: math.unit(1.772, "feet"),
  13448. name: "Head",
  13449. image: {
  13450. source: "./media/characters/jay/head.svg"
  13451. }
  13452. },
  13453. sizeRay: {
  13454. height: math.unit(1.331, "feet"),
  13455. name: "Size Ray",
  13456. image: {
  13457. source: "./media/characters/jay/size-ray.svg"
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Micro",
  13464. height: math.unit(1, "inch")
  13465. },
  13466. {
  13467. name: "Normal",
  13468. height: math.unit(6 + 2 / 12, "feet"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(1, "mile")
  13474. },
  13475. {
  13476. name: "Megamacro",
  13477. height: math.unit(100, "miles")
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(2, "meters"),
  13486. weight: math.unit(500, "kg"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/coatl/front.svg",
  13490. extra: 3948 / 3500,
  13491. bottom: 0.082
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Normal",
  13498. height: math.unit(4, "meters")
  13499. },
  13500. {
  13501. name: "Macro",
  13502. height: math.unit(100, "meters"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Macro+",
  13507. height: math.unit(300, "meters")
  13508. },
  13509. {
  13510. name: "Megamacro",
  13511. height: math.unit(3, "gigameters")
  13512. },
  13513. {
  13514. name: "Megamacro+",
  13515. height: math.unit(300, "terameters")
  13516. },
  13517. {
  13518. name: "Megamacro++",
  13519. height: math.unit(3, "lightyears")
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(6, "feet"),
  13528. weight: math.unit(50, "kg"),
  13529. name: "front",
  13530. image: {
  13531. source: "./media/characters/shiroryu/front.svg",
  13532. extra: 1990 / 1935
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Mortal Mingling",
  13539. height: math.unit(3, "meters")
  13540. },
  13541. {
  13542. name: "Kaiju-ish",
  13543. height: math.unit(250, "meters")
  13544. },
  13545. {
  13546. name: "Somewhat Godly",
  13547. height: math.unit(400, "km"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Planetary",
  13552. height: math.unit(300, "megameters")
  13553. },
  13554. {
  13555. name: "Galaxy-dwarfing",
  13556. height: math.unit(450, "kiloparsecs")
  13557. },
  13558. {
  13559. name: "Universe Eater",
  13560. height: math.unit(150, "gigaparsecs")
  13561. },
  13562. {
  13563. name: "Almost Immeasurable",
  13564. height: math.unit(1.3e266, "yottaparsecs")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/umeko/front.svg",
  13577. extra: 1,
  13578. bottom: 0.019
  13579. }
  13580. },
  13581. frontArmored: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Front (Armored)",
  13585. image: {
  13586. source: "./media/characters/umeko/front-armored.svg",
  13587. extra: 1,
  13588. bottom: 0.021
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(220, "feet"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Guardian Dragon",
  13600. height: math.unit(50, "miles")
  13601. },
  13602. {
  13603. name: "Cosmic",
  13604. height: math.unit(800000, "miles")
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(6, "feet"),
  13613. weight: math.unit(150, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/cassidy/front.svg",
  13617. extra: 1,
  13618. bottom: 0.043
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Canon Height",
  13625. height: math.unit(120, "feet"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Macro+",
  13630. height: math.unit(400, "feet")
  13631. },
  13632. {
  13633. name: "Macro++",
  13634. height: math.unit(4000, "feet")
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(3, "miles")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/isaac/front.svg",
  13651. extra: 896 / 815,
  13652. bottom: 0.11
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Human Size",
  13659. height: math.unit(8, "feet"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Macro",
  13664. height: math.unit(400, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro",
  13668. height: math.unit(50, "miles")
  13669. },
  13670. {
  13671. name: "Canon Height",
  13672. height: math.unit(200, "AU")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(72, "kg"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/sleekit/front.svg",
  13685. extra: 4693 / 4487,
  13686. bottom: 0.012
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Minimum Height",
  13693. height: math.unit(10, "meters")
  13694. },
  13695. {
  13696. name: "Smaller",
  13697. height: math.unit(25, "meters")
  13698. },
  13699. {
  13700. name: "Larger",
  13701. height: math.unit(38, "meters"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Maximum height",
  13706. height: math.unit(100, "meters")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/nillia/front.svg",
  13719. extra: 2195 / 2037,
  13720. bottom: 0.005
  13721. }
  13722. },
  13723. back: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Back",
  13727. image: {
  13728. source: "./media/characters/nillia/back.svg",
  13729. extra: 2195 / 2037,
  13730. bottom: 0.005
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Canon Height",
  13737. height: math.unit(489, "feet"),
  13738. default: true
  13739. }
  13740. ]
  13741. ))
  13742. characterMakers.push(() => makeCharacter(
  13743. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13744. {
  13745. front: {
  13746. height: math.unit(6, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Front",
  13749. image: {
  13750. source: "./media/characters/mesmyriza/front.svg",
  13751. extra: 2067 / 1784,
  13752. bottom: 0.035
  13753. }
  13754. },
  13755. foot: {
  13756. height: math.unit(6 / (250 / 35), "feet"),
  13757. name: "Foot",
  13758. image: {
  13759. source: "./media/characters/mesmyriza/foot.svg"
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(457, "meters"),
  13767. default: true
  13768. },
  13769. {
  13770. name: "Megamacro",
  13771. height: math.unit(8, "megameters")
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(250, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/saudade/front.svg",
  13784. extra: 1172 / 1139,
  13785. bottom: 0.035
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(3, "inches")
  13793. },
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(6, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Macro",
  13801. height: math.unit(50, "feet")
  13802. },
  13803. {
  13804. name: "Megamacro",
  13805. height: math.unit(2800, "feet")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(5 + 4 / 12, "feet"),
  13814. weight: math.unit(100, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/keireer/front.svg",
  13818. extra: 716 / 666,
  13819. bottom: 0.05
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(5 + 4 / 12, "feet"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(6, "feet"),
  13836. weight: math.unit(90, "kg"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/mirja/front.svg",
  13840. extra: 1789 / 1683,
  13841. bottom: 0.05
  13842. }
  13843. },
  13844. frontDressed: {
  13845. height: math.unit(6, "feet"),
  13846. weight: math.unit(90, "lb"),
  13847. name: "Front (Dressed)",
  13848. image: {
  13849. source: "./media/characters/mirja/front-dressed.svg",
  13850. extra: 1789 / 1683,
  13851. bottom: 0.05
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(90, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/mirja/back.svg",
  13860. extra: 953 / 917,
  13861. bottom: 0.017
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "\"Incognito\"",
  13868. height: math.unit(3, "meters")
  13869. },
  13870. {
  13871. name: "Strolling Size",
  13872. height: math.unit(15, "km")
  13873. },
  13874. {
  13875. name: "Larger Strolling Size",
  13876. height: math.unit(400, "km")
  13877. },
  13878. {
  13879. name: "Preferred Size",
  13880. height: math.unit(5000, "km")
  13881. },
  13882. {
  13883. name: "True Size",
  13884. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(15, "feet"),
  13894. weight: math.unit(880, "kg"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/nightraver/front.svg",
  13898. extra: 2444 / 2160,
  13899. bottom: 0.027
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(15, "feet"),
  13904. weight: math.unit(880, "kg"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/nightraver/back.svg",
  13908. extra: 2309 / 2180,
  13909. bottom: 0.005
  13910. }
  13911. },
  13912. sole: {
  13913. height: math.unit(2.878, "feet"),
  13914. name: "Sole",
  13915. image: {
  13916. source: "./media/characters/nightraver/sole.svg"
  13917. }
  13918. },
  13919. foot: {
  13920. height: math.unit(2.285, "feet"),
  13921. name: "Foot",
  13922. image: {
  13923. source: "./media/characters/nightraver/foot.svg"
  13924. }
  13925. },
  13926. maw: {
  13927. height: math.unit(2.67, "feet"),
  13928. name: "Maw",
  13929. image: {
  13930. source: "./media/characters/nightraver/maw.svg"
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(1, "cm")
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(15, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(300, "feet")
  13947. },
  13948. {
  13949. name: "Megamacro",
  13950. height: math.unit(300, "miles")
  13951. },
  13952. {
  13953. name: "Gigamacro",
  13954. height: math.unit(10000, "miles")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13960. {
  13961. side: {
  13962. height: math.unit(2, "inches"),
  13963. weight: math.unit(5, "grams"),
  13964. name: "Side",
  13965. image: {
  13966. source: "./media/characters/arc/side.svg"
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Micro",
  13973. height: math.unit(2, "inches"),
  13974. default: true
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(1.1938, "meters"),
  13983. weight: math.unit(54, "kg"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/nebula-shahar/front.svg",
  13987. extra: 1642 / 1436,
  13988. bottom: 0.06
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Megamicro",
  13995. height: math.unit(0.3, "mm")
  13996. },
  13997. {
  13998. name: "Micro",
  13999. height: math.unit(3, "cm")
  14000. },
  14001. {
  14002. name: "Normal",
  14003. height: math.unit(138, "cm"),
  14004. default: true
  14005. },
  14006. {
  14007. name: "Macro",
  14008. height: math.unit(30, "m")
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(5.24, "feet"),
  14017. weight: math.unit(150, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/shayla/front.svg",
  14021. extra: 1512 / 1414,
  14022. bottom: 0.01
  14023. }
  14024. },
  14025. back: {
  14026. height: math.unit(5.24, "feet"),
  14027. weight: math.unit(150, "lb"),
  14028. name: "Back",
  14029. image: {
  14030. source: "./media/characters/shayla/back.svg",
  14031. extra: 1512 / 1414
  14032. }
  14033. },
  14034. hand: {
  14035. height: math.unit(0.7781496062992126, "feet"),
  14036. name: "Hand",
  14037. image: {
  14038. source: "./media/characters/shayla/hand.svg"
  14039. }
  14040. },
  14041. foot: {
  14042. height: math.unit(1.4206036745406823, "feet"),
  14043. name: "Foot",
  14044. image: {
  14045. source: "./media/characters/shayla/foot.svg"
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Micro",
  14052. height: math.unit(0.32, "feet")
  14053. },
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(5.24, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Macro",
  14061. height: math.unit(492.12, "feet")
  14062. },
  14063. {
  14064. name: "Megamacro",
  14065. height: math.unit(186.41, "miles")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(2.2, "m"),
  14074. weight: math.unit(120, "kg"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/pia-jr/front.svg",
  14078. extra: 1000 / 970,
  14079. bottom: 0.035
  14080. }
  14081. },
  14082. hand: {
  14083. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14084. name: "Hand",
  14085. image: {
  14086. source: "./media/characters/pia-jr/hand.svg"
  14087. }
  14088. },
  14089. paw: {
  14090. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14091. name: "Paw",
  14092. image: {
  14093. source: "./media/characters/pia-jr/paw.svg"
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Micro",
  14100. height: math.unit(1.2, "cm")
  14101. },
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(2.2, "m"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Macro",
  14109. height: math.unit(180, "m")
  14110. },
  14111. {
  14112. name: "Megamacro",
  14113. height: math.unit(420, "km")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(2, "m"),
  14122. weight: math.unit(115, "kg"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/pia-sr/front.svg",
  14126. extra: 760 / 730,
  14127. bottom: 0.015
  14128. }
  14129. },
  14130. back: {
  14131. height: math.unit(2, "m"),
  14132. weight: math.unit(115, "kg"),
  14133. name: "Back",
  14134. image: {
  14135. source: "./media/characters/pia-sr/back.svg",
  14136. extra: 760 / 730,
  14137. bottom: 0.01
  14138. }
  14139. },
  14140. hand: {
  14141. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14142. name: "Hand",
  14143. image: {
  14144. source: "./media/characters/pia-sr/hand.svg"
  14145. }
  14146. },
  14147. foot: {
  14148. height: math.unit(1.83, "feet"),
  14149. name: "Foot",
  14150. image: {
  14151. source: "./media/characters/pia-sr/foot.svg"
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Micro",
  14158. height: math.unit(88, "mm")
  14159. },
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(2, "m"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(200, "m")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(420, "km")
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(8 + 2 / 12, "feet"),
  14180. weight: math.unit(300, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/kibibyte/front.svg",
  14184. extra: 2221 / 2098,
  14185. bottom: 0.04
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(8 + 2 / 12, "feet"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Socialable Macro",
  14197. height: math.unit(50, "feet")
  14198. },
  14199. {
  14200. name: "Macro",
  14201. height: math.unit(300, "feet")
  14202. },
  14203. {
  14204. name: "Megamacro",
  14205. height: math.unit(500, "miles")
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(150, "lb"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/felix/front.svg",
  14218. extra: 762 / 722,
  14219. bottom: 0.02
  14220. }
  14221. },
  14222. frontClothed: {
  14223. height: math.unit(6, "feet"),
  14224. weight: math.unit(150, "lb"),
  14225. name: "Front (Clothed)",
  14226. image: {
  14227. source: "./media/characters/felix/front-clothed.svg",
  14228. extra: 762 / 722,
  14229. bottom: 0.02
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(6 + 8 / 12, "feet"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(2600, "feet")
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(450, "miles")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6 + 1 / 12, "feet"),
  14254. weight: math.unit(250, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/tobo/front.svg",
  14258. extra: 608 / 586,
  14259. bottom: 0.023
  14260. }
  14261. },
  14262. back: {
  14263. height: math.unit(6 + 1 / 12, "feet"),
  14264. weight: math.unit(250, "lb"),
  14265. name: "Back",
  14266. image: {
  14267. source: "./media/characters/tobo/back.svg",
  14268. extra: 608 / 586
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Nano",
  14275. height: math.unit(2, "nm")
  14276. },
  14277. {
  14278. name: "Megamicro",
  14279. height: math.unit(0.1, "mm")
  14280. },
  14281. {
  14282. name: "Micro",
  14283. height: math.unit(1, "inch"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Human-sized",
  14288. height: math.unit(6 + 1 / 12, "feet")
  14289. },
  14290. {
  14291. name: "Macro",
  14292. height: math.unit(250, "feet")
  14293. },
  14294. {
  14295. name: "Megamacro",
  14296. height: math.unit(75, "miles")
  14297. },
  14298. {
  14299. name: "Texas-sized",
  14300. height: math.unit(750, "miles")
  14301. },
  14302. {
  14303. name: "Teramacro",
  14304. height: math.unit(50000, "miles")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(269, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/danny-kapowsky/front.svg",
  14317. extra: 766 / 736,
  14318. bottom: 0.044
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(269, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/danny-kapowsky/back.svg",
  14327. extra: 797 / 760,
  14328. bottom: 0.025
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(150, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro+",
  14340. height: math.unit(200, "feet")
  14341. },
  14342. {
  14343. name: "Macro++",
  14344. height: math.unit(300, "feet")
  14345. },
  14346. {
  14347. name: "Macro+++",
  14348. height: math.unit(400, "feet")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14354. {
  14355. side: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(170, "lb"),
  14358. name: "Side",
  14359. image: {
  14360. source: "./media/characters/finn/side.svg",
  14361. extra: 1953 / 1807,
  14362. bottom: 0.057
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Megamacro",
  14369. height: math.unit(14445, "feet"),
  14370. default: true
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(5 + 6 / 12, "feet"),
  14379. weight: math.unit(125, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/roy/front.svg",
  14383. extra: 1,
  14384. bottom: 0.11
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Micro",
  14391. height: math.unit(3, "inches"),
  14392. default: true
  14393. },
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(5 + 6 / 12, "feet")
  14397. },
  14398. {
  14399. name: "Lesser Macro",
  14400. height: math.unit(60, "feet")
  14401. },
  14402. {
  14403. name: "Greater Macro",
  14404. height: math.unit(120, "feet")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(100, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/aevsivs/front.svg",
  14417. extra: 1,
  14418. bottom: 0.03
  14419. }
  14420. },
  14421. back: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(100, "lb"),
  14424. name: "Back",
  14425. image: {
  14426. source: "./media/characters/aevsivs/back.svg"
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Micro",
  14433. height: math.unit(2, "inches"),
  14434. default: true
  14435. },
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(5, "feet")
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14444. {
  14445. front: {
  14446. height: math.unit(5 + 7 / 12, "feet"),
  14447. weight: math.unit(159, "lb"),
  14448. name: "Front",
  14449. image: {
  14450. source: "./media/characters/hildegard/front.svg",
  14451. extra: 289 / 269,
  14452. bottom: 7.63 / 297.8
  14453. }
  14454. },
  14455. back: {
  14456. height: math.unit(5 + 7 / 12, "feet"),
  14457. weight: math.unit(159, "lb"),
  14458. name: "Back",
  14459. image: {
  14460. source: "./media/characters/hildegard/back.svg",
  14461. extra: 280 / 260,
  14462. bottom: 2.3 / 282
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(5 + 7 / 12, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14476. {
  14477. bernard: {
  14478. height: math.unit(2 + 7 / 12, "feet"),
  14479. weight: math.unit(66, "lb"),
  14480. name: "Bernard",
  14481. rename: true,
  14482. image: {
  14483. source: "./media/characters/bernard-wilder/bernard.svg",
  14484. extra: 192 / 128,
  14485. bottom: 0.05
  14486. }
  14487. },
  14488. wilder: {
  14489. height: math.unit(5 + 8 / 12, "feet"),
  14490. weight: math.unit(143, "lb"),
  14491. name: "Wilder",
  14492. rename: true,
  14493. image: {
  14494. source: "./media/characters/bernard-wilder/wilder.svg",
  14495. extra: 361 / 312,
  14496. bottom: 0.02
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(2 + 7 / 12, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14510. {
  14511. anthro: {
  14512. height: math.unit(6 + 1 / 12, "feet"),
  14513. weight: math.unit(155, "lb"),
  14514. name: "Anthro",
  14515. image: {
  14516. source: "./media/characters/hearth/anthro.svg",
  14517. extra: 260 / 250,
  14518. bottom: 0.02
  14519. }
  14520. },
  14521. feral: {
  14522. height: math.unit(3.78, "feet"),
  14523. weight: math.unit(35, "kg"),
  14524. name: "Feral",
  14525. image: {
  14526. source: "./media/characters/hearth/feral.svg",
  14527. extra: 153 / 135,
  14528. bottom: 0.03
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(6 + 1 / 12, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(6, "feet"),
  14545. weight: math.unit(182, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/ingrid/front.svg",
  14549. extra: 294 / 268,
  14550. bottom: 0.027
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(6, "feet"),
  14558. default: true
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14564. {
  14565. eevee: {
  14566. height: math.unit(2 + 10 / 12, "feet"),
  14567. weight: math.unit(86, "lb"),
  14568. name: "Malgam",
  14569. image: {
  14570. source: "./media/characters/malgam/eevee.svg",
  14571. extra: 218 / 180,
  14572. bottom: 0.2
  14573. }
  14574. },
  14575. sylveon: {
  14576. height: math.unit(4, "feet"),
  14577. weight: math.unit(101, "lb"),
  14578. name: "Future Malgam",
  14579. rename: true,
  14580. image: {
  14581. source: "./media/characters/malgam/sylveon.svg",
  14582. extra: 371 / 325,
  14583. bottom: 0.015
  14584. }
  14585. },
  14586. gigantamax: {
  14587. height: math.unit(50, "feet"),
  14588. name: "Gigantamax Malgam",
  14589. rename: true,
  14590. image: {
  14591. source: "./media/characters/malgam/gigantamax.svg"
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(2 + 10 / 12, "feet"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(5 + 11 / 12, "feet"),
  14608. weight: math.unit(188, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/fleur/front.svg",
  14612. extra: 309 / 283,
  14613. bottom: 0.007
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(5 + 11 / 12, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(5 + 4 / 12, "feet"),
  14630. weight: math.unit(122, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/jude/front.svg",
  14634. extra: 288 / 273,
  14635. bottom: 0.03
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(5 + 4 / 12, "feet"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14649. {
  14650. front: {
  14651. height: math.unit(5 + 11 / 12, "feet"),
  14652. weight: math.unit(190, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/seara/front.svg",
  14656. extra: 1,
  14657. bottom: 0.05
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(5 + 11 / 12, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(16 + 5 / 12, "feet"),
  14674. weight: math.unit(524, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/caspian/front.svg",
  14678. extra: 1,
  14679. bottom: 0.04
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(16 + 5 / 12, "feet"),
  14687. default: true
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14693. {
  14694. front: {
  14695. height: math.unit(5 + 7 / 12, "feet"),
  14696. weight: math.unit(170, "lb"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/mika/front.svg",
  14700. extra: 1,
  14701. bottom: 0.016
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(5 + 7 / 12, "feet"),
  14709. default: true
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(6 + 2 / 12, "feet"),
  14718. weight: math.unit(268, "lb"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/sol/front.svg",
  14722. extra: 247 / 231,
  14723. bottom: 0.05
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(6 + 2 / 12, "feet"),
  14731. default: true
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14737. {
  14738. buizel: {
  14739. height: math.unit(2 + 5 / 12, "feet"),
  14740. weight: math.unit(87, "lb"),
  14741. name: "Buizel",
  14742. image: {
  14743. source: "./media/characters/umiko/buizel.svg",
  14744. extra: 172 / 157,
  14745. bottom: 0.01
  14746. }
  14747. },
  14748. floatzel: {
  14749. height: math.unit(5 + 9 / 12, "feet"),
  14750. weight: math.unit(250, "lb"),
  14751. name: "Floatzel",
  14752. image: {
  14753. source: "./media/characters/umiko/floatzel.svg",
  14754. extra: 262 / 248
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(2 + 5 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6 + 2 / 12, "feet"),
  14771. weight: math.unit(146, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/iliac/front.svg",
  14775. extra: 389 / 365,
  14776. bottom: 0.035
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(6 + 2 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(170, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/topaz/front.svg",
  14797. extra: 317 / 303,
  14798. bottom: 0.055
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(6, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(5 + 11 / 12, "feet"),
  14815. weight: math.unit(144, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/gabriel/front.svg",
  14819. extra: 285 / 262,
  14820. bottom: 0.004
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 11 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14834. {
  14835. side: {
  14836. height: math.unit(6 + 5 / 12, "feet"),
  14837. weight: math.unit(300, "lb"),
  14838. name: "Side",
  14839. image: {
  14840. source: "./media/characters/tempest-suicune/side.svg",
  14841. extra: 195 / 154,
  14842. bottom: 0.04
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(6 + 5 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(7 + 2 / 12, "feet"),
  14859. weight: math.unit(322, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/vulcan/front.svg",
  14863. extra: 154 / 147,
  14864. bottom: 0.04
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(7 + 2 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(5 + 10 / 12, "feet"),
  14881. weight: math.unit(264, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/gault/front.svg",
  14885. extra: 161 / 140,
  14886. bottom: 0.028
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(5 + 10 / 12, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/shard/front.svg",
  14907. extra: 273 / 238,
  14908. bottom: 0.02
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(3 + 6 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(5 + 11 / 12, "feet"),
  14925. weight: math.unit(146, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/ashe/front.svg",
  14929. extra: 400 / 373,
  14930. bottom: 0.01
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(5 + 11 / 12, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(5 + 5 / 12, "feet"),
  14947. weight: math.unit(135, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/beatrix/front.svg",
  14951. extra: 392 / 379,
  14952. bottom: 0.01
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(6, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(6, "feet"),
  14969. weight: math.unit(150, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/ignatius/front.svg",
  14973. extra: 245 / 222,
  14974. bottom: 0.01
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(5 + 5 / 12, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14988. {
  14989. front: {
  14990. height: math.unit(6 + 2 / 12, "feet"),
  14991. weight: math.unit(138, "lb"),
  14992. name: "Front",
  14993. image: {
  14994. source: "./media/characters/mei-li/front.svg",
  14995. extra: 237 / 229,
  14996. bottom: 0.03
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(6 + 2 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(2 + 4 / 12, "feet"),
  15013. weight: math.unit(62, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/puru/front.svg",
  15017. extra: 206 / 149,
  15018. bottom: 0.06
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(2 + 4 / 12, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15032. {
  15033. anthro: {
  15034. height: math.unit(5 + 8/12, "feet"),
  15035. weight: math.unit(200, "lb"),
  15036. energyNeed: math.unit(2000, "kcal"),
  15037. name: "Anthro",
  15038. image: {
  15039. source: "./media/characters/kee/anthro.svg",
  15040. extra: 3251/3184,
  15041. bottom: 250/3501
  15042. }
  15043. },
  15044. taur: {
  15045. height: math.unit(11, "feet"),
  15046. weight: math.unit(500, "lb"),
  15047. energyNeed: math.unit(5000, "kcal"),
  15048. name: "Taur",
  15049. image: {
  15050. source: "./media/characters/kee/taur.svg",
  15051. extra: 1362/1320,
  15052. bottom: 83/1445
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(5 + 8/12, "feet"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "Macro",
  15064. height: math.unit(35, "feet")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15070. {
  15071. anthro: {
  15072. height: math.unit(7, "feet"),
  15073. weight: math.unit(190, "lb"),
  15074. name: "Anthro",
  15075. image: {
  15076. source: "./media/characters/cobalt-dracha/anthro.svg",
  15077. extra: 231 / 225,
  15078. bottom: 0.04
  15079. }
  15080. },
  15081. feral: {
  15082. height: math.unit(9 + 7 / 12, "feet"),
  15083. weight: math.unit(294, "lb"),
  15084. name: "Feral",
  15085. image: {
  15086. source: "./media/characters/cobalt-dracha/feral.svg",
  15087. extra: 692 / 633,
  15088. bottom: 0.05
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(7, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15102. {
  15103. fallen: {
  15104. height: math.unit(11 + 8 / 12, "feet"),
  15105. weight: math.unit(485, "lb"),
  15106. name: "Java (Fallen)",
  15107. rename: true,
  15108. image: {
  15109. source: "./media/characters/java/fallen.svg",
  15110. extra: 226 / 208,
  15111. bottom: 0.005
  15112. }
  15113. },
  15114. godkin: {
  15115. height: math.unit(10 + 6 / 12, "feet"),
  15116. weight: math.unit(328, "lb"),
  15117. name: "Java (Godkin)",
  15118. rename: true,
  15119. image: {
  15120. source: "./media/characters/java/godkin.svg",
  15121. extra: 270 / 262,
  15122. bottom: 0.02
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(11 + 8 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(7 + 8 / 12, "feet"),
  15139. weight: math.unit(320, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/skoll/front.svg",
  15143. extra: 232 / 220,
  15144. bottom: 0.02
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(7 + 8 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(5 + 9 / 12, "feet"),
  15161. weight: math.unit(170, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/purna/front.svg",
  15165. extra: 239 / 229,
  15166. bottom: 0.01
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(5 + 9 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(5 + 9 / 12, "feet"),
  15183. weight: math.unit(142, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/kuva/front.svg",
  15187. extra: 281 / 271,
  15188. bottom: 0.006
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(5 + 9 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15202. {
  15203. anthro: {
  15204. height: math.unit(9 + 2 / 12, "feet"),
  15205. weight: math.unit(270, "lb"),
  15206. name: "Anthro",
  15207. image: {
  15208. source: "./media/characters/embra/anthro.svg",
  15209. extra: 200 / 187,
  15210. bottom: 0.02
  15211. }
  15212. },
  15213. feral: {
  15214. height: math.unit(18 + 8 / 12, "feet"),
  15215. weight: math.unit(576, "lb"),
  15216. name: "Feral",
  15217. image: {
  15218. source: "./media/characters/embra/feral.svg",
  15219. extra: 152 / 137,
  15220. bottom: 0.037
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(9 + 2 / 12, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15234. {
  15235. anthro: {
  15236. height: math.unit(10 + 9 / 12, "feet"),
  15237. weight: math.unit(224, "lb"),
  15238. name: "Anthro",
  15239. image: {
  15240. source: "./media/characters/grottos/anthro.svg",
  15241. extra: 350 / 332,
  15242. bottom: 0.045
  15243. }
  15244. },
  15245. feral: {
  15246. height: math.unit(20 + 7 / 12, "feet"),
  15247. weight: math.unit(629, "lb"),
  15248. name: "Feral",
  15249. image: {
  15250. source: "./media/characters/grottos/feral.svg",
  15251. extra: 207 / 190,
  15252. bottom: 0.05
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(10 + 9 / 12, "feet"),
  15260. default: true
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15266. {
  15267. anthro: {
  15268. height: math.unit(9 + 6 / 12, "feet"),
  15269. weight: math.unit(298, "lb"),
  15270. name: "Anthro",
  15271. image: {
  15272. source: "./media/characters/frifna/anthro.svg",
  15273. extra: 282 / 269,
  15274. bottom: 0.015
  15275. }
  15276. },
  15277. feral: {
  15278. height: math.unit(16 + 2 / 12, "feet"),
  15279. weight: math.unit(624, "lb"),
  15280. name: "Feral",
  15281. image: {
  15282. source: "./media/characters/frifna/feral.svg"
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(9 + 6 / 12, "feet"),
  15290. default: true
  15291. },
  15292. ]
  15293. ))
  15294. characterMakers.push(() => makeCharacter(
  15295. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15296. {
  15297. front: {
  15298. height: math.unit(6 + 2 / 12, "feet"),
  15299. weight: math.unit(168, "lb"),
  15300. name: "Front",
  15301. image: {
  15302. source: "./media/characters/elise/front.svg",
  15303. extra: 276 / 271
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(6 + 2 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(5 + 10 / 12, "feet"),
  15320. weight: math.unit(210, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/glade/front.svg",
  15324. extra: 258 / 247,
  15325. bottom: 0.008
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(5 + 10 / 12, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(5 + 10 / 12, "feet"),
  15342. weight: math.unit(129, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/rina/front.svg",
  15346. extra: 266 / 255,
  15347. bottom: 0.005
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(5 + 10 / 12, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6 + 1 / 12, "feet"),
  15364. weight: math.unit(192, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/veronica/front.svg",
  15368. extra: 319 / 309,
  15369. bottom: 0.005
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(6 + 1 / 12, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(9 + 3 / 12, "feet"),
  15386. weight: math.unit(1100, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/braxton/front.svg",
  15390. extra: 1057 / 984,
  15391. bottom: 0.05
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(9 + 3 / 12, "feet")
  15399. },
  15400. {
  15401. name: "Giant",
  15402. height: math.unit(300, "feet"),
  15403. default: true
  15404. },
  15405. {
  15406. name: "Macro",
  15407. height: math.unit(700, "feet")
  15408. },
  15409. {
  15410. name: "Megamacro",
  15411. height: math.unit(6000, "feet")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(6 + 7 / 12, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/blue-feyonics/front.svg",
  15424. extra: 1403 / 1306,
  15425. bottom: 0.047
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(6 + 7 / 12, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(1.8, "meters"),
  15442. weight: math.unit(60, "kg"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/maxwell/front.svg",
  15446. extra: 2060 / 1873
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Micro",
  15453. height: math.unit(1, "mm")
  15454. },
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(1.8, "meter"),
  15458. default: true
  15459. },
  15460. {
  15461. name: "Macro",
  15462. height: math.unit(30, "meters")
  15463. },
  15464. {
  15465. name: "Megamacro",
  15466. height: math.unit(10, "km")
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15472. {
  15473. front: {
  15474. height: math.unit(6, "feet"),
  15475. weight: math.unit(150, "lb"),
  15476. name: "Front",
  15477. image: {
  15478. source: "./media/characters/jack/front.svg",
  15479. extra: 1754 / 1640,
  15480. bottom: 0.01
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(80000, "feet"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Max size",
  15492. height: math.unit(10, "lightyears")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15498. {
  15499. upright: {
  15500. height: math.unit(7, "feet"),
  15501. weight: math.unit(170, "lb"),
  15502. name: "Upright",
  15503. image: {
  15504. source: "./media/characters/cafat/upright.svg",
  15505. bottom: 0.01
  15506. }
  15507. },
  15508. uprightFull: {
  15509. height: math.unit(7, "feet"),
  15510. weight: math.unit(170, "lb"),
  15511. name: "Upright (Full)",
  15512. image: {
  15513. source: "./media/characters/cafat/upright-full.svg",
  15514. bottom: 0.01
  15515. }
  15516. },
  15517. side: {
  15518. height: math.unit(5, "feet"),
  15519. weight: math.unit(150, "lb"),
  15520. name: "Side",
  15521. image: {
  15522. source: "./media/characters/cafat/side.svg"
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Small",
  15529. height: math.unit(7, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Large",
  15534. height: math.unit(15.5, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/verin-raharra/front.svg",
  15547. extra: 5019 / 4835,
  15548. bottom: 0.023
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(7 + 5 / 12, "feet"),
  15556. default: true
  15557. },
  15558. {
  15559. name: "Upsized",
  15560. height: math.unit(20, "feet")
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(7, "feet"),
  15569. weight: math.unit(230, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/nakata/front.svg",
  15573. extra: 1.005,
  15574. bottom: 0.01
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(7, "feet"),
  15582. default: true
  15583. },
  15584. {
  15585. name: "Big",
  15586. height: math.unit(14, "feet")
  15587. },
  15588. {
  15589. name: "Macro",
  15590. height: math.unit(400, "feet")
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15596. {
  15597. front: {
  15598. height: math.unit(4.91, "feet"),
  15599. weight: math.unit(100, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/lily/front.svg",
  15603. extra: 1585 / 1415,
  15604. bottom: 0.02
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(4.91, "feet"),
  15612. default: true
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15618. {
  15619. laying: {
  15620. height: math.unit(4 + 4 / 12, "feet"),
  15621. weight: math.unit(600, "lb"),
  15622. name: "Laying",
  15623. image: {
  15624. source: "./media/characters/sheila/laying.svg",
  15625. extra: 1333 / 1265,
  15626. bottom: 0.16
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(4 + 4 / 12, "feet"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(6, "feet"),
  15643. weight: math.unit(190, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/sax/front.svg",
  15647. extra: 1187 / 973,
  15648. bottom: 0.042
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Micro",
  15655. height: math.unit(4, "inches"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15662. {
  15663. front: {
  15664. height: math.unit(6, "feet"),
  15665. weight: math.unit(150, "lb"),
  15666. name: "Front",
  15667. image: {
  15668. source: "./media/characters/pandora/front.svg",
  15669. extra: 2720 / 2556,
  15670. bottom: 0.015
  15671. }
  15672. },
  15673. back: {
  15674. height: math.unit(6, "feet"),
  15675. weight: math.unit(150, "lb"),
  15676. name: "Back",
  15677. image: {
  15678. source: "./media/characters/pandora/back.svg",
  15679. extra: 2720 / 2556,
  15680. bottom: 0.01
  15681. }
  15682. },
  15683. beans: {
  15684. height: math.unit(6 / 8, "feet"),
  15685. name: "Beans",
  15686. image: {
  15687. source: "./media/characters/pandora/beans.svg"
  15688. }
  15689. },
  15690. skirt: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(150, "lb"),
  15693. name: "Skirt",
  15694. image: {
  15695. source: "./media/characters/pandora/skirt.svg",
  15696. extra: 1622 / 1525,
  15697. bottom: 0.015
  15698. }
  15699. },
  15700. hoodie: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Hoodie",
  15704. image: {
  15705. source: "./media/characters/pandora/hoodie.svg",
  15706. extra: 1622 / 1525,
  15707. bottom: 0.015
  15708. }
  15709. },
  15710. casual: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(150, "lb"),
  15713. name: "Casual",
  15714. image: {
  15715. source: "./media/characters/pandora/casual.svg",
  15716. extra: 1622 / 1525,
  15717. bottom: 0.015
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Normal",
  15724. height: math.unit(6, "feet")
  15725. },
  15726. {
  15727. name: "Big Steppy",
  15728. height: math.unit(1, "km"),
  15729. default: true
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15735. {
  15736. side: {
  15737. height: math.unit(10, "feet"),
  15738. weight: math.unit(800, "kg"),
  15739. name: "Side",
  15740. image: {
  15741. source: "./media/characters/venio-darcony/side.svg",
  15742. extra: 1373 / 1003,
  15743. bottom: 0.037
  15744. }
  15745. },
  15746. front: {
  15747. height: math.unit(19, "feet"),
  15748. weight: math.unit(800, "kg"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/venio-darcony/front.svg"
  15752. }
  15753. },
  15754. back: {
  15755. height: math.unit(19, "feet"),
  15756. weight: math.unit(800, "kg"),
  15757. name: "Back",
  15758. image: {
  15759. source: "./media/characters/venio-darcony/back.svg"
  15760. }
  15761. },
  15762. sideNsfw: {
  15763. height: math.unit(10, "feet"),
  15764. weight: math.unit(800, "kg"),
  15765. name: "Side (NSFW)",
  15766. image: {
  15767. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15768. extra: 1373 / 1003,
  15769. bottom: 0.037
  15770. }
  15771. },
  15772. frontNsfw: {
  15773. height: math.unit(19, "feet"),
  15774. weight: math.unit(800, "kg"),
  15775. name: "Front (NSFW)",
  15776. image: {
  15777. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15778. }
  15779. },
  15780. backNsfw: {
  15781. height: math.unit(19, "feet"),
  15782. weight: math.unit(800, "kg"),
  15783. name: "Back (NSFW)",
  15784. image: {
  15785. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15786. }
  15787. },
  15788. sideArmored: {
  15789. height: math.unit(10, "feet"),
  15790. weight: math.unit(800, "kg"),
  15791. name: "Side (Armored)",
  15792. image: {
  15793. source: "./media/characters/venio-darcony/side-armored.svg",
  15794. extra: 1373 / 1003,
  15795. bottom: 0.037
  15796. }
  15797. },
  15798. frontArmored: {
  15799. height: math.unit(19, "feet"),
  15800. weight: math.unit(900, "kg"),
  15801. name: "Front (Armored)",
  15802. image: {
  15803. source: "./media/characters/venio-darcony/front-armored.svg"
  15804. }
  15805. },
  15806. backArmored: {
  15807. height: math.unit(19, "feet"),
  15808. weight: math.unit(900, "kg"),
  15809. name: "Back (Armored)",
  15810. image: {
  15811. source: "./media/characters/venio-darcony/back-armored.svg"
  15812. }
  15813. },
  15814. sword: {
  15815. height: math.unit(10, "feet"),
  15816. weight: math.unit(50, "lb"),
  15817. name: "Sword",
  15818. image: {
  15819. source: "./media/characters/venio-darcony/sword.svg"
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(10, "feet")
  15827. },
  15828. {
  15829. name: "Macro",
  15830. height: math.unit(130, "feet"),
  15831. default: true
  15832. },
  15833. {
  15834. name: "Macro+",
  15835. height: math.unit(240, "feet")
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/veski/front.svg",
  15848. extra: 1299 / 1225,
  15849. bottom: 0.04
  15850. }
  15851. },
  15852. back: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Back",
  15856. image: {
  15857. source: "./media/characters/veski/back.svg",
  15858. extra: 1299 / 1225,
  15859. bottom: 0.008
  15860. }
  15861. },
  15862. maw: {
  15863. height: math.unit(1.5 * 1.21, "feet"),
  15864. name: "Maw",
  15865. image: {
  15866. source: "./media/characters/veski/maw.svg"
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Macro",
  15873. height: math.unit(2, "km"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(5 + 7 / 12, "feet"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/isabelle/front.svg",
  15886. extra: 2130 / 1976,
  15887. bottom: 0.05
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Supermicro",
  15894. height: math.unit(10, "micrometers")
  15895. },
  15896. {
  15897. name: "Micro",
  15898. height: math.unit(1, "inch")
  15899. },
  15900. {
  15901. name: "Tiny",
  15902. height: math.unit(5, "inches")
  15903. },
  15904. {
  15905. name: "Standard",
  15906. height: math.unit(5 + 7 / 12, "inches")
  15907. },
  15908. {
  15909. name: "Macro",
  15910. height: math.unit(80, "meters"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Megamacro",
  15915. height: math.unit(250, "meters")
  15916. },
  15917. {
  15918. name: "Gigamacro",
  15919. height: math.unit(5, "km")
  15920. },
  15921. {
  15922. name: "Cosmic",
  15923. height: math.unit(2.5e6, "miles")
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(6, "feet"),
  15932. weight: math.unit(150, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/hanzo/front.svg",
  15936. extra: 374 / 344,
  15937. bottom: 0.02
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(8, "feet"),
  15945. default: true
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15951. {
  15952. front: {
  15953. height: math.unit(7, "feet"),
  15954. weight: math.unit(130, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/anna/front.svg",
  15958. extra: 169 / 145,
  15959. bottom: 0.06
  15960. }
  15961. },
  15962. full: {
  15963. height: math.unit(4.96, "feet"),
  15964. weight: math.unit(220, "lb"),
  15965. name: "Full",
  15966. image: {
  15967. source: "./media/characters/anna/full.svg",
  15968. extra: 138 / 114,
  15969. bottom: 0.15
  15970. }
  15971. },
  15972. tongue: {
  15973. height: math.unit(2.53, "feet"),
  15974. name: "Tongue",
  15975. image: {
  15976. source: "./media/characters/anna/tongue.svg"
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(7, "feet"),
  15984. default: true
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(7, "feet"),
  15993. weight: math.unit(150, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/ian-corvid/front.svg",
  15997. extra: 150 / 142,
  15998. bottom: 0.02
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(7, "feet"),
  16003. weight: math.unit(150, "lb"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/ian-corvid/back.svg",
  16007. extra: 150 / 143,
  16008. bottom: 0.01
  16009. }
  16010. },
  16011. stomping: {
  16012. height: math.unit(7, "feet"),
  16013. weight: math.unit(150, "lb"),
  16014. name: "Stomping",
  16015. image: {
  16016. source: "./media/characters/ian-corvid/stomping.svg",
  16017. extra: 76 / 72
  16018. }
  16019. },
  16020. sitting: {
  16021. height: math.unit(7 / 1.8, "feet"),
  16022. weight: math.unit(150, "lb"),
  16023. name: "Sitting",
  16024. image: {
  16025. source: "./media/characters/ian-corvid/sitting.svg",
  16026. extra: 1400 / 1269,
  16027. bottom: 0.15
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Tiny Microw",
  16034. height: math.unit(1, "inch")
  16035. },
  16036. {
  16037. name: "Microw",
  16038. height: math.unit(6, "inches")
  16039. },
  16040. {
  16041. name: "Crow",
  16042. height: math.unit(7 + 1 / 12, "feet"),
  16043. default: true
  16044. },
  16045. {
  16046. name: "Macrow",
  16047. height: math.unit(176, "feet")
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16053. {
  16054. front: {
  16055. height: math.unit(5 + 7 / 12, "feet"),
  16056. weight: math.unit(147, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/natalie-kellon/front.svg",
  16060. extra: 1214 / 1141,
  16061. bottom: 0.02
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Micro",
  16068. height: math.unit(1 / 16, "inch")
  16069. },
  16070. {
  16071. name: "Tiny",
  16072. height: math.unit(4, "inches")
  16073. },
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(5 + 7 / 12, "feet"),
  16077. default: true
  16078. },
  16079. {
  16080. name: "Amazon",
  16081. height: math.unit(12, "feet")
  16082. },
  16083. {
  16084. name: "Giantess",
  16085. height: math.unit(160, "meters")
  16086. },
  16087. {
  16088. name: "Titaness",
  16089. height: math.unit(800, "meters")
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(6, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/alluria/front.svg",
  16102. extra: 806 / 738,
  16103. bottom: 0.01
  16104. }
  16105. },
  16106. side: {
  16107. height: math.unit(6, "feet"),
  16108. weight: math.unit(150, "lb"),
  16109. name: "Side",
  16110. image: {
  16111. source: "./media/characters/alluria/side.svg",
  16112. extra: 800 / 750,
  16113. }
  16114. },
  16115. back: {
  16116. height: math.unit(6, "feet"),
  16117. weight: math.unit(150, "lb"),
  16118. name: "Back",
  16119. image: {
  16120. source: "./media/characters/alluria/back.svg",
  16121. extra: 806 / 738,
  16122. }
  16123. },
  16124. frontMaid: {
  16125. height: math.unit(6, "feet"),
  16126. weight: math.unit(150, "lb"),
  16127. name: "Front (Maid)",
  16128. image: {
  16129. source: "./media/characters/alluria/front-maid.svg",
  16130. extra: 806 / 738,
  16131. bottom: 0.01
  16132. }
  16133. },
  16134. sideMaid: {
  16135. height: math.unit(6, "feet"),
  16136. weight: math.unit(150, "lb"),
  16137. name: "Side (Maid)",
  16138. image: {
  16139. source: "./media/characters/alluria/side-maid.svg",
  16140. extra: 800 / 750,
  16141. bottom: 0.005
  16142. }
  16143. },
  16144. backMaid: {
  16145. height: math.unit(6, "feet"),
  16146. weight: math.unit(150, "lb"),
  16147. name: "Back (Maid)",
  16148. image: {
  16149. source: "./media/characters/alluria/back-maid.svg",
  16150. extra: 806 / 738,
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Micro",
  16157. height: math.unit(6, "inches"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/kyle/front.svg",
  16171. extra: 1069 / 962,
  16172. bottom: 77.228 / 1727.45
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(150, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(300, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/duncan/front.svg",
  16193. extra: 1650 / 1482,
  16194. bottom: 0.05
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Macro",
  16201. height: math.unit(100, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(5 + 4 / 12, "feet"),
  16211. weight: math.unit(220, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/memory/front.svg",
  16215. extra: 3641 / 3545,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. back: {
  16220. height: math.unit(5 + 4 / 12, "feet"),
  16221. weight: math.unit(220, "lb"),
  16222. name: "Back",
  16223. image: {
  16224. source: "./media/characters/memory/back.svg",
  16225. extra: 3641 / 3545,
  16226. bottom: 0.025
  16227. }
  16228. },
  16229. frontSkirt: {
  16230. height: math.unit(5 + 4 / 12, "feet"),
  16231. weight: math.unit(220, "lb"),
  16232. name: "Front (Skirt)",
  16233. image: {
  16234. source: "./media/characters/memory/front-skirt.svg",
  16235. extra: 3641 / 3545,
  16236. bottom: 0.03
  16237. }
  16238. },
  16239. frontDress: {
  16240. height: math.unit(5 + 4 / 12, "feet"),
  16241. weight: math.unit(220, "lb"),
  16242. name: "Front (Dress)",
  16243. image: {
  16244. source: "./media/characters/memory/front-dress.svg",
  16245. extra: 3641 / 3545,
  16246. bottom: 0.03
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(6, "inches"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Normal",
  16258. height: math.unit(5 + 4 / 12, "feet")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(4 + 11 / 12, "feet"),
  16267. weight: math.unit(100, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/luno/front.svg",
  16271. extra: 1535 / 1487,
  16272. bottom: 0.03
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Micro",
  16279. height: math.unit(3, "inches")
  16280. },
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(4 + 11 / 12, "feet"),
  16284. default: true
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(300, "feet")
  16289. },
  16290. {
  16291. name: "Megamacro",
  16292. height: math.unit(700, "miles")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(6 + 2 / 12, "feet"),
  16301. weight: math.unit(170, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/jamesy/front.svg",
  16305. extra: 440 / 382,
  16306. bottom: 0.005
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Micro",
  16313. height: math.unit(3, "inches")
  16314. },
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(6 + 2 / 12, "feet"),
  16318. default: true
  16319. },
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(300, "feet")
  16323. },
  16324. {
  16325. name: "Megamacro",
  16326. height: math.unit(700, "miles")
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(160, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/mark/front.svg",
  16339. extra: 3300 / 3100,
  16340. bottom: 136.42 / 3440.47
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Macro",
  16347. height: math.unit(120, "meters")
  16348. },
  16349. {
  16350. name: "Bigger Macro",
  16351. height: math.unit(350, "meters")
  16352. },
  16353. {
  16354. name: "Megamacro",
  16355. height: math.unit(8, "km"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Continental",
  16360. height: math.unit(4550, "km")
  16361. },
  16362. {
  16363. name: "Planetary",
  16364. height: math.unit(65000, "km")
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(6, "feet"),
  16373. weight: math.unit(400, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/mac/front.svg",
  16377. extra: 1048 / 987.7,
  16378. bottom: 60 / 1107.6,
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Macro",
  16385. height: math.unit(500, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(5 + 2 / 12, "feet"),
  16395. weight: math.unit(190, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/bari/front.svg",
  16399. extra: 3156 / 2880,
  16400. bottom: 0.03
  16401. }
  16402. },
  16403. back: {
  16404. height: math.unit(5 + 2 / 12, "feet"),
  16405. weight: math.unit(190, "lb"),
  16406. name: "Back",
  16407. image: {
  16408. source: "./media/characters/bari/back.svg",
  16409. extra: 3260 / 2834,
  16410. bottom: 0.025
  16411. }
  16412. },
  16413. frontPlush: {
  16414. height: math.unit(5 + 2 / 12, "feet"),
  16415. weight: math.unit(190, "lb"),
  16416. name: "Front (Plush)",
  16417. image: {
  16418. source: "./media/characters/bari/front-plush.svg",
  16419. extra: 1112 / 1061,
  16420. bottom: 0.002
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Micro",
  16427. height: math.unit(3, "inches")
  16428. },
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(5 + 2 / 12, "feet"),
  16432. default: true
  16433. },
  16434. {
  16435. name: "Macro",
  16436. height: math.unit(20, "feet")
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(6 + 1 / 12, "feet"),
  16445. weight: math.unit(275, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/hunter-misha-raven/front.svg"
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Mortal",
  16455. height: math.unit(6 + 1 / 12, "feet")
  16456. },
  16457. {
  16458. name: "Divine",
  16459. height: math.unit(1.12134e34, "parsecs"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(6 + 3 / 12, "feet"),
  16469. weight: math.unit(220, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/max-calore/front.svg",
  16473. extra: 1700 / 1648,
  16474. bottom: 0.01
  16475. }
  16476. },
  16477. back: {
  16478. height: math.unit(6 + 3 / 12, "feet"),
  16479. weight: math.unit(220, "lb"),
  16480. name: "Back",
  16481. image: {
  16482. source: "./media/characters/max-calore/back.svg",
  16483. extra: 1700 / 1648,
  16484. bottom: 0.01
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(6 + 3 / 12, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16498. {
  16499. side: {
  16500. height: math.unit(2 + 8 / 12, "feet"),
  16501. weight: math.unit(99, "lb"),
  16502. name: "Side",
  16503. image: {
  16504. source: "./media/characters/aspen/side.svg",
  16505. extra: 152 / 138,
  16506. bottom: 0.032
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(2 + 8 / 12, "feet"),
  16514. default: true
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16520. {
  16521. side: {
  16522. height: math.unit(3 + 2 / 12, "feet"),
  16523. weight: math.unit(224, "lb"),
  16524. name: "Side",
  16525. image: {
  16526. source: "./media/characters/sheila-feral-wolf/side.svg",
  16527. extra: 179 / 166,
  16528. bottom: 0.03
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Normal",
  16535. height: math.unit(3 + 2 / 12, "feet"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16542. {
  16543. side: {
  16544. height: math.unit(1 + 9 / 12, "feet"),
  16545. weight: math.unit(38, "lb"),
  16546. name: "Side",
  16547. image: {
  16548. source: "./media/characters/michelle/side.svg",
  16549. extra: 147 / 136.7,
  16550. bottom: 0.03
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(1 + 9 / 12, "feet"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(1 + 1 / 12, "feet"),
  16567. weight: math.unit(18, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/nino/front.svg"
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(1 + 1 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(1, "feet"),
  16587. weight: math.unit(16, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/viola/front.svg"
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(1, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16604. {
  16605. front: {
  16606. height: math.unit(6 + 5 / 12, "feet"),
  16607. weight: math.unit(580, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/atlas/front.svg",
  16611. extra: 298.5 / 290,
  16612. bottom: 0.015
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(6 + 5 / 12, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16626. {
  16627. side: {
  16628. height: math.unit(1 + 10 / 12, "feet"),
  16629. weight: math.unit(25, "lb"),
  16630. name: "Side",
  16631. image: {
  16632. source: "./media/characters/davy/side.svg",
  16633. extra: 200 / 170,
  16634. bottom: 0.01
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(1 + 10 / 12, "feet"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16648. {
  16649. side: {
  16650. height: math.unit(4 + 8 / 12, "feet"),
  16651. weight: math.unit(166, "lb"),
  16652. name: "Side",
  16653. image: {
  16654. source: "./media/characters/fiona/side.svg",
  16655. extra: 232 / 220,
  16656. bottom: 0.03
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(4 + 8 / 12, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16670. {
  16671. front: {
  16672. height: math.unit(2, "feet"),
  16673. weight: math.unit(62, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/lyla/front.svg",
  16677. bottom: 0.1
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(2, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16691. {
  16692. side: {
  16693. height: math.unit(1.8, "feet"),
  16694. weight: math.unit(44, "lb"),
  16695. name: "Side",
  16696. image: {
  16697. source: "./media/characters/perseus/side.svg",
  16698. bottom: 0.21
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(1.8, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16712. {
  16713. side: {
  16714. height: math.unit(4 + 2 / 12, "feet"),
  16715. weight: math.unit(20, "lb"),
  16716. name: "Side",
  16717. image: {
  16718. source: "./media/characters/remus/side.svg"
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(4 + 2 / 12, "feet"),
  16726. default: true
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(4 + 11 / 12, "feet"),
  16735. weight: math.unit(114, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/raf/front.svg",
  16739. bottom: 20.5 / 1863
  16740. }
  16741. },
  16742. side: {
  16743. height: math.unit(4 + 11 / 12, "feet"),
  16744. weight: math.unit(114, "lb"),
  16745. name: "Side",
  16746. image: {
  16747. source: "./media/characters/raf/side.svg",
  16748. bottom: 22 / 1822
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Micro",
  16755. height: math.unit(2, "inches")
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(4 + 11 / 12, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Macro",
  16764. height: math.unit(70, "feet")
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(1.5, "meters"),
  16773. weight: math.unit(68, "kg"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/liam-einarr/front.svg",
  16777. extra: 2822 / 2666
  16778. }
  16779. },
  16780. back: {
  16781. height: math.unit(1.5, "meters"),
  16782. weight: math.unit(68, "kg"),
  16783. name: "Back",
  16784. image: {
  16785. source: "./media/characters/liam-einarr/back.svg",
  16786. extra: 2822 / 2666,
  16787. bottom: 0.015
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(1.5, "meters"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macro",
  16799. height: math.unit(150, "meters")
  16800. },
  16801. {
  16802. name: "Megamacro",
  16803. height: math.unit(35, "km")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6, "feet"),
  16812. weight: math.unit(75, "kg"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/linda/front.svg",
  16816. extra: 930 / 874,
  16817. bottom: 0.004
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(6, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(6 + 8 / 12, "feet"),
  16834. weight: math.unit(220, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/caylex/front.svg",
  16838. extra: 821 / 772,
  16839. bottom: 0.07
  16840. }
  16841. },
  16842. back: {
  16843. height: math.unit(6 + 8 / 12, "feet"),
  16844. weight: math.unit(220, "lb"),
  16845. name: "Back",
  16846. image: {
  16847. source: "./media/characters/caylex/back.svg",
  16848. extra: 821 / 772,
  16849. bottom: 0.022
  16850. }
  16851. },
  16852. hand: {
  16853. height: math.unit(1.25, "feet"),
  16854. name: "Hand",
  16855. image: {
  16856. source: "./media/characters/caylex/hand.svg"
  16857. }
  16858. },
  16859. foot: {
  16860. height: math.unit(1.6, "feet"),
  16861. name: "Foot",
  16862. image: {
  16863. source: "./media/characters/caylex/foot.svg"
  16864. }
  16865. },
  16866. armored: {
  16867. height: math.unit(6 + 8 / 12, "feet"),
  16868. weight: math.unit(250, "lb"),
  16869. name: "Armored",
  16870. image: {
  16871. source: "./media/characters/caylex/armored.svg",
  16872. extra: 1420 / 1310,
  16873. bottom: 0.045
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(6 + 8 / 12, "feet"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Normal+",
  16885. height: math.unit(12, "feet")
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(7 + 6 / 12, "feet"),
  16894. weight: math.unit(288, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/alana/front.svg",
  16898. extra: 679 / 653,
  16899. bottom: 22.5 / 701
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(7 + 6 / 12, "feet")
  16907. },
  16908. {
  16909. name: "Large",
  16910. height: math.unit(50, "feet")
  16911. },
  16912. {
  16913. name: "Macro",
  16914. height: math.unit(100, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro+",
  16919. height: math.unit(200, "feet")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(6 + 1 / 12, "feet"),
  16928. weight: math.unit(210, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/hasani/front.svg",
  16932. extra: 244 / 232,
  16933. bottom: 0.01
  16934. }
  16935. },
  16936. back: {
  16937. height: math.unit(6 + 1 / 12, "feet"),
  16938. weight: math.unit(210, "lb"),
  16939. name: "Back",
  16940. image: {
  16941. source: "./media/characters/hasani/back.svg",
  16942. extra: 244 / 232,
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(6 + 1 / 12, "feet")
  16951. },
  16952. {
  16953. name: "Macro",
  16954. height: math.unit(175, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16961. {
  16962. front: {
  16963. height: math.unit(1.82, "meters"),
  16964. weight: math.unit(140, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/nita/front.svg",
  16968. extra: 2473 / 2363,
  16969. bottom: 0.01
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(1.82, "m")
  16977. },
  16978. {
  16979. name: "Macro",
  16980. height: math.unit(300, "m")
  16981. },
  16982. {
  16983. name: "Mistake Canon",
  16984. height: math.unit(0.5, "miles"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Big Mistake",
  16989. height: math.unit(13, "miles")
  16990. },
  16991. {
  16992. name: "Playing God",
  16993. height: math.unit(2450, "miles")
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(4, "feet"),
  17002. weight: math.unit(120, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/shiriko/front.svg",
  17006. extra: 195 / 188
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(4, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(6, "feet"),
  17023. name: "front",
  17024. image: {
  17025. source: "./media/characters/deja/front.svg",
  17026. extra: 926 / 840,
  17027. bottom: 0.07
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Planck Length",
  17034. height: math.unit(1.6e-35, "meters")
  17035. },
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(30.48, "meters"),
  17039. default: true
  17040. },
  17041. {
  17042. name: "Universal",
  17043. height: math.unit(8.8e26, "meters")
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17049. {
  17050. side: {
  17051. height: math.unit(8, "feet"),
  17052. weight: math.unit(6300, "lb"),
  17053. name: "Side",
  17054. image: {
  17055. source: "./media/characters/anima/side.svg",
  17056. bottom: 0.035
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(8, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(8, "feet"),
  17073. weight: math.unit(350, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/bianca/front.svg",
  17077. extra: 234 / 225,
  17078. bottom: 0.03
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(8, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(150, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/adinia/front.svg",
  17099. extra: 1845 / 1672,
  17100. bottom: 0.02
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/adinia/back.svg",
  17109. extra: 1845 / 1672,
  17110. bottom: 0.002
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(11 + 5 / 12, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(3, "meters"),
  17127. weight: math.unit(200, "kg"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/lykasa/front.svg",
  17131. extra: 1076 / 976,
  17132. bottom: 0.06
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(3, "meters")
  17140. },
  17141. {
  17142. name: "Kaiju",
  17143. height: math.unit(120, "meters"),
  17144. default: true
  17145. },
  17146. {
  17147. name: "Mega Kaiju",
  17148. height: math.unit(240, "km")
  17149. },
  17150. {
  17151. name: "Giga Kaiju",
  17152. height: math.unit(400, "megameters")
  17153. },
  17154. {
  17155. name: "Tera Kaiju",
  17156. height: math.unit(800, "gigameters")
  17157. },
  17158. {
  17159. name: "Kaiju Dragon Goddess",
  17160. height: math.unit(26, "zettaparsecs")
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17166. {
  17167. side: {
  17168. height: math.unit(283 / 124 * 6, "feet"),
  17169. weight: math.unit(35000, "lb"),
  17170. name: "Side",
  17171. image: {
  17172. source: "./media/characters/malfaren/side.svg",
  17173. extra: 2500 / 1010,
  17174. bottom: 0.01
  17175. }
  17176. },
  17177. front: {
  17178. height: math.unit(22.36, "feet"),
  17179. weight: math.unit(35000, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/malfaren/front.svg",
  17183. extra: 1631 / 1476,
  17184. bottom: 0.01
  17185. }
  17186. },
  17187. maw: {
  17188. height: math.unit(6.9, "feet"),
  17189. name: "Maw",
  17190. image: {
  17191. source: "./media/characters/malfaren/maw.svg"
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Big",
  17198. height: math.unit(283 / 162 * 6, "feet"),
  17199. },
  17200. {
  17201. name: "Bigger",
  17202. height: math.unit(283 / 124 * 6, "feet")
  17203. },
  17204. {
  17205. name: "Massive",
  17206. height: math.unit(283 / 92 * 6, "feet"),
  17207. default: true
  17208. },
  17209. {
  17210. name: "👀💦",
  17211. height: math.unit(283 / 73 * 6, "feet"),
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17217. {
  17218. front: {
  17219. height: math.unit(1.7, "m"),
  17220. weight: math.unit(70, "kg"),
  17221. name: "Front",
  17222. image: {
  17223. source: "./media/characters/kernel/front.svg",
  17224. extra: 222 / 210,
  17225. bottom: 0.007
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Nano",
  17232. height: math.unit(17, "micrometers")
  17233. },
  17234. {
  17235. name: "Micro",
  17236. height: math.unit(1.7, "mm")
  17237. },
  17238. {
  17239. name: "Small",
  17240. height: math.unit(1.7, "cm")
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(1.7, "m"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(1.75, "meters"),
  17254. weight: math.unit(65, "kg"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/jayne-folest/front.svg",
  17258. extra: 2115 / 2007,
  17259. bottom: 0.02
  17260. }
  17261. },
  17262. back: {
  17263. height: math.unit(1.75, "meters"),
  17264. weight: math.unit(65, "kg"),
  17265. name: "Back",
  17266. image: {
  17267. source: "./media/characters/jayne-folest/back.svg",
  17268. extra: 2115 / 2007,
  17269. bottom: 0.005
  17270. }
  17271. },
  17272. frontClothed: {
  17273. height: math.unit(1.75, "meters"),
  17274. weight: math.unit(65, "kg"),
  17275. name: "Front (Clothed)",
  17276. image: {
  17277. source: "./media/characters/jayne-folest/front-clothed.svg",
  17278. extra: 2115 / 2007,
  17279. bottom: 0.035
  17280. }
  17281. },
  17282. hand: {
  17283. height: math.unit(1 / 1.260, "feet"),
  17284. name: "Hand",
  17285. image: {
  17286. source: "./media/characters/jayne-folest/hand.svg"
  17287. }
  17288. },
  17289. foot: {
  17290. height: math.unit(1 / 0.918, "feet"),
  17291. name: "Foot",
  17292. image: {
  17293. source: "./media/characters/jayne-folest/foot.svg"
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Micro",
  17300. height: math.unit(4, "cm")
  17301. },
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(1.75, "meters")
  17305. },
  17306. {
  17307. name: "Macro",
  17308. height: math.unit(47.5, "meters"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(180, "cm"),
  17318. weight: math.unit(70, "kg"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/algier/front.svg",
  17322. extra: 596 / 572,
  17323. bottom: 0.04
  17324. }
  17325. },
  17326. back: {
  17327. height: math.unit(180, "cm"),
  17328. weight: math.unit(70, "kg"),
  17329. name: "Back",
  17330. image: {
  17331. source: "./media/characters/algier/back.svg",
  17332. extra: 596 / 572,
  17333. bottom: 0.025
  17334. }
  17335. },
  17336. frontdressed: {
  17337. height: math.unit(180, "cm"),
  17338. weight: math.unit(150, "kg"),
  17339. name: "Front-dressed",
  17340. image: {
  17341. source: "./media/characters/algier/front-dressed.svg",
  17342. extra: 596 / 572,
  17343. bottom: 0.038
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Micro",
  17350. height: math.unit(5, "cm")
  17351. },
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(180, "cm"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Macro",
  17359. height: math.unit(64, "m")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17365. {
  17366. upright: {
  17367. height: math.unit(7, "feet"),
  17368. weight: math.unit(300, "lb"),
  17369. name: "Upright",
  17370. image: {
  17371. source: "./media/characters/pretzel/upright.svg",
  17372. extra: 534 / 522,
  17373. bottom: 0.065
  17374. }
  17375. },
  17376. sprawling: {
  17377. height: math.unit(3.75, "feet"),
  17378. weight: math.unit(300, "lb"),
  17379. name: "Sprawling",
  17380. image: {
  17381. source: "./media/characters/pretzel/sprawling.svg",
  17382. extra: 314 / 281,
  17383. bottom: 0.1
  17384. }
  17385. },
  17386. tongue: {
  17387. height: math.unit(2, "feet"),
  17388. name: "Tongue",
  17389. image: {
  17390. source: "./media/characters/pretzel/tongue.svg"
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(7, "feet"),
  17398. default: true
  17399. },
  17400. {
  17401. name: "Oversized",
  17402. height: math.unit(15, "feet")
  17403. },
  17404. {
  17405. name: "Huge",
  17406. height: math.unit(30, "feet")
  17407. },
  17408. {
  17409. name: "Macro",
  17410. height: math.unit(250, "feet")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17416. {
  17417. sideFront: {
  17418. height: math.unit(5 + 2 / 12, "feet"),
  17419. weight: math.unit(120, "lb"),
  17420. name: "Front Side",
  17421. image: {
  17422. source: "./media/characters/roxi/side-front.svg",
  17423. extra: 2924 / 2717,
  17424. bottom: 0.08
  17425. }
  17426. },
  17427. sideBack: {
  17428. height: math.unit(5 + 2 / 12, "feet"),
  17429. weight: math.unit(120, "lb"),
  17430. name: "Back Side",
  17431. image: {
  17432. source: "./media/characters/roxi/side-back.svg",
  17433. extra: 2904 / 2693,
  17434. bottom: 0.06
  17435. }
  17436. },
  17437. front: {
  17438. height: math.unit(5 + 2 / 12, "feet"),
  17439. weight: math.unit(120, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/roxi/front.svg",
  17443. extra: 2028 / 1907,
  17444. bottom: 0.01
  17445. }
  17446. },
  17447. frontAlt: {
  17448. height: math.unit(5 + 2 / 12, "feet"),
  17449. weight: math.unit(120, "lb"),
  17450. name: "Front (Alt)",
  17451. image: {
  17452. source: "./media/characters/roxi/front-alt.svg",
  17453. extra: 1828 / 1798,
  17454. bottom: 0.01
  17455. }
  17456. },
  17457. sitting: {
  17458. height: math.unit(2.8, "feet"),
  17459. weight: math.unit(120, "lb"),
  17460. name: "Sitting",
  17461. image: {
  17462. source: "./media/characters/roxi/sitting.svg",
  17463. extra: 2660 / 2462,
  17464. bottom: 0.1
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(5 + 2 / 12, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17478. {
  17479. side: {
  17480. height: math.unit(55, "feet"),
  17481. weight: math.unit(153, "tons"),
  17482. name: "Side",
  17483. image: {
  17484. source: "./media/characters/shadow/side.svg",
  17485. extra: 701 / 628,
  17486. bottom: 0.02
  17487. }
  17488. },
  17489. flying: {
  17490. height: math.unit(145, "feet"),
  17491. weight: math.unit(153, "tons"),
  17492. name: "Flying",
  17493. image: {
  17494. source: "./media/characters/shadow/flying.svg"
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(55, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(6, "feet"),
  17511. weight: math.unit(200, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/marcie/front.svg",
  17515. extra: 960 / 876,
  17516. bottom: 58 / 1017.87
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Macro",
  17523. height: math.unit(1, "mile"),
  17524. default: true
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(7, "feet"),
  17533. weight: math.unit(200, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/kachina/front.svg",
  17537. extra: 1290.68 / 1119,
  17538. bottom: 36.5 / 1327.18
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(7, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17552. {
  17553. looking: {
  17554. height: math.unit(2, "meters"),
  17555. weight: math.unit(300, "kg"),
  17556. name: "Looking",
  17557. image: {
  17558. source: "./media/characters/kash/looking.svg",
  17559. extra: 474 / 344,
  17560. bottom: 0.03
  17561. }
  17562. },
  17563. side: {
  17564. height: math.unit(2, "meters"),
  17565. weight: math.unit(300, "kg"),
  17566. name: "Side",
  17567. image: {
  17568. source: "./media/characters/kash/side.svg",
  17569. extra: 302 / 251,
  17570. bottom: 0.03
  17571. }
  17572. },
  17573. front: {
  17574. height: math.unit(2, "meters"),
  17575. weight: math.unit(300, "kg"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/kash/front.svg",
  17579. extra: 495 / 360,
  17580. bottom: 0.015
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(2, "meters"),
  17588. default: true
  17589. },
  17590. {
  17591. name: "Big",
  17592. height: math.unit(3, "meters")
  17593. },
  17594. {
  17595. name: "Large",
  17596. height: math.unit(5, "meters")
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17602. {
  17603. feeding: {
  17604. height: math.unit(6.7, "feet"),
  17605. weight: math.unit(350, "lb"),
  17606. name: "Feeding",
  17607. image: {
  17608. source: "./media/characters/lalim/feeding.svg",
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(6.7, "feet"),
  17616. default: true
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(9.5, "feet"),
  17625. weight: math.unit(600, "lb"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/de'vout/front.svg",
  17629. extra: 1443 / 1328,
  17630. bottom: 0.025
  17631. }
  17632. },
  17633. back: {
  17634. height: math.unit(9.5, "feet"),
  17635. weight: math.unit(600, "lb"),
  17636. name: "Back",
  17637. image: {
  17638. source: "./media/characters/de'vout/back.svg",
  17639. extra: 1443 / 1328
  17640. }
  17641. },
  17642. frontDressed: {
  17643. height: math.unit(9.5, "feet"),
  17644. weight: math.unit(600, "lb"),
  17645. name: "Front (Dressed",
  17646. image: {
  17647. source: "./media/characters/de'vout/front-dressed.svg",
  17648. extra: 1443 / 1328,
  17649. bottom: 0.025
  17650. }
  17651. },
  17652. backDressed: {
  17653. height: math.unit(9.5, "feet"),
  17654. weight: math.unit(600, "lb"),
  17655. name: "Back (Dressed",
  17656. image: {
  17657. source: "./media/characters/de'vout/back-dressed.svg",
  17658. extra: 1443 / 1328
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(9.5, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(8, "feet"),
  17675. weight: math.unit(225, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/talana/front.svg",
  17679. extra: 1410 / 1300,
  17680. bottom: 0.015
  17681. }
  17682. },
  17683. frontDressed: {
  17684. height: math.unit(8, "feet"),
  17685. weight: math.unit(225, "lb"),
  17686. name: "Front (Dressed",
  17687. image: {
  17688. source: "./media/characters/talana/front-dressed.svg",
  17689. extra: 1410 / 1300,
  17690. bottom: 0.015
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(8, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17704. {
  17705. side: {
  17706. height: math.unit(7.2, "feet"),
  17707. weight: math.unit(150, "lb"),
  17708. name: "Side",
  17709. image: {
  17710. source: "./media/characters/xeauvok/side.svg",
  17711. extra: 1975 / 1523,
  17712. bottom: 0.07
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(7.2, "feet"),
  17720. default: true
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17726. {
  17727. side: {
  17728. height: math.unit(10, "feet"),
  17729. weight: math.unit(900, "kg"),
  17730. name: "Side",
  17731. image: {
  17732. source: "./media/characters/zara/side.svg",
  17733. extra: 504 / 498
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(10, "feet"),
  17741. default: true
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17747. {
  17748. side: {
  17749. height: math.unit(6, "feet"),
  17750. weight: math.unit(150, "lb"),
  17751. name: "Side",
  17752. image: {
  17753. source: "./media/characters/richard-dragon/side.svg",
  17754. extra: 845 / 340,
  17755. bottom: 0.017
  17756. }
  17757. },
  17758. maw: {
  17759. height: math.unit(2.97, "feet"),
  17760. name: "Maw",
  17761. image: {
  17762. source: "./media/characters/richard-dragon/maw.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(4, "feet"),
  17774. weight: math.unit(100, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/richard-smeargle/front.svg",
  17778. extra: 2952 / 2820,
  17779. bottom: 0.028
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(4, "feet"),
  17787. default: true
  17788. },
  17789. {
  17790. name: "Dynamax",
  17791. height: math.unit(20, "meters")
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17797. {
  17798. front: {
  17799. height: math.unit(6, "feet"),
  17800. weight: math.unit(110, "lb"),
  17801. name: "Front",
  17802. image: {
  17803. source: "./media/characters/klay/front.svg",
  17804. extra: 962 / 883,
  17805. bottom: 0.04
  17806. }
  17807. },
  17808. back: {
  17809. height: math.unit(6, "feet"),
  17810. weight: math.unit(110, "lb"),
  17811. name: "Back",
  17812. image: {
  17813. source: "./media/characters/klay/back.svg",
  17814. extra: 962 / 883
  17815. }
  17816. },
  17817. beans: {
  17818. height: math.unit(1.15, "feet"),
  17819. name: "Beans",
  17820. image: {
  17821. source: "./media/characters/klay/beans.svg"
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Micro",
  17828. height: math.unit(6, "inches")
  17829. },
  17830. {
  17831. name: "Mini",
  17832. height: math.unit(3, "feet")
  17833. },
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(6, "feet"),
  17837. default: true
  17838. },
  17839. {
  17840. name: "Big",
  17841. height: math.unit(25, "feet")
  17842. },
  17843. {
  17844. name: "Macro",
  17845. height: math.unit(100, "feet")
  17846. },
  17847. {
  17848. name: "Megamacro",
  17849. height: math.unit(400, "feet")
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(6, "feet"),
  17858. weight: math.unit(160, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/marcus/front.svg",
  17862. extra: 734 / 676,
  17863. bottom: 0.03
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Little",
  17870. height: math.unit(6, "feet")
  17871. },
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(110, "feet"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(250, "feet")
  17880. },
  17881. {
  17882. name: "Megamacro",
  17883. height: math.unit(1000, "feet")
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17889. {
  17890. front: {
  17891. height: math.unit(7, "feet"),
  17892. weight: math.unit(275, "lb"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/claude-delroute/front.svg",
  17896. extra: 230 / 214,
  17897. bottom: 0.007
  17898. }
  17899. },
  17900. side: {
  17901. height: math.unit(7, "feet"),
  17902. weight: math.unit(275, "lb"),
  17903. name: "Side",
  17904. image: {
  17905. source: "./media/characters/claude-delroute/side.svg",
  17906. extra: 222 / 214,
  17907. bottom: 0.01
  17908. }
  17909. },
  17910. back: {
  17911. height: math.unit(7, "feet"),
  17912. weight: math.unit(275, "lb"),
  17913. name: "Back",
  17914. image: {
  17915. source: "./media/characters/claude-delroute/back.svg",
  17916. extra: 230 / 214,
  17917. bottom: 0.015
  17918. }
  17919. },
  17920. maw: {
  17921. height: math.unit(0.6407, "meters"),
  17922. name: "Maw",
  17923. image: {
  17924. source: "./media/characters/claude-delroute/maw.svg"
  17925. }
  17926. },
  17927. },
  17928. [
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(7, "feet"),
  17932. default: true
  17933. },
  17934. {
  17935. name: "Lorge",
  17936. height: math.unit(20, "feet")
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17942. {
  17943. front: {
  17944. height: math.unit(8 + 4 / 12, "feet"),
  17945. weight: math.unit(600, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/dragonien/front.svg",
  17949. extra: 100 / 94,
  17950. bottom: 3.3 / 103.3445
  17951. }
  17952. },
  17953. back: {
  17954. height: math.unit(8 + 4 / 12, "feet"),
  17955. weight: math.unit(600, "lb"),
  17956. name: "Back",
  17957. image: {
  17958. source: "./media/characters/dragonien/back.svg",
  17959. extra: 776 / 746,
  17960. bottom: 6.4 / 782.0616
  17961. }
  17962. },
  17963. foot: {
  17964. height: math.unit(1.54, "feet"),
  17965. name: "Foot",
  17966. image: {
  17967. source: "./media/characters/dragonien/foot.svg",
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(8 + 4 / 12, "feet"),
  17975. default: true
  17976. },
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(200, "feet")
  17980. },
  17981. {
  17982. name: "Megamacro",
  17983. height: math.unit(1, "mile")
  17984. },
  17985. {
  17986. name: "Gigamacro",
  17987. height: math.unit(1000, "miles")
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17993. {
  17994. front: {
  17995. height: math.unit(5 + 2 / 12, "feet"),
  17996. weight: math.unit(110, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/desta/front.svg",
  18000. extra: 767 / 726,
  18001. bottom: 11.7 / 779
  18002. }
  18003. },
  18004. back: {
  18005. height: math.unit(5 + 2 / 12, "feet"),
  18006. weight: math.unit(110, "lb"),
  18007. name: "Back",
  18008. image: {
  18009. source: "./media/characters/desta/back.svg",
  18010. extra: 777 / 728,
  18011. bottom: 6 / 784
  18012. }
  18013. },
  18014. frontAlt: {
  18015. height: math.unit(5 + 2 / 12, "feet"),
  18016. weight: math.unit(110, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/desta/front-alt.svg",
  18020. extra: 1482 / 1417
  18021. }
  18022. },
  18023. side: {
  18024. height: math.unit(5 + 2 / 12, "feet"),
  18025. weight: math.unit(110, "lb"),
  18026. name: "Side",
  18027. image: {
  18028. source: "./media/characters/desta/side.svg",
  18029. extra: 2579 / 2491,
  18030. bottom: 0.053
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Micro",
  18037. height: math.unit(6, "inches")
  18038. },
  18039. {
  18040. name: "Normal",
  18041. height: math.unit(5 + 2 / 12, "feet"),
  18042. default: true
  18043. },
  18044. {
  18045. name: "Macro",
  18046. height: math.unit(62, "feet")
  18047. },
  18048. {
  18049. name: "Megamacro",
  18050. height: math.unit(1800, "feet")
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(10, "feet"),
  18059. weight: math.unit(700, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/storm-alystar/front.svg",
  18063. extra: 2112 / 1898,
  18064. bottom: 0.034
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Micro",
  18071. height: math.unit(3.5, "inches")
  18072. },
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(10, "feet"),
  18076. default: true
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(400, "feet")
  18081. },
  18082. {
  18083. name: "Deific",
  18084. height: math.unit(60, "miles")
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(2.35, "meters"),
  18093. weight: math.unit(119, "kg"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/ilia/front.svg",
  18097. extra: 1285 / 1255,
  18098. bottom: 0.06
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(2.35, "meters")
  18106. },
  18107. {
  18108. name: "Macro",
  18109. height: math.unit(140, "meters"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Megamacro",
  18114. height: math.unit(100, "miles")
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6 + 5 / 12, "feet"),
  18123. weight: math.unit(190, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/kingdead/front.svg",
  18127. extra: 1228 / 1177
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Micro",
  18134. height: math.unit(7, "inches")
  18135. },
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(6 + 5 / 12, "feet")
  18139. },
  18140. {
  18141. name: "Macro",
  18142. height: math.unit(150, "feet"),
  18143. default: true
  18144. },
  18145. {
  18146. name: "Megamacro",
  18147. height: math.unit(200, "miles")
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18153. {
  18154. front: {
  18155. height: math.unit(8, "feet"),
  18156. weight: math.unit(600, "lb"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/kyrehx/front.svg",
  18160. extra: 1195 / 1095,
  18161. bottom: 0.034
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Micro",
  18168. height: math.unit(2, "inches")
  18169. },
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(8, "feet"),
  18173. default: true
  18174. },
  18175. {
  18176. name: "Macro",
  18177. height: math.unit(255, "feet")
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18183. {
  18184. front: {
  18185. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18186. weight: math.unit(184, "lb"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/xang/front.svg",
  18190. extra: 845 / 755
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18198. default: true
  18199. },
  18200. {
  18201. name: "Macro",
  18202. height: math.unit(0.935 * 146, "feet")
  18203. },
  18204. {
  18205. name: "Megamacro",
  18206. height: math.unit(0.935 * 3, "miles")
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18212. {
  18213. frontDressed: {
  18214. height: math.unit(5 + 7 / 12, "feet"),
  18215. weight: math.unit(140, "lb"),
  18216. name: "Front (Dressed)",
  18217. image: {
  18218. source: "./media/characters/doc-weardno/front-dressed.svg",
  18219. extra: 263 / 234
  18220. }
  18221. },
  18222. backDressed: {
  18223. height: math.unit(5 + 7 / 12, "feet"),
  18224. weight: math.unit(140, "lb"),
  18225. name: "Back (Dressed)",
  18226. image: {
  18227. source: "./media/characters/doc-weardno/back-dressed.svg",
  18228. extra: 266 / 238
  18229. }
  18230. },
  18231. front: {
  18232. height: math.unit(5 + 7 / 12, "feet"),
  18233. weight: math.unit(140, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/doc-weardno/front.svg",
  18237. extra: 254 / 233
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Micro",
  18244. height: math.unit(3, "inches")
  18245. },
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(5 + 7 / 12, "feet"),
  18249. default: true
  18250. },
  18251. {
  18252. name: "Macro",
  18253. height: math.unit(25, "feet")
  18254. },
  18255. {
  18256. name: "Megamacro",
  18257. height: math.unit(2, "miles")
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6 + 2 / 12, "feet"),
  18266. weight: math.unit(153, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/seth-whilst/front.svg",
  18270. bottom: 0.07
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(5, "inches")
  18278. },
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(6 + 2 / 12, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(3, "inches"),
  18291. weight: math.unit(8, "grams"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/pocket-jabari/front.svg",
  18295. extra: 1024 / 974,
  18296. bottom: 0.039
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Minimicro",
  18303. height: math.unit(8, "mm")
  18304. },
  18305. {
  18306. name: "Micro",
  18307. height: math.unit(3, "inches"),
  18308. default: true
  18309. },
  18310. {
  18311. name: "Normal",
  18312. height: math.unit(3, "feet")
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(15, "feet"),
  18321. weight: math.unit(3280, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/sapphy/front.svg",
  18325. extra: 671 / 577,
  18326. bottom: 0.085
  18327. }
  18328. },
  18329. back: {
  18330. height: math.unit(15, "feet"),
  18331. weight: math.unit(3280, "lb"),
  18332. name: "Back",
  18333. image: {
  18334. source: "./media/characters/sapphy/back.svg",
  18335. extra: 631 / 607,
  18336. bottom: 0.045
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(15, "feet")
  18344. },
  18345. {
  18346. name: "Casual Macro",
  18347. height: math.unit(120, "feet")
  18348. },
  18349. {
  18350. name: "Macro",
  18351. height: math.unit(2150, "feet"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Megamacro",
  18356. height: math.unit(8, "miles")
  18357. },
  18358. {
  18359. name: "Galaxy Mom",
  18360. height: math.unit(6, "megalightyears")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(6, "feet"),
  18369. weight: math.unit(170, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/kiro/front.svg",
  18373. extra: 1064 / 1012,
  18374. bottom: 0.052
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Micro",
  18381. height: math.unit(6, "inches")
  18382. },
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(6, "feet"),
  18386. default: true
  18387. },
  18388. {
  18389. name: "Macro",
  18390. height: math.unit(72, "feet")
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(5 + 9 / 12, "feet"),
  18399. weight: math.unit(175, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/irishfox/front.svg",
  18403. extra: 1912 / 1680,
  18404. bottom: 0.02
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Nano",
  18411. height: math.unit(1, "mm")
  18412. },
  18413. {
  18414. name: "Micro",
  18415. height: math.unit(2, "inches")
  18416. },
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(5 + 9 / 12, "feet"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(45, "feet")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(6 + 1 / 12, "feet"),
  18433. weight: math.unit(75, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/aronai-sieyes/front.svg",
  18437. extra: 1556 / 1480,
  18438. bottom: 0.015
  18439. }
  18440. },
  18441. side: {
  18442. height: math.unit(6 + 1 / 12, "feet"),
  18443. weight: math.unit(75, "lb"),
  18444. name: "Side",
  18445. image: {
  18446. source: "./media/characters/aronai-sieyes/side.svg",
  18447. extra: 1433 / 1390,
  18448. bottom: 0.0393
  18449. }
  18450. },
  18451. back: {
  18452. height: math.unit(6 + 1 / 12, "feet"),
  18453. weight: math.unit(75, "lb"),
  18454. name: "Back",
  18455. image: {
  18456. source: "./media/characters/aronai-sieyes/back.svg",
  18457. extra: 1544 / 1494,
  18458. bottom: 0.02
  18459. }
  18460. },
  18461. frontClothed: {
  18462. height: math.unit(6 + 1 / 12, "feet"),
  18463. weight: math.unit(75, "lb"),
  18464. name: "Front (Clothed)",
  18465. image: {
  18466. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18467. extra: 1582 / 1527
  18468. }
  18469. },
  18470. feral: {
  18471. height: math.unit(18, "feet"),
  18472. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18473. name: "Feral",
  18474. image: {
  18475. source: "./media/characters/aronai-sieyes/feral.svg",
  18476. extra: 1530 / 1240,
  18477. bottom: 0.035
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Micro",
  18484. height: math.unit(2, "inches")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(6 + 1 / 12, "feet"),
  18489. default: true
  18490. }
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(12, "feet"),
  18498. weight: math.unit(410, "kg"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/xuna/front.svg",
  18502. extra: 2184 / 1980
  18503. }
  18504. },
  18505. side: {
  18506. height: math.unit(12, "feet"),
  18507. weight: math.unit(410, "kg"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/xuna/side.svg",
  18511. extra: 2184 / 1980
  18512. }
  18513. },
  18514. back: {
  18515. height: math.unit(12, "feet"),
  18516. weight: math.unit(410, "kg"),
  18517. name: "Back",
  18518. image: {
  18519. source: "./media/characters/xuna/back.svg",
  18520. extra: 2184 / 1980
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Nano glow",
  18527. height: math.unit(10, "nm")
  18528. },
  18529. {
  18530. name: "Micro floof",
  18531. height: math.unit(0.3, "m")
  18532. },
  18533. {
  18534. name: "Huggable softy boi",
  18535. height: math.unit(3.6576, "m"),
  18536. default: true
  18537. },
  18538. {
  18539. name: "Admirable floof",
  18540. height: math.unit(80, "meters")
  18541. },
  18542. {
  18543. name: "Gentle macro",
  18544. height: math.unit(300, "meters")
  18545. },
  18546. {
  18547. name: "Very careful floof",
  18548. height: math.unit(3200, "meters")
  18549. },
  18550. {
  18551. name: "The mega floof",
  18552. height: math.unit(36000, "meters")
  18553. },
  18554. {
  18555. name: "Giga-fur-Wicker",
  18556. height: math.unit(4800000, "meters")
  18557. },
  18558. {
  18559. name: "Licky world",
  18560. height: math.unit(20000000, "meters")
  18561. },
  18562. {
  18563. name: "Floofy cyan sun",
  18564. height: math.unit(1500000000, "meters")
  18565. },
  18566. {
  18567. name: "Milky Wicker",
  18568. height: math.unit(1000000000000000000000, "meters")
  18569. },
  18570. {
  18571. name: "The observing Wicker",
  18572. height: math.unit(999999999999999999999999999, "meters")
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18578. {
  18579. front: {
  18580. height: math.unit(5 + 9 / 12, "feet"),
  18581. weight: math.unit(150, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/arokha-sieyes/front.svg",
  18585. extra: 1425 / 1284,
  18586. bottom: 0.05
  18587. }
  18588. },
  18589. },
  18590. [
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(5 + 9 / 12, "feet")
  18594. },
  18595. {
  18596. name: "Macro",
  18597. height: math.unit(30, "meters"),
  18598. default: true
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18604. {
  18605. front: {
  18606. height: math.unit(6, "feet"),
  18607. weight: math.unit(180, "lb"),
  18608. name: "Front",
  18609. image: {
  18610. source: "./media/characters/arokh-sieyes/front.svg",
  18611. extra: 1830 / 1769,
  18612. bottom: 0.01
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(6, "feet")
  18620. },
  18621. {
  18622. name: "Macro",
  18623. height: math.unit(30, "meters"),
  18624. default: true
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18630. {
  18631. side: {
  18632. height: math.unit(13 + 1 / 12, "feet"),
  18633. weight: math.unit(8.5, "tonnes"),
  18634. name: "Side",
  18635. image: {
  18636. source: "./media/characters/goldeneye/side.svg",
  18637. extra: 1182 / 778,
  18638. bottom: 0.067
  18639. }
  18640. },
  18641. paw: {
  18642. height: math.unit(3.4, "feet"),
  18643. name: "Paw",
  18644. image: {
  18645. source: "./media/characters/goldeneye/paw.svg"
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(13 + 1 / 12, "feet"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18659. {
  18660. front: {
  18661. height: math.unit(6 + 1 / 12, "feet"),
  18662. weight: math.unit(210, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/leonardo-lycheborne/front.svg",
  18666. extra: 390 / 365,
  18667. bottom: 0.032
  18668. }
  18669. },
  18670. side: {
  18671. height: math.unit(6 + 1 / 12, "feet"),
  18672. weight: math.unit(210, "lb"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/leonardo-lycheborne/side.svg",
  18676. extra: 390 / 365,
  18677. bottom: 0.005
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(6 + 1 / 12, "feet"),
  18682. weight: math.unit(210, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/leonardo-lycheborne/back.svg",
  18686. extra: 392 / 366,
  18687. bottom: 0.01
  18688. }
  18689. },
  18690. hand: {
  18691. height: math.unit(1.08, "feet"),
  18692. name: "Hand",
  18693. image: {
  18694. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18695. }
  18696. },
  18697. foot: {
  18698. height: math.unit(1.32, "feet"),
  18699. name: "Foot",
  18700. image: {
  18701. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18702. }
  18703. },
  18704. were: {
  18705. height: math.unit(20, "feet"),
  18706. weight: math.unit(7800, "lb"),
  18707. name: "Were",
  18708. image: {
  18709. source: "./media/characters/leonardo-lycheborne/were.svg",
  18710. extra: 308 / 294,
  18711. bottom: 0.048
  18712. }
  18713. },
  18714. feral: {
  18715. height: math.unit(7.5, "feet"),
  18716. weight: math.unit(600, "lb"),
  18717. name: "Feral",
  18718. image: {
  18719. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18720. extra: 210 / 186,
  18721. bottom: 0.108
  18722. }
  18723. },
  18724. taur: {
  18725. height: math.unit(11, "feet"),
  18726. weight: math.unit(3300, "lb"),
  18727. name: "Taur",
  18728. image: {
  18729. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18730. extra: 320 / 303,
  18731. bottom: 0.025
  18732. }
  18733. },
  18734. barghest: {
  18735. height: math.unit(11, "feet"),
  18736. weight: math.unit(1300, "lb"),
  18737. name: "Barghest",
  18738. image: {
  18739. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18740. extra: 323 / 302,
  18741. bottom: 0.027
  18742. }
  18743. },
  18744. dick: {
  18745. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18746. name: "Dick",
  18747. image: {
  18748. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18749. }
  18750. },
  18751. dickWere: {
  18752. height: math.unit((20) / 3.8, "feet"),
  18753. name: "Dick (Were)",
  18754. image: {
  18755. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(6 + 1 / 12, "feet"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18769. {
  18770. front: {
  18771. height: math.unit(10, "feet"),
  18772. weight: math.unit(350, "lb"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/jet/front.svg",
  18776. extra: 2050 / 1980,
  18777. bottom: 0.013
  18778. }
  18779. },
  18780. back: {
  18781. height: math.unit(10, "feet"),
  18782. weight: math.unit(350, "lb"),
  18783. name: "Back",
  18784. image: {
  18785. source: "./media/characters/jet/back.svg",
  18786. extra: 2050 / 1980,
  18787. bottom: 0.013
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Micro",
  18794. height: math.unit(6, "inches")
  18795. },
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(10, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(100, "feet")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(15, "feet"),
  18812. weight: math.unit(2800, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/tanarath/front.svg",
  18816. extra: 2392 / 2220,
  18817. bottom: 0.03
  18818. }
  18819. },
  18820. back: {
  18821. height: math.unit(15, "feet"),
  18822. weight: math.unit(2800, "lb"),
  18823. name: "Back",
  18824. image: {
  18825. source: "./media/characters/tanarath/back.svg",
  18826. extra: 2392 / 2220,
  18827. bottom: 0.03
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(15, "feet"),
  18835. default: true
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18841. {
  18842. front: {
  18843. height: math.unit(7 + 1 / 12, "feet"),
  18844. weight: math.unit(175, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/patty-cattybatty/front.svg",
  18848. extra: 908 / 874,
  18849. bottom: 0.025
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Micro",
  18856. height: math.unit(1, "inch")
  18857. },
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(7 + 1 / 12, "feet")
  18861. },
  18862. {
  18863. name: "Mini Macro",
  18864. height: math.unit(155, "feet")
  18865. },
  18866. {
  18867. name: "Macro",
  18868. height: math.unit(1077, "feet")
  18869. },
  18870. {
  18871. name: "Mega Macro",
  18872. height: math.unit(47650, "feet"),
  18873. default: true
  18874. },
  18875. {
  18876. name: "Giga Macro",
  18877. height: math.unit(440, "miles")
  18878. },
  18879. {
  18880. name: "Tera Macro",
  18881. height: math.unit(8700, "miles")
  18882. },
  18883. {
  18884. name: "Planetary Macro",
  18885. height: math.unit(32700, "miles")
  18886. },
  18887. {
  18888. name: "Solar Macro",
  18889. height: math.unit(550000, "miles")
  18890. },
  18891. {
  18892. name: "Celestial Macro",
  18893. height: math.unit(2.5, "AU")
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(4 + 5 / 12, "feet"),
  18902. weight: math.unit(90, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/cappu/front.svg",
  18906. extra: 1247 / 1152,
  18907. bottom: 0.012
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(4 + 5 / 12, "feet"),
  18915. default: true
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18921. {
  18922. frontDressed: {
  18923. height: math.unit(70, "cm"),
  18924. weight: math.unit(6, "kg"),
  18925. name: "Front (Dressed)",
  18926. image: {
  18927. source: "./media/characters/sebi/front-dressed.svg",
  18928. extra: 713.5 / 686.5,
  18929. bottom: 0.003
  18930. }
  18931. },
  18932. front: {
  18933. height: math.unit(70, "cm"),
  18934. weight: math.unit(5, "kg"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/sebi/front.svg",
  18938. extra: 713.5 / 686.5,
  18939. bottom: 0.003
  18940. }
  18941. }
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(70, "cm"),
  18947. default: true
  18948. },
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(8, "meters")
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(6, "feet"),
  18960. weight: math.unit(150, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/typhek/front.svg",
  18964. extra: 1948 / 1929,
  18965. bottom: 0.025
  18966. }
  18967. },
  18968. side: {
  18969. height: math.unit(6, "feet"),
  18970. weight: math.unit(150, "lb"),
  18971. name: "Side",
  18972. image: {
  18973. source: "./media/characters/typhek/side.svg",
  18974. extra: 2034 / 2010,
  18975. bottom: 0.003
  18976. }
  18977. },
  18978. back: {
  18979. height: math.unit(6, "feet"),
  18980. weight: math.unit(150, "lb"),
  18981. name: "Back",
  18982. image: {
  18983. source: "./media/characters/typhek/back.svg",
  18984. extra: 2005 / 1978,
  18985. bottom: 0.004
  18986. }
  18987. },
  18988. palm: {
  18989. height: math.unit(1.2, "feet"),
  18990. name: "Palm",
  18991. image: {
  18992. source: "./media/characters/typhek/palm.svg"
  18993. }
  18994. },
  18995. fist: {
  18996. height: math.unit(1.1, "feet"),
  18997. name: "Fist",
  18998. image: {
  18999. source: "./media/characters/typhek/fist.svg"
  19000. }
  19001. },
  19002. foot: {
  19003. height: math.unit(1.57, "feet"),
  19004. name: "Foot",
  19005. image: {
  19006. source: "./media/characters/typhek/foot.svg"
  19007. }
  19008. },
  19009. sole: {
  19010. height: math.unit(2.05, "feet"),
  19011. name: "Sole",
  19012. image: {
  19013. source: "./media/characters/typhek/sole.svg"
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(40, "stories"),
  19021. default: true
  19022. },
  19023. {
  19024. name: "Megamacro",
  19025. height: math.unit(1, "mile")
  19026. },
  19027. {
  19028. name: "Gigamacro",
  19029. height: math.unit(4000, "solarradii")
  19030. },
  19031. {
  19032. name: "Universal",
  19033. height: math.unit(1.1, "universes")
  19034. }
  19035. ]
  19036. ))
  19037. characterMakers.push(() => makeCharacter(
  19038. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19039. {
  19040. side: {
  19041. height: math.unit(5 + 7 / 12, "feet"),
  19042. weight: math.unit(150, "lb"),
  19043. name: "Side",
  19044. image: {
  19045. source: "./media/characters/kassy/side.svg",
  19046. extra: 1280 / 1225,
  19047. bottom: 0.002
  19048. }
  19049. },
  19050. front: {
  19051. height: math.unit(5 + 7 / 12, "feet"),
  19052. weight: math.unit(150, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/kassy/front.svg",
  19056. extra: 1280 / 1225,
  19057. bottom: 0.025
  19058. }
  19059. },
  19060. back: {
  19061. height: math.unit(5 + 7 / 12, "feet"),
  19062. weight: math.unit(150, "lb"),
  19063. name: "Back",
  19064. image: {
  19065. source: "./media/characters/kassy/back.svg",
  19066. extra: 1280 / 1225,
  19067. bottom: 0.002
  19068. }
  19069. },
  19070. foot: {
  19071. height: math.unit(1.266, "feet"),
  19072. name: "Foot",
  19073. image: {
  19074. source: "./media/characters/kassy/foot.svg"
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(5 + 7 / 12, "feet")
  19082. },
  19083. {
  19084. name: "Macro",
  19085. height: math.unit(137, "feet"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Megamacro",
  19090. height: math.unit(1, "mile")
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6 + 1 / 12, "feet"),
  19099. weight: math.unit(200, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/neil/front.svg",
  19103. extra: 1326 / 1250,
  19104. bottom: 0.023
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(6 + 1 / 12, "feet"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(200, "feet")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(5 + 9 / 12, "feet"),
  19125. weight: math.unit(190, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/atticus/front.svg",
  19129. extra: 2934 / 2785,
  19130. bottom: 0.025
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(5 + 9 / 12, "feet"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Macro",
  19142. height: math.unit(180, "feet")
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19148. {
  19149. side: {
  19150. height: math.unit(9, "feet"),
  19151. weight: math.unit(650, "lb"),
  19152. name: "Side",
  19153. image: {
  19154. source: "./media/characters/milo/side.svg",
  19155. extra: 2644 / 2310,
  19156. bottom: 0.032
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Normal",
  19163. height: math.unit(9, "feet"),
  19164. default: true
  19165. },
  19166. {
  19167. name: "Macro",
  19168. height: math.unit(300, "feet")
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19174. {
  19175. side: {
  19176. height: math.unit(8, "meters"),
  19177. weight: math.unit(90000, "kg"),
  19178. name: "Side",
  19179. image: {
  19180. source: "./media/characters/ijzer/side.svg",
  19181. extra: 2756 / 1600,
  19182. bottom: 0.01
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Small",
  19189. height: math.unit(3, "meters")
  19190. },
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(8, "meters"),
  19194. default: true
  19195. },
  19196. {
  19197. name: "Normal+",
  19198. height: math.unit(10, "meters")
  19199. },
  19200. {
  19201. name: "Bigger",
  19202. height: math.unit(24, "meters")
  19203. },
  19204. {
  19205. name: "Huge",
  19206. height: math.unit(80, "meters")
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(6 + 2 / 12, "feet"),
  19215. weight: math.unit(153, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/luca-cervicum/front.svg",
  19219. extra: 370 / 327,
  19220. bottom: 0.015
  19221. }
  19222. },
  19223. back: {
  19224. height: math.unit(6 + 2 / 12, "feet"),
  19225. weight: math.unit(153, "lb"),
  19226. name: "Back",
  19227. image: {
  19228. source: "./media/characters/luca-cervicum/back.svg",
  19229. extra: 367 / 333,
  19230. bottom: 0.005
  19231. }
  19232. },
  19233. frontGear: {
  19234. height: math.unit(6 + 2 / 12, "feet"),
  19235. weight: math.unit(173, "lb"),
  19236. name: "Front (Gear)",
  19237. image: {
  19238. source: "./media/characters/luca-cervicum/front-gear.svg",
  19239. extra: 377 / 333,
  19240. bottom: 0.006
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6 + 2 / 12, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(6 + 1 / 12, "feet"),
  19257. weight: math.unit(304, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/oliver/front.svg",
  19261. extra: 157 / 143,
  19262. bottom: 0.08
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(6 + 1 / 12, "feet"),
  19270. default: true
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(5 + 7 / 12, "feet"),
  19279. weight: math.unit(140, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/shane/front.svg",
  19283. extra: 304 / 289,
  19284. bottom: 0.005
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 7 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(5 + 9 / 12, "feet"),
  19301. weight: math.unit(178, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/shin/front.svg",
  19305. extra: 159 / 151,
  19306. bottom: 0.015
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(5 + 9 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(5 + 10 / 12, "feet"),
  19323. weight: math.unit(168, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/xerxes/front.svg",
  19327. extra: 282 / 260,
  19328. bottom: 0.045
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(5 + 10 / 12, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(6 + 7 / 12, "feet"),
  19345. weight: math.unit(208, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/chaska/front.svg",
  19349. extra: 332 / 319,
  19350. bottom: 0.015
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(6 + 7 / 12, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(5 + 8 / 12, "feet"),
  19367. weight: math.unit(208, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/enuk/front.svg",
  19371. extra: 437 / 406,
  19372. bottom: 0.02
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(5 + 8 / 12, "feet"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(5 + 10 / 12, "feet"),
  19389. weight: math.unit(252, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/bruun/front.svg",
  19393. extra: 197 / 187,
  19394. bottom: 0.012
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(5 + 10 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(6 + 10 / 12, "feet"),
  19411. weight: math.unit(255, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/alexeev/front.svg",
  19415. extra: 213 / 200,
  19416. bottom: 0.05
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(6 + 10 / 12, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19430. {
  19431. front: {
  19432. height: math.unit(2 + 8 / 12, "feet"),
  19433. weight: math.unit(22, "lb"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/evelyn/front.svg",
  19437. extra: 208 / 180
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(2 + 8 / 12, "feet"),
  19445. default: true
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(5 + 9 / 12, "feet"),
  19454. weight: math.unit(139, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/inca/front.svg",
  19458. extra: 294 / 291,
  19459. bottom: 0.03
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(5 + 9 / 12, "feet"),
  19467. default: true
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(5 + 1 / 12, "feet"),
  19476. weight: math.unit(84, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/magdalene/front.svg",
  19480. extra: 293 / 273
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(5 + 1 / 12, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(6 + 3 / 12, "feet"),
  19497. weight: math.unit(185, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/mera/front.svg",
  19501. extra: 291 / 277,
  19502. bottom: 0.03
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(6 + 3 / 12, "feet"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(6 + 7 / 12, "feet"),
  19519. weight: math.unit(160, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/ceres/front.svg",
  19523. extra: 1023 / 950,
  19524. bottom: 0.027
  19525. }
  19526. },
  19527. back: {
  19528. height: math.unit(6 + 7 / 12, "feet"),
  19529. weight: math.unit(160, "lb"),
  19530. name: "Back",
  19531. image: {
  19532. source: "./media/characters/ceres/back.svg",
  19533. extra: 1023 / 950
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(6 + 7 / 12, "feet"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(5 + 10 / 12, "feet"),
  19550. weight: math.unit(150, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/kris/front.svg",
  19554. extra: 885 / 803,
  19555. bottom: 0.03
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(5 + 10 / 12, "feet"),
  19563. default: true
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(7, "feet"),
  19572. weight: math.unit(120, "kg"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/taluthus/front.svg",
  19576. extra: 903 / 833,
  19577. bottom: 0.015
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(7, "feet"),
  19585. default: true
  19586. },
  19587. {
  19588. name: "Macro",
  19589. height: math.unit(300, "feet")
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19595. {
  19596. front: {
  19597. height: math.unit(5 + 9 / 12, "feet"),
  19598. weight: math.unit(145, "lb"),
  19599. name: "Front",
  19600. image: {
  19601. source: "./media/characters/dawn/front.svg",
  19602. extra: 2094 / 2016,
  19603. bottom: 0.025
  19604. }
  19605. },
  19606. back: {
  19607. height: math.unit(5 + 9 / 12, "feet"),
  19608. weight: math.unit(160, "lb"),
  19609. name: "Back",
  19610. image: {
  19611. source: "./media/characters/dawn/back.svg",
  19612. extra: 2112 / 2080,
  19613. bottom: 0.005
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(6 + 7 / 12, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19627. {
  19628. anthro: {
  19629. height: math.unit(8 + 3 / 12, "feet"),
  19630. weight: math.unit(450, "lb"),
  19631. name: "Anthro",
  19632. image: {
  19633. source: "./media/characters/arador/anthro.svg",
  19634. extra: 1835 / 1718,
  19635. bottom: 0.025
  19636. }
  19637. },
  19638. feral: {
  19639. height: math.unit(4, "feet"),
  19640. weight: math.unit(200, "lb"),
  19641. name: "Feral",
  19642. image: {
  19643. source: "./media/characters/arador/feral.svg",
  19644. extra: 1683 / 1514,
  19645. bottom: 0.07
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Normal",
  19652. height: math.unit(8 + 3 / 12, "feet")
  19653. },
  19654. {
  19655. name: "Macro",
  19656. height: math.unit(82.5, "feet"),
  19657. default: true
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19663. {
  19664. front: {
  19665. height: math.unit(5 + 10 / 12, "feet"),
  19666. weight: math.unit(125, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/dharsi/front.svg",
  19670. extra: 716 / 630,
  19671. bottom: 0.035
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Nano",
  19678. height: math.unit(100, "nm")
  19679. },
  19680. {
  19681. name: "Micro",
  19682. height: math.unit(2, "inches")
  19683. },
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(5 + 10 / 12, "feet"),
  19687. default: true
  19688. },
  19689. {
  19690. name: "Macro",
  19691. height: math.unit(1000, "feet")
  19692. },
  19693. {
  19694. name: "Megamacro",
  19695. height: math.unit(10, "miles")
  19696. },
  19697. {
  19698. name: "Gigamacro",
  19699. height: math.unit(3000, "miles")
  19700. },
  19701. {
  19702. name: "Teramacro",
  19703. height: math.unit(500000, "miles")
  19704. },
  19705. {
  19706. name: "Teramacro+",
  19707. height: math.unit(30, "galaxies")
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19713. {
  19714. front: {
  19715. height: math.unit(6, "feet"),
  19716. weight: math.unit(150, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/deathy/front.svg",
  19720. extra: 1552 / 1463,
  19721. bottom: 0.025
  19722. }
  19723. },
  19724. side: {
  19725. height: math.unit(6, "feet"),
  19726. weight: math.unit(150, "lb"),
  19727. name: "Side",
  19728. image: {
  19729. source: "./media/characters/deathy/side.svg",
  19730. extra: 1604 / 1455,
  19731. bottom: 0.025
  19732. }
  19733. },
  19734. back: {
  19735. height: math.unit(6, "feet"),
  19736. weight: math.unit(150, "lb"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/deathy/back.svg",
  19740. extra: 1580 / 1463,
  19741. bottom: 0.005
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Micro",
  19748. height: math.unit(5, "millimeters")
  19749. },
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(6 + 5 / 12, "feet"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19759. {
  19760. front: {
  19761. height: math.unit(16, "feet"),
  19762. weight: math.unit(4000, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/juniper/front.svg",
  19766. bottom: 0.04
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(16, "feet"),
  19774. default: true
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(6, "feet"),
  19783. weight: math.unit(150, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/hipster/front.svg",
  19787. extra: 1312 / 1209,
  19788. bottom: 0.025
  19789. }
  19790. },
  19791. back: {
  19792. height: math.unit(6, "feet"),
  19793. weight: math.unit(150, "lb"),
  19794. name: "Back",
  19795. image: {
  19796. source: "./media/characters/hipster/back.svg",
  19797. extra: 1281 / 1196,
  19798. bottom: 0.01
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Micro",
  19805. height: math.unit(1, "mm")
  19806. },
  19807. {
  19808. name: "Normal",
  19809. height: math.unit(4, "inches"),
  19810. default: true
  19811. },
  19812. {
  19813. name: "Macro",
  19814. height: math.unit(500, "feet")
  19815. },
  19816. {
  19817. name: "Megamacro",
  19818. height: math.unit(1000, "miles")
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19824. {
  19825. front: {
  19826. height: math.unit(6, "feet"),
  19827. weight: math.unit(150, "lb"),
  19828. name: "Front",
  19829. image: {
  19830. source: "./media/characters/tendirmuldr/front.svg",
  19831. extra: 1878 / 1772,
  19832. bottom: 0.015
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Megamacro",
  19839. height: math.unit(1500, "miles"),
  19840. default: true
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19846. {
  19847. front: {
  19848. height: math.unit(14, "feet"),
  19849. weight: math.unit(12000, "lb"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/mort/front.svg",
  19853. extra: 365 / 318,
  19854. bottom: 0.01
  19855. }
  19856. },
  19857. side: {
  19858. height: math.unit(14, "feet"),
  19859. weight: math.unit(12000, "lb"),
  19860. name: "Side",
  19861. image: {
  19862. source: "./media/characters/mort/side.svg",
  19863. extra: 365 / 318,
  19864. bottom: 0.052
  19865. },
  19866. default: true
  19867. },
  19868. back: {
  19869. height: math.unit(14, "feet"),
  19870. weight: math.unit(12000, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/mort/back.svg",
  19874. extra: 371 / 332,
  19875. bottom: 0.18
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(14, "feet"),
  19883. default: true
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19889. {
  19890. front: {
  19891. height: math.unit(8, "feet"),
  19892. weight: math.unit(1, "ton"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/lycoa/front.svg",
  19896. extra: 1875 / 1789,
  19897. bottom: 0.022
  19898. }
  19899. },
  19900. back: {
  19901. height: math.unit(8, "feet"),
  19902. weight: math.unit(1, "ton"),
  19903. name: "Back",
  19904. image: {
  19905. source: "./media/characters/lycoa/back.svg",
  19906. extra: 1835 / 1781,
  19907. bottom: 0.03
  19908. }
  19909. },
  19910. head: {
  19911. height: math.unit(2.1, "feet"),
  19912. name: "Head",
  19913. image: {
  19914. source: "./media/characters/lycoa/head.svg"
  19915. }
  19916. },
  19917. tailmaw: {
  19918. height: math.unit(1.9, "feet"),
  19919. name: "Tailmaw",
  19920. image: {
  19921. source: "./media/characters/lycoa/tailmaw.svg"
  19922. }
  19923. },
  19924. tentacles: {
  19925. height: math.unit(2.1, "feet"),
  19926. name: "Tentacles",
  19927. image: {
  19928. source: "./media/characters/lycoa/tentacles.svg"
  19929. }
  19930. },
  19931. dick: {
  19932. height: math.unit(1.73, "feet"),
  19933. name: "Dick",
  19934. image: {
  19935. source: "./media/characters/lycoa/dick.svg"
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(8, "feet"),
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(30, "feet")
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19953. {
  19954. front: {
  19955. height: math.unit(4 + 2 / 12, "feet"),
  19956. weight: math.unit(70, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/naldara/front.svg",
  19960. extra: 841 / 720,
  19961. bottom: 0.04
  19962. }
  19963. },
  19964. naga: {
  19965. height: math.unit(23, "feet"),
  19966. weight: math.unit(15000, "kg"),
  19967. name: "Naga",
  19968. image: {
  19969. source: "./media/characters/naldara/naga.svg",
  19970. extra: 3290 / 2959,
  19971. bottom: 124 / 3432
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(4 + 2 / 12, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19985. {
  19986. front: {
  19987. height: math.unit(13 + 7 / 12, "feet"),
  19988. weight: math.unit(1500, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/briar/front.svg",
  19992. extra: 626 / 596,
  19993. bottom: 0.08
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(13 + 7 / 12, "feet"),
  20001. default: true
  20002. },
  20003. ]
  20004. ))
  20005. characterMakers.push(() => makeCharacter(
  20006. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20007. {
  20008. side: {
  20009. height: math.unit(10, "feet"),
  20010. weight: math.unit(500, "lb"),
  20011. name: "Side",
  20012. image: {
  20013. source: "./media/characters/vanguard/side.svg",
  20014. extra: 502 / 425,
  20015. bottom: 0.087
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(10, "feet"),
  20023. default: true
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20029. {
  20030. front: {
  20031. height: math.unit(7.5, "feet"),
  20032. weight: math.unit(2, "lb"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/artemis/front.svg",
  20036. extra: 1192 / 1075,
  20037. bottom: 0.07
  20038. }
  20039. },
  20040. frontNsfw: {
  20041. height: math.unit(7.5, "feet"),
  20042. weight: math.unit(2, "lb"),
  20043. name: "Front (NSFW)",
  20044. image: {
  20045. source: "./media/characters/artemis/front-nsfw.svg",
  20046. extra: 1192 / 1075,
  20047. bottom: 0.07
  20048. }
  20049. },
  20050. frontNsfwer: {
  20051. height: math.unit(7.5, "feet"),
  20052. weight: math.unit(2, "lb"),
  20053. name: "Front (NSFW-er)",
  20054. image: {
  20055. source: "./media/characters/artemis/front-nsfwer.svg",
  20056. extra: 1192 / 1075,
  20057. bottom: 0.07
  20058. }
  20059. },
  20060. side: {
  20061. height: math.unit(7.5, "feet"),
  20062. weight: math.unit(2, "lb"),
  20063. name: "Side",
  20064. image: {
  20065. source: "./media/characters/artemis/side.svg",
  20066. extra: 1192 / 1075,
  20067. bottom: 0.07
  20068. }
  20069. },
  20070. sideNsfw: {
  20071. height: math.unit(7.5, "feet"),
  20072. weight: math.unit(2, "lb"),
  20073. name: "Side (NSFW)",
  20074. image: {
  20075. source: "./media/characters/artemis/side-nsfw.svg",
  20076. extra: 1192 / 1075,
  20077. bottom: 0.07
  20078. }
  20079. },
  20080. sideNsfwer: {
  20081. height: math.unit(7.5, "feet"),
  20082. weight: math.unit(2, "lb"),
  20083. name: "Side (NSFW-er)",
  20084. image: {
  20085. source: "./media/characters/artemis/side-nsfwer.svg",
  20086. extra: 1192 / 1075,
  20087. bottom: 0.07
  20088. }
  20089. },
  20090. maw: {
  20091. height: math.unit(1.1, "feet"),
  20092. name: "Maw",
  20093. image: {
  20094. source: "./media/characters/artemis/maw.svg"
  20095. }
  20096. },
  20097. stomach: {
  20098. height: math.unit(0.95, "feet"),
  20099. name: "Stomach",
  20100. image: {
  20101. source: "./media/characters/artemis/stomach.svg"
  20102. }
  20103. },
  20104. dickCanine: {
  20105. height: math.unit(1, "feet"),
  20106. name: "Dick (Canine)",
  20107. image: {
  20108. source: "./media/characters/artemis/dick-canine.svg"
  20109. }
  20110. },
  20111. dickEquine: {
  20112. height: math.unit(0.85, "feet"),
  20113. name: "Dick (Equine)",
  20114. image: {
  20115. source: "./media/characters/artemis/dick-equine.svg"
  20116. }
  20117. },
  20118. dickExotic: {
  20119. height: math.unit(0.85, "feet"),
  20120. name: "Dick (Exotic)",
  20121. image: {
  20122. source: "./media/characters/artemis/dick-exotic.svg"
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(7.5, "feet"),
  20130. default: true
  20131. },
  20132. {
  20133. name: "Enlarged",
  20134. height: math.unit(12, "feet")
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(5 + 3 / 12, "feet"),
  20143. weight: math.unit(160, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/kira/front.svg",
  20147. extra: 906 / 786,
  20148. bottom: 0.01
  20149. }
  20150. },
  20151. back: {
  20152. height: math.unit(5 + 3 / 12, "feet"),
  20153. weight: math.unit(160, "lb"),
  20154. name: "Back",
  20155. image: {
  20156. source: "./media/characters/kira/back.svg",
  20157. extra: 882 / 757,
  20158. bottom: 0.005
  20159. }
  20160. },
  20161. frontDressed: {
  20162. height: math.unit(5 + 3 / 12, "feet"),
  20163. weight: math.unit(160, "lb"),
  20164. name: "Front (Dressed)",
  20165. image: {
  20166. source: "./media/characters/kira/front-dressed.svg",
  20167. extra: 906 / 786,
  20168. bottom: 0.01
  20169. }
  20170. },
  20171. beans: {
  20172. height: math.unit(0.92, "feet"),
  20173. name: "Beans",
  20174. image: {
  20175. source: "./media/characters/kira/beans.svg"
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(5 + 3 / 12, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20189. {
  20190. front: {
  20191. height: math.unit(5 + 4 / 12, "feet"),
  20192. weight: math.unit(145, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/scramble/front.svg",
  20196. extra: 763 / 727,
  20197. bottom: 0.05
  20198. }
  20199. },
  20200. back: {
  20201. height: math.unit(5 + 4 / 12, "feet"),
  20202. weight: math.unit(145, "lb"),
  20203. name: "Back",
  20204. image: {
  20205. source: "./media/characters/scramble/back.svg",
  20206. extra: 826 / 737,
  20207. bottom: 0.002
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(5 + 4 / 12, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20221. {
  20222. side: {
  20223. height: math.unit(6 + 2 / 12, "feet"),
  20224. weight: math.unit(190, "lb"),
  20225. name: "Side",
  20226. image: {
  20227. source: "./media/characters/biscuit/side.svg",
  20228. extra: 858 / 791,
  20229. bottom: 0.044
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(6 + 2 / 12, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(5 + 2 / 12, "feet"),
  20246. weight: math.unit(120, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/poffin/front.svg",
  20250. extra: 786 / 680,
  20251. bottom: 0.005
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(5 + 2 / 12, "feet"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(6 + 3 / 12, "feet"),
  20268. weight: math.unit(519, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/dhari/front.svg",
  20272. extra: 1048 / 946,
  20273. bottom: 0.015
  20274. }
  20275. },
  20276. back: {
  20277. height: math.unit(6 + 3 / 12, "feet"),
  20278. weight: math.unit(519, "lb"),
  20279. name: "Back",
  20280. image: {
  20281. source: "./media/characters/dhari/back.svg",
  20282. extra: 1048 / 931,
  20283. bottom: 0.005
  20284. }
  20285. },
  20286. frontDressed: {
  20287. height: math.unit(6 + 3 / 12, "feet"),
  20288. weight: math.unit(519, "lb"),
  20289. name: "Front (Dressed)",
  20290. image: {
  20291. source: "./media/characters/dhari/front-dressed.svg",
  20292. extra: 1713 / 1546,
  20293. bottom: 0.02
  20294. }
  20295. },
  20296. backDressed: {
  20297. height: math.unit(6 + 3 / 12, "feet"),
  20298. weight: math.unit(519, "lb"),
  20299. name: "Back (Dressed)",
  20300. image: {
  20301. source: "./media/characters/dhari/back-dressed.svg",
  20302. extra: 1699 / 1537,
  20303. bottom: 0.01
  20304. }
  20305. },
  20306. maw: {
  20307. height: math.unit(0.95, "feet"),
  20308. name: "Maw",
  20309. image: {
  20310. source: "./media/characters/dhari/maw.svg"
  20311. }
  20312. },
  20313. wereFront: {
  20314. height: math.unit(12 + 8 / 12, "feet"),
  20315. weight: math.unit(4000, "lb"),
  20316. name: "Front (Were)",
  20317. image: {
  20318. source: "./media/characters/dhari/were-front.svg",
  20319. extra: 1065 / 969,
  20320. bottom: 0.015
  20321. }
  20322. },
  20323. wereBack: {
  20324. height: math.unit(12 + 8 / 12, "feet"),
  20325. weight: math.unit(4000, "lb"),
  20326. name: "Back (Were)",
  20327. image: {
  20328. source: "./media/characters/dhari/were-back.svg",
  20329. extra: 1065 / 969,
  20330. bottom: 0.012
  20331. }
  20332. },
  20333. wereMaw: {
  20334. height: math.unit(0.625, "meters"),
  20335. name: "Maw (Were)",
  20336. image: {
  20337. source: "./media/characters/dhari/were-maw.svg"
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(6 + 3 / 12, "feet"),
  20345. default: true
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20351. {
  20352. anthro: {
  20353. height: math.unit(5 + 7 / 12, "feet"),
  20354. weight: math.unit(175, "lb"),
  20355. name: "Anthro",
  20356. image: {
  20357. source: "./media/characters/rena-dyne/anthro.svg",
  20358. extra: 1849 / 1785,
  20359. bottom: 0.005
  20360. }
  20361. },
  20362. taur: {
  20363. height: math.unit(15 + 6 / 12, "feet"),
  20364. weight: math.unit(8000, "lb"),
  20365. name: "Taur",
  20366. image: {
  20367. source: "./media/characters/rena-dyne/taur.svg",
  20368. extra: 2315 / 2234,
  20369. bottom: 0.033
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(5 + 7 / 12, "feet"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(600, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/weremeep/front.svg",
  20390. extra: 967 / 862,
  20391. bottom: 0.01
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(8, "feet"),
  20399. default: true
  20400. },
  20401. {
  20402. name: "Lorg",
  20403. height: math.unit(12, "feet")
  20404. },
  20405. {
  20406. name: "Oh Lawd She Comin'",
  20407. height: math.unit(20, "feet")
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20413. {
  20414. front: {
  20415. height: math.unit(4, "feet"),
  20416. weight: math.unit(90, "lb"),
  20417. name: "Front",
  20418. image: {
  20419. source: "./media/characters/reza/front.svg",
  20420. extra: 1183 / 1111,
  20421. bottom: 0.017
  20422. }
  20423. },
  20424. back: {
  20425. height: math.unit(4, "feet"),
  20426. weight: math.unit(90, "lb"),
  20427. name: "Back",
  20428. image: {
  20429. source: "./media/characters/reza/back.svg",
  20430. extra: 1183 / 1111,
  20431. bottom: 0.01
  20432. }
  20433. },
  20434. drake: {
  20435. height: math.unit(30, "feet"),
  20436. weight: math.unit(246960, "lb"),
  20437. name: "Drake",
  20438. image: {
  20439. source: "./media/characters/reza/drake.svg",
  20440. extra: 2350 / 2024,
  20441. bottom: 60.7 / 2403
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Normal",
  20448. height: math.unit(4, "feet"),
  20449. default: true
  20450. },
  20451. ]
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20455. {
  20456. side: {
  20457. height: math.unit(15, "feet"),
  20458. weight: math.unit(14, "tons"),
  20459. name: "Side",
  20460. image: {
  20461. source: "./media/characters/athea/side.svg",
  20462. extra: 960 / 540,
  20463. bottom: 0.003
  20464. }
  20465. },
  20466. sitting: {
  20467. height: math.unit(6 * 2.85, "feet"),
  20468. weight: math.unit(14, "tons"),
  20469. name: "Sitting",
  20470. image: {
  20471. source: "./media/characters/athea/sitting.svg",
  20472. extra: 621 / 581,
  20473. bottom: 0.075
  20474. }
  20475. },
  20476. maw: {
  20477. height: math.unit(7.59498031496063, "feet"),
  20478. name: "Maw",
  20479. image: {
  20480. source: "./media/characters/athea/maw.svg"
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Lap Cat",
  20487. height: math.unit(2.5, "feet")
  20488. },
  20489. {
  20490. name: "Minimacro",
  20491. height: math.unit(15, "feet"),
  20492. default: true
  20493. },
  20494. {
  20495. name: "Macro",
  20496. height: math.unit(120, "feet")
  20497. },
  20498. {
  20499. name: "Macro+",
  20500. height: math.unit(640, "feet")
  20501. },
  20502. {
  20503. name: "Colossus",
  20504. height: math.unit(2.2, "miles")
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20510. {
  20511. front: {
  20512. height: math.unit(8 + 8 / 12, "feet"),
  20513. weight: math.unit(130, "kg"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/seroko/front.svg",
  20517. extra: 1385 / 1280,
  20518. bottom: 0.025
  20519. }
  20520. },
  20521. back: {
  20522. height: math.unit(8 + 8 / 12, "feet"),
  20523. weight: math.unit(130, "kg"),
  20524. name: "Back",
  20525. image: {
  20526. source: "./media/characters/seroko/back.svg",
  20527. extra: 1369 / 1238,
  20528. bottom: 0.018
  20529. }
  20530. },
  20531. frontDressed: {
  20532. height: math.unit(8 + 8 / 12, "feet"),
  20533. weight: math.unit(130, "kg"),
  20534. name: "Front (Dressed)",
  20535. image: {
  20536. source: "./media/characters/seroko/front-dressed.svg",
  20537. extra: 1366 / 1275,
  20538. bottom: 0.03
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(8 + 8 / 12, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(5.5, "feet"),
  20555. weight: math.unit(160, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/quatzi/front.svg",
  20559. extra: 2346 / 2242,
  20560. bottom: 0.015
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Normal",
  20567. height: math.unit(5.5, "feet"),
  20568. default: true
  20569. },
  20570. {
  20571. name: "Big",
  20572. height: math.unit(7.7, "feet")
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(5 + 11 / 12, "feet"),
  20581. weight: math.unit(180, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/sen/front.svg",
  20585. extra: 1321 / 1254,
  20586. bottom: 0.015
  20587. }
  20588. },
  20589. side: {
  20590. height: math.unit(5 + 11 / 12, "feet"),
  20591. weight: math.unit(180, "lb"),
  20592. name: "Side",
  20593. image: {
  20594. source: "./media/characters/sen/side.svg",
  20595. extra: 1321 / 1254,
  20596. bottom: 0.007
  20597. }
  20598. },
  20599. back: {
  20600. height: math.unit(5 + 11 / 12, "feet"),
  20601. weight: math.unit(180, "lb"),
  20602. name: "Back",
  20603. image: {
  20604. source: "./media/characters/sen/back.svg",
  20605. extra: 1321 / 1254
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(5 + 11 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(166.6, "cm"),
  20622. weight: math.unit(66.6, "kg"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/fruity/front.svg",
  20626. extra: 1510 / 1386,
  20627. bottom: 0.04
  20628. }
  20629. },
  20630. back: {
  20631. height: math.unit(166.6, "cm"),
  20632. weight: math.unit(66.6, "lb"),
  20633. name: "Back",
  20634. image: {
  20635. source: "./media/characters/fruity/back.svg",
  20636. extra: 1563 / 1435,
  20637. bottom: 0.005
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(166.6, "cm"),
  20645. default: true
  20646. },
  20647. {
  20648. name: "Demonic",
  20649. height: math.unit(166.6, "feet")
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20655. {
  20656. side: {
  20657. height: math.unit(10, "feet"),
  20658. weight: math.unit(500, "lb"),
  20659. name: "Side",
  20660. image: {
  20661. source: "./media/characters/zost/side.svg",
  20662. extra: 966 / 880,
  20663. bottom: 0.075
  20664. }
  20665. },
  20666. mawFront: {
  20667. height: math.unit(1.08, "meters"),
  20668. name: "Maw (Front)",
  20669. image: {
  20670. source: "./media/characters/zost/maw-front.svg"
  20671. }
  20672. },
  20673. mawSide: {
  20674. height: math.unit(2.66, "feet"),
  20675. name: "Maw (Side)",
  20676. image: {
  20677. source: "./media/characters/zost/maw-side.svg"
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(10, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(5 + 4 / 12, "feet"),
  20694. weight: math.unit(120, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/luci/front.svg",
  20698. extra: 1985 / 1884,
  20699. bottom: 0.04
  20700. }
  20701. },
  20702. back: {
  20703. height: math.unit(5 + 4 / 12, "feet"),
  20704. weight: math.unit(120, "lb"),
  20705. name: "Back",
  20706. image: {
  20707. source: "./media/characters/luci/back.svg",
  20708. extra: 1892 / 1791,
  20709. bottom: 0.002
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(5 + 4 / 12, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20723. {
  20724. front: {
  20725. height: math.unit(1500, "feet"),
  20726. weight: math.unit(3.8e6, "tons"),
  20727. name: "Front",
  20728. image: {
  20729. source: "./media/characters/2th/front.svg",
  20730. extra: 3489 / 3350,
  20731. bottom: 0.1
  20732. }
  20733. },
  20734. foot: {
  20735. height: math.unit(461, "feet"),
  20736. name: "Foot",
  20737. image: {
  20738. source: "./media/characters/2th/foot.svg"
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "\"Micro\"",
  20745. height: math.unit(15 + 7 / 12, "feet")
  20746. },
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(1500, "feet"),
  20750. default: true
  20751. },
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(5000, "feet")
  20755. },
  20756. {
  20757. name: "Megamacro",
  20758. height: math.unit(15, "miles")
  20759. },
  20760. {
  20761. name: "Gigamacro",
  20762. height: math.unit(4000, "miles")
  20763. },
  20764. {
  20765. name: "Galactic",
  20766. height: math.unit(50, "AU")
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(5 + 6 / 12, "feet"),
  20775. weight: math.unit(220, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/amethyst/front.svg",
  20779. extra: 2078 / 2040,
  20780. bottom: 0.045
  20781. }
  20782. },
  20783. back: {
  20784. height: math.unit(5 + 6 / 12, "feet"),
  20785. weight: math.unit(220, "lb"),
  20786. name: "Back",
  20787. image: {
  20788. source: "./media/characters/amethyst/back.svg",
  20789. extra: 2021 / 1989,
  20790. bottom: 0.02
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5 + 6 / 12, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(4 + 11 / 12, "feet"),
  20807. weight: math.unit(120, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/yumi-akiyama/front.svg",
  20811. extra: 1327 / 1235,
  20812. bottom: 0.02
  20813. }
  20814. },
  20815. back: {
  20816. height: math.unit(4 + 11 / 12, "feet"),
  20817. weight: math.unit(120, "lb"),
  20818. name: "Back",
  20819. image: {
  20820. source: "./media/characters/yumi-akiyama/back.svg",
  20821. extra: 1287 / 1245,
  20822. bottom: 0.002
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Galactic",
  20829. height: math.unit(50, "galaxies"),
  20830. default: true
  20831. },
  20832. {
  20833. name: "Universal",
  20834. height: math.unit(100, "universes")
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(8, "feet"),
  20843. weight: math.unit(500, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/rifter-yrmori/front.svg",
  20847. extra: 1180 / 1125,
  20848. bottom: 0.02
  20849. }
  20850. },
  20851. back: {
  20852. height: math.unit(8, "feet"),
  20853. weight: math.unit(500, "lb"),
  20854. name: "Back",
  20855. image: {
  20856. source: "./media/characters/rifter-yrmori/back.svg",
  20857. extra: 1190 / 1145,
  20858. bottom: 0.001
  20859. }
  20860. },
  20861. wings: {
  20862. height: math.unit(7.75, "feet"),
  20863. weight: math.unit(500, "lb"),
  20864. name: "Wings",
  20865. image: {
  20866. source: "./media/characters/rifter-yrmori/wings.svg",
  20867. extra: 1357 / 1285
  20868. }
  20869. },
  20870. maw: {
  20871. height: math.unit(0.8, "feet"),
  20872. name: "Maw",
  20873. image: {
  20874. source: "./media/characters/rifter-yrmori/maw.svg"
  20875. }
  20876. },
  20877. mawfront: {
  20878. height: math.unit(1.45, "feet"),
  20879. name: "Maw (Front)",
  20880. image: {
  20881. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(8, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(42, "meters")
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20899. {
  20900. were: {
  20901. height: math.unit(25 + 6 / 12, "feet"),
  20902. weight: math.unit(10000, "lb"),
  20903. name: "Were",
  20904. image: {
  20905. source: "./media/characters/tahajin/were.svg",
  20906. extra: 801 / 770,
  20907. bottom: 0.042
  20908. }
  20909. },
  20910. aquatic: {
  20911. height: math.unit(6 + 4 / 12, "feet"),
  20912. weight: math.unit(160, "lb"),
  20913. name: "Aquatic",
  20914. image: {
  20915. source: "./media/characters/tahajin/aquatic.svg",
  20916. extra: 572 / 542,
  20917. bottom: 0.04
  20918. }
  20919. },
  20920. chow: {
  20921. height: math.unit(8 + 11 / 12, "feet"),
  20922. weight: math.unit(450, "lb"),
  20923. name: "Chow",
  20924. image: {
  20925. source: "./media/characters/tahajin/chow.svg",
  20926. extra: 660 / 640,
  20927. bottom: 0.015
  20928. }
  20929. },
  20930. demiNaga: {
  20931. height: math.unit(6 + 8 / 12, "feet"),
  20932. weight: math.unit(300, "lb"),
  20933. name: "Demi Naga",
  20934. image: {
  20935. source: "./media/characters/tahajin/demi-naga.svg",
  20936. extra: 643 / 615,
  20937. bottom: 0.1
  20938. }
  20939. },
  20940. data: {
  20941. height: math.unit(5, "inches"),
  20942. weight: math.unit(0.1, "lb"),
  20943. name: "Data",
  20944. image: {
  20945. source: "./media/characters/tahajin/data.svg"
  20946. }
  20947. },
  20948. fluu: {
  20949. height: math.unit(5 + 7 / 12, "feet"),
  20950. weight: math.unit(140, "lb"),
  20951. name: "Fluu",
  20952. image: {
  20953. source: "./media/characters/tahajin/fluu.svg",
  20954. extra: 628 / 592,
  20955. bottom: 0.02
  20956. }
  20957. },
  20958. starWarrior: {
  20959. height: math.unit(4 + 5 / 12, "feet"),
  20960. weight: math.unit(50, "lb"),
  20961. name: "Star Warrior",
  20962. image: {
  20963. source: "./media/characters/tahajin/star-warrior.svg"
  20964. }
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Normal",
  20970. height: math.unit(25 + 6 / 12, "feet"),
  20971. default: true
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(8, "feet"),
  20980. weight: math.unit(350, "lb"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/gabira/front.svg",
  20984. extra: 608 / 580,
  20985. bottom: 0.03
  20986. }
  20987. },
  20988. back: {
  20989. height: math.unit(8, "feet"),
  20990. weight: math.unit(350, "lb"),
  20991. name: "Back",
  20992. image: {
  20993. source: "./media/characters/gabira/back.svg",
  20994. extra: 608 / 580,
  20995. bottom: 0.03
  20996. }
  20997. },
  20998. },
  20999. [
  21000. {
  21001. name: "Normal",
  21002. height: math.unit(8, "feet"),
  21003. default: true
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21009. {
  21010. front: {
  21011. height: math.unit(5 + 3 / 12, "feet"),
  21012. weight: math.unit(137, "lb"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/sasha-katraine/front.svg",
  21016. bottom: 0.045
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Micro",
  21023. height: math.unit(5, "inches")
  21024. },
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(5 + 3 / 12, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21034. {
  21035. side: {
  21036. height: math.unit(4, "inches"),
  21037. weight: math.unit(200, "grams"),
  21038. name: "Side",
  21039. image: {
  21040. source: "./media/characters/der/side.svg",
  21041. extra: 719 / 400,
  21042. bottom: 30.6 / 749.9187
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Micro",
  21049. height: math.unit(4, "inches"),
  21050. default: true
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21056. {
  21057. side: {
  21058. height: math.unit(30, "meters"),
  21059. weight: math.unit(700, "tonnes"),
  21060. name: "Side",
  21061. image: {
  21062. source: "./media/characters/fixerdragon/side.svg",
  21063. extra: (1293.0514 - 116.03) / 1106.86,
  21064. bottom: 116.03 / 1293.0514
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Planck",
  21071. height: math.unit(1.6e-35, "meters")
  21072. },
  21073. {
  21074. name: "Micro",
  21075. height: math.unit(0.4, "meters")
  21076. },
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(30, "meters"),
  21080. default: true
  21081. },
  21082. {
  21083. name: "Megamacro",
  21084. height: math.unit(1.2, "megameters")
  21085. },
  21086. {
  21087. name: "Teramacro",
  21088. height: math.unit(130, "terameters")
  21089. },
  21090. {
  21091. name: "Yottamacro",
  21092. height: math.unit(6200, "yottameters")
  21093. },
  21094. ]
  21095. ));
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(8, "feet"),
  21101. weight: math.unit(250, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/kite/front.svg",
  21105. extra: 2796 / 2659,
  21106. bottom: 0.002
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(8, "feet"),
  21114. default: true
  21115. },
  21116. {
  21117. name: "Macro",
  21118. height: math.unit(360, "feet")
  21119. },
  21120. {
  21121. name: "Megamacro",
  21122. height: math.unit(1500, "feet")
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(5 + 10 / 12, "feet"),
  21131. weight: math.unit(150, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/poojawa-vynar/front.svg",
  21135. extra: (1506.1547 - 55) / 1356.6,
  21136. bottom: 55 / 1506.1547
  21137. }
  21138. },
  21139. frontTailless: {
  21140. height: math.unit(5 + 10 / 12, "feet"),
  21141. weight: math.unit(150, "lb"),
  21142. name: "Front (Tailless)",
  21143. image: {
  21144. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21145. extra: (1506.1547 - 55) / 1356.6,
  21146. bottom: 55 / 1506.1547
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(5 + 10 / 12, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(293, "meters"),
  21163. weight: math.unit(70400, "tons"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/violette/front.svg",
  21167. extra: 1227 / 1180,
  21168. bottom: 0.005
  21169. }
  21170. },
  21171. back: {
  21172. height: math.unit(293, "meters"),
  21173. weight: math.unit(70400, "tons"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/violette/back.svg",
  21177. extra: 1227 / 1180,
  21178. bottom: 0.005
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Macro",
  21185. height: math.unit(293, "meters"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(1050, "feet"),
  21195. weight: math.unit(200000, "tons"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/alessandra/front.svg",
  21199. extra: 960 / 912,
  21200. bottom: 0.06
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Macro",
  21207. height: math.unit(1050, "feet")
  21208. },
  21209. {
  21210. name: "Macro+",
  21211. height: math.unit(900, "meters"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(5, "feet"),
  21221. weight: math.unit(187, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/person/front.svg",
  21225. extra: 3087 / 2945,
  21226. bottom: 91 / 3181
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Micro",
  21233. height: math.unit(3, "inches")
  21234. },
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(5, "feet"),
  21238. default: true
  21239. },
  21240. {
  21241. name: "Macro",
  21242. height: math.unit(90, "feet")
  21243. },
  21244. {
  21245. name: "Max Size",
  21246. height: math.unit(280, "feet")
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21252. {
  21253. front: {
  21254. height: math.unit(4.5, "meters"),
  21255. weight: math.unit(3200, "lb"),
  21256. name: "Front",
  21257. image: {
  21258. source: "./media/characters/ty/front.svg",
  21259. extra: 1038 / 960,
  21260. bottom: 31.156 / 1068
  21261. }
  21262. },
  21263. back: {
  21264. height: math.unit(4.5, "meters"),
  21265. weight: math.unit(3200, "lb"),
  21266. name: "Back",
  21267. image: {
  21268. source: "./media/characters/ty/back.svg",
  21269. extra: 1044 / 966,
  21270. bottom: 7.48 / 1049
  21271. }
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(4.5, "meters"),
  21278. default: true
  21279. },
  21280. ]
  21281. ))
  21282. characterMakers.push(() => makeCharacter(
  21283. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21284. {
  21285. front: {
  21286. height: math.unit(5 + 4 / 12, "feet"),
  21287. weight: math.unit(115, "lb"),
  21288. name: "Front",
  21289. image: {
  21290. source: "./media/characters/rocky/front.svg",
  21291. extra: 1012 / 975,
  21292. bottom: 54 / 1066
  21293. }
  21294. },
  21295. },
  21296. [
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(5 + 4 / 12, "feet"),
  21300. default: true
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21306. {
  21307. upright: {
  21308. height: math.unit(6, "meters"),
  21309. weight: math.unit(4000, "kg"),
  21310. name: "Upright",
  21311. image: {
  21312. source: "./media/characters/ruin/upright.svg",
  21313. extra: 668 / 661,
  21314. bottom: 42 / 799.8396
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(6, "meters"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(5, "feet"),
  21331. weight: math.unit(106, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/robin/front.svg",
  21335. extra: 862 / 799,
  21336. bottom: 42.4 / 914.8856
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(5, "feet"),
  21344. default: true
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21350. {
  21351. side: {
  21352. height: math.unit(3, "feet"),
  21353. weight: math.unit(225, "lb"),
  21354. name: "Side",
  21355. image: {
  21356. source: "./media/characters/saian/side.svg",
  21357. extra: 566 / 356,
  21358. bottom: 79.7 / 643
  21359. }
  21360. },
  21361. maw: {
  21362. height: math.unit(2.85, "feet"),
  21363. name: "Maw",
  21364. image: {
  21365. source: "./media/characters/saian/maw.svg"
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(3, "feet"),
  21373. default: true
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21379. {
  21380. side: {
  21381. height: math.unit(8, "feet"),
  21382. weight: math.unit(300, "lb"),
  21383. name: "Side",
  21384. image: {
  21385. source: "./media/characters/equus-silvermane/side.svg",
  21386. extra: 2176 / 2050,
  21387. bottom: 65.7 / 2245
  21388. }
  21389. },
  21390. front: {
  21391. height: math.unit(8, "feet"),
  21392. weight: math.unit(300, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/equus-silvermane/front.svg",
  21396. extra: 4633 / 4400,
  21397. bottom: 71.3 / 4706.915
  21398. }
  21399. },
  21400. sideStepping: {
  21401. height: math.unit(8, "feet"),
  21402. weight: math.unit(300, "lb"),
  21403. name: "Side (Stepping)",
  21404. image: {
  21405. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21406. extra: 1968 / 1860,
  21407. bottom: 16.4 / 1989
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(8, "feet")
  21415. },
  21416. {
  21417. name: "Minimacro",
  21418. height: math.unit(75, "feet"),
  21419. default: true
  21420. },
  21421. {
  21422. name: "Macro",
  21423. height: math.unit(150, "feet")
  21424. },
  21425. {
  21426. name: "Macro+",
  21427. height: math.unit(1000, "feet")
  21428. },
  21429. {
  21430. name: "Megamacro",
  21431. height: math.unit(1, "mile")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21437. {
  21438. side: {
  21439. height: math.unit(20, "feet"),
  21440. weight: math.unit(30000, "kg"),
  21441. name: "Side",
  21442. image: {
  21443. source: "./media/characters/windar/side.svg",
  21444. extra: 1491 / 1248,
  21445. bottom: 82.56 / 1568
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(20, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21459. {
  21460. side: {
  21461. height: math.unit(15.66, "feet"),
  21462. weight: math.unit(150, "lb"),
  21463. name: "Side",
  21464. image: {
  21465. source: "./media/characters/melody/side.svg",
  21466. extra: 1097 / 944,
  21467. bottom: 11.8 / 1109
  21468. }
  21469. },
  21470. sideOutfit: {
  21471. height: math.unit(15.66, "feet"),
  21472. weight: math.unit(150, "lb"),
  21473. name: "Side (Outfit)",
  21474. image: {
  21475. source: "./media/characters/melody/side-outfit.svg",
  21476. extra: 1097 / 944,
  21477. bottom: 11.8 / 1109
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(15.66, "feet"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(8, "feet"),
  21494. weight: math.unit(325, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/windera/front.svg",
  21498. extra: 3180 / 2845,
  21499. bottom: 178 / 3365
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(8, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21513. {
  21514. front: {
  21515. height: math.unit(28.75, "feet"),
  21516. weight: math.unit(2000, "kg"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/sonear/front.svg",
  21520. extra: 1041.1 / 964.9,
  21521. bottom: 53.7 / 1096.6
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(28.75, "feet"),
  21529. default: true
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21535. {
  21536. side: {
  21537. height: math.unit(25.5, "feet"),
  21538. weight: math.unit(23000, "kg"),
  21539. name: "Side",
  21540. image: {
  21541. source: "./media/characters/kanara/side.svg"
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(25.5, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21555. {
  21556. side: {
  21557. height: math.unit(10, "feet"),
  21558. weight: math.unit(1000, "kg"),
  21559. name: "Side",
  21560. image: {
  21561. source: "./media/characters/ereus/side.svg",
  21562. extra: 1157 / 959,
  21563. bottom: 153 / 1312.5
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(10, "feet"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21577. {
  21578. side: {
  21579. height: math.unit(4.5, "feet"),
  21580. weight: math.unit(500, "lb"),
  21581. name: "Side",
  21582. image: {
  21583. source: "./media/characters/e-ter/side.svg",
  21584. extra: 1550 / 1248,
  21585. bottom: 146 / 1694
  21586. }
  21587. },
  21588. },
  21589. [
  21590. {
  21591. name: "Normal",
  21592. height: math.unit(4.5, "feet"),
  21593. default: true
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21599. {
  21600. side: {
  21601. height: math.unit(9.7, "feet"),
  21602. weight: math.unit(4000, "kg"),
  21603. name: "Side",
  21604. image: {
  21605. source: "./media/characters/yamie/side.svg"
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(9.7, "feet"),
  21613. default: true
  21614. },
  21615. ]
  21616. ))
  21617. characterMakers.push(() => makeCharacter(
  21618. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21619. {
  21620. front: {
  21621. height: math.unit(50, "feet"),
  21622. weight: math.unit(50000, "kg"),
  21623. name: "Front",
  21624. image: {
  21625. source: "./media/characters/anders/front.svg",
  21626. extra: 570 / 539,
  21627. bottom: 14.7 / 586.7
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Large",
  21634. height: math.unit(50, "feet")
  21635. },
  21636. {
  21637. name: "Macro",
  21638. height: math.unit(2000, "feet"),
  21639. default: true
  21640. },
  21641. {
  21642. name: "Megamacro",
  21643. height: math.unit(12, "miles")
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(7 + 2 / 12, "feet"),
  21652. weight: math.unit(300, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/reban/front.svg",
  21656. extra: 516 / 487,
  21657. bottom: 42.82 / 558.356
  21658. }
  21659. },
  21660. dick: {
  21661. height: math.unit(7 / 5, "feet"),
  21662. name: "Dick",
  21663. image: {
  21664. source: "./media/characters/reban/dick.svg"
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Natural Height",
  21671. height: math.unit(7 + 2 / 12, "feet")
  21672. },
  21673. {
  21674. name: "Macro",
  21675. height: math.unit(500, "feet"),
  21676. default: true
  21677. },
  21678. {
  21679. name: "Canon Height",
  21680. height: math.unit(50, "AU")
  21681. },
  21682. ]
  21683. ))
  21684. characterMakers.push(() => makeCharacter(
  21685. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21686. {
  21687. front: {
  21688. height: math.unit(6, "feet"),
  21689. weight: math.unit(150, "lb"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/terrance-keayes/front.svg",
  21693. extra: 1.005,
  21694. bottom: 151 / 1615
  21695. }
  21696. },
  21697. side: {
  21698. height: math.unit(6, "feet"),
  21699. weight: math.unit(150, "lb"),
  21700. name: "Side",
  21701. image: {
  21702. source: "./media/characters/terrance-keayes/side.svg",
  21703. extra: 1.005,
  21704. bottom: 129.4 / 1544
  21705. }
  21706. },
  21707. back: {
  21708. height: math.unit(6, "feet"),
  21709. weight: math.unit(150, "lb"),
  21710. name: "Back",
  21711. image: {
  21712. source: "./media/characters/terrance-keayes/back.svg",
  21713. extra: 1.005,
  21714. bottom: 58.4 / 1557.3
  21715. }
  21716. },
  21717. dick: {
  21718. height: math.unit(6 * 0.208, "feet"),
  21719. name: "Dick",
  21720. image: {
  21721. source: "./media/characters/terrance-keayes/dick.svg"
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Canon Height",
  21728. height: math.unit(35, "miles"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(6, "feet"),
  21738. weight: math.unit(150, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/ofelia/front.svg",
  21742. extra: 546 / 541,
  21743. bottom: 39 / 583
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(6, "feet"),
  21748. weight: math.unit(150, "lb"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/ofelia/back.svg",
  21752. extra: 564 / 559.5,
  21753. bottom: 8.69 / 573.02
  21754. }
  21755. },
  21756. maw: {
  21757. height: math.unit(1, "feet"),
  21758. name: "Maw",
  21759. image: {
  21760. source: "./media/characters/ofelia/maw.svg"
  21761. }
  21762. },
  21763. foot: {
  21764. height: math.unit(1.949, "feet"),
  21765. name: "Foot",
  21766. image: {
  21767. source: "./media/characters/ofelia/foot.svg"
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Canon Height",
  21774. height: math.unit(2000, "miles"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(6, "feet"),
  21784. weight: math.unit(150, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/samuel/front.svg",
  21788. extra: 265 / 258,
  21789. bottom: 2 / 266.1566
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Macro",
  21796. height: math.unit(100, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Full Size",
  21801. height: math.unit(1000, "miles")
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(6, "feet"),
  21810. weight: math.unit(300, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/beishir-kiel/front.svg",
  21814. extra: 569 / 547,
  21815. bottom: 41.9 / 609
  21816. }
  21817. },
  21818. maw: {
  21819. height: math.unit(6 * 0.202, "feet"),
  21820. name: "Maw",
  21821. image: {
  21822. source: "./media/characters/beishir-kiel/maw.svg"
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(300, "feet"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(5 + 8 / 12, "feet"),
  21839. weight: math.unit(120, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/logan-grey/front.svg",
  21843. extra: 2539 / 2393,
  21844. bottom: 97.6 / 2636.37
  21845. }
  21846. },
  21847. frontAlt: {
  21848. height: math.unit(5 + 8 / 12, "feet"),
  21849. weight: math.unit(120, "lb"),
  21850. name: "Front (Alt)",
  21851. image: {
  21852. source: "./media/characters/logan-grey/front-alt.svg",
  21853. extra: 958 / 893,
  21854. bottom: 15 / 970.768
  21855. }
  21856. },
  21857. back: {
  21858. height: math.unit(5 + 8 / 12, "feet"),
  21859. weight: math.unit(120, "lb"),
  21860. name: "Back",
  21861. image: {
  21862. source: "./media/characters/logan-grey/back.svg",
  21863. extra: 958 / 893,
  21864. bottom: 2.1881 / 970.9788
  21865. }
  21866. },
  21867. dick: {
  21868. height: math.unit(1.437, "feet"),
  21869. name: "Dick",
  21870. image: {
  21871. source: "./media/characters/logan-grey/dick.svg"
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(5 + 8 / 12, "feet")
  21879. },
  21880. {
  21881. name: "The 500 Foot Femboy",
  21882. height: math.unit(500, "feet"),
  21883. default: true
  21884. },
  21885. {
  21886. name: "Megmacro",
  21887. height: math.unit(20, "miles")
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21893. {
  21894. front: {
  21895. height: math.unit(8 + 2 / 12, "feet"),
  21896. weight: math.unit(275, "lb"),
  21897. name: "Front",
  21898. image: {
  21899. source: "./media/characters/draganta/front.svg",
  21900. extra: 1177 / 1135,
  21901. bottom: 33.46 / 1212.1
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(8 + 6 / 12, "feet"),
  21909. default: true
  21910. },
  21911. {
  21912. name: "Macro",
  21913. height: math.unit(150, "feet")
  21914. },
  21915. {
  21916. name: "Megamacro",
  21917. height: math.unit(1000, "miles")
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(1.72, "m"),
  21926. weight: math.unit(80, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/voski/front.svg",
  21930. extra: 2076.22 / 2022.4,
  21931. bottom: 102.7 / 2177.3866
  21932. }
  21933. },
  21934. frontNsfw: {
  21935. height: math.unit(1.72, "m"),
  21936. weight: math.unit(80, "lb"),
  21937. name: "Front (NSFW)",
  21938. image: {
  21939. source: "./media/characters/voski/front-nsfw.svg",
  21940. extra: 2076.22 / 2022.4,
  21941. bottom: 102.7 / 2177.3866
  21942. }
  21943. },
  21944. back: {
  21945. height: math.unit(1.72, "m"),
  21946. weight: math.unit(80, "lb"),
  21947. name: "Back",
  21948. image: {
  21949. source: "./media/characters/voski/back.svg",
  21950. extra: 2104 / 2051,
  21951. bottom: 10.45 / 2113.63
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(1.72, "m")
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(55, "m"),
  21963. default: true
  21964. },
  21965. {
  21966. name: "Macro+",
  21967. height: math.unit(300, "m")
  21968. },
  21969. {
  21970. name: "Macro++",
  21971. height: math.unit(700, "m")
  21972. },
  21973. {
  21974. name: "Macro+++",
  21975. height: math.unit(4500, "m")
  21976. },
  21977. {
  21978. name: "Macro++++",
  21979. height: math.unit(45, "km")
  21980. },
  21981. {
  21982. name: "Macro+++++",
  21983. height: math.unit(1220, "km")
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21989. {
  21990. front: {
  21991. height: math.unit(2.3, "m"),
  21992. weight: math.unit(304, "kg"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/icowom-lee/front.svg",
  21996. extra: 985 / 955,
  21997. bottom: 25.4 / 1012
  21998. }
  21999. },
  22000. fronttentacles: {
  22001. height: math.unit(2.3, "m"),
  22002. weight: math.unit(304, "kg"),
  22003. name: "Front-tentacles",
  22004. image: {
  22005. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22006. extra: 985 / 955,
  22007. bottom: 25.4 / 1012
  22008. }
  22009. },
  22010. back: {
  22011. height: math.unit(2.3, "m"),
  22012. weight: math.unit(304, "kg"),
  22013. name: "Back",
  22014. image: {
  22015. source: "./media/characters/icowom-lee/back.svg",
  22016. extra: 975 / 954,
  22017. bottom: 9.5 / 985
  22018. }
  22019. },
  22020. backtentacles: {
  22021. height: math.unit(2.3, "m"),
  22022. weight: math.unit(304, "kg"),
  22023. name: "Back-tentacles",
  22024. image: {
  22025. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22026. extra: 975 / 954,
  22027. bottom: 9.5 / 985
  22028. }
  22029. },
  22030. frontDressed: {
  22031. height: math.unit(2.3, "m"),
  22032. weight: math.unit(304, "kg"),
  22033. name: "Front (Dressed)",
  22034. image: {
  22035. source: "./media/characters/icowom-lee/front-dressed.svg",
  22036. extra: 3076 / 2933,
  22037. bottom: 51.4 / 3125.1889
  22038. }
  22039. },
  22040. rump: {
  22041. height: math.unit(0.776, "meters"),
  22042. name: "Rump",
  22043. image: {
  22044. source: "./media/characters/icowom-lee/rump.svg"
  22045. }
  22046. },
  22047. genitals: {
  22048. height: math.unit(0.78, "meters"),
  22049. name: "Genitals",
  22050. image: {
  22051. source: "./media/characters/icowom-lee/genitals.svg"
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(2.3, "meters"),
  22059. default: true
  22060. },
  22061. {
  22062. name: "Macro",
  22063. height: math.unit(94, "meters"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(22, "meters"),
  22073. weight: math.unit(21000, "kg"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/shock-diamond/front.svg",
  22077. extra: 2204 / 2053,
  22078. bottom: 65 / 2239.47
  22079. }
  22080. },
  22081. frontNude: {
  22082. height: math.unit(22, "meters"),
  22083. weight: math.unit(21000, "kg"),
  22084. name: "Front (Nude)",
  22085. image: {
  22086. source: "./media/characters/shock-diamond/front-nude.svg",
  22087. extra: 2514 / 2285,
  22088. bottom: 13 / 2527.56
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(3, "meters")
  22096. },
  22097. {
  22098. name: "Macro",
  22099. height: math.unit(22, "meters"),
  22100. default: true
  22101. },
  22102. ]
  22103. ))
  22104. characterMakers.push(() => makeCharacter(
  22105. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22106. {
  22107. front: {
  22108. height: math.unit(5 + 4 / 12, "feet"),
  22109. weight: math.unit(120, "lb"),
  22110. name: "Front",
  22111. image: {
  22112. source: "./media/characters/rory/front.svg",
  22113. extra: 589 / 556,
  22114. bottom: 45.7 / 635.76
  22115. }
  22116. },
  22117. frontNude: {
  22118. height: math.unit(5 + 4 / 12, "feet"),
  22119. weight: math.unit(120, "lb"),
  22120. name: "Front (Nude)",
  22121. image: {
  22122. source: "./media/characters/rory/front-nude.svg",
  22123. extra: 589 / 556,
  22124. bottom: 45.7 / 635.76
  22125. }
  22126. },
  22127. side: {
  22128. height: math.unit(5 + 4 / 12, "feet"),
  22129. weight: math.unit(120, "lb"),
  22130. name: "Side",
  22131. image: {
  22132. source: "./media/characters/rory/side.svg",
  22133. extra: 597 / 564,
  22134. bottom: 55 / 653
  22135. }
  22136. },
  22137. back: {
  22138. height: math.unit(5 + 4 / 12, "feet"),
  22139. weight: math.unit(120, "lb"),
  22140. name: "Back",
  22141. image: {
  22142. source: "./media/characters/rory/back.svg",
  22143. extra: 620 / 585,
  22144. bottom: 8.86 / 630.43
  22145. }
  22146. },
  22147. dick: {
  22148. height: math.unit(0.86, "feet"),
  22149. name: "Dick",
  22150. image: {
  22151. source: "./media/characters/rory/dick.svg"
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(5 + 4 / 12, "feet"),
  22159. default: true
  22160. },
  22161. {
  22162. name: "Macro",
  22163. height: math.unit(100, "feet")
  22164. },
  22165. {
  22166. name: "Macro+",
  22167. height: math.unit(140, "feet")
  22168. },
  22169. {
  22170. name: "Macro++",
  22171. height: math.unit(300, "feet")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(5 + 9 / 12, "feet"),
  22180. weight: math.unit(190, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/sprisk/front.svg",
  22184. extra: 1225 / 1180,
  22185. bottom: 42.7 / 1266.4
  22186. }
  22187. },
  22188. frontNsfw: {
  22189. height: math.unit(5 + 9 / 12, "feet"),
  22190. weight: math.unit(190, "lb"),
  22191. name: "Front (NSFW)",
  22192. image: {
  22193. source: "./media/characters/sprisk/front-nsfw.svg",
  22194. extra: 1225 / 1180,
  22195. bottom: 42.7 / 1266.4
  22196. }
  22197. },
  22198. back: {
  22199. height: math.unit(5 + 9 / 12, "feet"),
  22200. weight: math.unit(190, "lb"),
  22201. name: "Back",
  22202. image: {
  22203. source: "./media/characters/sprisk/back.svg",
  22204. extra: 1247 / 1200,
  22205. bottom: 5.6 / 1253.04
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Tiny",
  22212. height: math.unit(2, "inches")
  22213. },
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(5 + 9 / 12, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Mini Macro",
  22221. height: math.unit(18, "feet")
  22222. },
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(100, "feet")
  22226. },
  22227. {
  22228. name: "MACRO",
  22229. height: math.unit(50, "miles")
  22230. },
  22231. {
  22232. name: "M A C R O",
  22233. height: math.unit(300, "miles")
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22239. {
  22240. side: {
  22241. height: math.unit(15.6, "meters"),
  22242. weight: math.unit(700000, "kg"),
  22243. name: "Side",
  22244. image: {
  22245. source: "./media/characters/bunsen/side.svg",
  22246. extra: 1644 / 358
  22247. }
  22248. },
  22249. foot: {
  22250. height: math.unit(1.611 * 1644 / 358, "meter"),
  22251. name: "Foot",
  22252. image: {
  22253. source: "./media/characters/bunsen/foot.svg"
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Small",
  22260. height: math.unit(10, "feet")
  22261. },
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(15.6, "meters"),
  22265. default: true
  22266. },
  22267. ]
  22268. ))
  22269. characterMakers.push(() => makeCharacter(
  22270. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22271. {
  22272. front: {
  22273. height: math.unit(4 + 11 / 12, "feet"),
  22274. weight: math.unit(140, "lb"),
  22275. name: "Front",
  22276. image: {
  22277. source: "./media/characters/sesh/front.svg",
  22278. extra: 3420 / 3231,
  22279. bottom: 72 / 3949.5
  22280. }
  22281. },
  22282. },
  22283. [
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(4 + 11 / 12, "feet")
  22287. },
  22288. {
  22289. name: "Grown",
  22290. height: math.unit(15, "feet"),
  22291. default: true
  22292. },
  22293. {
  22294. name: "Macro",
  22295. height: math.unit(1500, "feet")
  22296. },
  22297. {
  22298. name: "Megamacro",
  22299. height: math.unit(30, "miles")
  22300. },
  22301. {
  22302. name: "Continental",
  22303. height: math.unit(3000, "miles")
  22304. },
  22305. {
  22306. name: "Gravity Mass",
  22307. height: math.unit(300000, "miles")
  22308. },
  22309. {
  22310. name: "Planet Buster",
  22311. height: math.unit(30000000, "miles")
  22312. },
  22313. {
  22314. name: "Big",
  22315. height: math.unit(3000000000, "miles")
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22321. {
  22322. front: {
  22323. height: math.unit(9, "feet"),
  22324. weight: math.unit(350, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/pepper/front.svg",
  22328. extra: 1448 / 1312,
  22329. bottom: 9.4 / 1457.88
  22330. }
  22331. },
  22332. back: {
  22333. height: math.unit(9, "feet"),
  22334. weight: math.unit(350, "lb"),
  22335. name: "Back",
  22336. image: {
  22337. source: "./media/characters/pepper/back.svg",
  22338. extra: 1423 / 1300,
  22339. bottom: 4.6 / 1429
  22340. }
  22341. },
  22342. maw: {
  22343. height: math.unit(0.932, "feet"),
  22344. name: "Maw",
  22345. image: {
  22346. source: "./media/characters/pepper/maw.svg"
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(9, "feet"),
  22354. default: true
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(6, "feet"),
  22363. weight: math.unit(150, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/maelstrom/front.svg",
  22367. extra: 2100 / 1883,
  22368. bottom: 94 / 2196.7
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Less Kaiju",
  22375. height: math.unit(200, "feet")
  22376. },
  22377. {
  22378. name: "Kaiju",
  22379. height: math.unit(400, "feet"),
  22380. default: true
  22381. },
  22382. {
  22383. name: "Kaiju-er",
  22384. height: math.unit(600, "feet")
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(6 + 5 / 12, "feet"),
  22393. weight: math.unit(180, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/lexir/front.svg",
  22397. extra: 180 / 172,
  22398. bottom: 12 / 192
  22399. }
  22400. },
  22401. back: {
  22402. height: math.unit(6 + 5 / 12, "feet"),
  22403. weight: math.unit(180, "lb"),
  22404. name: "Back",
  22405. image: {
  22406. source: "./media/characters/lexir/back.svg",
  22407. extra: 183.84 / 175.5,
  22408. bottom: 3.1 / 187
  22409. }
  22410. },
  22411. },
  22412. [
  22413. {
  22414. name: "Very Smal",
  22415. height: math.unit(1, "nm")
  22416. },
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(6 + 5 / 12, "feet"),
  22420. default: true
  22421. },
  22422. {
  22423. name: "Macro",
  22424. height: math.unit(1, "mile")
  22425. },
  22426. {
  22427. name: "Megamacro",
  22428. height: math.unit(50, "miles")
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(1.5, "meters"),
  22437. weight: math.unit(100, "lb"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/maksio/front.svg",
  22441. extra: 1549 / 1531,
  22442. bottom: 123.7 / 1674.5429
  22443. }
  22444. },
  22445. back: {
  22446. height: math.unit(1.5, "meters"),
  22447. weight: math.unit(100, "lb"),
  22448. name: "Back",
  22449. image: {
  22450. source: "./media/characters/maksio/back.svg",
  22451. extra: 1541 / 1509,
  22452. bottom: 97 / 1639
  22453. }
  22454. },
  22455. hand: {
  22456. height: math.unit(0.621, "feet"),
  22457. name: "Hand",
  22458. image: {
  22459. source: "./media/characters/maksio/hand.svg"
  22460. }
  22461. },
  22462. foot: {
  22463. height: math.unit(1.611, "feet"),
  22464. name: "Foot",
  22465. image: {
  22466. source: "./media/characters/maksio/foot.svg"
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Shrunken",
  22473. height: math.unit(10, "cm")
  22474. },
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(150, "cm"),
  22478. default: true
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(100, "feet"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/erza-bear/front.svg",
  22490. extra: 2449 / 2390,
  22491. bottom: 46 / 2494
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(100, "feet"),
  22496. name: "Back",
  22497. image: {
  22498. source: "./media/characters/erza-bear/back.svg",
  22499. extra: 2489 / 2430,
  22500. bottom: 85.4 / 2480
  22501. }
  22502. },
  22503. tail: {
  22504. height: math.unit(42, "feet"),
  22505. name: "Tail",
  22506. image: {
  22507. source: "./media/characters/erza-bear/tail.svg"
  22508. }
  22509. },
  22510. tongue: {
  22511. height: math.unit(8, "feet"),
  22512. name: "Tongue",
  22513. image: {
  22514. source: "./media/characters/erza-bear/tongue.svg"
  22515. }
  22516. },
  22517. dick: {
  22518. height: math.unit(10.5, "feet"),
  22519. name: "Dick",
  22520. image: {
  22521. source: "./media/characters/erza-bear/dick.svg"
  22522. }
  22523. },
  22524. dickVertical: {
  22525. height: math.unit(16.9, "feet"),
  22526. name: "Dick (Vertical)",
  22527. image: {
  22528. source: "./media/characters/erza-bear/dick-vertical.svg"
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Macro",
  22535. height: math.unit(100, "feet"),
  22536. default: true
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(172, "cm"),
  22545. weight: math.unit(73, "kg"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/violet-flor/front.svg",
  22549. extra: 1530 / 1442,
  22550. bottom: 61.9 / 1588.8
  22551. }
  22552. },
  22553. back: {
  22554. height: math.unit(180, "cm"),
  22555. weight: math.unit(73, "kg"),
  22556. name: "Back",
  22557. image: {
  22558. source: "./media/characters/violet-flor/back.svg",
  22559. extra: 1692 / 1630,
  22560. bottom: 20 / 1712
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Normal",
  22567. height: math.unit(172, "cm"),
  22568. default: true
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22574. {
  22575. front: {
  22576. height: math.unit(6, "feet"),
  22577. weight: math.unit(220, "lb"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/lynn-rhea/front.svg",
  22581. extra: 310 / 273
  22582. }
  22583. },
  22584. back: {
  22585. height: math.unit(6, "feet"),
  22586. weight: math.unit(220, "lb"),
  22587. name: "Back",
  22588. image: {
  22589. source: "./media/characters/lynn-rhea/back.svg",
  22590. extra: 310 / 273
  22591. }
  22592. },
  22593. dicks: {
  22594. height: math.unit(0.9, "feet"),
  22595. name: "Dicks",
  22596. image: {
  22597. source: "./media/characters/lynn-rhea/dicks.svg"
  22598. }
  22599. },
  22600. slit: {
  22601. height: math.unit(0.4, "feet"),
  22602. name: "Slit",
  22603. image: {
  22604. source: "./media/characters/lynn-rhea/slit.svg"
  22605. }
  22606. },
  22607. },
  22608. [
  22609. {
  22610. name: "Micro",
  22611. height: math.unit(1, "inch")
  22612. },
  22613. {
  22614. name: "Macro",
  22615. height: math.unit(60, "feet"),
  22616. default: true
  22617. },
  22618. {
  22619. name: "Megamacro",
  22620. height: math.unit(2, "miles")
  22621. },
  22622. {
  22623. name: "Gigamacro",
  22624. height: math.unit(3, "earths")
  22625. },
  22626. {
  22627. name: "Galactic",
  22628. height: math.unit(0.8, "galaxies")
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22634. {
  22635. front: {
  22636. height: math.unit(1600, "feet"),
  22637. weight: math.unit(85758785169, "kg"),
  22638. name: "Front",
  22639. image: {
  22640. source: "./media/characters/valathos/front.svg",
  22641. extra: 1451 / 1339
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(1600, "feet"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(7 + 5 / 12, "feet"),
  22658. weight: math.unit(300, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/azula/front.svg",
  22662. extra: 3208 / 2880,
  22663. bottom: 80.2 / 3277
  22664. }
  22665. },
  22666. back: {
  22667. height: math.unit(7 + 5 / 12, "feet"),
  22668. weight: math.unit(300, "lb"),
  22669. name: "Back",
  22670. image: {
  22671. source: "./media/characters/azula/back.svg",
  22672. extra: 3169 / 2822,
  22673. bottom: 150.6 / 3321
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(7 + 5 / 12, "feet"),
  22681. default: true
  22682. },
  22683. {
  22684. name: "Big",
  22685. height: math.unit(20, "feet")
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(5 + 1 / 12, "feet"),
  22694. weight: math.unit(110, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/rupert/front.svg",
  22698. extra: 1549 / 1495,
  22699. bottom: 54.2 / 1604.4
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Normal",
  22706. height: math.unit(5 + 1 / 12, "feet"),
  22707. default: true
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22713. {
  22714. front: {
  22715. height: math.unit(8 + 4 / 12, "feet"),
  22716. weight: math.unit(350, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/sheera-castellar/front.svg",
  22720. extra: 1957 / 1894,
  22721. bottom: 26.97 / 1975.017
  22722. }
  22723. },
  22724. side: {
  22725. height: math.unit(8 + 4 / 12, "feet"),
  22726. weight: math.unit(350, "lb"),
  22727. name: "Side",
  22728. image: {
  22729. source: "./media/characters/sheera-castellar/side.svg",
  22730. extra: 1957 / 1894
  22731. }
  22732. },
  22733. back: {
  22734. height: math.unit(8 + 4 / 12, "feet"),
  22735. weight: math.unit(350, "lb"),
  22736. name: "Back",
  22737. image: {
  22738. source: "./media/characters/sheera-castellar/back.svg",
  22739. extra: 1957 / 1894
  22740. }
  22741. },
  22742. angled: {
  22743. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22744. weight: math.unit(350, "lb"),
  22745. name: "Angled",
  22746. image: {
  22747. source: "./media/characters/sheera-castellar/angled.svg",
  22748. extra: 1807 / 1707,
  22749. bottom: 68 / 1875
  22750. }
  22751. },
  22752. genitals: {
  22753. height: math.unit(2.2, "feet"),
  22754. name: "Genitals",
  22755. image: {
  22756. source: "./media/characters/sheera-castellar/genitals.svg"
  22757. }
  22758. },
  22759. taur: {
  22760. height: math.unit(10 + 6/12, "feet"),
  22761. name: "Taur",
  22762. image: {
  22763. source: "./media/characters/sheera-castellar/taur.svg",
  22764. extra: 2017/1909,
  22765. bottom: 185/2202
  22766. }
  22767. },
  22768. },
  22769. [
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(8 + 4 / 12, "feet")
  22773. },
  22774. {
  22775. name: "Macro",
  22776. height: math.unit(150, "feet"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Macro+",
  22781. height: math.unit(800, "feet")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22787. {
  22788. front: {
  22789. height: math.unit(6, "feet"),
  22790. weight: math.unit(150, "lb"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/jaipur/front.svg",
  22794. extra: 3860 / 3731,
  22795. bottom: 287 / 4140
  22796. }
  22797. },
  22798. back: {
  22799. height: math.unit(6, "feet"),
  22800. weight: math.unit(150, "lb"),
  22801. name: "Back",
  22802. image: {
  22803. source: "./media/characters/jaipur/back.svg",
  22804. extra: 4060 / 3930,
  22805. bottom: 151 / 4200
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Normal",
  22812. height: math.unit(1.85, "meters"),
  22813. default: true
  22814. },
  22815. {
  22816. name: "Macro",
  22817. height: math.unit(150, "meters")
  22818. },
  22819. {
  22820. name: "Macro+",
  22821. height: math.unit(0.5, "miles")
  22822. },
  22823. {
  22824. name: "Macro++",
  22825. height: math.unit(2.5, "miles")
  22826. },
  22827. {
  22828. name: "Macro+++",
  22829. height: math.unit(12, "miles")
  22830. },
  22831. {
  22832. name: "Macro++++",
  22833. height: math.unit(120, "miles")
  22834. },
  22835. {
  22836. name: "Macro+++++",
  22837. height: math.unit(1200, "miles")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(6, "feet"),
  22846. weight: math.unit(150, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/sheila-wolf/front.svg",
  22850. extra: 1931 / 1808,
  22851. bottom: 29.5 / 1960
  22852. }
  22853. },
  22854. dick: {
  22855. height: math.unit(1.464, "feet"),
  22856. name: "Dick",
  22857. image: {
  22858. source: "./media/characters/sheila-wolf/dick.svg"
  22859. }
  22860. },
  22861. muzzle: {
  22862. height: math.unit(0.513, "feet"),
  22863. name: "Muzzle",
  22864. image: {
  22865. source: "./media/characters/sheila-wolf/muzzle.svg"
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Macro",
  22872. height: math.unit(70, "feet"),
  22873. default: true
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(32, "meters"),
  22882. weight: math.unit(300000, "kg"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/almor/front.svg",
  22886. extra: 1408 / 1322,
  22887. bottom: 94.6 / 1506.5
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Macro",
  22894. height: math.unit(32, "meters"),
  22895. default: true
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(7, "feet"),
  22904. weight: math.unit(200, "lb"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/silver/front.svg",
  22908. extra: 472.1 / 450.5,
  22909. bottom: 26.5 / 499.424
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(7, "feet"),
  22917. default: true
  22918. },
  22919. {
  22920. name: "Macro",
  22921. height: math.unit(800, "feet")
  22922. },
  22923. {
  22924. name: "Megamacro",
  22925. height: math.unit(250, "miles")
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(6, "feet"),
  22934. weight: math.unit(150, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/pliskin/front.svg",
  22938. extra: 1469 / 1359,
  22939. bottom: 70 / 1540
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Micro",
  22946. height: math.unit(3, "inches")
  22947. },
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(5 + 11 / 12, "feet"),
  22951. default: true
  22952. },
  22953. {
  22954. name: "Macro",
  22955. height: math.unit(120, "feet")
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(6, "feet"),
  22964. weight: math.unit(150, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/sammy/front.svg",
  22968. extra: 1193 / 1089,
  22969. bottom: 30.5 / 1226
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Macro",
  22976. height: math.unit(1700, "feet"),
  22977. default: true
  22978. },
  22979. {
  22980. name: "Examacro",
  22981. height: math.unit(2.5e9, "lightyears")
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(21, "meters"),
  22990. weight: math.unit(12, "tonnes"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/kuru/front.svg",
  22994. extra: 4301 / 3785,
  22995. bottom: 371.3 / 4691
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Macro",
  23002. height: math.unit(21, "meters"),
  23003. default: true
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(23, "meters"),
  23012. weight: math.unit(12.2, "tonnes"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/rakka/front.svg",
  23016. extra: 4670 / 4169,
  23017. bottom: 301 / 4968.7
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Macro",
  23024. height: math.unit(23, "meters"),
  23025. default: true
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(6, "feet"),
  23034. weight: math.unit(150, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/rhys-feline/front.svg",
  23038. extra: 2488 / 2308,
  23039. bottom: 35.67 / 2519.19
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Really Small",
  23046. height: math.unit(1, "nm")
  23047. },
  23048. {
  23049. name: "Micro",
  23050. height: math.unit(4, "inches")
  23051. },
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(4 + 10 / 12, "feet"),
  23055. default: true
  23056. },
  23057. {
  23058. name: "Macro",
  23059. height: math.unit(100, "feet")
  23060. },
  23061. {
  23062. name: "Megamacto",
  23063. height: math.unit(50, "miles")
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23069. {
  23070. side: {
  23071. height: math.unit(30, "feet"),
  23072. weight: math.unit(35000, "kg"),
  23073. name: "Side",
  23074. image: {
  23075. source: "./media/characters/alydar/side.svg",
  23076. extra: 234 / 222,
  23077. bottom: 6.5 / 241
  23078. }
  23079. },
  23080. front: {
  23081. height: math.unit(30, "feet"),
  23082. weight: math.unit(35000, "kg"),
  23083. name: "Front",
  23084. image: {
  23085. source: "./media/characters/alydar/front.svg",
  23086. extra: 223.37 / 210.2,
  23087. bottom: 22.3 / 246.76
  23088. }
  23089. },
  23090. top: {
  23091. height: math.unit(64.54, "feet"),
  23092. weight: math.unit(35000, "kg"),
  23093. name: "Top",
  23094. image: {
  23095. source: "./media/characters/alydar/top.svg"
  23096. }
  23097. },
  23098. anthro: {
  23099. height: math.unit(30, "feet"),
  23100. weight: math.unit(9000, "kg"),
  23101. name: "Anthro",
  23102. image: {
  23103. source: "./media/characters/alydar/anthro.svg",
  23104. extra: 432 / 421,
  23105. bottom: 7.18 / 440
  23106. }
  23107. },
  23108. maw: {
  23109. height: math.unit(11.693, "feet"),
  23110. name: "Maw",
  23111. image: {
  23112. source: "./media/characters/alydar/maw.svg"
  23113. }
  23114. },
  23115. head: {
  23116. height: math.unit(11.693, "feet"),
  23117. name: "Head",
  23118. image: {
  23119. source: "./media/characters/alydar/head.svg"
  23120. }
  23121. },
  23122. headAlt: {
  23123. height: math.unit(12.861, "feet"),
  23124. name: "Head (Alt)",
  23125. image: {
  23126. source: "./media/characters/alydar/head-alt.svg"
  23127. }
  23128. },
  23129. wing: {
  23130. height: math.unit(20.712, "feet"),
  23131. name: "Wing",
  23132. image: {
  23133. source: "./media/characters/alydar/wing.svg"
  23134. }
  23135. },
  23136. wingFeather: {
  23137. height: math.unit(9.662, "feet"),
  23138. name: "Wing Feather",
  23139. image: {
  23140. source: "./media/characters/alydar/wing-feather.svg"
  23141. }
  23142. },
  23143. countourFeather: {
  23144. height: math.unit(4.154, "feet"),
  23145. name: "Contour Feather",
  23146. image: {
  23147. source: "./media/characters/alydar/contour-feather.svg"
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Diplomatic",
  23154. height: math.unit(13, "feet"),
  23155. default: true
  23156. },
  23157. {
  23158. name: "Small",
  23159. height: math.unit(30, "feet")
  23160. },
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(95, "feet"),
  23164. default: true
  23165. },
  23166. {
  23167. name: "Large",
  23168. height: math.unit(285, "feet")
  23169. },
  23170. {
  23171. name: "Incomprehensible",
  23172. height: math.unit(450, "megameters")
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23178. {
  23179. side: {
  23180. height: math.unit(11, "feet"),
  23181. weight: math.unit(1750, "kg"),
  23182. name: "Side",
  23183. image: {
  23184. source: "./media/characters/selicia/side.svg",
  23185. extra: 440 / 396,
  23186. bottom: 24.8 / 465.979
  23187. }
  23188. },
  23189. maw: {
  23190. height: math.unit(4.665, "feet"),
  23191. name: "Maw",
  23192. image: {
  23193. source: "./media/characters/selicia/maw.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(11, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23207. {
  23208. side: {
  23209. height: math.unit(2 + 6 / 12, "feet"),
  23210. weight: math.unit(30, "lb"),
  23211. name: "Side",
  23212. image: {
  23213. source: "./media/characters/layla/side.svg",
  23214. extra: 244 / 188,
  23215. bottom: 18.2 / 262.1
  23216. }
  23217. },
  23218. back: {
  23219. height: math.unit(2 + 6 / 12, "feet"),
  23220. weight: math.unit(30, "lb"),
  23221. name: "Back",
  23222. image: {
  23223. source: "./media/characters/layla/back.svg",
  23224. extra: 308 / 241.5,
  23225. bottom: 8.9 / 316.8
  23226. }
  23227. },
  23228. cumming: {
  23229. height: math.unit(2 + 6 / 12, "feet"),
  23230. weight: math.unit(30, "lb"),
  23231. name: "Cumming",
  23232. image: {
  23233. source: "./media/characters/layla/cumming.svg",
  23234. extra: 342 / 279,
  23235. bottom: 595 / 938
  23236. }
  23237. },
  23238. dickFlaccid: {
  23239. height: math.unit(2.595, "feet"),
  23240. name: "Flaccid Genitals",
  23241. image: {
  23242. source: "./media/characters/layla/dick-flaccid.svg"
  23243. }
  23244. },
  23245. dickErect: {
  23246. height: math.unit(2.359, "feet"),
  23247. name: "Erect Genitals",
  23248. image: {
  23249. source: "./media/characters/layla/dick-erect.svg"
  23250. }
  23251. },
  23252. dragon: {
  23253. height: math.unit(40, "feet"),
  23254. name: "Dragon",
  23255. image: {
  23256. source: "./media/characters/layla/dragon.svg",
  23257. extra: 610/535,
  23258. bottom: 367/977
  23259. }
  23260. },
  23261. taur: {
  23262. height: math.unit(30, "feet"),
  23263. name: "Taur",
  23264. image: {
  23265. source: "./media/characters/layla/taur.svg",
  23266. extra: 1268/1199,
  23267. bottom: 112/1380
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Micro",
  23274. height: math.unit(1, "inch")
  23275. },
  23276. {
  23277. name: "Small",
  23278. height: math.unit(1, "foot")
  23279. },
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(2 + 6 / 12, "feet"),
  23283. default: true
  23284. },
  23285. {
  23286. name: "Macro",
  23287. height: math.unit(200, "feet")
  23288. },
  23289. {
  23290. name: "Megamacro",
  23291. height: math.unit(1000, "miles")
  23292. },
  23293. {
  23294. name: "Planetary",
  23295. height: math.unit(8000, "miles")
  23296. },
  23297. {
  23298. name: "True Layla",
  23299. height: math.unit(200000 * 7, "multiverses")
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23305. {
  23306. back: {
  23307. height: math.unit(10.5, "feet"),
  23308. weight: math.unit(800, "lb"),
  23309. name: "Back",
  23310. image: {
  23311. source: "./media/characters/knox/back.svg",
  23312. extra: 1486 / 1089,
  23313. bottom: 107 / 1601.4
  23314. }
  23315. },
  23316. side: {
  23317. height: math.unit(10.5, "feet"),
  23318. weight: math.unit(800, "lb"),
  23319. name: "Side",
  23320. image: {
  23321. source: "./media/characters/knox/side.svg",
  23322. extra: 244 / 218,
  23323. bottom: 14 / 260
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Compact",
  23330. height: math.unit(10.5, "feet"),
  23331. default: true
  23332. },
  23333. {
  23334. name: "Dynamax",
  23335. height: math.unit(210, "feet")
  23336. },
  23337. {
  23338. name: "Full Macro",
  23339. height: math.unit(850, "feet")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(6, "feet"),
  23348. weight: math.unit(152, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/shin-pikachu/front.svg",
  23352. extra: 1574 / 1480,
  23353. bottom: 53.3 / 1626
  23354. }
  23355. },
  23356. hand: {
  23357. height: math.unit(1.055, "feet"),
  23358. name: "Hand",
  23359. image: {
  23360. source: "./media/characters/shin-pikachu/hand.svg"
  23361. }
  23362. },
  23363. foot: {
  23364. height: math.unit(1.1, "feet"),
  23365. name: "Foot",
  23366. image: {
  23367. source: "./media/characters/shin-pikachu/foot.svg"
  23368. }
  23369. },
  23370. collar: {
  23371. height: math.unit(0.386, "feet"),
  23372. name: "Collar",
  23373. image: {
  23374. source: "./media/characters/shin-pikachu/collar.svg"
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Smallest",
  23381. height: math.unit(0.5, "inches")
  23382. },
  23383. {
  23384. name: "Micro",
  23385. height: math.unit(6, "inches")
  23386. },
  23387. {
  23388. name: "Normal",
  23389. height: math.unit(6, "feet"),
  23390. default: true
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(150, "feet")
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(28, "feet"),
  23403. weight: math.unit(10500, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/kayda/front.svg",
  23407. extra: 1536 / 1428,
  23408. bottom: 68.7 / 1603
  23409. }
  23410. },
  23411. back: {
  23412. height: math.unit(28, "feet"),
  23413. weight: math.unit(10500, "lb"),
  23414. name: "Back",
  23415. image: {
  23416. source: "./media/characters/kayda/back.svg",
  23417. extra: 1557 / 1464,
  23418. bottom: 39.5 / 1597.49
  23419. }
  23420. },
  23421. dick: {
  23422. height: math.unit(3.858, "feet"),
  23423. name: "Dick",
  23424. image: {
  23425. source: "./media/characters/kayda/dick.svg"
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Macro",
  23432. height: math.unit(28, "feet"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(10 + 11 / 12, "feet"),
  23442. weight: math.unit(1400, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/brian/front.svg",
  23446. extra: 737 / 692,
  23447. bottom: 55.4 / 785
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Normal",
  23454. height: math.unit(10 + 11 / 12, "feet"),
  23455. default: true
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23461. {
  23462. front: {
  23463. height: math.unit(5 + 8 / 12, "feet"),
  23464. weight: math.unit(140, "lb"),
  23465. name: "Front",
  23466. image: {
  23467. source: "./media/characters/khemri/front.svg",
  23468. extra: 4780 / 4059,
  23469. bottom: 80.1 / 4859.25
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Micro",
  23476. height: math.unit(6, "inches")
  23477. },
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(5 + 8 / 12, "feet"),
  23481. default: true
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23487. {
  23488. front: {
  23489. height: math.unit(13, "feet"),
  23490. weight: math.unit(1700, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/felix-braveheart/front.svg",
  23494. extra: 1222 / 1157,
  23495. bottom: 53.2 / 1280
  23496. }
  23497. },
  23498. back: {
  23499. height: math.unit(13, "feet"),
  23500. weight: math.unit(1700, "lb"),
  23501. name: "Back",
  23502. image: {
  23503. source: "./media/characters/felix-braveheart/back.svg",
  23504. extra: 1277 / 1203,
  23505. bottom: 50.2 / 1327
  23506. }
  23507. },
  23508. feral: {
  23509. height: math.unit(6, "feet"),
  23510. weight: math.unit(400, "lb"),
  23511. name: "Feral",
  23512. image: {
  23513. source: "./media/characters/felix-braveheart/feral.svg",
  23514. extra: 682 / 625,
  23515. bottom: 6.9 / 688
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(13, "feet"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23529. {
  23530. side: {
  23531. height: math.unit(5 + 11 / 12, "feet"),
  23532. weight: math.unit(1400, "lb"),
  23533. name: "Side",
  23534. image: {
  23535. source: "./media/characters/shadow-blade/side.svg",
  23536. extra: 1726 / 1267,
  23537. bottom: 58.4 / 1785
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Normal",
  23544. height: math.unit(5 + 11 / 12, "feet"),
  23545. default: true
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23551. {
  23552. front: {
  23553. height: math.unit(1 + 6 / 12, "feet"),
  23554. weight: math.unit(25, "lb"),
  23555. name: "Front",
  23556. image: {
  23557. source: "./media/characters/karla-halldor/front.svg",
  23558. extra: 1459 / 1383,
  23559. bottom: 12 / 1472
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(1 + 6 / 12, "feet"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(6 + 2 / 12, "feet"),
  23576. weight: math.unit(160, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/ariam/front.svg",
  23580. extra: 714 / 617,
  23581. bottom: 23.4 / 737,
  23582. }
  23583. },
  23584. squatting: {
  23585. height: math.unit(4.1, "feet"),
  23586. weight: math.unit(160, "lb"),
  23587. name: "Squatting",
  23588. image: {
  23589. source: "./media/characters/ariam/squatting.svg",
  23590. extra: 2617 / 2112,
  23591. bottom: 61.2 / 2681,
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(6 + 2 / 12, "feet"),
  23599. default: true
  23600. },
  23601. {
  23602. name: "Normal+",
  23603. height: math.unit(4, "meters")
  23604. },
  23605. {
  23606. name: "Macro",
  23607. height: math.unit(50, "meters")
  23608. },
  23609. {
  23610. name: "Macro+",
  23611. height: math.unit(100, "meters")
  23612. },
  23613. {
  23614. name: "Megamacro",
  23615. height: math.unit(20, "km")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(1.67, "meters"),
  23624. weight: math.unit(140, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23628. extra: 438 / 410,
  23629. bottom: 0.75 / 439
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Shrunken",
  23636. height: math.unit(7.6, "cm")
  23637. },
  23638. {
  23639. name: "Human Scale",
  23640. height: math.unit(1.67, "meters")
  23641. },
  23642. {
  23643. name: "Wolxi Scale",
  23644. height: math.unit(36.7, "meters"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(1.73, "meters"),
  23654. weight: math.unit(240, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/izue-two-mothers/front.svg",
  23658. extra: 469 / 437,
  23659. bottom: 1.24 / 470.6
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Shrunken",
  23666. height: math.unit(7.86, "cm")
  23667. },
  23668. {
  23669. name: "Human Scale",
  23670. height: math.unit(1.73, "meters")
  23671. },
  23672. {
  23673. name: "Wolxi Scale",
  23674. height: math.unit(38, "meters"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(1.55, "meters"),
  23684. weight: math.unit(120, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/teeku-love-shack/front.svg",
  23688. extra: 387 / 362,
  23689. bottom: 1.51 / 388
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Shrunken",
  23696. height: math.unit(7, "cm")
  23697. },
  23698. {
  23699. name: "Human Scale",
  23700. height: math.unit(1.55, "meters")
  23701. },
  23702. {
  23703. name: "Wolxi Scale",
  23704. height: math.unit(34.1, "meters"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(1.83, "meters"),
  23714. weight: math.unit(135, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/dejma-the-red/front.svg",
  23718. extra: 480 / 458,
  23719. bottom: 1.8 / 482
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Shrunken",
  23726. height: math.unit(8.3, "cm")
  23727. },
  23728. {
  23729. name: "Human Scale",
  23730. height: math.unit(1.83, "meters")
  23731. },
  23732. {
  23733. name: "Wolxi Scale",
  23734. height: math.unit(40, "meters"),
  23735. default: true
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(1.78, "meters"),
  23744. weight: math.unit(65, "kg"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/aki/front.svg",
  23748. extra: 452 / 415
  23749. }
  23750. },
  23751. frontNsfw: {
  23752. height: math.unit(1.78, "meters"),
  23753. weight: math.unit(65, "kg"),
  23754. name: "Front (NSFW)",
  23755. image: {
  23756. source: "./media/characters/aki/front-nsfw.svg",
  23757. extra: 452 / 415
  23758. }
  23759. },
  23760. back: {
  23761. height: math.unit(1.78, "meters"),
  23762. weight: math.unit(65, "kg"),
  23763. name: "Back",
  23764. image: {
  23765. source: "./media/characters/aki/back.svg",
  23766. extra: 452 / 415
  23767. }
  23768. },
  23769. rump: {
  23770. height: math.unit(2.05, "feet"),
  23771. name: "Rump",
  23772. image: {
  23773. source: "./media/characters/aki/rump.svg"
  23774. }
  23775. },
  23776. dick: {
  23777. height: math.unit(0.95, "feet"),
  23778. name: "Dick",
  23779. image: {
  23780. source: "./media/characters/aki/dick.svg"
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Micro",
  23787. height: math.unit(15, "cm")
  23788. },
  23789. {
  23790. name: "Normal",
  23791. height: math.unit(178, "cm"),
  23792. default: true
  23793. },
  23794. {
  23795. name: "Macro",
  23796. height: math.unit(214, "m")
  23797. },
  23798. {
  23799. name: "Macro+",
  23800. height: math.unit(534, "m")
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23806. {
  23807. front: {
  23808. height: math.unit(5 + 5 / 12, "feet"),
  23809. weight: math.unit(120, "lb"),
  23810. name: "Front",
  23811. image: {
  23812. source: "./media/characters/ari/front.svg",
  23813. extra: 714.5 / 682,
  23814. bottom: 8 / 722.5
  23815. }
  23816. },
  23817. },
  23818. [
  23819. {
  23820. name: "Normal",
  23821. height: math.unit(5 + 5 / 12, "feet")
  23822. },
  23823. {
  23824. name: "Macro",
  23825. height: math.unit(100, "feet"),
  23826. default: true
  23827. },
  23828. {
  23829. name: "Megamacro",
  23830. height: math.unit(100, "miles")
  23831. },
  23832. {
  23833. name: "Gigamacro",
  23834. height: math.unit(80000, "miles")
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23840. {
  23841. side: {
  23842. height: math.unit(9, "feet"),
  23843. weight: math.unit(400, "kg"),
  23844. name: "Side",
  23845. image: {
  23846. source: "./media/characters/bolt/side.svg",
  23847. extra: 1126 / 896,
  23848. bottom: 60 / 1187.3,
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Micro",
  23855. height: math.unit(5, "inches")
  23856. },
  23857. {
  23858. name: "Normal",
  23859. height: math.unit(9, "feet"),
  23860. default: true
  23861. },
  23862. {
  23863. name: "Macro",
  23864. height: math.unit(700, "feet")
  23865. },
  23866. {
  23867. name: "Max Size",
  23868. height: math.unit(1.52e22, "yottameters")
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(4.53, "meters"),
  23877. weight: math.unit(3, "tons"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/draekon-sylviar/front.svg",
  23881. extra: 1228 / 1068,
  23882. bottom: 41 / 1270
  23883. }
  23884. },
  23885. tail: {
  23886. height: math.unit(1.772, "meter"),
  23887. name: "Tail",
  23888. image: {
  23889. source: "./media/characters/draekon-sylviar/tail.svg"
  23890. }
  23891. },
  23892. head: {
  23893. height: math.unit(1.331, "meter"),
  23894. name: "Head",
  23895. image: {
  23896. source: "./media/characters/draekon-sylviar/head.svg"
  23897. }
  23898. },
  23899. hand: {
  23900. height: math.unit(0.564, "meter"),
  23901. name: "Hand",
  23902. image: {
  23903. source: "./media/characters/draekon-sylviar/hand.svg"
  23904. }
  23905. },
  23906. foot: {
  23907. height: math.unit(0.621, "meter"),
  23908. name: "Foot",
  23909. image: {
  23910. source: "./media/characters/draekon-sylviar/foot.svg",
  23911. bottom: 32 / 324
  23912. }
  23913. },
  23914. dick: {
  23915. height: math.unit(61, "cm"),
  23916. name: "Dick",
  23917. image: {
  23918. source: "./media/characters/draekon-sylviar/dick.svg"
  23919. }
  23920. },
  23921. dickseparated: {
  23922. height: math.unit(61, "cm"),
  23923. name: "Dick-separated",
  23924. image: {
  23925. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Small",
  23932. height: math.unit(4.53 / 2, "meters"),
  23933. default: true
  23934. },
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(4.53, "meters"),
  23938. default: true
  23939. },
  23940. {
  23941. name: "Large",
  23942. height: math.unit(4.53 * 2, "meters"),
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(6 + 2 / 12, "feet"),
  23951. weight: math.unit(180, "lb"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/brawler/front.svg",
  23955. extra: 3301 / 3027,
  23956. bottom: 138 / 3439
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(6 + 2 / 12, "feet"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(11, "feet"),
  23973. weight: math.unit(1000, "lb"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/alex/front.svg",
  23977. bottom: 44.5 / 620
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Micro",
  23984. height: math.unit(5, "inches")
  23985. },
  23986. {
  23987. name: "Normal",
  23988. height: math.unit(11, "feet"),
  23989. default: true
  23990. },
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(9.5e9, "feet")
  23994. },
  23995. {
  23996. name: "Max Size",
  23997. height: math.unit(1.4e283, "yottameters")
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24003. {
  24004. female: {
  24005. height: math.unit(29.9, "m"),
  24006. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24007. name: "Female",
  24008. image: {
  24009. source: "./media/characters/zenari/female.svg",
  24010. extra: 3281.6 / 3217,
  24011. bottom: 72.2 / 3353
  24012. }
  24013. },
  24014. male: {
  24015. height: math.unit(27.7, "m"),
  24016. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24017. name: "Male",
  24018. image: {
  24019. source: "./media/characters/zenari/male.svg",
  24020. extra: 3008 / 2991,
  24021. bottom: 54.6 / 3069
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(29.7, "meters"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24035. {
  24036. female: {
  24037. height: math.unit(23.8, "m"),
  24038. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24039. name: "Female",
  24040. image: {
  24041. source: "./media/characters/mactarian/female.svg",
  24042. extra: 2662 / 2569,
  24043. bottom: 73 / 2736
  24044. }
  24045. },
  24046. male: {
  24047. height: math.unit(23.8, "m"),
  24048. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24049. name: "Male",
  24050. image: {
  24051. source: "./media/characters/mactarian/male.svg",
  24052. extra: 2673 / 2600,
  24053. bottom: 76 / 2750
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(23.8, "meters"),
  24061. default: true
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24067. {
  24068. female: {
  24069. height: math.unit(19.3, "m"),
  24070. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24071. name: "Female",
  24072. image: {
  24073. source: "./media/characters/umok/female.svg",
  24074. extra: 2186 / 2078,
  24075. bottom: 87 / 2277
  24076. }
  24077. },
  24078. male: {
  24079. height: math.unit(19.5, "m"),
  24080. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24081. name: "Male",
  24082. image: {
  24083. source: "./media/characters/umok/male.svg",
  24084. extra: 2233 / 2140,
  24085. bottom: 24.4 / 2258
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(19.3, "meters"),
  24093. default: true
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24099. {
  24100. female: {
  24101. height: math.unit(26.15, "m"),
  24102. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24103. name: "Female",
  24104. image: {
  24105. source: "./media/characters/joraxian/female.svg",
  24106. extra: 2912 / 2824,
  24107. bottom: 36 / 2956
  24108. }
  24109. },
  24110. male: {
  24111. height: math.unit(25.4, "m"),
  24112. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24113. name: "Male",
  24114. image: {
  24115. source: "./media/characters/joraxian/male.svg",
  24116. extra: 2877 / 2721,
  24117. bottom: 82 / 2967
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Macro",
  24124. height: math.unit(26.15, "meters"),
  24125. default: true
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24131. {
  24132. female: {
  24133. height: math.unit(21.6, "m"),
  24134. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24135. name: "Female",
  24136. image: {
  24137. source: "./media/characters/sthara/female.svg",
  24138. extra: 2516 / 2347,
  24139. bottom: 21.5 / 2537
  24140. }
  24141. },
  24142. male: {
  24143. height: math.unit(24, "m"),
  24144. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24145. name: "Male",
  24146. image: {
  24147. source: "./media/characters/sthara/male.svg",
  24148. extra: 2732 / 2607,
  24149. bottom: 23 / 2732
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Macro",
  24156. height: math.unit(21.6, "meters"),
  24157. default: true
  24158. },
  24159. ]
  24160. ))
  24161. characterMakers.push(() => makeCharacter(
  24162. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24163. {
  24164. front: {
  24165. height: math.unit(6 + 4 / 12, "feet"),
  24166. weight: math.unit(175, "lb"),
  24167. name: "Front",
  24168. image: {
  24169. source: "./media/characters/luka-bryzant/front.svg",
  24170. extra: 311 / 289,
  24171. bottom: 4 / 315
  24172. }
  24173. },
  24174. back: {
  24175. height: math.unit(6 + 4 / 12, "feet"),
  24176. weight: math.unit(175, "lb"),
  24177. name: "Back",
  24178. image: {
  24179. source: "./media/characters/luka-bryzant/back.svg",
  24180. extra: 311 / 289,
  24181. bottom: 3.8 / 313.7
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Micro",
  24188. height: math.unit(10, "inches")
  24189. },
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(6 + 4 / 12, "feet"),
  24193. default: true
  24194. },
  24195. {
  24196. name: "Large",
  24197. height: math.unit(12, "feet")
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(5 + 7 / 12, "feet"),
  24206. weight: math.unit(185, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/aman-aquila/front.svg",
  24210. extra: 1013 / 976,
  24211. bottom: 45.6 / 1057
  24212. }
  24213. },
  24214. side: {
  24215. height: math.unit(5 + 7 / 12, "feet"),
  24216. weight: math.unit(185, "lb"),
  24217. name: "Side",
  24218. image: {
  24219. source: "./media/characters/aman-aquila/side.svg",
  24220. extra: 1054 / 1011,
  24221. bottom: 15 / 1070
  24222. }
  24223. },
  24224. back: {
  24225. height: math.unit(5 + 7 / 12, "feet"),
  24226. weight: math.unit(185, "lb"),
  24227. name: "Back",
  24228. image: {
  24229. source: "./media/characters/aman-aquila/back.svg",
  24230. extra: 1026 / 970,
  24231. bottom: 12 / 1039
  24232. }
  24233. },
  24234. head: {
  24235. height: math.unit(1.211, "feet"),
  24236. name: "Head",
  24237. image: {
  24238. source: "./media/characters/aman-aquila/head.svg",
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Minimicro",
  24245. height: math.unit(0.057, "inches")
  24246. },
  24247. {
  24248. name: "Micro",
  24249. height: math.unit(7, "inches")
  24250. },
  24251. {
  24252. name: "Mini",
  24253. height: math.unit(3 + 7 / 12, "feet")
  24254. },
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(5 + 7 / 12, "feet"),
  24258. default: true
  24259. },
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(157 + 7 / 12, "feet")
  24263. },
  24264. {
  24265. name: "Megamacro",
  24266. height: math.unit(1557 + 7 / 12, "feet")
  24267. },
  24268. {
  24269. name: "Gigamacro",
  24270. height: math.unit(15557 + 7 / 12, "feet")
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(3 + 2 / 12, "inches"),
  24279. weight: math.unit(0.3, "ounces"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/hiphae/front.svg",
  24283. extra: 1931 / 1683,
  24284. bottom: 24 / 1955
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(3 + 1 / 2, "inches"),
  24292. default: true
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(5 + 10 / 12, "feet"),
  24301. weight: math.unit(165, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/nicky/front.svg",
  24305. extra: 3144 / 2886,
  24306. bottom: 45.6 / 3192
  24307. }
  24308. },
  24309. back: {
  24310. height: math.unit(5 + 10 / 12, "feet"),
  24311. weight: math.unit(165, "lb"),
  24312. name: "Back",
  24313. image: {
  24314. source: "./media/characters/nicky/back.svg",
  24315. extra: 3055 / 2804,
  24316. bottom: 28.4 / 3087
  24317. }
  24318. },
  24319. frontclothed: {
  24320. height: math.unit(5 + 10 / 12, "feet"),
  24321. weight: math.unit(165, "lb"),
  24322. name: "Front-clothed",
  24323. image: {
  24324. source: "./media/characters/nicky/front-clothed.svg",
  24325. extra: 3184.9 / 2926.9,
  24326. bottom: 86.5 / 3239.9
  24327. }
  24328. },
  24329. foot: {
  24330. height: math.unit(1.16, "feet"),
  24331. name: "Foot",
  24332. image: {
  24333. source: "./media/characters/nicky/foot.svg"
  24334. }
  24335. },
  24336. feet: {
  24337. height: math.unit(1.34, "feet"),
  24338. name: "Feet",
  24339. image: {
  24340. source: "./media/characters/nicky/feet.svg"
  24341. }
  24342. },
  24343. maw: {
  24344. height: math.unit(0.9, "feet"),
  24345. name: "Maw",
  24346. image: {
  24347. source: "./media/characters/nicky/maw.svg"
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(5 + 10 / 12, "feet"),
  24355. default: true
  24356. },
  24357. {
  24358. name: "Macro",
  24359. height: math.unit(60, "feet")
  24360. },
  24361. {
  24362. name: "Megamacro",
  24363. height: math.unit(1, "mile")
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24369. {
  24370. side: {
  24371. height: math.unit(10, "feet"),
  24372. weight: math.unit(600, "lb"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/blair/side.svg",
  24376. bottom: 16.6 / 475,
  24377. extra: 458 / 431
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Micro",
  24384. height: math.unit(8, "inches")
  24385. },
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(10, "feet"),
  24389. default: true
  24390. },
  24391. {
  24392. name: "Macro",
  24393. height: math.unit(180, "feet")
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24399. {
  24400. front: {
  24401. height: math.unit(5 + 4 / 12, "feet"),
  24402. weight: math.unit(125, "lb"),
  24403. name: "Front",
  24404. image: {
  24405. source: "./media/characters/fisher/front.svg",
  24406. extra: 444 / 390,
  24407. bottom: 2 / 444.8
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Micro",
  24414. height: math.unit(4, "inches")
  24415. },
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(5 + 4 / 12, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(100, "feet")
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(6.71, "feet"),
  24432. weight: math.unit(200, "lb"),
  24433. capacity: math.unit(1000000, "people"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/gliss/front.svg",
  24437. extra: 2347 / 2231,
  24438. bottom: 113 / 2462
  24439. }
  24440. },
  24441. hammerspaceSize: {
  24442. height: math.unit(6.71 * 717, "feet"),
  24443. weight: math.unit(200, "lb"),
  24444. capacity: math.unit(1000000, "people"),
  24445. name: "Hammerspace Size",
  24446. image: {
  24447. source: "./media/characters/gliss/front.svg",
  24448. extra: 2347 / 2231,
  24449. bottom: 113 / 2462
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Normal",
  24456. height: math.unit(6.71, "feet"),
  24457. default: true
  24458. },
  24459. ]
  24460. ))
  24461. characterMakers.push(() => makeCharacter(
  24462. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24463. {
  24464. side: {
  24465. height: math.unit(1.44, "m"),
  24466. weight: math.unit(80, "kg"),
  24467. name: "Side",
  24468. image: {
  24469. source: "./media/characters/dune-anderson/side.svg",
  24470. bottom: 49 / 1426
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Wolf-sized",
  24477. height: math.unit(1.44, "meters")
  24478. },
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(5.05, "meters"),
  24482. default: true
  24483. },
  24484. {
  24485. name: "Big",
  24486. height: math.unit(14.4, "meters")
  24487. },
  24488. {
  24489. name: "Huge",
  24490. height: math.unit(144, "meters")
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(7, "feet"),
  24499. weight: math.unit(425, "lb"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/hind/front.svg",
  24503. extra: 2091 / 1860,
  24504. bottom: 129 / 2220
  24505. }
  24506. },
  24507. back: {
  24508. height: math.unit(7, "feet"),
  24509. weight: math.unit(425, "lb"),
  24510. name: "Back",
  24511. image: {
  24512. source: "./media/characters/hind/back.svg",
  24513. extra: 2091 / 1860,
  24514. bottom: 24.6 / 2309
  24515. }
  24516. },
  24517. tail: {
  24518. height: math.unit(2.8, "feet"),
  24519. name: "Tail",
  24520. image: {
  24521. source: "./media/characters/hind/tail.svg"
  24522. }
  24523. },
  24524. head: {
  24525. height: math.unit(2.55, "feet"),
  24526. name: "Head",
  24527. image: {
  24528. source: "./media/characters/hind/head.svg"
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "XS",
  24535. height: math.unit(0.7, "feet")
  24536. },
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(7, "feet"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "XL",
  24544. height: math.unit(70, "feet")
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24550. {
  24551. front: {
  24552. height: math.unit(6, "feet"),
  24553. weight: math.unit(150, "lb"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/dylan-skaven/front.svg",
  24557. extra: 2318 / 2063,
  24558. bottom: 93.4 / 2410
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Nano",
  24565. height: math.unit(1, "mm")
  24566. },
  24567. {
  24568. name: "Micro",
  24569. height: math.unit(1, "cm")
  24570. },
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(2.1, "meters"),
  24574. default: true
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(7 + 5 / 12, "feet"),
  24583. weight: math.unit(357, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/solex-draconov/front.svg",
  24587. extra: 1993 / 1865,
  24588. bottom: 117 / 2111
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Natural Height",
  24595. height: math.unit(7 + 5 / 12, "feet"),
  24596. default: true
  24597. },
  24598. {
  24599. name: "Macro",
  24600. height: math.unit(350, "feet")
  24601. },
  24602. {
  24603. name: "Macro+",
  24604. height: math.unit(1000, "feet")
  24605. },
  24606. {
  24607. name: "Megamacro",
  24608. height: math.unit(20, "km")
  24609. },
  24610. {
  24611. name: "Megamacro+",
  24612. height: math.unit(1000, "km")
  24613. },
  24614. {
  24615. name: "Gigamacro",
  24616. height: math.unit(2.5, "Gm")
  24617. },
  24618. {
  24619. name: "Teramacro",
  24620. height: math.unit(15, "Tm")
  24621. },
  24622. {
  24623. name: "Galactic",
  24624. height: math.unit(30, "Zm")
  24625. },
  24626. {
  24627. name: "Universal",
  24628. height: math.unit(21000, "Ym")
  24629. },
  24630. {
  24631. name: "Omniversal",
  24632. height: math.unit(9.861e50, "Ym")
  24633. },
  24634. {
  24635. name: "Existential",
  24636. height: math.unit(1e300, "meters")
  24637. },
  24638. ]
  24639. ))
  24640. characterMakers.push(() => makeCharacter(
  24641. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24642. {
  24643. side: {
  24644. height: math.unit(25, "feet"),
  24645. weight: math.unit(90000, "lb"),
  24646. name: "Side",
  24647. image: {
  24648. source: "./media/characters/mandarax/side.svg",
  24649. extra: 614 / 332,
  24650. bottom: 55 / 630
  24651. }
  24652. },
  24653. head: {
  24654. height: math.unit(11.4, "feet"),
  24655. name: "Head",
  24656. image: {
  24657. source: "./media/characters/mandarax/head.svg"
  24658. }
  24659. },
  24660. belly: {
  24661. height: math.unit(33, "feet"),
  24662. name: "Belly",
  24663. capacity: math.unit(500, "people"),
  24664. image: {
  24665. source: "./media/characters/mandarax/belly.svg"
  24666. }
  24667. },
  24668. dick: {
  24669. height: math.unit(8.46, "feet"),
  24670. name: "Dick",
  24671. image: {
  24672. source: "./media/characters/mandarax/dick.svg"
  24673. }
  24674. },
  24675. top: {
  24676. height: math.unit(28, "meters"),
  24677. name: "Top",
  24678. image: {
  24679. source: "./media/characters/mandarax/top.svg"
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(25, "feet"),
  24687. default: true
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(5, "feet"),
  24696. weight: math.unit(90, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/pixil/front.svg",
  24700. extra: 2000 / 1618,
  24701. bottom: 12.3 / 2011
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(5, "feet"),
  24709. default: true
  24710. },
  24711. {
  24712. name: "Megamacro",
  24713. height: math.unit(10, "miles"),
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24719. {
  24720. front: {
  24721. height: math.unit(7 + 2 / 12, "feet"),
  24722. weight: math.unit(200, "lb"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/angel/front.svg",
  24726. extra: 1830 / 1737,
  24727. bottom: 22.6 / 1854,
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(7 + 2 / 12, "feet"),
  24735. default: true
  24736. },
  24737. {
  24738. name: "Macro",
  24739. height: math.unit(1000, "feet")
  24740. },
  24741. {
  24742. name: "Megamacro",
  24743. height: math.unit(2, "miles")
  24744. },
  24745. {
  24746. name: "Gigamacro",
  24747. height: math.unit(20, "earths")
  24748. },
  24749. ]
  24750. ))
  24751. characterMakers.push(() => makeCharacter(
  24752. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24753. {
  24754. front: {
  24755. height: math.unit(5, "feet"),
  24756. weight: math.unit(180, "lb"),
  24757. name: "Front",
  24758. image: {
  24759. source: "./media/characters/mekana/front.svg",
  24760. extra: 1671 / 1605,
  24761. bottom: 3.5 / 1691
  24762. }
  24763. },
  24764. side: {
  24765. height: math.unit(5, "feet"),
  24766. weight: math.unit(180, "lb"),
  24767. name: "Side",
  24768. image: {
  24769. source: "./media/characters/mekana/side.svg",
  24770. extra: 1671 / 1605,
  24771. bottom: 3.5 / 1691
  24772. }
  24773. },
  24774. back: {
  24775. height: math.unit(5, "feet"),
  24776. weight: math.unit(180, "lb"),
  24777. name: "Back",
  24778. image: {
  24779. source: "./media/characters/mekana/back.svg",
  24780. extra: 1671 / 1605,
  24781. bottom: 3.5 / 1691
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(5, "feet"),
  24789. default: true
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(4 + 6 / 12, "feet"),
  24798. weight: math.unit(80, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/pixie/front.svg",
  24802. extra: 1924 / 1825,
  24803. bottom: 22.4 / 1946
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(4 + 6 / 12, "feet"),
  24811. default: true
  24812. },
  24813. {
  24814. name: "Macro",
  24815. height: math.unit(40, "feet")
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(2.1, "meters"),
  24824. weight: math.unit(200, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/the-lascivious/front.svg",
  24828. extra: 1 / 0.893,
  24829. bottom: 3.5 / 573.7
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Human Scale",
  24836. height: math.unit(2.1, "meters")
  24837. },
  24838. {
  24839. name: "Wolxi Scale",
  24840. height: math.unit(46.2, "m"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Boinker of Buildings",
  24845. height: math.unit(10, "km")
  24846. },
  24847. {
  24848. name: "Shagger of Skyscrapers",
  24849. height: math.unit(40, "km")
  24850. },
  24851. {
  24852. name: "Banger of Boroughs",
  24853. height: math.unit(4000, "km")
  24854. },
  24855. {
  24856. name: "Screwer of States",
  24857. height: math.unit(100000, "km")
  24858. },
  24859. {
  24860. name: "Pounder of Planets",
  24861. height: math.unit(2000000, "km")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(6, "feet"),
  24870. weight: math.unit(150, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/aj/front.svg",
  24874. extra: 2039 / 1562,
  24875. bottom: 40 / 2079
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(11 + 6 / 12, "feet"),
  24883. default: true
  24884. },
  24885. {
  24886. name: "Megamacro",
  24887. height: math.unit(60, "megameters")
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24893. {
  24894. side: {
  24895. height: math.unit(31 + 8 / 12, "feet"),
  24896. weight: math.unit(75000, "kg"),
  24897. name: "Side",
  24898. image: {
  24899. source: "./media/characters/koros/side.svg",
  24900. extra: 1442 / 1297,
  24901. bottom: 122.7 / 1562
  24902. }
  24903. },
  24904. dicksKingsCrown: {
  24905. height: math.unit(6, "feet"),
  24906. name: "Dicks (King's Crown)",
  24907. image: {
  24908. source: "./media/characters/koros/dicks-kings-crown.svg"
  24909. }
  24910. },
  24911. dicksTailSet: {
  24912. height: math.unit(3, "feet"),
  24913. name: "Dicks (Tail Set)",
  24914. image: {
  24915. source: "./media/characters/koros/dicks-tail-set.svg"
  24916. }
  24917. },
  24918. dickCumming: {
  24919. height: math.unit(7.98, "feet"),
  24920. name: "Dick (Cumming)",
  24921. image: {
  24922. source: "./media/characters/koros/dick-cumming.svg"
  24923. }
  24924. },
  24925. dicksBack: {
  24926. height: math.unit(5.9, "feet"),
  24927. name: "Dicks (Back)",
  24928. image: {
  24929. source: "./media/characters/koros/dicks-back.svg"
  24930. }
  24931. },
  24932. dicksFront: {
  24933. height: math.unit(3.72, "feet"),
  24934. name: "Dicks (Front)",
  24935. image: {
  24936. source: "./media/characters/koros/dicks-front.svg"
  24937. }
  24938. },
  24939. dicksPeeking: {
  24940. height: math.unit(3.0, "feet"),
  24941. name: "Dicks (Peeking)",
  24942. image: {
  24943. source: "./media/characters/koros/dicks-peeking.svg"
  24944. }
  24945. },
  24946. eye: {
  24947. height: math.unit(1.7, "feet"),
  24948. name: "Eye",
  24949. image: {
  24950. source: "./media/characters/koros/eye.svg"
  24951. }
  24952. },
  24953. headFront: {
  24954. height: math.unit(11.69, "feet"),
  24955. name: "Head (Front)",
  24956. image: {
  24957. source: "./media/characters/koros/head-front.svg"
  24958. }
  24959. },
  24960. headSide: {
  24961. height: math.unit(14, "feet"),
  24962. name: "Head (Side)",
  24963. image: {
  24964. source: "./media/characters/koros/head-side.svg"
  24965. }
  24966. },
  24967. leg: {
  24968. height: math.unit(17, "feet"),
  24969. name: "Leg",
  24970. image: {
  24971. source: "./media/characters/koros/leg.svg"
  24972. }
  24973. },
  24974. mawSide: {
  24975. height: math.unit(12.8, "feet"),
  24976. name: "Maw (Side)",
  24977. image: {
  24978. source: "./media/characters/koros/maw-side.svg"
  24979. }
  24980. },
  24981. mawSpitting: {
  24982. height: math.unit(17, "feet"),
  24983. name: "Maw (Spitting)",
  24984. image: {
  24985. source: "./media/characters/koros/maw-spitting.svg"
  24986. }
  24987. },
  24988. slit: {
  24989. height: math.unit(2.8, "feet"),
  24990. name: "Slit",
  24991. image: {
  24992. source: "./media/characters/koros/slit.svg"
  24993. }
  24994. },
  24995. stomach: {
  24996. height: math.unit(6.8, "feet"),
  24997. capacity: math.unit(20, "people"),
  24998. name: "Stomach",
  24999. image: {
  25000. source: "./media/characters/koros/stomach.svg"
  25001. }
  25002. },
  25003. wingspanBottom: {
  25004. height: math.unit(114, "feet"),
  25005. name: "Wingspan (Bottom)",
  25006. image: {
  25007. source: "./media/characters/koros/wingspan-bottom.svg"
  25008. }
  25009. },
  25010. wingspanTop: {
  25011. height: math.unit(104, "feet"),
  25012. name: "Wingspan (Top)",
  25013. image: {
  25014. source: "./media/characters/koros/wingspan-top.svg"
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(31 + 8 / 12, "feet"),
  25022. default: true
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25028. {
  25029. front: {
  25030. height: math.unit(18 + 5 / 12, "feet"),
  25031. weight: math.unit(3750, "kg"),
  25032. name: "Front",
  25033. image: {
  25034. source: "./media/characters/vexx/front.svg",
  25035. extra: 426 / 396,
  25036. bottom: 31.5 / 458
  25037. }
  25038. },
  25039. maw: {
  25040. height: math.unit(6, "feet"),
  25041. name: "Maw",
  25042. image: {
  25043. source: "./media/characters/vexx/maw.svg"
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(18 + 5 / 12, "feet"),
  25051. default: true
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(17 + 6 / 12, "feet"),
  25060. weight: math.unit(150, "lb"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/baadra/front.svg",
  25064. extra: 3137 / 2890,
  25065. bottom: 168.4 / 3305
  25066. }
  25067. },
  25068. back: {
  25069. height: math.unit(17 + 6 / 12, "feet"),
  25070. weight: math.unit(150, "lb"),
  25071. name: "Back",
  25072. image: {
  25073. source: "./media/characters/baadra/back.svg",
  25074. extra: 3142 / 2890,
  25075. bottom: 220 / 3371
  25076. }
  25077. },
  25078. head: {
  25079. height: math.unit(5.45, "feet"),
  25080. name: "Head",
  25081. image: {
  25082. source: "./media/characters/baadra/head.svg"
  25083. }
  25084. },
  25085. headAngry: {
  25086. height: math.unit(4.95, "feet"),
  25087. name: "Head (Angry)",
  25088. image: {
  25089. source: "./media/characters/baadra/head-angry.svg"
  25090. }
  25091. },
  25092. headOpen: {
  25093. height: math.unit(6, "feet"),
  25094. name: "Head (Open)",
  25095. image: {
  25096. source: "./media/characters/baadra/head-open.svg"
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Normal",
  25103. height: math.unit(17 + 6 / 12, "feet"),
  25104. default: true
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(7 + 3 / 12, "feet"),
  25113. weight: math.unit(180, "lb"),
  25114. name: "Front",
  25115. image: {
  25116. source: "./media/characters/juri/front.svg",
  25117. extra: 1401 / 1237,
  25118. bottom: 18.5 / 1418
  25119. }
  25120. },
  25121. side: {
  25122. height: math.unit(7 + 3 / 12, "feet"),
  25123. weight: math.unit(180, "lb"),
  25124. name: "Side",
  25125. image: {
  25126. source: "./media/characters/juri/side.svg",
  25127. extra: 1424 / 1242,
  25128. bottom: 18.5 / 1447
  25129. }
  25130. },
  25131. sitting: {
  25132. height: math.unit(6, "feet"),
  25133. weight: math.unit(180, "lb"),
  25134. name: "Sitting",
  25135. image: {
  25136. source: "./media/characters/juri/sitting.svg",
  25137. extra: 1270 / 1143,
  25138. bottom: 100 / 1343
  25139. }
  25140. },
  25141. back: {
  25142. height: math.unit(7 + 3 / 12, "feet"),
  25143. weight: math.unit(180, "lb"),
  25144. name: "Back",
  25145. image: {
  25146. source: "./media/characters/juri/back.svg",
  25147. extra: 1377 / 1240,
  25148. bottom: 23.7 / 1405
  25149. }
  25150. },
  25151. maw: {
  25152. height: math.unit(2.8, "feet"),
  25153. name: "Maw",
  25154. image: {
  25155. source: "./media/characters/juri/maw.svg"
  25156. }
  25157. },
  25158. stomach: {
  25159. height: math.unit(0.89, "feet"),
  25160. capacity: math.unit(4, "liters"),
  25161. name: "Stomach",
  25162. image: {
  25163. source: "./media/characters/juri/stomach.svg"
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(7 + 3 / 12, "feet"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25177. {
  25178. fox: {
  25179. height: math.unit(5 + 6 / 12, "feet"),
  25180. weight: math.unit(140, "lb"),
  25181. name: "Fox",
  25182. image: {
  25183. source: "./media/characters/maxene-sita/fox.svg",
  25184. extra: 146 / 138,
  25185. bottom: 2.1 / 148.19
  25186. }
  25187. },
  25188. foxLaying: {
  25189. height: math.unit(1.70, "feet"),
  25190. weight: math.unit(140, "lb"),
  25191. name: "Fox (Laying)",
  25192. image: {
  25193. source: "./media/characters/maxene-sita/fox-laying.svg",
  25194. extra: 910 / 572,
  25195. bottom: 71 / 981
  25196. }
  25197. },
  25198. kitsune: {
  25199. height: math.unit(10, "feet"),
  25200. weight: math.unit(800, "lb"),
  25201. name: "Kitsune",
  25202. image: {
  25203. source: "./media/characters/maxene-sita/kitsune.svg",
  25204. extra: 185 / 176,
  25205. bottom: 4.7 / 189.9
  25206. }
  25207. },
  25208. hellhound: {
  25209. height: math.unit(10, "feet"),
  25210. weight: math.unit(700, "lb"),
  25211. name: "Hellhound",
  25212. image: {
  25213. source: "./media/characters/maxene-sita/hellhound.svg",
  25214. extra: 1600 / 1545,
  25215. bottom: 81 / 1681
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(5 + 6 / 12, "feet"),
  25223. default: true
  25224. },
  25225. ]
  25226. ))
  25227. characterMakers.push(() => makeCharacter(
  25228. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25229. {
  25230. front: {
  25231. height: math.unit(3 + 4 / 12, "feet"),
  25232. weight: math.unit(70, "lb"),
  25233. name: "Front",
  25234. image: {
  25235. source: "./media/characters/maia/front.svg",
  25236. extra: 227 / 219.5,
  25237. bottom: 40 / 267
  25238. }
  25239. },
  25240. back: {
  25241. height: math.unit(3 + 4 / 12, "feet"),
  25242. weight: math.unit(70, "lb"),
  25243. name: "Back",
  25244. image: {
  25245. source: "./media/characters/maia/back.svg",
  25246. extra: 237 / 225
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(3 + 4 / 12, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25260. {
  25261. front: {
  25262. height: math.unit(5 + 10 / 12, "feet"),
  25263. weight: math.unit(197, "lb"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/jabaro/front.svg",
  25267. extra: 225 / 216,
  25268. bottom: 5.06 / 230
  25269. }
  25270. },
  25271. back: {
  25272. height: math.unit(5 + 10 / 12, "feet"),
  25273. weight: math.unit(197, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/jabaro/back.svg",
  25277. extra: 225 / 219,
  25278. bottom: 1.9 / 227
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(5 + 10 / 12, "feet"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(5 + 8 / 12, "feet"),
  25295. weight: math.unit(139, "lb"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/risa/front.svg",
  25299. extra: 270 / 260,
  25300. bottom: 11.2 / 282
  25301. }
  25302. },
  25303. back: {
  25304. height: math.unit(5 + 8 / 12, "feet"),
  25305. weight: math.unit(139, "lb"),
  25306. name: "Back",
  25307. image: {
  25308. source: "./media/characters/risa/back.svg",
  25309. extra: 264 / 255,
  25310. bottom: 4 / 268
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(5 + 8 / 12, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(2 + 11 / 12, "feet"),
  25327. weight: math.unit(30, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/weatley/front.svg",
  25331. bottom: 10.7 / 414,
  25332. extra: 403.5 / 362
  25333. }
  25334. },
  25335. back: {
  25336. height: math.unit(2 + 11 / 12, "feet"),
  25337. weight: math.unit(30, "lb"),
  25338. name: "Back",
  25339. image: {
  25340. source: "./media/characters/weatley/back.svg",
  25341. bottom: 10.7 / 414,
  25342. extra: 403.5 / 362
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(2 + 11 / 12, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(5 + 2 / 12, "feet"),
  25359. weight: math.unit(50, "kg"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/mercury-crescent/front.svg",
  25363. extra: 1088 / 1033,
  25364. bottom: 18.9 / 1109
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(5 + 2 / 12, "feet"),
  25372. default: true
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(2, "feet"),
  25381. weight: math.unit(15, "kg"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/diamond-jones/front.svg",
  25385. bottom: 16 / 568
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(2, "feet"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(3, "feet"),
  25402. weight: math.unit(30, "kg"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/sweet-bit/front.svg",
  25406. extra: 675 / 567,
  25407. bottom: 27.7 / 703
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(3, "feet"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25421. {
  25422. side: {
  25423. height: math.unit(9.178, "feet"),
  25424. weight: math.unit(500, "lb"),
  25425. name: "Side",
  25426. image: {
  25427. source: "./media/characters/umbrazen/side.svg",
  25428. extra: 1730 / 1473,
  25429. bottom: 34.6 / 1765
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(9.178, "feet"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(10, "feet"),
  25446. weight: math.unit(750, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/arlist/front.svg",
  25450. extra: 961 / 778,
  25451. bottom: 6.2 / 986
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(10, "feet"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(5 + 1 / 12, "feet"),
  25468. weight: math.unit(110, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/aradel/front.svg",
  25472. extra: 324 / 303,
  25473. bottom: 3.6 / 329.4
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Normal",
  25480. height: math.unit(5 + 1 / 12, "feet"),
  25481. default: true
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25487. {
  25488. front: {
  25489. height: math.unit(3 + 8 / 12, "feet"),
  25490. weight: math.unit(50, "lb"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/serryn/front.svg",
  25494. extra: 1792 / 1656,
  25495. bottom: 43.5 / 1840
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(3 + 8 / 12, "feet"),
  25503. default: true
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Xavier Thyme" },
  25509. {
  25510. front: {
  25511. height: math.unit(7 + 10 / 12, "feet"),
  25512. weight: math.unit(255, "lb"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/xavier-thyme/front.svg",
  25516. extra: 3733 / 3642,
  25517. bottom: 131 / 3869
  25518. }
  25519. },
  25520. frontRaven: {
  25521. height: math.unit(7 + 10 / 12, "feet"),
  25522. weight: math.unit(255, "lb"),
  25523. name: "Front (Raven)",
  25524. image: {
  25525. source: "./media/characters/xavier-thyme/front-raven.svg",
  25526. extra: 4385 / 3642,
  25527. bottom: 131 / 4517
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(7 + 10 / 12, "feet"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(1.6, "m"),
  25544. weight: math.unit(50, "kg"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/kiki/front.svg",
  25548. extra: 4682 / 3610,
  25549. bottom: 115 / 4777
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(1.6, "meters"),
  25557. default: true
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(50, "m"),
  25566. weight: math.unit(500, "tonnes"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/ryoko/front.svg",
  25570. extra: 4632 / 3926,
  25571. bottom: 193 / 4823
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(50, "meters"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(30, "m"),
  25588. weight: math.unit(22, "tonnes"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/elio/front.svg",
  25592. extra: 4582 / 3720,
  25593. bottom: 236 / 4828
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(30, "meters"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(6 + 3 / 12, "feet"),
  25610. weight: math.unit(120, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/azura/front.svg",
  25614. extra: 1149 / 1135,
  25615. bottom: 45 / 1194
  25616. }
  25617. },
  25618. frontClothed: {
  25619. height: math.unit(6 + 3 / 12, "feet"),
  25620. weight: math.unit(120, "lb"),
  25621. name: "Front (Clothed)",
  25622. image: {
  25623. source: "./media/characters/azura/front-clothed.svg",
  25624. extra: 1149 / 1135,
  25625. bottom: 45 / 1194
  25626. }
  25627. },
  25628. },
  25629. [
  25630. {
  25631. name: "Normal",
  25632. height: math.unit(6 + 3 / 12, "feet"),
  25633. default: true
  25634. },
  25635. {
  25636. name: "Macro",
  25637. height: math.unit(20 + 6 / 12, "feet")
  25638. },
  25639. {
  25640. name: "Megamacro",
  25641. height: math.unit(12, "miles")
  25642. },
  25643. {
  25644. name: "Gigamacro",
  25645. height: math.unit(10000, "miles")
  25646. },
  25647. {
  25648. name: "Teramacro",
  25649. height: math.unit(900000, "miles")
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(12, "feet"),
  25658. weight: math.unit(1, "ton"),
  25659. capacity: math.unit(660000, "gallons"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/zeus/front.svg",
  25663. extra: 5005 / 4717,
  25664. bottom: 363 / 5388
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(12, "feet")
  25672. },
  25673. {
  25674. name: "Preferred Size",
  25675. height: math.unit(0.5, "miles"),
  25676. default: true
  25677. },
  25678. {
  25679. name: "Giga Horse",
  25680. height: math.unit(300, "miles")
  25681. },
  25682. {
  25683. name: "Riding Planets",
  25684. height: math.unit(30, "megameters")
  25685. },
  25686. {
  25687. name: "Cosmic Giant",
  25688. height: math.unit(3, "zettameters")
  25689. },
  25690. {
  25691. name: "Breeding God",
  25692. height: math.unit(9.92e22, "yottameters")
  25693. },
  25694. ]
  25695. ))
  25696. characterMakers.push(() => makeCharacter(
  25697. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25698. {
  25699. side: {
  25700. height: math.unit(9, "feet"),
  25701. weight: math.unit(1500, "kg"),
  25702. name: "Side",
  25703. image: {
  25704. source: "./media/characters/fang/side.svg",
  25705. extra: 924 / 866,
  25706. bottom: 47.5 / 972.3
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Normal",
  25713. height: math.unit(9, "feet"),
  25714. default: true
  25715. },
  25716. {
  25717. name: "Macro",
  25718. height: math.unit(75 + 6 / 12, "feet")
  25719. },
  25720. {
  25721. name: "Teramacro",
  25722. height: math.unit(50000, "miles")
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(10, "feet"),
  25731. weight: math.unit(2, "tons"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/rekhit/front.svg",
  25735. extra: 2796 / 2590,
  25736. bottom: 225 / 3022
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(10, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Macro",
  25748. height: math.unit(500, "feet")
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Dahlia Verrick" },
  25754. {
  25755. front: {
  25756. height: math.unit(7 + 6.451 / 12, "feet"),
  25757. weight: math.unit(310, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/dahlia-verrick/front.svg",
  25761. extra: 1488 / 1365,
  25762. bottom: 6.2 / 1495
  25763. }
  25764. },
  25765. back: {
  25766. height: math.unit(7 + 6.451 / 12, "feet"),
  25767. weight: math.unit(310, "lb"),
  25768. name: "Back",
  25769. image: {
  25770. source: "./media/characters/dahlia-verrick/back.svg",
  25771. extra: 1472 / 1351,
  25772. bottom: 5.28 / 1477
  25773. }
  25774. },
  25775. frontBusiness: {
  25776. height: math.unit(7 + 6.451 / 12, "feet"),
  25777. weight: math.unit(200, "lb"),
  25778. name: "Front (Business)",
  25779. image: {
  25780. source: "./media/characters/dahlia-verrick/front-business.svg",
  25781. extra: 1478 / 1381,
  25782. bottom: 5.5 / 1484
  25783. }
  25784. },
  25785. frontCasual: {
  25786. height: math.unit(7 + 6.451 / 12, "feet"),
  25787. weight: math.unit(200, "lb"),
  25788. name: "Front (Casual)",
  25789. image: {
  25790. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25791. extra: 1478 / 1381,
  25792. bottom: 5.5 / 1484
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Travel-Sized",
  25799. height: math.unit(7.45, "inches")
  25800. },
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(7 + 6.451 / 12, "feet"),
  25804. default: true
  25805. },
  25806. {
  25807. name: "Hitting the Town",
  25808. height: math.unit(37 + 8 / 12, "feet")
  25809. },
  25810. {
  25811. name: "Stomp in the Suburbs",
  25812. height: math.unit(964 + 9.728 / 12, "feet")
  25813. },
  25814. {
  25815. name: "Sit on the City",
  25816. height: math.unit(61747 + 10.592 / 12, "feet")
  25817. },
  25818. {
  25819. name: "Glomp the Globe",
  25820. height: math.unit(252919327 + 4.832 / 12, "feet")
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(6 + 4 / 12, "feet"),
  25829. weight: math.unit(320, "lb"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/balina-mahigan/front.svg",
  25833. extra: 447 / 428,
  25834. bottom: 18 / 466
  25835. }
  25836. },
  25837. back: {
  25838. height: math.unit(6 + 4 / 12, "feet"),
  25839. weight: math.unit(320, "lb"),
  25840. name: "Back",
  25841. image: {
  25842. source: "./media/characters/balina-mahigan/back.svg",
  25843. extra: 445 / 428,
  25844. bottom: 4.07 / 448
  25845. }
  25846. },
  25847. arm: {
  25848. height: math.unit(1.88, "feet"),
  25849. name: "Arm",
  25850. image: {
  25851. source: "./media/characters/balina-mahigan/arm.svg"
  25852. }
  25853. },
  25854. backPort: {
  25855. height: math.unit(0.685, "feet"),
  25856. name: "Back Port",
  25857. image: {
  25858. source: "./media/characters/balina-mahigan/back-port.svg"
  25859. }
  25860. },
  25861. hoofpaw: {
  25862. height: math.unit(1.41, "feet"),
  25863. name: "Hoofpaw",
  25864. image: {
  25865. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25866. }
  25867. },
  25868. leftHandBack: {
  25869. height: math.unit(0.938, "feet"),
  25870. name: "Left Hand (Back)",
  25871. image: {
  25872. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25873. }
  25874. },
  25875. leftHandFront: {
  25876. height: math.unit(0.938, "feet"),
  25877. name: "Left Hand (Front)",
  25878. image: {
  25879. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25880. }
  25881. },
  25882. rightHandBack: {
  25883. height: math.unit(0.95, "feet"),
  25884. name: "Right Hand (Back)",
  25885. image: {
  25886. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25887. }
  25888. },
  25889. rightHandFront: {
  25890. height: math.unit(0.95, "feet"),
  25891. name: "Right Hand (Front)",
  25892. image: {
  25893. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(6 + 4 / 12, "feet"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25907. {
  25908. front: {
  25909. height: math.unit(6, "feet"),
  25910. weight: math.unit(320, "lb"),
  25911. name: "Front",
  25912. image: {
  25913. source: "./media/characters/balina-mejeri/front.svg",
  25914. extra: 517 / 488,
  25915. bottom: 44.2 / 561
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(6 + 4 / 12, "feet")
  25923. },
  25924. {
  25925. name: "Business",
  25926. height: math.unit(155, "feet"),
  25927. default: true
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25933. {
  25934. kneeling: {
  25935. height: math.unit(6 + 4 / 12, "feet"),
  25936. weight: math.unit(300 * 20, "lb"),
  25937. name: "Kneeling",
  25938. image: {
  25939. source: "./media/characters/balbarian/kneeling.svg",
  25940. extra: 922 / 862,
  25941. bottom: 42.4 / 965
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(6 + 4 / 12, "feet")
  25949. },
  25950. {
  25951. name: "Treasured",
  25952. height: math.unit(18 + 9 / 12, "feet"),
  25953. default: true
  25954. },
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(900, "feet")
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(6 + 4 / 12, "feet"),
  25966. weight: math.unit(325, "lb"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/balina-amarini/front.svg",
  25970. extra: 415 / 403,
  25971. bottom: 19 / 433.4
  25972. }
  25973. },
  25974. back: {
  25975. height: math.unit(6 + 4 / 12, "feet"),
  25976. weight: math.unit(325, "lb"),
  25977. name: "Back",
  25978. image: {
  25979. source: "./media/characters/balina-amarini/back.svg",
  25980. extra: 415 / 403,
  25981. bottom: 13.5 / 432
  25982. }
  25983. },
  25984. overdrive: {
  25985. height: math.unit(6 + 4 / 12, "feet"),
  25986. weight: math.unit(400, "lb"),
  25987. name: "Overdrive",
  25988. image: {
  25989. source: "./media/characters/balina-amarini/overdrive.svg",
  25990. extra: 269 / 259,
  25991. bottom: 12 / 282
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Boom",
  25998. height: math.unit(9 + 10 / 12, "feet"),
  25999. default: true
  26000. },
  26001. {
  26002. name: "Macro",
  26003. height: math.unit(280, "feet")
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26009. {
  26010. goddess: {
  26011. height: math.unit(600, "feet"),
  26012. weight: math.unit(2000000, "tons"),
  26013. name: "Goddess",
  26014. image: {
  26015. source: "./media/characters/lady-kubwa/goddess.svg",
  26016. extra: 1240.5 / 1223,
  26017. bottom: 22 / 1263
  26018. }
  26019. },
  26020. goddesser: {
  26021. height: math.unit(900, "feet"),
  26022. weight: math.unit(20000000, "lb"),
  26023. name: "Goddess-er",
  26024. image: {
  26025. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26026. extra: 899 / 888,
  26027. bottom: 12.6 / 912
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(600, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Megamacro",
  26039. height: math.unit(250, "miles")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(7 + 7 / 12, "feet"),
  26048. weight: math.unit(250, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/tala-grovehorn/front.svg",
  26052. extra: 2636 / 2525,
  26053. bottom: 147 / 2781
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(7 + 7 / 12, "feet"),
  26058. weight: math.unit(250, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/tala-grovehorn/back.svg",
  26062. extra: 2635 / 2539,
  26063. bottom: 100 / 2732.8
  26064. }
  26065. },
  26066. mouth: {
  26067. height: math.unit(1.15, "feet"),
  26068. name: "Mouth",
  26069. image: {
  26070. source: "./media/characters/tala-grovehorn/mouth.svg"
  26071. }
  26072. },
  26073. dick: {
  26074. height: math.unit(2.36, "feet"),
  26075. name: "Dick",
  26076. image: {
  26077. source: "./media/characters/tala-grovehorn/dick.svg"
  26078. }
  26079. },
  26080. slit: {
  26081. height: math.unit(0.61, "feet"),
  26082. name: "Slit",
  26083. image: {
  26084. source: "./media/characters/tala-grovehorn/slit.svg"
  26085. }
  26086. },
  26087. },
  26088. [
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(7 + 7 / 12, "feet"),
  26096. weight: math.unit(225, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/epona/front.svg",
  26100. extra: 2445 / 2290,
  26101. bottom: 251 / 2696
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(7 + 7 / 12, "feet"),
  26106. weight: math.unit(225, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/epona/back.svg",
  26110. extra: 2546 / 2408,
  26111. bottom: 44 / 2589
  26112. }
  26113. },
  26114. genitals: {
  26115. height: math.unit(1.5, "feet"),
  26116. name: "Genitals",
  26117. image: {
  26118. source: "./media/characters/epona/genitals.svg"
  26119. }
  26120. },
  26121. },
  26122. [
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(7 + 7 / 12, "feet"),
  26126. default: true
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26132. {
  26133. front: {
  26134. height: math.unit(7, "feet"),
  26135. weight: math.unit(518, "lb"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/avia-bloodbourn/front.svg",
  26139. extra: 1466 / 1350,
  26140. bottom: 65 / 1527
  26141. }
  26142. },
  26143. },
  26144. [
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(9.35, "feet"),
  26152. weight: math.unit(600, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/amera/front.svg",
  26156. extra: 891 / 818,
  26157. bottom: 30 / 922.7
  26158. }
  26159. },
  26160. back: {
  26161. height: math.unit(9.35, "feet"),
  26162. weight: math.unit(600, "lb"),
  26163. name: "Back",
  26164. image: {
  26165. source: "./media/characters/amera/back.svg",
  26166. extra: 876 / 824,
  26167. bottom: 6.8 / 884
  26168. }
  26169. },
  26170. dick: {
  26171. height: math.unit(2.14, "feet"),
  26172. name: "Dick",
  26173. image: {
  26174. source: "./media/characters/amera/dick.svg"
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(9.35, "feet"),
  26182. default: true
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26188. {
  26189. kneeling: {
  26190. height: math.unit(3 + 4 / 12, "feet"),
  26191. weight: math.unit(90, "lb"),
  26192. name: "Kneeling",
  26193. image: {
  26194. source: "./media/characters/rosewen/kneeling.svg",
  26195. extra: 1835 / 1571,
  26196. bottom: 27.7 / 1862
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(3 + 4 / 12, "feet"),
  26204. default: true
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26210. {
  26211. front: {
  26212. height: math.unit(5 + 10 / 12, "feet"),
  26213. weight: math.unit(200, "lb"),
  26214. name: "Front",
  26215. image: {
  26216. source: "./media/characters/sabah/front.svg",
  26217. extra: 849 / 763,
  26218. bottom: 33.9 / 881
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(5 + 10 / 12, "feet"),
  26226. default: true
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26232. {
  26233. front: {
  26234. height: math.unit(3 + 5 / 12, "feet"),
  26235. weight: math.unit(40, "kg"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/purple-flame/front.svg",
  26239. extra: 1577 / 1412,
  26240. bottom: 97 / 1694
  26241. }
  26242. },
  26243. frontDressed: {
  26244. height: math.unit(3 + 5 / 12, "feet"),
  26245. weight: math.unit(40, "kg"),
  26246. name: "Front (Dressed)",
  26247. image: {
  26248. source: "./media/characters/purple-flame/front-dressed.svg",
  26249. extra: 1577 / 1412,
  26250. bottom: 97 / 1694
  26251. }
  26252. },
  26253. headphones: {
  26254. height: math.unit(0.85, "feet"),
  26255. name: "Headphones",
  26256. image: {
  26257. source: "./media/characters/purple-flame/headphones.svg"
  26258. }
  26259. },
  26260. },
  26261. [
  26262. {
  26263. name: "Really Small",
  26264. height: math.unit(5, "cm")
  26265. },
  26266. {
  26267. name: "Micro",
  26268. height: math.unit(1 + 5 / 12, "feet")
  26269. },
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(3 + 5 / 12, "feet"),
  26273. default: true
  26274. },
  26275. {
  26276. name: "Minimacro",
  26277. height: math.unit(125, "feet")
  26278. },
  26279. {
  26280. name: "Macro",
  26281. height: math.unit(0.5, "miles")
  26282. },
  26283. {
  26284. name: "Megamacro",
  26285. height: math.unit(50, "miles")
  26286. },
  26287. {
  26288. name: "Gigantic",
  26289. height: math.unit(750, "miles")
  26290. },
  26291. {
  26292. name: "Planetary",
  26293. height: math.unit(15000, "miles")
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(14, "feet"),
  26302. weight: math.unit(959, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/arsenal/front.svg",
  26306. extra: 2357 / 2157,
  26307. bottom: 93 / 2458
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(14, "feet"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(6, "feet"),
  26324. weight: math.unit(150, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/adira/front.svg",
  26328. extra: 1078 / 1029,
  26329. bottom: 87 / 1166
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Micro",
  26336. height: math.unit(4, "inches"),
  26337. default: true
  26338. },
  26339. {
  26340. name: "Macro",
  26341. height: math.unit(50, "feet")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(16, "feet"),
  26350. weight: math.unit(1000, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/grim/front.svg",
  26354. extra: 622 / 614,
  26355. bottom: 18.1 / 642
  26356. }
  26357. },
  26358. back: {
  26359. height: math.unit(16, "feet"),
  26360. weight: math.unit(1000, "lb"),
  26361. name: "Back",
  26362. image: {
  26363. source: "./media/characters/grim/back.svg",
  26364. extra: 610.6 / 602,
  26365. bottom: 40.8 / 652
  26366. }
  26367. },
  26368. hunched: {
  26369. height: math.unit(9.75, "feet"),
  26370. weight: math.unit(1000, "lb"),
  26371. name: "Hunched",
  26372. image: {
  26373. source: "./media/characters/grim/hunched.svg",
  26374. extra: 304 / 297,
  26375. bottom: 35.4 / 394
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(16, "feet"),
  26383. default: true
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26389. {
  26390. front: {
  26391. height: math.unit(2.3, "meters"),
  26392. weight: math.unit(300, "lb"),
  26393. name: "Front",
  26394. image: {
  26395. source: "./media/characters/sinja/front-sfw.svg",
  26396. extra: 1393 / 1294,
  26397. bottom: 70 / 1463
  26398. }
  26399. },
  26400. frontNsfw: {
  26401. height: math.unit(2.3, "meters"),
  26402. weight: math.unit(300, "lb"),
  26403. name: "Front (NSFW)",
  26404. image: {
  26405. source: "./media/characters/sinja/front-nsfw.svg",
  26406. extra: 1393 / 1294,
  26407. bottom: 70 / 1463
  26408. }
  26409. },
  26410. back: {
  26411. height: math.unit(2.3, "meters"),
  26412. weight: math.unit(300, "lb"),
  26413. name: "Back",
  26414. image: {
  26415. source: "./media/characters/sinja/back.svg",
  26416. extra: 1393 / 1294,
  26417. bottom: 70 / 1463
  26418. }
  26419. },
  26420. head: {
  26421. height: math.unit(1.771, "feet"),
  26422. name: "Head",
  26423. image: {
  26424. source: "./media/characters/sinja/head.svg"
  26425. }
  26426. },
  26427. slit: {
  26428. height: math.unit(0.8, "feet"),
  26429. name: "Slit",
  26430. image: {
  26431. source: "./media/characters/sinja/slit.svg"
  26432. }
  26433. },
  26434. },
  26435. [
  26436. {
  26437. name: "Normal",
  26438. height: math.unit(2.3, "meters")
  26439. },
  26440. {
  26441. name: "Macro",
  26442. height: math.unit(91, "meters"),
  26443. default: true
  26444. },
  26445. {
  26446. name: "Megamacro",
  26447. height: math.unit(91440, "meters")
  26448. },
  26449. {
  26450. name: "Gigamacro",
  26451. height: math.unit(60960000, "meters")
  26452. },
  26453. {
  26454. name: "Teramacro",
  26455. height: math.unit(9144000000, "meters")
  26456. },
  26457. ]
  26458. ))
  26459. characterMakers.push(() => makeCharacter(
  26460. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26461. {
  26462. front: {
  26463. height: math.unit(1.7, "meters"),
  26464. weight: math.unit(130, "lb"),
  26465. name: "Front",
  26466. image: {
  26467. source: "./media/characters/kyu/front.svg",
  26468. extra: 415 / 395,
  26469. bottom: 5 / 420
  26470. }
  26471. },
  26472. head: {
  26473. height: math.unit(1.75, "feet"),
  26474. name: "Head",
  26475. image: {
  26476. source: "./media/characters/kyu/head.svg"
  26477. }
  26478. },
  26479. foot: {
  26480. height: math.unit(0.81, "feet"),
  26481. name: "Foot",
  26482. image: {
  26483. source: "./media/characters/kyu/foot.svg"
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(1.7, "meters")
  26491. },
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(131, "feet"),
  26495. default: true
  26496. },
  26497. {
  26498. name: "Megamacro",
  26499. height: math.unit(91440, "meters")
  26500. },
  26501. {
  26502. name: "Gigamacro",
  26503. height: math.unit(60960000, "meters")
  26504. },
  26505. {
  26506. name: "Teramacro",
  26507. height: math.unit(9144000000, "meters")
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(7 + 1 / 12, "feet"),
  26516. weight: math.unit(250, "lb"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/joey/front.svg",
  26520. extra: 1791 / 1537,
  26521. bottom: 28 / 1816
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Micro",
  26528. height: math.unit(3, "inches")
  26529. },
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(7 + 1 / 12, "feet"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(165, "cm"),
  26542. weight: math.unit(140, "lb"),
  26543. name: "Front",
  26544. image: {
  26545. source: "./media/characters/sam-evans/front.svg",
  26546. extra: 3417 / 3230,
  26547. bottom: 41.3 / 3417
  26548. }
  26549. },
  26550. frontSixTails: {
  26551. height: math.unit(165, "cm"),
  26552. weight: math.unit(140, "lb"),
  26553. name: "Front-six-tails",
  26554. image: {
  26555. source: "./media/characters/sam-evans/front-six-tails.svg",
  26556. extra: 3417 / 3230,
  26557. bottom: 41.3 / 3417
  26558. }
  26559. },
  26560. back: {
  26561. height: math.unit(165, "cm"),
  26562. weight: math.unit(140, "lb"),
  26563. name: "Back",
  26564. image: {
  26565. source: "./media/characters/sam-evans/back.svg",
  26566. extra: 3227 / 3032,
  26567. bottom: 6.8 / 3234
  26568. }
  26569. },
  26570. face: {
  26571. height: math.unit(0.68, "feet"),
  26572. name: "Face",
  26573. image: {
  26574. source: "./media/characters/sam-evans/face.svg"
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Normal",
  26581. height: math.unit(165, "cm"),
  26582. default: true
  26583. },
  26584. {
  26585. name: "Macro",
  26586. height: math.unit(100, "meters")
  26587. },
  26588. {
  26589. name: "Macro+",
  26590. height: math.unit(800, "meters")
  26591. },
  26592. {
  26593. name: "Macro++",
  26594. height: math.unit(3, "km")
  26595. },
  26596. {
  26597. name: "Macro+++",
  26598. height: math.unit(30, "km")
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(10, "feet"),
  26607. weight: math.unit(750, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/juliet-a/front.svg",
  26611. extra: 1766 / 1720,
  26612. bottom: 43 / 1809
  26613. }
  26614. },
  26615. back: {
  26616. height: math.unit(10, "feet"),
  26617. weight: math.unit(750, "lb"),
  26618. name: "Back",
  26619. image: {
  26620. source: "./media/characters/juliet-a/back.svg",
  26621. extra: 1781 / 1734,
  26622. bottom: 35 / 1810,
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(10, "feet"),
  26630. default: true
  26631. },
  26632. {
  26633. name: "Dragon Form",
  26634. height: math.unit(250, "feet")
  26635. },
  26636. {
  26637. name: "Macro",
  26638. height: math.unit(1000, "feet")
  26639. },
  26640. {
  26641. name: "Megamacro",
  26642. height: math.unit(10000, "feet")
  26643. }
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26648. {
  26649. regular: {
  26650. height: math.unit(7 + 3 / 12, "feet"),
  26651. weight: math.unit(260, "lb"),
  26652. name: "Regular",
  26653. image: {
  26654. source: "./media/characters/wild/regular.svg",
  26655. extra: 97.45 / 92,
  26656. bottom: 6.8 / 104.3
  26657. }
  26658. },
  26659. biggums: {
  26660. height: math.unit(8 + 6 / 12, "feet"),
  26661. weight: math.unit(425, "lb"),
  26662. name: "Biggums",
  26663. image: {
  26664. source: "./media/characters/wild/biggums.svg",
  26665. extra: 97.45 / 92,
  26666. bottom: 7.5 / 132.34
  26667. }
  26668. },
  26669. mawRegular: {
  26670. height: math.unit(1.24, "feet"),
  26671. name: "Maw (Regular)",
  26672. image: {
  26673. source: "./media/characters/wild/maw.svg"
  26674. }
  26675. },
  26676. mawBiggums: {
  26677. height: math.unit(1.47, "feet"),
  26678. name: "Maw (Biggums)",
  26679. image: {
  26680. source: "./media/characters/wild/maw.svg"
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(7 + 3 / 12, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26694. {
  26695. front: {
  26696. height: math.unit(2.5, "meters"),
  26697. weight: math.unit(200, "kg"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/vidar/front.svg",
  26701. extra: 2994 / 2795,
  26702. bottom: 56 / 3061
  26703. }
  26704. },
  26705. back: {
  26706. height: math.unit(2.5, "meters"),
  26707. weight: math.unit(200, "kg"),
  26708. name: "Back",
  26709. image: {
  26710. source: "./media/characters/vidar/back.svg",
  26711. extra: 3131 / 2928,
  26712. bottom: 13.5 / 3141.5
  26713. }
  26714. },
  26715. feral: {
  26716. height: math.unit(2.5, "meters"),
  26717. weight: math.unit(2000, "kg"),
  26718. name: "Feral",
  26719. image: {
  26720. source: "./media/characters/vidar/feral.svg",
  26721. extra: 2790 / 1765,
  26722. bottom: 6 / 2796
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(2.5, "meters"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Macro",
  26734. height: math.unit(100, "meters")
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(5 + 9 / 12, "feet"),
  26743. weight: math.unit(120, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/ash/front.svg",
  26747. extra: 2189 / 1961,
  26748. bottom: 5.2 / 2194
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(5 + 9 / 12, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(9, "feet"),
  26765. weight: math.unit(10000, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/gygabite/front.svg",
  26769. bottom: 31.7 / 537.8,
  26770. extra: 505 / 370
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(9, "feet"),
  26778. default: true
  26779. },
  26780. ]
  26781. ))
  26782. characterMakers.push(() => makeCharacter(
  26783. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26784. {
  26785. front: {
  26786. height: math.unit(12, "feet"),
  26787. weight: math.unit(35000, "lb"),
  26788. name: "Front",
  26789. image: {
  26790. source: "./media/characters/p0tat0/front.svg",
  26791. extra: 1065 / 921,
  26792. bottom: 55.7 / 1121.25
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Normal",
  26799. height: math.unit(12, "feet"),
  26800. default: true
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26806. {
  26807. side: {
  26808. height: math.unit(6.5, "feet"),
  26809. weight: math.unit(800, "lb"),
  26810. name: "Side",
  26811. image: {
  26812. source: "./media/characters/dusk/side.svg",
  26813. extra: 615 / 373,
  26814. bottom: 53 / 664
  26815. }
  26816. },
  26817. sitting: {
  26818. height: math.unit(7, "feet"),
  26819. weight: math.unit(800, "lb"),
  26820. name: "Sitting",
  26821. image: {
  26822. source: "./media/characters/dusk/sitting.svg",
  26823. extra: 753 / 425,
  26824. bottom: 33 / 774
  26825. }
  26826. },
  26827. head: {
  26828. height: math.unit(6.1, "feet"),
  26829. name: "Head",
  26830. image: {
  26831. source: "./media/characters/dusk/head.svg"
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(7, "feet"),
  26839. default: true
  26840. },
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26845. {
  26846. front: {
  26847. height: math.unit(15, "feet"),
  26848. weight: math.unit(7000, "lb"),
  26849. name: "Front",
  26850. image: {
  26851. source: "./media/characters/jay-direwolf/front.svg",
  26852. extra: 1810 / 1732,
  26853. bottom: 66 / 1892
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(15, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(4 + 9 / 12, "feet"),
  26870. weight: math.unit(130, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/anchovie/front.svg",
  26874. extra: 382 / 350,
  26875. bottom: 25 / 409
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(4 + 9 / 12, "feet"),
  26880. weight: math.unit(130, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/anchovie/back.svg",
  26884. extra: 385 / 352,
  26885. bottom: 16.6 / 402
  26886. }
  26887. },
  26888. frontDressed: {
  26889. height: math.unit(4 + 9 / 12, "feet"),
  26890. weight: math.unit(130, "lb"),
  26891. name: "Front (Dressed)",
  26892. image: {
  26893. source: "./media/characters/anchovie/front-dressed.svg",
  26894. extra: 382 / 350,
  26895. bottom: 25 / 409
  26896. }
  26897. },
  26898. backDressed: {
  26899. height: math.unit(4 + 9 / 12, "feet"),
  26900. weight: math.unit(130, "lb"),
  26901. name: "Back (Dressed)",
  26902. image: {
  26903. source: "./media/characters/anchovie/back-dressed.svg",
  26904. extra: 385 / 352,
  26905. bottom: 16.6 / 402
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Micro",
  26912. height: math.unit(6.4, "inches")
  26913. },
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(4 + 9 / 12, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(2, "meters"),
  26926. weight: math.unit(180, "lb"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/acidrenamon/front.svg",
  26930. extra: 987 / 890,
  26931. bottom: 22.8 / 1009
  26932. }
  26933. },
  26934. back: {
  26935. height: math.unit(2, "meters"),
  26936. weight: math.unit(180, "lb"),
  26937. name: "Back",
  26938. image: {
  26939. source: "./media/characters/acidrenamon/back.svg",
  26940. extra: 983 / 891,
  26941. bottom: 8.4 / 992
  26942. }
  26943. },
  26944. head: {
  26945. height: math.unit(1.92, "feet"),
  26946. name: "Head",
  26947. image: {
  26948. source: "./media/characters/acidrenamon/head.svg"
  26949. }
  26950. },
  26951. rump: {
  26952. height: math.unit(1.72, "feet"),
  26953. name: "Rump",
  26954. image: {
  26955. source: "./media/characters/acidrenamon/rump.svg"
  26956. }
  26957. },
  26958. tail: {
  26959. height: math.unit(4.2, "feet"),
  26960. name: "Tail",
  26961. image: {
  26962. source: "./media/characters/acidrenamon/tail.svg"
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(2, "meters"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "Minimacro",
  26974. height: math.unit(7, "meters")
  26975. },
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(200, "meters")
  26979. },
  26980. {
  26981. name: "Gigamacro",
  26982. height: math.unit(0.2, "earths")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(6, "feet"),
  26991. weight: math.unit(150, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/kenzie-lee/front.svg",
  26995. extra: 1525 / 1465,
  26996. bottom: 45 / 1570
  26997. }
  26998. },
  26999. side: {
  27000. height: math.unit(6, "feet"),
  27001. weight: math.unit(150, "lb"),
  27002. name: "Side",
  27003. image: {
  27004. source: "./media/characters/kenzie-lee/side.svg",
  27005. extra: 5505 / 5383,
  27006. bottom: 60 / 5573
  27007. }
  27008. },
  27009. paw: {
  27010. height: math.unit(0.57, "feet"),
  27011. name: "Paw",
  27012. image: {
  27013. source: "./media/characters/kenzie-lee/paw.svg"
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(152, "feet"),
  27021. default: true
  27022. },
  27023. {
  27024. name: "Megamacro",
  27025. height: math.unit(7, "miles")
  27026. },
  27027. {
  27028. name: "Gigamacro",
  27029. height: math.unit(8000, "miles")
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27035. {
  27036. side: {
  27037. height: math.unit(6, "feet"),
  27038. weight: math.unit(150, "lb"),
  27039. name: "Side",
  27040. image: {
  27041. source: "./media/characters/withers/side.svg",
  27042. extra: 1830 / 1728,
  27043. bottom: 96 / 1927
  27044. }
  27045. },
  27046. front: {
  27047. height: math.unit(6, "feet"),
  27048. weight: math.unit(150, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/withers/front.svg",
  27052. extra: 1514 / 1438,
  27053. bottom: 118 / 1632
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Macro",
  27060. height: math.unit(168, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Megamacro",
  27065. height: math.unit(15, "miles")
  27066. }
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(6 + 7 / 12, "feet"),
  27074. weight: math.unit(250, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/nemoskii/front.svg",
  27078. extra: 2270 / 1734,
  27079. bottom: 86 / 2354
  27080. }
  27081. },
  27082. back: {
  27083. height: math.unit(6 + 7 / 12, "feet"),
  27084. weight: math.unit(250, "lb"),
  27085. name: "Back",
  27086. image: {
  27087. source: "./media/characters/nemoskii/back.svg",
  27088. extra: 1845 / 1788,
  27089. bottom: 10.5 / 1852
  27090. }
  27091. },
  27092. head: {
  27093. height: math.unit(1.31, "feet"),
  27094. name: "Head",
  27095. image: {
  27096. source: "./media/characters/nemoskii/head.svg"
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Micro",
  27103. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27104. },
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(6 + 7 / 12, "feet"),
  27108. default: true
  27109. },
  27110. {
  27111. name: "Macro",
  27112. height: math.unit((6 + 7 / 12) * 150, "feet")
  27113. },
  27114. {
  27115. name: "Macro+",
  27116. height: math.unit((6 + 7 / 12) * 500, "feet")
  27117. },
  27118. {
  27119. name: "Megamacro",
  27120. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(1, "mile"),
  27129. weight: math.unit(265261.9, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/shui/front.svg",
  27133. extra: 1633 / 1564,
  27134. bottom: 91.5 / 1726
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Macro",
  27141. height: math.unit(1, "mile"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(12 + 6 / 12, "feet"),
  27151. weight: math.unit(1342, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/arokh-takakura/front.svg",
  27155. extra: 1089 / 1043,
  27156. bottom: 77.4 / 1176.7
  27157. }
  27158. },
  27159. back: {
  27160. height: math.unit(12 + 6 / 12, "feet"),
  27161. weight: math.unit(1342, "lb"),
  27162. name: "Back",
  27163. image: {
  27164. source: "./media/characters/arokh-takakura/back.svg",
  27165. extra: 1046 / 1019,
  27166. bottom: 102 / 1150
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Big",
  27173. height: math.unit(12 + 6 / 12, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(5 + 6 / 12, "feet"),
  27183. weight: math.unit(150, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/theo/front.svg",
  27187. extra: 1184 / 1131,
  27188. bottom: 7.4 / 1191
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Micro",
  27195. height: math.unit(5, "inches")
  27196. },
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(5 + 6 / 12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(5 + 9 / 12, "feet"),
  27209. weight: math.unit(130, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/cecelia-swift/front.svg",
  27213. extra: 502 / 484,
  27214. bottom: 23 / 523
  27215. }
  27216. },
  27217. back: {
  27218. height: math.unit(5 + 9 / 12, "feet"),
  27219. weight: math.unit(130, "lb"),
  27220. name: "Back",
  27221. image: {
  27222. source: "./media/characters/cecelia-swift/back.svg",
  27223. extra: 499 / 485,
  27224. bottom: 12 / 511
  27225. }
  27226. },
  27227. head: {
  27228. height: math.unit(0.90, "feet"),
  27229. name: "Head",
  27230. image: {
  27231. source: "./media/characters/cecelia-swift/head.svg"
  27232. }
  27233. },
  27234. rump: {
  27235. height: math.unit(1.75, "feet"),
  27236. name: "Rump",
  27237. image: {
  27238. source: "./media/characters/cecelia-swift/rump.svg"
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(5 + 9 / 12, "feet"),
  27246. default: true
  27247. },
  27248. {
  27249. name: "Big",
  27250. height: math.unit(50, "feet")
  27251. },
  27252. {
  27253. name: "Macro",
  27254. height: math.unit(100, "feet")
  27255. },
  27256. {
  27257. name: "Macro+",
  27258. height: math.unit(500, "feet")
  27259. },
  27260. {
  27261. name: "Macro++",
  27262. height: math.unit(1000, "feet")
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(6, "feet"),
  27271. weight: math.unit(150, "lb"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/kaunan/front.svg",
  27275. extra: 2890 / 2523,
  27276. bottom: 49 / 2939
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Macro",
  27283. height: math.unit(150, "feet"),
  27284. default: true
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(175, "cm"),
  27293. weight: math.unit(60, "kg"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/fei/front.svg",
  27297. extra: 2581 / 2400,
  27298. bottom: 82.2 / 2663
  27299. }
  27300. },
  27301. },
  27302. [
  27303. {
  27304. name: "Mortal",
  27305. height: math.unit(175, "cm")
  27306. },
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(3500, "m"),
  27310. default: true
  27311. },
  27312. {
  27313. name: "Stroll",
  27314. height: math.unit(17.5, "km")
  27315. },
  27316. {
  27317. name: "Showoff",
  27318. height: math.unit(175, "km")
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27324. {
  27325. front: {
  27326. height: math.unit(7, "feet"),
  27327. weight: math.unit(1000, "kg"),
  27328. name: "Front",
  27329. image: {
  27330. source: "./media/characters/edrax/front.svg",
  27331. extra: 2838 / 2550,
  27332. bottom: 130 / 2968
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Small",
  27339. height: math.unit(7, "feet")
  27340. },
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(1500, "meters")
  27344. },
  27345. {
  27346. name: "Mega",
  27347. height: math.unit(12000000, "km"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Megamacro",
  27352. height: math.unit(10600000, "lightyears")
  27353. },
  27354. {
  27355. name: "Hypermacro",
  27356. height: math.unit(256, "yottameters")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(10, "feet"),
  27365. weight: math.unit(750, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/clove/front.svg",
  27369. extra: 2031 / 1860,
  27370. bottom: 47.8 / 2080
  27371. }
  27372. },
  27373. back: {
  27374. height: math.unit(10, "feet"),
  27375. weight: math.unit(750, "lb"),
  27376. name: "Back",
  27377. image: {
  27378. source: "./media/characters/clove/back.svg",
  27379. extra: 2025 / 1859,
  27380. bottom: 46 / 2071
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(10, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(4, "feet"),
  27397. weight: math.unit(50, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/alex-rabbit/front.svg",
  27401. extra: 507 / 458,
  27402. bottom: 18.5 / 527
  27403. }
  27404. },
  27405. back: {
  27406. height: math.unit(4, "feet"),
  27407. weight: math.unit(50, "lb"),
  27408. name: "Back",
  27409. image: {
  27410. source: "./media/characters/alex-rabbit/back.svg",
  27411. extra: 502 / 460,
  27412. bottom: 18.9 / 521
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(4, "feet"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(1 + 3 / 12, "feet"),
  27429. weight: math.unit(80, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/zander-rose/front.svg",
  27433. extra: 916 / 797,
  27434. bottom: 17 / 933
  27435. }
  27436. },
  27437. back: {
  27438. height: math.unit(1 + 3 / 12, "feet"),
  27439. weight: math.unit(80, "lb"),
  27440. name: "Back",
  27441. image: {
  27442. source: "./media/characters/zander-rose/back.svg",
  27443. extra: 903 / 779,
  27444. bottom: 31 / 934
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(1 + 3 / 12, "feet"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27458. {
  27459. anthro: {
  27460. height: math.unit(6, "feet"),
  27461. weight: math.unit(150, "lb"),
  27462. name: "Anthro",
  27463. image: {
  27464. source: "./media/characters/razz/anthro.svg",
  27465. extra: 1437 / 1343,
  27466. bottom: 48 / 1485
  27467. }
  27468. },
  27469. feral: {
  27470. height: math.unit(6, "feet"),
  27471. weight: math.unit(150, "lb"),
  27472. name: "Feral",
  27473. image: {
  27474. source: "./media/characters/razz/feral.svg",
  27475. extra: 2569 / 1385,
  27476. bottom: 95 / 2664
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(6, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(9 + 4 / 12, "feet"),
  27493. weight: math.unit(500, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/morrigan/front.svg",
  27497. extra: 2707 / 2579,
  27498. bottom: 156 / 2863
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(9 + 4 / 12, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(5, "stories"),
  27515. weight: math.unit(4000, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/jenene/front.svg",
  27519. extra: 1780 / 1710,
  27520. bottom: 57 / 1837
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(5, "stories"),
  27528. default: true
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27534. {
  27535. front: {
  27536. height: math.unit(6, "feet"),
  27537. weight: math.unit(150, "lb"),
  27538. name: "Front",
  27539. image: {
  27540. source: "./media/characters/vix-archaser/front.svg",
  27541. extra: 2767 / 2562,
  27542. bottom: 36 / 2803
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Micro",
  27549. height: math.unit(1, "foot")
  27550. },
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(6 + 5 / 12, "feet")
  27554. },
  27555. {
  27556. name: "Minimacro",
  27557. height: math.unit(500, "feet")
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(4, "miles")
  27562. },
  27563. {
  27564. name: "Megamacro",
  27565. height: math.unit(250, "miles"),
  27566. default: true
  27567. },
  27568. {
  27569. name: "Gigamacro",
  27570. height: math.unit(1, "universe")
  27571. },
  27572. {
  27573. name: "Endgame",
  27574. height: math.unit(100, "multiverses")
  27575. }
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27580. {
  27581. taurSfw: {
  27582. height: math.unit(10, "meters"),
  27583. weight: math.unit(17500, "kg"),
  27584. name: "Taur",
  27585. image: {
  27586. source: "./media/characters/faey/taur-sfw.svg",
  27587. extra: 1200 / 968,
  27588. bottom: 41 / 1241
  27589. }
  27590. },
  27591. chestmaw: {
  27592. height: math.unit(2.01, "meters"),
  27593. name: "Chestmaw",
  27594. image: {
  27595. source: "./media/characters/faey/chestmaw.svg"
  27596. }
  27597. },
  27598. foot: {
  27599. height: math.unit(2.43, "meters"),
  27600. name: "Foot",
  27601. image: {
  27602. source: "./media/characters/faey/foot.svg"
  27603. }
  27604. },
  27605. jaws: {
  27606. height: math.unit(1.66, "meters"),
  27607. name: "Jaws",
  27608. image: {
  27609. source: "./media/characters/faey/jaws.svg"
  27610. }
  27611. },
  27612. tongues: {
  27613. height: math.unit(2.01, "meters"),
  27614. name: "Tongues",
  27615. image: {
  27616. source: "./media/characters/faey/tongues.svg"
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Small",
  27623. height: math.unit(10, "meters"),
  27624. default: true
  27625. },
  27626. {
  27627. name: "Big",
  27628. height: math.unit(500000, "km")
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27634. {
  27635. front: {
  27636. height: math.unit(7, "feet"),
  27637. weight: math.unit(275, "lb"),
  27638. name: "Front",
  27639. image: {
  27640. source: "./media/characters/roku/front.svg",
  27641. extra: 903 / 878,
  27642. bottom: 37 / 940
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(7, "feet"),
  27650. default: true
  27651. },
  27652. {
  27653. name: "Macro",
  27654. height: math.unit(500, "feet")
  27655. },
  27656. {
  27657. name: "Megamacro",
  27658. height: math.unit(200, "miles")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(6 + 2 / 12, "feet"),
  27667. weight: math.unit(150, "lb"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/lira/front.svg",
  27671. extra: 1727 / 1605,
  27672. bottom: 26 / 1753
  27673. }
  27674. },
  27675. back: {
  27676. height: math.unit(6 + 2 / 12, "feet"),
  27677. weight: math.unit(150, "lb"),
  27678. name: "Back",
  27679. image: {
  27680. source: "./media/characters/lira/back.svg",
  27681. extra: 1713/1621,
  27682. bottom: 20/1733
  27683. }
  27684. },
  27685. hand: {
  27686. height: math.unit(0.75, "feet"),
  27687. name: "Hand",
  27688. image: {
  27689. source: "./media/characters/lira/hand.svg"
  27690. }
  27691. },
  27692. maw: {
  27693. height: math.unit(0.65, "feet"),
  27694. name: "Maw",
  27695. image: {
  27696. source: "./media/characters/lira/maw.svg"
  27697. }
  27698. },
  27699. pawDigi: {
  27700. height: math.unit(1.6, "feet"),
  27701. name: "Paw Digi",
  27702. image: {
  27703. source: "./media/characters/lira/paw-digi.svg"
  27704. }
  27705. },
  27706. pawPlanti: {
  27707. height: math.unit(1.4, "feet"),
  27708. name: "Paw Planti",
  27709. image: {
  27710. source: "./media/characters/lira/paw-planti.svg"
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(6 + 2 / 12, "feet"),
  27718. default: true
  27719. },
  27720. {
  27721. name: "Macro",
  27722. height: math.unit(100, "feet")
  27723. },
  27724. {
  27725. name: "Macro²",
  27726. height: math.unit(1600, "feet")
  27727. },
  27728. {
  27729. name: "Planetary",
  27730. height: math.unit(20, "earths")
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(6, "feet"),
  27739. weight: math.unit(150, "lb"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/hadjet/front.svg",
  27743. extra: 1480 / 1346,
  27744. bottom: 26 / 1506
  27745. }
  27746. },
  27747. frontNsfw: {
  27748. height: math.unit(6, "feet"),
  27749. weight: math.unit(150, "lb"),
  27750. name: "Front (NSFW)",
  27751. image: {
  27752. source: "./media/characters/hadjet/front-nsfw.svg",
  27753. extra: 1440 / 1358,
  27754. bottom: 52 / 1492
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Macro",
  27761. height: math.unit(10, "stories"),
  27762. default: true
  27763. },
  27764. {
  27765. name: "Megamacro",
  27766. height: math.unit(1.5, "miles")
  27767. },
  27768. {
  27769. name: "Megamacro+",
  27770. height: math.unit(5, "miles")
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27776. {
  27777. side: {
  27778. height: math.unit(106, "feet"),
  27779. weight: math.unit(500, "tonnes"),
  27780. name: "Side",
  27781. image: {
  27782. source: "./media/characters/kodran/side.svg",
  27783. extra: 553 / 480,
  27784. bottom: 33 / 586
  27785. }
  27786. },
  27787. front: {
  27788. height: math.unit(132, "feet"),
  27789. weight: math.unit(500, "tonnes"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/kodran/front.svg",
  27793. extra: 667 / 643,
  27794. bottom: 42 / 709
  27795. }
  27796. },
  27797. flying: {
  27798. height: math.unit(350, "feet"),
  27799. weight: math.unit(500, "tonnes"),
  27800. name: "Flying",
  27801. image: {
  27802. source: "./media/characters/kodran/flying.svg"
  27803. }
  27804. },
  27805. foot: {
  27806. height: math.unit(33, "feet"),
  27807. name: "Foot",
  27808. image: {
  27809. source: "./media/characters/kodran/foot.svg"
  27810. }
  27811. },
  27812. footFront: {
  27813. height: math.unit(19, "feet"),
  27814. name: "Foot (Front)",
  27815. image: {
  27816. source: "./media/characters/kodran/foot-front.svg",
  27817. extra: 261 / 261,
  27818. bottom: 91 / 352
  27819. }
  27820. },
  27821. headFront: {
  27822. height: math.unit(53, "feet"),
  27823. name: "Head (Front)",
  27824. image: {
  27825. source: "./media/characters/kodran/head-front.svg"
  27826. }
  27827. },
  27828. headSide: {
  27829. height: math.unit(65, "feet"),
  27830. name: "Head (Side)",
  27831. image: {
  27832. source: "./media/characters/kodran/head-side.svg"
  27833. }
  27834. },
  27835. throat: {
  27836. height: math.unit(79, "feet"),
  27837. name: "Throat",
  27838. image: {
  27839. source: "./media/characters/kodran/throat.svg"
  27840. }
  27841. },
  27842. },
  27843. [
  27844. {
  27845. name: "Large",
  27846. height: math.unit(106, "feet"),
  27847. default: true
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27853. {
  27854. side: {
  27855. height: math.unit(11, "feet"),
  27856. weight: math.unit(150, "lb"),
  27857. name: "Side",
  27858. image: {
  27859. source: "./media/characters/pyxaron/side.svg",
  27860. extra: 305 / 195,
  27861. bottom: 17 / 322
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(11, "feet"),
  27869. default: true
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(6, "feet"),
  27878. weight: math.unit(150, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/meep/front.svg",
  27882. extra: 88 / 80,
  27883. bottom: 6 / 94
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Fun Sized",
  27890. height: math.unit(2, "inches"),
  27891. default: true
  27892. },
  27893. {
  27894. name: "Friend Sized",
  27895. height: math.unit(8, "inches")
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(15, "feet"),
  27904. weight: math.unit(2500, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/holly-rabbit/front.svg",
  27908. extra: 1433 / 1233,
  27909. bottom: 125 / 1558
  27910. }
  27911. },
  27912. dick: {
  27913. height: math.unit(4.6, "feet"),
  27914. name: "Dick",
  27915. image: {
  27916. source: "./media/characters/holly-rabbit/dick.svg"
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(15, "feet"),
  27924. default: true
  27925. },
  27926. {
  27927. name: "Macro",
  27928. height: math.unit(250, "feet")
  27929. },
  27930. {
  27931. name: "Macro+",
  27932. height: math.unit(2500, "feet")
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(3.02, "meters"),
  27941. weight: math.unit(500, "kg"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/drena/front.svg",
  27945. extra: 282 / 243,
  27946. bottom: 8 / 290
  27947. }
  27948. },
  27949. side: {
  27950. height: math.unit(3.02, "meters"),
  27951. weight: math.unit(500, "kg"),
  27952. name: "Side",
  27953. image: {
  27954. source: "./media/characters/drena/side.svg",
  27955. extra: 280 / 245,
  27956. bottom: 10 / 290
  27957. }
  27958. },
  27959. back: {
  27960. height: math.unit(3.02, "meters"),
  27961. weight: math.unit(500, "kg"),
  27962. name: "Back",
  27963. image: {
  27964. source: "./media/characters/drena/back.svg",
  27965. extra: 278 / 243,
  27966. bottom: 2 / 280
  27967. }
  27968. },
  27969. foot: {
  27970. height: math.unit(0.75, "meters"),
  27971. name: "Foot",
  27972. image: {
  27973. source: "./media/characters/drena/foot.svg"
  27974. }
  27975. },
  27976. maw: {
  27977. height: math.unit(0.82, "meters"),
  27978. name: "Maw",
  27979. image: {
  27980. source: "./media/characters/drena/maw.svg"
  27981. }
  27982. },
  27983. rump: {
  27984. height: math.unit(0.93, "meters"),
  27985. name: "Rump",
  27986. image: {
  27987. source: "./media/characters/drena/rump.svg"
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(3.02, "meters"),
  27995. default: true
  27996. },
  27997. ]
  27998. ))
  27999. characterMakers.push(() => makeCharacter(
  28000. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28001. {
  28002. front: {
  28003. height: math.unit(6 + 4 / 12, "feet"),
  28004. weight: math.unit(250, "lb"),
  28005. name: "Front",
  28006. image: {
  28007. source: "./media/characters/remmyzilla/front.svg",
  28008. extra: 4033 / 3588,
  28009. bottom: 123 / 4156
  28010. }
  28011. },
  28012. back: {
  28013. height: math.unit(6 + 4 / 12, "feet"),
  28014. weight: math.unit(250, "lb"),
  28015. name: "Back",
  28016. image: {
  28017. source: "./media/characters/remmyzilla/back.svg",
  28018. extra: 2687 / 2555,
  28019. bottom: 48 / 2735
  28020. }
  28021. },
  28022. frontFancy: {
  28023. height: math.unit(6 + 4 / 12, "feet"),
  28024. weight: math.unit(250, "lb"),
  28025. name: "Front (Fancy)",
  28026. image: {
  28027. source: "./media/characters/remmyzilla/front-fancy.svg",
  28028. extra: 4119 / 3419,
  28029. bottom: 237 / 4356
  28030. }
  28031. },
  28032. paw: {
  28033. height: math.unit(1.73, "feet"),
  28034. name: "Paw",
  28035. image: {
  28036. source: "./media/characters/remmyzilla/paw.svg"
  28037. }
  28038. },
  28039. maw: {
  28040. height: math.unit(1.73, "feet"),
  28041. name: "Maw",
  28042. image: {
  28043. source: "./media/characters/remmyzilla/maw.svg"
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(6 + 4 / 12, "feet")
  28051. },
  28052. {
  28053. name: "Minimacro",
  28054. height: math.unit(12 + 8 / 12, "feet")
  28055. },
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(640, "feet"),
  28059. default: true
  28060. },
  28061. {
  28062. name: "Megamacro",
  28063. height: math.unit(6400, "feet")
  28064. },
  28065. {
  28066. name: "Gigamacro",
  28067. height: math.unit(64000, "miles")
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(2.5, "meters"),
  28076. weight: math.unit(300, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/lawrence/front.svg",
  28080. extra: 357 / 335,
  28081. bottom: 30 / 387
  28082. }
  28083. },
  28084. back: {
  28085. height: math.unit(2.5, "meters"),
  28086. weight: math.unit(300, "lb"),
  28087. name: "Back",
  28088. image: {
  28089. source: "./media/characters/lawrence/back.svg",
  28090. extra: 357 / 338,
  28091. bottom: 16 / 373
  28092. }
  28093. },
  28094. head: {
  28095. height: math.unit(0.9, "meter"),
  28096. name: "Head",
  28097. image: {
  28098. source: "./media/characters/lawrence/head.svg"
  28099. }
  28100. },
  28101. maw: {
  28102. height: math.unit(0.7, "meter"),
  28103. name: "Maw",
  28104. image: {
  28105. source: "./media/characters/lawrence/maw.svg"
  28106. }
  28107. },
  28108. footBottom: {
  28109. height: math.unit(0.5, "meter"),
  28110. name: "Foot (Bottom)",
  28111. image: {
  28112. source: "./media/characters/lawrence/foot-bottom.svg"
  28113. }
  28114. },
  28115. footTop: {
  28116. height: math.unit(0.5, "meter"),
  28117. name: "Foot (Top)",
  28118. image: {
  28119. source: "./media/characters/lawrence/foot-top.svg"
  28120. }
  28121. },
  28122. },
  28123. [
  28124. {
  28125. name: "Normal",
  28126. height: math.unit(2.5, "meters"),
  28127. default: true
  28128. },
  28129. {
  28130. name: "Macro",
  28131. height: math.unit(95, "meters")
  28132. },
  28133. {
  28134. name: "Megamacro",
  28135. height: math.unit(150, "km")
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28141. {
  28142. front: {
  28143. height: math.unit(4.2, "meters"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/sydney/front.svg",
  28147. extra: 1323 / 1277,
  28148. bottom: 111 / 1434
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(4.2, "meters"),
  28156. default: true
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28162. {
  28163. back: {
  28164. height: math.unit(201, "feet"),
  28165. name: "Back",
  28166. image: {
  28167. source: "./media/characters/jessica/back.svg",
  28168. extra: 273 / 259,
  28169. bottom: 7 / 280
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(201, "feet"),
  28177. default: true
  28178. },
  28179. {
  28180. name: "Megamacro",
  28181. height: math.unit(8, "miles")
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28187. {
  28188. side: {
  28189. height: math.unit(320, "cm"),
  28190. name: "Side",
  28191. image: {
  28192. source: "./media/characters/victoria/side.svg",
  28193. extra: 778 / 346,
  28194. bottom: 56 / 834
  28195. }
  28196. },
  28197. maw: {
  28198. height: math.unit(5.9, "feet"),
  28199. name: "Maw",
  28200. image: {
  28201. source: "./media/characters/victoria/maw.svg"
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Normal",
  28208. height: math.unit(320, "cm"),
  28209. default: true
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28215. {
  28216. front: {
  28217. height: math.unit(5 + 6 / 12, "feet"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/cat/front.svg",
  28221. extra: 1374 / 1257,
  28222. bottom: 59 / 1433
  28223. }
  28224. },
  28225. back: {
  28226. height: math.unit(5 + 6 / 12, "feet"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/cat/back.svg",
  28230. extra: 1337 / 1226,
  28231. bottom: 34 / 1371
  28232. }
  28233. },
  28234. taur: {
  28235. height: math.unit(7, "feet"),
  28236. name: "Taur",
  28237. image: {
  28238. source: "./media/characters/cat/taur.svg",
  28239. extra: 1345 / 1231,
  28240. bottom: 66 / 1411
  28241. }
  28242. },
  28243. lucario: {
  28244. height: math.unit(4, "feet"),
  28245. name: "Lucario",
  28246. image: {
  28247. source: "./media/characters/cat/lucario.svg",
  28248. extra: 1470 / 1318,
  28249. bottom: 65 / 1535
  28250. }
  28251. },
  28252. megaLucario: {
  28253. height: math.unit(4, "feet"),
  28254. name: "Mega Lucario",
  28255. image: {
  28256. source: "./media/characters/cat/mega-lucario.svg",
  28257. extra: 1515 / 1319,
  28258. bottom: 63 / 1578
  28259. }
  28260. },
  28261. nickit: {
  28262. height: math.unit(2, "feet"),
  28263. name: "Nickit",
  28264. image: {
  28265. source: "./media/characters/cat/nickit.svg",
  28266. extra: 1980 / 1585,
  28267. bottom: 102 / 2082
  28268. }
  28269. },
  28270. lopunnyFront: {
  28271. height: math.unit(5, "feet"),
  28272. name: "Lopunny (Front)",
  28273. image: {
  28274. source: "./media/characters/cat/lopunny-front.svg",
  28275. extra: 1782 / 1469,
  28276. bottom: 38 / 1820
  28277. }
  28278. },
  28279. lopunnyBack: {
  28280. height: math.unit(5, "feet"),
  28281. name: "Lopunny (Back)",
  28282. image: {
  28283. source: "./media/characters/cat/lopunny-back.svg",
  28284. extra: 1660 / 1490,
  28285. bottom: 25 / 1685
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Really small",
  28292. height: math.unit(1, "nm")
  28293. },
  28294. {
  28295. name: "Micro",
  28296. height: math.unit(5, "inches")
  28297. },
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(5 + 6 / 12, "feet"),
  28301. default: true
  28302. },
  28303. {
  28304. name: "Macro",
  28305. height: math.unit(50, "feet")
  28306. },
  28307. {
  28308. name: "Macro+",
  28309. height: math.unit(150, "feet")
  28310. },
  28311. {
  28312. name: "Megamacro",
  28313. height: math.unit(100, "miles")
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28319. {
  28320. front: {
  28321. height: math.unit(63.4, "meters"),
  28322. weight: math.unit(3.28349e+6, "kilograms"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/kirina-violet/front.svg",
  28326. extra: 2812 / 2725,
  28327. bottom: 0 / 2812
  28328. }
  28329. },
  28330. back: {
  28331. height: math.unit(63.4, "meters"),
  28332. weight: math.unit(3.28349e+6, "kilograms"),
  28333. name: "Back",
  28334. image: {
  28335. source: "./media/characters/kirina-violet/back.svg",
  28336. extra: 2812 / 2725,
  28337. bottom: 0 / 2812
  28338. }
  28339. },
  28340. mouth: {
  28341. height: math.unit(4.35, "meters"),
  28342. name: "Mouth",
  28343. image: {
  28344. source: "./media/characters/kirina-violet/mouth.svg"
  28345. }
  28346. },
  28347. paw: {
  28348. height: math.unit(5.6, "meters"),
  28349. name: "Paw",
  28350. image: {
  28351. source: "./media/characters/kirina-violet/paw.svg"
  28352. }
  28353. },
  28354. tail: {
  28355. height: math.unit(18, "meters"),
  28356. name: "Tail",
  28357. image: {
  28358. source: "./media/characters/kirina-violet/tail.svg"
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Macro",
  28365. height: math.unit(63.4, "meters"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(60, "feet"),
  28375. name: "Front",
  28376. image: {
  28377. source: "./media/characters/cat-gigachu/front.svg",
  28378. extra: 1024 / 780,
  28379. bottom: 23 / 1047
  28380. }
  28381. },
  28382. back: {
  28383. height: math.unit(60, "feet"),
  28384. name: "Back",
  28385. image: {
  28386. source: "./media/characters/cat-gigachu/back.svg",
  28387. extra: 1024 / 780,
  28388. bottom: 23 / 1047
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Dynamax",
  28395. height: math.unit(60, "feet"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(6, "feet"),
  28405. weight: math.unit(150, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/sfaiyan/front.svg",
  28409. extra: 999 / 978,
  28410. bottom: 5 / 1004
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(1.82, "meters")
  28418. },
  28419. {
  28420. name: "Giant",
  28421. height: math.unit(2.27, "km"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(179, "cm"),
  28431. weight: math.unit(100, "kg"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/raunehkeli/front.svg",
  28435. extra: 1934 / 1926,
  28436. bottom: 0 / 1934
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(179, "cm")
  28444. },
  28445. {
  28446. name: "Maximum",
  28447. height: math.unit(575, "meters"),
  28448. default: true
  28449. },
  28450. ]
  28451. ))
  28452. characterMakers.push(() => makeCharacter(
  28453. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28454. {
  28455. front: {
  28456. height: math.unit(6, "feet"),
  28457. weight: math.unit(150, "lb"),
  28458. name: "Front",
  28459. image: {
  28460. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28461. extra: 2625 / 2518,
  28462. bottom: 60 / 2685
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Normal",
  28469. height: math.unit(6 + 2 / 12, "feet")
  28470. },
  28471. {
  28472. name: "Macro",
  28473. height: math.unit(1180, "feet"),
  28474. default: true
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(5 + 6 / 12, "feet"),
  28483. weight: math.unit(108, "lb"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/lilith-zott/front.svg",
  28487. extra: 2510 / 2238,
  28488. bottom: 100 / 2610
  28489. }
  28490. },
  28491. frontDressed: {
  28492. height: math.unit(5 + 6 / 12, "feet"),
  28493. weight: math.unit(108, "lb"),
  28494. name: "Front (Dressed)",
  28495. image: {
  28496. source: "./media/characters/lilith-zott/front-dressed.svg",
  28497. extra: 2510 / 2238,
  28498. bottom: 100 / 2610
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Normal",
  28505. height: math.unit(5 + 6 / 12, "feet")
  28506. },
  28507. {
  28508. name: "Macro",
  28509. height: math.unit(1030, "feet"),
  28510. default: true
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(6, "feet"),
  28519. weight: math.unit(150, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28523. extra: 2567 / 2435,
  28524. bottom: 39 / 2606
  28525. }
  28526. },
  28527. frontSuper: {
  28528. height: math.unit(6, "feet"),
  28529. name: "Front (Super)",
  28530. image: {
  28531. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28532. extra: 2567 / 2435,
  28533. bottom: 39 / 2606
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(5 + 10 / 12, "feet")
  28541. },
  28542. {
  28543. name: "Macro",
  28544. height: math.unit(1100, "feet"),
  28545. default: true
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28551. {
  28552. front: {
  28553. height: math.unit(100, "miles"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/sona/front.svg",
  28557. extra: 2433 / 2201,
  28558. bottom: 53 / 2486
  28559. }
  28560. },
  28561. foot: {
  28562. height: math.unit(16.1, "miles"),
  28563. name: "Foot",
  28564. image: {
  28565. source: "./media/characters/sona/foot.svg"
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Macro",
  28572. height: math.unit(100, "miles"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(6, "feet"),
  28582. weight: math.unit(150, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/bailey/front.svg",
  28586. extra: 1778 / 1724,
  28587. bottom: 30 / 1808
  28588. }
  28589. },
  28590. },
  28591. [
  28592. {
  28593. name: "Micro",
  28594. height: math.unit(4, "inches")
  28595. },
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(5 + 5 / 12, "feet"),
  28599. default: true
  28600. },
  28601. {
  28602. name: "Macro",
  28603. height: math.unit(250, "feet")
  28604. },
  28605. {
  28606. name: "Megamacro",
  28607. height: math.unit(100, "miles")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(5 + 2 / 12, "feet"),
  28616. weight: math.unit(120, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/snaps/front.svg",
  28620. extra: 2370 / 2177,
  28621. bottom: 48 / 2418
  28622. }
  28623. },
  28624. back: {
  28625. height: math.unit(5 + 2 / 12, "feet"),
  28626. weight: math.unit(120, "lb"),
  28627. name: "Back",
  28628. image: {
  28629. source: "./media/characters/snaps/back.svg",
  28630. extra: 2408 / 2258,
  28631. bottom: 15 / 2423
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Micro",
  28638. height: math.unit(9, "inches")
  28639. },
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(5 + 2 / 12, "feet"),
  28643. default: true
  28644. },
  28645. {
  28646. name: "Mini Macro",
  28647. height: math.unit(10, "feet")
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(1.8, "meters"),
  28656. weight: math.unit(85, "kg"),
  28657. name: "Front",
  28658. image: {
  28659. source: "./media/characters/azteck/front.svg",
  28660. extra: 2815 / 2625,
  28661. bottom: 89 / 2904
  28662. }
  28663. },
  28664. back: {
  28665. height: math.unit(1.8, "meters"),
  28666. weight: math.unit(85, "kg"),
  28667. name: "Back",
  28668. image: {
  28669. source: "./media/characters/azteck/back.svg",
  28670. extra: 2856 / 2648,
  28671. bottom: 85 / 2941
  28672. }
  28673. },
  28674. frontDressed: {
  28675. height: math.unit(1.8, "meters"),
  28676. weight: math.unit(85, "kg"),
  28677. name: "Front (Dressed)",
  28678. image: {
  28679. source: "./media/characters/azteck/front-dressed.svg",
  28680. extra: 2147 / 2003,
  28681. bottom: 68 / 2215
  28682. }
  28683. },
  28684. head: {
  28685. height: math.unit(0.47, "meters"),
  28686. weight: math.unit(85, "kg"),
  28687. name: "Head",
  28688. image: {
  28689. source: "./media/characters/azteck/head.svg"
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Bite sized",
  28696. height: math.unit(16, "cm")
  28697. },
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(1.8, "meters"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(6, "feet"),
  28710. weight: math.unit(150, "lb"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/pidge/front.svg",
  28714. extra: 620 / 588,
  28715. bottom: 9 / 629
  28716. }
  28717. },
  28718. back: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Back",
  28722. image: {
  28723. source: "./media/characters/pidge/back.svg",
  28724. extra: 620 / 588,
  28725. bottom: 9 / 629
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Macro",
  28732. height: math.unit(1, "mile"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(6, "feet"),
  28742. weight: math.unit(150, "lb"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/en/front.svg",
  28746. extra: 1697 / 1563,
  28747. bottom: 103 / 1800
  28748. }
  28749. },
  28750. back: {
  28751. height: math.unit(6, "feet"),
  28752. weight: math.unit(150, "lb"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/en/back.svg",
  28756. extra: 1700 / 1570,
  28757. bottom: 51 / 1751
  28758. }
  28759. },
  28760. frontDressed: {
  28761. height: math.unit(6, "feet"),
  28762. weight: math.unit(150, "lb"),
  28763. name: "Front (Dressed)",
  28764. image: {
  28765. source: "./media/characters/en/front-dressed.svg",
  28766. extra: 1697 / 1563,
  28767. bottom: 103 / 1800
  28768. }
  28769. },
  28770. backDressed: {
  28771. height: math.unit(6, "feet"),
  28772. weight: math.unit(150, "lb"),
  28773. name: "Back (Dressed)",
  28774. image: {
  28775. source: "./media/characters/en/back-dressed.svg",
  28776. extra: 1700 / 1570,
  28777. bottom: 51 / 1751
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Macro",
  28784. height: math.unit(210, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/haze-orris/front.svg",
  28798. extra: 3975 / 3525,
  28799. bottom: 137 / 4112
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Micro",
  28806. height: math.unit(150, "mm"),
  28807. default: true
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28813. {
  28814. front: {
  28815. height: math.unit(6, "feet"),
  28816. weight: math.unit(150, "lb"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/casselene-yaro/front.svg",
  28820. extra: 4721 / 4541,
  28821. bottom: 82 / 4803
  28822. }
  28823. },
  28824. back: {
  28825. height: math.unit(6, "feet"),
  28826. weight: math.unit(150, "lb"),
  28827. name: "Back",
  28828. image: {
  28829. source: "./media/characters/casselene-yaro/back.svg",
  28830. extra: 4569 / 4377,
  28831. bottom: 69 / 4638
  28832. }
  28833. },
  28834. frontDressed: {
  28835. height: math.unit(6, "feet"),
  28836. weight: math.unit(150, "lb"),
  28837. name: "Front-dressed",
  28838. image: {
  28839. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28840. extra: 4721 / 4541,
  28841. bottom: 82 / 4803
  28842. }
  28843. },
  28844. },
  28845. [
  28846. {
  28847. name: "Macro",
  28848. height: math.unit(190, "feet"),
  28849. default: true
  28850. },
  28851. ]
  28852. ))
  28853. characterMakers.push(() => makeCharacter(
  28854. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28855. {
  28856. front: {
  28857. height: math.unit(6, "feet"),
  28858. weight: math.unit(150, "lb"),
  28859. name: "Front",
  28860. image: {
  28861. source: "./media/characters/myra-rue-delore/front.svg",
  28862. extra: 1340 / 1308,
  28863. bottom: 67 / 1407
  28864. }
  28865. },
  28866. back: {
  28867. height: math.unit(6, "feet"),
  28868. weight: math.unit(150, "lb"),
  28869. name: "Back",
  28870. image: {
  28871. source: "./media/characters/myra-rue-delore/back.svg",
  28872. extra: 1341 / 1310,
  28873. bottom: 40 / 1381
  28874. }
  28875. },
  28876. frontDressed: {
  28877. height: math.unit(6, "feet"),
  28878. weight: math.unit(150, "lb"),
  28879. name: "Front (Dressed)",
  28880. image: {
  28881. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28882. extra: 1340 / 1308,
  28883. bottom: 67 / 1407
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Macro",
  28890. height: math.unit(150, "feet"),
  28891. default: true
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(10, "feet"),
  28900. weight: math.unit(15015, "lb"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/fem!plat/front.svg",
  28904. extra: 2799 / 2604,
  28905. bottom: 149 / 2948
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(10, "feet"),
  28913. default: true
  28914. },
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(100, "feet")
  28918. },
  28919. {
  28920. name: "Megamacro",
  28921. height: math.unit(1000, "feet")
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(15 + 5 / 12, "feet"),
  28930. weight: math.unit(4600, "lb"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/neapolitan-ananassa/front.svg",
  28934. extra: 2903 / 2736,
  28935. bottom: 0 / 2903
  28936. }
  28937. },
  28938. side: {
  28939. height: math.unit(15 + 5 / 12, "feet"),
  28940. weight: math.unit(4600, "lb"),
  28941. name: "Side",
  28942. image: {
  28943. source: "./media/characters/neapolitan-ananassa/side.svg",
  28944. extra: 2925 / 2719,
  28945. bottom: 0 / 2925
  28946. }
  28947. },
  28948. back: {
  28949. height: math.unit(15 + 5 / 12, "feet"),
  28950. weight: math.unit(4600, "lb"),
  28951. name: "Back",
  28952. image: {
  28953. source: "./media/characters/neapolitan-ananassa/back.svg",
  28954. extra: 2903 / 2736,
  28955. bottom: 0 / 2903
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Normal",
  28962. height: math.unit(15 + 5 / 12, "feet"),
  28963. default: true
  28964. },
  28965. {
  28966. name: "Post-Millenium",
  28967. height: math.unit(35 + 5 / 12, "feet")
  28968. },
  28969. {
  28970. name: "Post-Era",
  28971. height: math.unit(450 + 5 / 12, "feet")
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28977. {
  28978. front: {
  28979. height: math.unit(300, "meters"),
  28980. weight: math.unit(125000, "tonnes"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/pazuzu/front.svg",
  28984. extra: 877 / 794,
  28985. bottom: 47 / 924
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Macro",
  28992. height: math.unit(300, "meters"),
  28993. default: true
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28999. {
  29000. side: {
  29001. height: math.unit(10 + 7 / 12, "feet"),
  29002. weight: math.unit(2.5, "tons"),
  29003. name: "Side",
  29004. image: {
  29005. source: "./media/characters/aasha/side.svg",
  29006. extra: 1345 / 1245,
  29007. bottom: 111 / 1456
  29008. }
  29009. },
  29010. back: {
  29011. height: math.unit(10 + 7 / 12, "feet"),
  29012. weight: math.unit(2.5, "tons"),
  29013. name: "Back",
  29014. image: {
  29015. source: "./media/characters/aasha/back.svg",
  29016. extra: 1133 / 1057,
  29017. bottom: 257 / 1390
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(10 + 7 / 12, "feet"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(6 + 3 / 12, "feet"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/nevan/front.svg",
  29037. extra: 704 / 704,
  29038. bottom: 28 / 732
  29039. }
  29040. },
  29041. back: {
  29042. height: math.unit(6 + 3 / 12, "feet"),
  29043. name: "Back",
  29044. image: {
  29045. source: "./media/characters/nevan/back.svg",
  29046. extra: 714 / 714,
  29047. bottom: 21 / 735
  29048. }
  29049. },
  29050. frontFlaccid: {
  29051. height: math.unit(6 + 3 / 12, "feet"),
  29052. name: "Front (Flaccid)",
  29053. image: {
  29054. source: "./media/characters/nevan/front-flaccid.svg",
  29055. extra: 704 / 704,
  29056. bottom: 28 / 732
  29057. }
  29058. },
  29059. frontErect: {
  29060. height: math.unit(6 + 3 / 12, "feet"),
  29061. name: "Front (Erect)",
  29062. image: {
  29063. source: "./media/characters/nevan/front-erect.svg",
  29064. extra: 704 / 704,
  29065. bottom: 28 / 732
  29066. }
  29067. },
  29068. backFlaccid: {
  29069. height: math.unit(6 + 3 / 12, "feet"),
  29070. name: "Back (Flaccid)",
  29071. image: {
  29072. source: "./media/characters/nevan/back-flaccid.svg",
  29073. extra: 714 / 714,
  29074. bottom: 21 / 735
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(6 + 3 / 12, "feet"),
  29082. default: true
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(4, "feet"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/arhan/front.svg",
  29094. extra: 3368 / 3133,
  29095. bottom: 0 / 3368
  29096. }
  29097. },
  29098. side: {
  29099. height: math.unit(4, "feet"),
  29100. name: "Side",
  29101. image: {
  29102. source: "./media/characters/arhan/side.svg",
  29103. extra: 3347 / 3105,
  29104. bottom: 0 / 3347
  29105. }
  29106. },
  29107. tongue: {
  29108. height: math.unit(1.42, "feet"),
  29109. name: "Tongue",
  29110. image: {
  29111. source: "./media/characters/arhan/tongue.svg"
  29112. }
  29113. },
  29114. head: {
  29115. height: math.unit(0.85, "feet"),
  29116. name: "Head",
  29117. image: {
  29118. source: "./media/characters/arhan/head.svg"
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(4, "feet"),
  29126. default: true
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(5 + 7.5 / 12, "feet"),
  29135. weight: math.unit(120, "lb"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/digi-duncan/front.svg",
  29139. extra: 330 / 326,
  29140. bottom: 16 / 346
  29141. }
  29142. },
  29143. side: {
  29144. height: math.unit(5 + 7.5 / 12, "feet"),
  29145. weight: math.unit(120, "lb"),
  29146. name: "Side",
  29147. image: {
  29148. source: "./media/characters/digi-duncan/side.svg",
  29149. extra: 341 / 337,
  29150. bottom: 1 / 342
  29151. }
  29152. },
  29153. back: {
  29154. height: math.unit(5 + 7.5 / 12, "feet"),
  29155. weight: math.unit(120, "lb"),
  29156. name: "Back",
  29157. image: {
  29158. source: "./media/characters/digi-duncan/back.svg",
  29159. extra: 330 / 326,
  29160. bottom: 12 / 342
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Speck",
  29167. height: math.unit(0.25, "mm")
  29168. },
  29169. {
  29170. name: "Micro",
  29171. height: math.unit(5, "mm")
  29172. },
  29173. {
  29174. name: "Tiny",
  29175. height: math.unit(0.5, "inches"),
  29176. default: true
  29177. },
  29178. {
  29179. name: "Human",
  29180. height: math.unit(5 + 7.5 / 12, "feet")
  29181. },
  29182. {
  29183. name: "Minigiant",
  29184. height: math.unit(8 + 5.25, "feet")
  29185. },
  29186. {
  29187. name: "Giant",
  29188. height: math.unit(2000, "feet")
  29189. },
  29190. {
  29191. name: "Mega",
  29192. height: math.unit(371.1, "miles")
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(2, "meters"),
  29201. weight: math.unit(350, "kg"),
  29202. name: "Front",
  29203. image: {
  29204. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29205. extra: 898 / 838,
  29206. bottom: 9 / 907
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Micro",
  29213. height: math.unit(8, "meters")
  29214. },
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(50, "meters"),
  29218. default: true
  29219. },
  29220. {
  29221. name: "Macro",
  29222. height: math.unit(500, "meters")
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(6 + 6 / 12, "feet"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/khardesh/front.svg",
  29234. extra: 888 / 797,
  29235. bottom: 25 / 913
  29236. }
  29237. },
  29238. },
  29239. [
  29240. {
  29241. name: "Normal",
  29242. height: math.unit(6 + 6 / 12, "feet"),
  29243. default: true
  29244. },
  29245. {
  29246. name: "Normal+",
  29247. height: math.unit(4, "meters")
  29248. },
  29249. {
  29250. name: "Macro",
  29251. height: math.unit(50, "meters")
  29252. },
  29253. {
  29254. name: "Macro+",
  29255. height: math.unit(100, "meters")
  29256. },
  29257. {
  29258. name: "Megamacro",
  29259. height: math.unit(20, "km")
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29265. {
  29266. front: {
  29267. height: math.unit(6, "feet"),
  29268. weight: math.unit(150, "lb"),
  29269. name: "Front",
  29270. image: {
  29271. source: "./media/characters/kosho/front.svg",
  29272. extra: 1847 / 1847,
  29273. bottom: 86 / 1933
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Second-stage micro",
  29280. height: math.unit(0.5, "inches")
  29281. },
  29282. {
  29283. name: "First-stage micro",
  29284. height: math.unit(6, "inches")
  29285. },
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(6, "feet"),
  29289. default: true
  29290. },
  29291. {
  29292. name: "First-stage macro",
  29293. height: math.unit(72, "feet")
  29294. },
  29295. {
  29296. name: "Second-stage macro",
  29297. height: math.unit(864, "feet")
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29303. {
  29304. normal: {
  29305. height: math.unit(4 + 6 / 12, "feet"),
  29306. name: "Normal",
  29307. image: {
  29308. source: "./media/characters/hydra/normal.svg",
  29309. extra: 2833 / 2634,
  29310. bottom: 68 / 2901
  29311. }
  29312. },
  29313. smol: {
  29314. height: math.unit(0.705, "inches"),
  29315. name: "Smol",
  29316. image: {
  29317. source: "./media/characters/hydra/smol.svg",
  29318. extra: 2715 / 2540,
  29319. bottom: 0 / 2715
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(4 + 6 / 12, "feet"),
  29327. default: true
  29328. }
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(0.6, "cm"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/daz/front.svg",
  29339. extra: 1682 / 1164,
  29340. bottom: 42 / 1724
  29341. }
  29342. },
  29343. },
  29344. [
  29345. {
  29346. name: "Normal",
  29347. height: math.unit(0.6, "cm"),
  29348. default: true
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29354. {
  29355. front: {
  29356. height: math.unit(6, "feet"),
  29357. weight: math.unit(235, "lb"),
  29358. name: "Front",
  29359. image: {
  29360. source: "./media/characters/theo-pangolin/front.svg",
  29361. extra: 1996 / 1969,
  29362. bottom: 115 / 2111
  29363. }
  29364. },
  29365. back: {
  29366. height: math.unit(6, "feet"),
  29367. weight: math.unit(235, "lb"),
  29368. name: "Back",
  29369. image: {
  29370. source: "./media/characters/theo-pangolin/back.svg",
  29371. extra: 1979 / 1979,
  29372. bottom: 40 / 2019
  29373. }
  29374. },
  29375. feral: {
  29376. height: math.unit(2, "feet"),
  29377. weight: math.unit(30, "lb"),
  29378. name: "Feral",
  29379. image: {
  29380. source: "./media/characters/theo-pangolin/feral.svg",
  29381. extra: 803 / 791,
  29382. bottom: 181 / 984
  29383. }
  29384. },
  29385. footFive: {
  29386. height: math.unit(1.43, "feet"),
  29387. name: "Foot (Five Toes)",
  29388. image: {
  29389. source: "./media/characters/theo-pangolin/foot-five.svg"
  29390. }
  29391. },
  29392. footFour: {
  29393. height: math.unit(1.43, "feet"),
  29394. name: "Foot (Four Toes)",
  29395. image: {
  29396. source: "./media/characters/theo-pangolin/foot-four.svg"
  29397. }
  29398. },
  29399. handFour: {
  29400. height: math.unit(0.81, "feet"),
  29401. name: "Hand (Four Fingers)",
  29402. image: {
  29403. source: "./media/characters/theo-pangolin/hand-four.svg"
  29404. }
  29405. },
  29406. handThree: {
  29407. height: math.unit(0.81, "feet"),
  29408. name: "Hand (Three Fingers)",
  29409. image: {
  29410. source: "./media/characters/theo-pangolin/hand-three.svg"
  29411. }
  29412. },
  29413. headFront: {
  29414. height: math.unit(1.37, "feet"),
  29415. name: "Head (Front)",
  29416. image: {
  29417. source: "./media/characters/theo-pangolin/head-front.svg"
  29418. }
  29419. },
  29420. headSide: {
  29421. height: math.unit(1.43, "feet"),
  29422. name: "Head (Side)",
  29423. image: {
  29424. source: "./media/characters/theo-pangolin/head-side.svg"
  29425. }
  29426. },
  29427. tongue: {
  29428. height: math.unit(2.29, "feet"),
  29429. name: "Tongue",
  29430. image: {
  29431. source: "./media/characters/theo-pangolin/tongue.svg"
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(6, "feet")
  29439. },
  29440. {
  29441. name: "Macro",
  29442. height: math.unit(400, "feet"),
  29443. default: true
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(6, "inches"),
  29452. weight: math.unit(0.036, "kg"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/renée/front.svg",
  29456. extra: 900 / 886,
  29457. bottom: 8 / 908
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Nano",
  29464. height: math.unit(1, "nm")
  29465. },
  29466. {
  29467. name: "Micro",
  29468. height: math.unit(1, "mm")
  29469. },
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(6, "inches")
  29473. },
  29474. {
  29475. name: "Macro",
  29476. height: math.unit(2000, "feet"),
  29477. default: true
  29478. },
  29479. {
  29480. name: "Megamacro",
  29481. height: math.unit(2, "km")
  29482. },
  29483. {
  29484. name: "Gigamacro",
  29485. height: math.unit(2000, "km")
  29486. },
  29487. {
  29488. name: "Teramacro",
  29489. height: math.unit(250000, "km")
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(4, "meters"),
  29498. weight: math.unit(150, "kg"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/caledvwlch/front.svg",
  29502. extra: 1760 / 1551,
  29503. bottom: 28 / 1788
  29504. }
  29505. },
  29506. side: {
  29507. height: math.unit(4, "meters"),
  29508. weight: math.unit(150, "kg"),
  29509. name: "Side",
  29510. image: {
  29511. source: "./media/characters/caledvwlch/side.svg",
  29512. extra: 1605 / 1536,
  29513. bottom: 31 / 1636
  29514. }
  29515. },
  29516. back: {
  29517. height: math.unit(4, "meters"),
  29518. weight: math.unit(150, "kg"),
  29519. name: "Back",
  29520. image: {
  29521. source: "./media/characters/caledvwlch/back.svg",
  29522. extra: 1635 / 1565,
  29523. bottom: 27 / 1662
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "\"Incognito\"",
  29530. height: math.unit(4, "meters")
  29531. },
  29532. {
  29533. name: "Small rampage",
  29534. height: math.unit(600, "meters")
  29535. },
  29536. {
  29537. name: "Mega",
  29538. height: math.unit(30, "km")
  29539. },
  29540. {
  29541. name: "Home-size",
  29542. height: math.unit(50, "km"),
  29543. default: true
  29544. },
  29545. {
  29546. name: "Giga",
  29547. height: math.unit(300, "km")
  29548. },
  29549. {
  29550. name: "Lounging",
  29551. height: math.unit(11000, "km")
  29552. },
  29553. {
  29554. name: "Planet snacking",
  29555. height: math.unit(2000000, "km")
  29556. },
  29557. ]
  29558. ))
  29559. characterMakers.push(() => makeCharacter(
  29560. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29561. {
  29562. front: {
  29563. height: math.unit(6, "feet"),
  29564. weight: math.unit(215, "lb"),
  29565. name: "Front",
  29566. image: {
  29567. source: "./media/characters/sapphire-svell/front.svg",
  29568. extra: 495 / 455,
  29569. bottom: 20 / 515
  29570. }
  29571. },
  29572. back: {
  29573. height: math.unit(6, "feet"),
  29574. weight: math.unit(216, "lb"),
  29575. name: "Back",
  29576. image: {
  29577. source: "./media/characters/sapphire-svell/back.svg",
  29578. extra: 497 / 477,
  29579. bottom: 7 / 504
  29580. }
  29581. },
  29582. maw: {
  29583. height: math.unit(1.57, "feet"),
  29584. name: "Maw",
  29585. image: {
  29586. source: "./media/characters/sapphire-svell/maw.svg"
  29587. }
  29588. },
  29589. foot: {
  29590. height: math.unit(1.07, "feet"),
  29591. name: "Foot",
  29592. image: {
  29593. source: "./media/characters/sapphire-svell/foot.svg"
  29594. }
  29595. },
  29596. toering: {
  29597. height: math.unit(1.7, "inch"),
  29598. name: "Toering",
  29599. image: {
  29600. source: "./media/characters/sapphire-svell/toering.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(300, "feet"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Augmented",
  29612. height: math.unit(1250, "feet")
  29613. },
  29614. {
  29615. name: "Unleashed",
  29616. height: math.unit(3000, "feet")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29622. {
  29623. side: {
  29624. height: math.unit(2 + 3 / 12, "feet"),
  29625. weight: math.unit(110, "lb"),
  29626. name: "Side",
  29627. image: {
  29628. source: "./media/characters/glitch-flux/side.svg",
  29629. extra: 997 / 805,
  29630. bottom: 20 / 1017
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Normal",
  29637. height: math.unit(2 + 3 / 12, "feet"),
  29638. default: true
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29644. {
  29645. front: {
  29646. height: math.unit(4, "meters"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/mid/front.svg",
  29650. extra: 507 / 476,
  29651. bottom: 17 / 524
  29652. }
  29653. },
  29654. back: {
  29655. height: math.unit(4, "meters"),
  29656. name: "Back",
  29657. image: {
  29658. source: "./media/characters/mid/back.svg",
  29659. extra: 519 / 487,
  29660. bottom: 7 / 526
  29661. }
  29662. },
  29663. stuck: {
  29664. height: math.unit(2.2, "meters"),
  29665. name: "Stuck",
  29666. image: {
  29667. source: "./media/characters/mid/stuck.svg",
  29668. extra: 1951 / 1869,
  29669. bottom: 88 / 2039
  29670. }
  29671. }
  29672. },
  29673. [
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(4, "meters"),
  29677. default: true
  29678. },
  29679. {
  29680. name: "Big",
  29681. height: math.unit(10, "meters")
  29682. },
  29683. {
  29684. name: "Macro",
  29685. height: math.unit(800, "meters")
  29686. },
  29687. {
  29688. name: "Megamacro",
  29689. height: math.unit(100, "km")
  29690. },
  29691. {
  29692. name: "Overgrown",
  29693. height: math.unit(1, "parsec")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(2.5, "meters"),
  29702. weight: math.unit(225, "kg"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/iris/front.svg",
  29706. extra: 3348 / 3251,
  29707. bottom: 205 / 3553
  29708. }
  29709. },
  29710. maw: {
  29711. height: math.unit(0.56, "meter"),
  29712. name: "Maw",
  29713. image: {
  29714. source: "./media/characters/iris/maw.svg"
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Mewter cat",
  29721. height: math.unit(1.2, "meters")
  29722. },
  29723. {
  29724. name: "Minimacro",
  29725. height: math.unit(2.5, "meters"),
  29726. default: true
  29727. },
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(180, "meters")
  29731. },
  29732. {
  29733. name: "Megamacro",
  29734. height: math.unit(2746, "meters")
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(6, "feet"),
  29743. weight: math.unit(135, "lb"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/axel/front.svg",
  29747. extra: 908 / 908,
  29748. bottom: 58 / 966
  29749. }
  29750. },
  29751. side: {
  29752. height: math.unit(6, "feet"),
  29753. weight: math.unit(135, "lb"),
  29754. name: "Side",
  29755. image: {
  29756. source: "./media/characters/axel/side.svg",
  29757. extra: 958 / 958,
  29758. bottom: 11 / 969
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(6, "feet"),
  29763. weight: math.unit(135, "lb"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/axel/back.svg",
  29767. extra: 887 / 887,
  29768. bottom: 34 / 921
  29769. }
  29770. },
  29771. head: {
  29772. height: math.unit(1.07, "feet"),
  29773. name: "Head",
  29774. image: {
  29775. source: "./media/characters/axel/head.svg"
  29776. }
  29777. },
  29778. beak: {
  29779. height: math.unit(1.4, "feet"),
  29780. name: "Beak",
  29781. image: {
  29782. source: "./media/characters/axel/beak.svg"
  29783. }
  29784. },
  29785. beakSide: {
  29786. height: math.unit(1.4, "feet"),
  29787. name: "Beak Side",
  29788. image: {
  29789. source: "./media/characters/axel/beak-side.svg"
  29790. }
  29791. },
  29792. sheath: {
  29793. height: math.unit(0.5, "feet"),
  29794. name: "Sheath",
  29795. image: {
  29796. source: "./media/characters/axel/sheath.svg"
  29797. }
  29798. },
  29799. dick: {
  29800. height: math.unit(0.98, "feet"),
  29801. name: "Dick",
  29802. image: {
  29803. source: "./media/characters/axel/dick.svg"
  29804. }
  29805. },
  29806. },
  29807. [
  29808. {
  29809. name: "Macro",
  29810. height: math.unit(68, "meters"),
  29811. default: true
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29817. {
  29818. front: {
  29819. height: math.unit(3.5, "meters"),
  29820. weight: math.unit(1200, "kg"),
  29821. name: "Front",
  29822. image: {
  29823. source: "./media/characters/joanna/front.svg",
  29824. extra: 1596 / 1488,
  29825. bottom: 29 / 1625
  29826. }
  29827. },
  29828. back: {
  29829. height: math.unit(3.5, "meters"),
  29830. weight: math.unit(1200, "kg"),
  29831. name: "Back",
  29832. image: {
  29833. source: "./media/characters/joanna/back.svg",
  29834. extra: 1594 / 1495,
  29835. bottom: 26 / 1620
  29836. }
  29837. },
  29838. frontShorts: {
  29839. height: math.unit(3.5, "meters"),
  29840. weight: math.unit(1200, "kg"),
  29841. name: "Front (Shorts)",
  29842. image: {
  29843. source: "./media/characters/joanna/front-shorts.svg",
  29844. extra: 1596 / 1488,
  29845. bottom: 29 / 1625
  29846. }
  29847. },
  29848. frontBiker: {
  29849. height: math.unit(3.5, "meters"),
  29850. weight: math.unit(1200, "kg"),
  29851. name: "Front (Biker)",
  29852. image: {
  29853. source: "./media/characters/joanna/front-biker.svg",
  29854. extra: 1596 / 1488,
  29855. bottom: 29 / 1625
  29856. }
  29857. },
  29858. backBiker: {
  29859. height: math.unit(3.5, "meters"),
  29860. weight: math.unit(1200, "kg"),
  29861. name: "Back (Biker)",
  29862. image: {
  29863. source: "./media/characters/joanna/back-biker.svg",
  29864. extra: 1594 / 1495,
  29865. bottom: 88 / 1682
  29866. }
  29867. },
  29868. bikeLeft: {
  29869. height: math.unit(2.4, "meters"),
  29870. weight: math.unit(1600, "kg"),
  29871. name: "Bike (Left)",
  29872. image: {
  29873. source: "./media/characters/joanna/bike-left.svg",
  29874. extra: 720 / 720,
  29875. bottom: 8 / 728
  29876. }
  29877. },
  29878. bikeRight: {
  29879. height: math.unit(2.4, "meters"),
  29880. weight: math.unit(1600, "kg"),
  29881. name: "Bike (Right)",
  29882. image: {
  29883. source: "./media/characters/joanna/bike-right.svg",
  29884. extra: 720 / 720,
  29885. bottom: 8 / 728
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Incognito",
  29892. height: math.unit(3.5, "meters")
  29893. },
  29894. {
  29895. name: "Casual Big",
  29896. height: math.unit(200, "meters")
  29897. },
  29898. {
  29899. name: "Macro",
  29900. height: math.unit(600, "meters")
  29901. },
  29902. {
  29903. name: "Original",
  29904. height: math.unit(20, "km"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "Giga",
  29909. height: math.unit(400, "km")
  29910. },
  29911. {
  29912. name: "Lounging",
  29913. height: math.unit(1500, "km")
  29914. },
  29915. {
  29916. name: "Planetary",
  29917. height: math.unit(200000, "km")
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(6, "feet"),
  29926. weight: math.unit(150, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/hugo-sigil/front.svg",
  29930. extra: 522 / 500,
  29931. bottom: 2 / 524
  29932. }
  29933. },
  29934. back: {
  29935. height: math.unit(6, "feet"),
  29936. weight: math.unit(150, "lb"),
  29937. name: "Back",
  29938. image: {
  29939. source: "./media/characters/hugo-sigil/back.svg",
  29940. extra: 519 / 495,
  29941. bottom: 5 / 524
  29942. }
  29943. },
  29944. maw: {
  29945. height: math.unit(1.4, "feet"),
  29946. weight: math.unit(150, "lb"),
  29947. name: "Maw",
  29948. image: {
  29949. source: "./media/characters/hugo-sigil/maw.svg"
  29950. }
  29951. },
  29952. feet: {
  29953. height: math.unit(1.56, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Feet",
  29956. image: {
  29957. source: "./media/characters/hugo-sigil/feet.svg",
  29958. extra: 177 / 177,
  29959. bottom: 12 / 189
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(6, "feet")
  29967. },
  29968. {
  29969. name: "Macro",
  29970. height: math.unit(200, "feet"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(6, "feet"),
  29980. weight: math.unit(150, "lb"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/peri/front.svg",
  29984. extra: 2354 / 2233,
  29985. bottom: 49 / 2403
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Really Small",
  29992. height: math.unit(1, "nm")
  29993. },
  29994. {
  29995. name: "Micro",
  29996. height: math.unit(4, "inches")
  29997. },
  29998. {
  29999. name: "Normal",
  30000. height: math.unit(7, "inches"),
  30001. default: true
  30002. },
  30003. {
  30004. name: "Macro",
  30005. height: math.unit(400, "feet")
  30006. },
  30007. {
  30008. name: "Megamacro",
  30009. height: math.unit(100, "miles")
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30015. {
  30016. frontSlim: {
  30017. height: math.unit(7, "feet"),
  30018. name: "Front (Slim)",
  30019. image: {
  30020. source: "./media/characters/issilora/front-slim.svg",
  30021. extra: 529 / 449,
  30022. bottom: 53 / 582
  30023. }
  30024. },
  30025. sideSlim: {
  30026. height: math.unit(7, "feet"),
  30027. name: "Side (Slim)",
  30028. image: {
  30029. source: "./media/characters/issilora/side-slim.svg",
  30030. extra: 570 / 480,
  30031. bottom: 30 / 600
  30032. }
  30033. },
  30034. backSlim: {
  30035. height: math.unit(7, "feet"),
  30036. name: "Back (Slim)",
  30037. image: {
  30038. source: "./media/characters/issilora/back-slim.svg",
  30039. extra: 537 / 455,
  30040. bottom: 46 / 583
  30041. }
  30042. },
  30043. frontBuff: {
  30044. height: math.unit(7, "feet"),
  30045. name: "Front (Buff)",
  30046. image: {
  30047. source: "./media/characters/issilora/front-buff.svg",
  30048. extra: 2310 / 2035,
  30049. bottom: 335 / 2645
  30050. }
  30051. },
  30052. head: {
  30053. height: math.unit(1.94, "feet"),
  30054. name: "Head",
  30055. image: {
  30056. source: "./media/characters/issilora/head.svg"
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Minimum",
  30063. height: math.unit(7, "feet")
  30064. },
  30065. {
  30066. name: "Comfortable",
  30067. height: math.unit(17, "feet")
  30068. },
  30069. {
  30070. name: "Fun Size",
  30071. height: math.unit(47, "feet")
  30072. },
  30073. {
  30074. name: "Natural Macro",
  30075. height: math.unit(137, "feet"),
  30076. default: true
  30077. },
  30078. {
  30079. name: "Maximum Kaiju",
  30080. height: math.unit(397, "feet")
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30086. {
  30087. front: {
  30088. height: math.unit(50 + 9/12, "feet"),
  30089. weight: math.unit(32.8, "tons"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/irb'iiritaahn/front.svg",
  30093. extra: 1878/1826,
  30094. bottom: 326/2204
  30095. }
  30096. },
  30097. back: {
  30098. height: math.unit(50 + 9/12, "feet"),
  30099. weight: math.unit(32.8, "tons"),
  30100. name: "Back",
  30101. image: {
  30102. source: "./media/characters/irb'iiritaahn/back.svg",
  30103. extra: 2052/2018,
  30104. bottom: 152/2204
  30105. }
  30106. },
  30107. head: {
  30108. height: math.unit(12.86, "feet"),
  30109. name: "Head",
  30110. image: {
  30111. source: "./media/characters/irb'iiritaahn/head.svg"
  30112. }
  30113. },
  30114. maw: {
  30115. height: math.unit(9.66, "feet"),
  30116. name: "Maw",
  30117. image: {
  30118. source: "./media/characters/irb'iiritaahn/maw.svg"
  30119. }
  30120. },
  30121. frontDick: {
  30122. height: math.unit(8.78461, "feet"),
  30123. name: "Front Dick",
  30124. image: {
  30125. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30126. }
  30127. },
  30128. rearDick: {
  30129. height: math.unit(8.78461, "feet"),
  30130. name: "Rear Dick",
  30131. image: {
  30132. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30133. }
  30134. },
  30135. rearDickUnfolded: {
  30136. height: math.unit(8.78, "feet"),
  30137. name: "Rear Dick (Unfolded)",
  30138. image: {
  30139. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30140. }
  30141. },
  30142. wings: {
  30143. height: math.unit(43, "feet"),
  30144. name: "Wings",
  30145. image: {
  30146. source: "./media/characters/irb'iiritaahn/wings.svg"
  30147. }
  30148. },
  30149. },
  30150. [
  30151. {
  30152. name: "Macro",
  30153. height: math.unit(50 + 9/12, "feet"),
  30154. default: true
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(205, "cm"),
  30163. weight: math.unit(102, "kg"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/irbisgreif/front.svg",
  30167. extra: 785/706,
  30168. bottom: 13/798
  30169. }
  30170. },
  30171. back: {
  30172. height: math.unit(205, "cm"),
  30173. weight: math.unit(102, "kg"),
  30174. name: "Back",
  30175. image: {
  30176. source: "./media/characters/irbisgreif/back.svg",
  30177. extra: 713/701,
  30178. bottom: 26/739
  30179. }
  30180. },
  30181. frontDressed: {
  30182. height: math.unit(216, "cm"),
  30183. weight: math.unit(102, "kg"),
  30184. name: "Front-dressed",
  30185. image: {
  30186. source: "./media/characters/irbisgreif/front-dressed.svg",
  30187. extra: 902/776,
  30188. bottom: 14/916
  30189. }
  30190. },
  30191. sideDressed: {
  30192. height: math.unit(195, "cm"),
  30193. weight: math.unit(102, "kg"),
  30194. name: "Side-dressed",
  30195. image: {
  30196. source: "./media/characters/irbisgreif/side-dressed.svg",
  30197. extra: 788/688,
  30198. bottom: 21/809
  30199. }
  30200. },
  30201. backDressed: {
  30202. height: math.unit(216, "cm"),
  30203. weight: math.unit(102, "kg"),
  30204. name: "Back-dressed",
  30205. image: {
  30206. source: "./media/characters/irbisgreif/back-dressed.svg",
  30207. extra: 901/783,
  30208. bottom: 10/911
  30209. }
  30210. },
  30211. dick: {
  30212. height: math.unit(0.49, "feet"),
  30213. name: "Dick",
  30214. image: {
  30215. source: "./media/characters/irbisgreif/dick.svg"
  30216. }
  30217. },
  30218. wingTop: {
  30219. height: math.unit(1.93 , "feet"),
  30220. name: "Wing-top",
  30221. image: {
  30222. source: "./media/characters/irbisgreif/wing-top.svg"
  30223. }
  30224. },
  30225. wingBottom: {
  30226. height: math.unit(1.93 , "feet"),
  30227. name: "Wing-bottom",
  30228. image: {
  30229. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30230. }
  30231. },
  30232. },
  30233. [
  30234. {
  30235. name: "Normal",
  30236. height: math.unit(216, "cm"),
  30237. default: true
  30238. },
  30239. ]
  30240. ))
  30241. characterMakers.push(() => makeCharacter(
  30242. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30243. {
  30244. front: {
  30245. height: math.unit(6, "feet"),
  30246. weight: math.unit(150, "lb"),
  30247. name: "Front",
  30248. image: {
  30249. source: "./media/characters/pride/front.svg",
  30250. extra: 1299/1230,
  30251. bottom: 18/1317
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(7, "feet")
  30259. },
  30260. {
  30261. name: "Mini-macro",
  30262. height: math.unit(11, "feet")
  30263. },
  30264. {
  30265. name: "Macro",
  30266. height: math.unit(15, "meters"),
  30267. default: true
  30268. },
  30269. {
  30270. name: "Macro+",
  30271. height: math.unit(40, "meters")
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30277. {
  30278. front: {
  30279. height: math.unit(4 + 2 / 12, "feet"),
  30280. weight: math.unit(95, "lb"),
  30281. name: "Front",
  30282. image: {
  30283. source: "./media/characters/vaelophis-nyx/front.svg",
  30284. extra: 2532/2330,
  30285. bottom: 0/2532
  30286. }
  30287. },
  30288. back: {
  30289. height: math.unit(4 + 2 / 12, "feet"),
  30290. weight: math.unit(95, "lb"),
  30291. name: "Back",
  30292. image: {
  30293. source: "./media/characters/vaelophis-nyx/back.svg",
  30294. extra: 2484/2361,
  30295. bottom: 0/2484
  30296. }
  30297. },
  30298. feralSide: {
  30299. height: math.unit(2 + 1/12, "feet"),
  30300. weight: math.unit(20, "lb"),
  30301. name: "Feral (Side)",
  30302. image: {
  30303. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30304. extra: 1721/1581,
  30305. bottom: 70/1791
  30306. }
  30307. },
  30308. feralLazing: {
  30309. height: math.unit(1.08, "feet"),
  30310. weight: math.unit(20, "lb"),
  30311. name: "Feral (Lazing)",
  30312. image: {
  30313. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30314. extra: 822/822,
  30315. bottom: 248/1070
  30316. }
  30317. },
  30318. ear: {
  30319. height: math.unit(0.416, "feet"),
  30320. name: "Ear",
  30321. image: {
  30322. source: "./media/characters/vaelophis-nyx/ear.svg"
  30323. }
  30324. },
  30325. eye: {
  30326. height: math.unit(0.0748, "feet"),
  30327. name: "Eye",
  30328. image: {
  30329. source: "./media/characters/vaelophis-nyx/eye.svg"
  30330. }
  30331. },
  30332. mouth: {
  30333. height: math.unit(0.378, "feet"),
  30334. name: "Mouth",
  30335. image: {
  30336. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30337. }
  30338. },
  30339. spade: {
  30340. height: math.unit(0.55, "feet"),
  30341. name: "Spade",
  30342. image: {
  30343. source: "./media/characters/vaelophis-nyx/spade.svg"
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Normal",
  30350. height: math.unit(4 + 2/12, "feet"),
  30351. default: true
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30357. {
  30358. front: {
  30359. height: math.unit(7, "feet"),
  30360. weight: math.unit(231, "lb"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/flux/front.svg",
  30364. extra: 919/871,
  30365. bottom: 0/919
  30366. }
  30367. },
  30368. back: {
  30369. height: math.unit(7, "feet"),
  30370. weight: math.unit(231, "lb"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/flux/back.svg",
  30374. extra: 1040/992,
  30375. bottom: 0/1040
  30376. }
  30377. },
  30378. frontDressed: {
  30379. height: math.unit(7, "feet"),
  30380. weight: math.unit(231, "lb"),
  30381. name: "Front (Dressed)",
  30382. image: {
  30383. source: "./media/characters/flux/front-dressed.svg",
  30384. extra: 919/871,
  30385. bottom: 0/919
  30386. }
  30387. },
  30388. feralSide: {
  30389. height: math.unit(5, "feet"),
  30390. weight: math.unit(150, "lb"),
  30391. name: "Feral (Side)",
  30392. image: {
  30393. source: "./media/characters/flux/feral-side.svg",
  30394. extra: 598/528,
  30395. bottom: 28/626
  30396. }
  30397. },
  30398. head: {
  30399. height: math.unit(1.585, "feet"),
  30400. name: "Head",
  30401. image: {
  30402. source: "./media/characters/flux/head.svg"
  30403. }
  30404. },
  30405. headSide: {
  30406. height: math.unit(1.74, "feet"),
  30407. name: "Head (Side)",
  30408. image: {
  30409. source: "./media/characters/flux/head-side.svg"
  30410. }
  30411. },
  30412. headSideFire: {
  30413. height: math.unit(1.76, "feet"),
  30414. name: "Head (Side, Fire)",
  30415. image: {
  30416. source: "./media/characters/flux/head-side-fire.svg"
  30417. }
  30418. },
  30419. },
  30420. [
  30421. {
  30422. name: "Normal",
  30423. height: math.unit(7, "feet"),
  30424. default: true
  30425. },
  30426. ]
  30427. ))
  30428. characterMakers.push(() => makeCharacter(
  30429. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30430. {
  30431. front: {
  30432. height: math.unit(9, "feet"),
  30433. weight: math.unit(1012, "lb"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/ulfra-lupae/front.svg",
  30437. extra: 1083/1011,
  30438. bottom: 67/1150
  30439. }
  30440. },
  30441. },
  30442. [
  30443. {
  30444. name: "Micro",
  30445. height: math.unit(6, "inches")
  30446. },
  30447. {
  30448. name: "Socializing",
  30449. height: math.unit(6 + 5/12, "feet")
  30450. },
  30451. {
  30452. name: "Normal",
  30453. height: math.unit(9, "feet"),
  30454. default: true
  30455. },
  30456. {
  30457. name: "Macro",
  30458. height: math.unit(150, "feet")
  30459. },
  30460. ]
  30461. ))
  30462. characterMakers.push(() => makeCharacter(
  30463. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30464. {
  30465. front: {
  30466. height: math.unit(5 + 2/12, "feet"),
  30467. weight: math.unit(120, "lb"),
  30468. name: "Front",
  30469. image: {
  30470. source: "./media/characters/timber/front.svg",
  30471. extra: 2814/2705,
  30472. bottom: 181/2995
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(5 + 2/12, "feet"),
  30480. default: true
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(5 + 7/12, "feet"),
  30489. weight: math.unit(220, "lb"),
  30490. name: "Front",
  30491. image: {
  30492. source: "./media/characters/nicki/front.svg",
  30493. extra: 453/419,
  30494. bottom: 7/460
  30495. }
  30496. },
  30497. frontAlt: {
  30498. height: math.unit(5 + 7/12, "feet"),
  30499. weight: math.unit(220, "lb"),
  30500. name: "Front-alt",
  30501. image: {
  30502. source: "./media/characters/nicki/front-alt.svg",
  30503. extra: 435/411,
  30504. bottom: 12/447
  30505. }
  30506. },
  30507. back: {
  30508. height: math.unit(5 + 7/12, "feet"),
  30509. weight: math.unit(220, "lb"),
  30510. name: "Back",
  30511. image: {
  30512. source: "./media/characters/nicki/back.svg",
  30513. extra: 440/413,
  30514. bottom: 19/459
  30515. }
  30516. },
  30517. taur: {
  30518. height: math.unit(7 + 6/12, "feet"),
  30519. weight: math.unit(700, "lb"),
  30520. name: "Taur",
  30521. image: {
  30522. source: "./media/characters/nicki/taur.svg",
  30523. extra: 975/773,
  30524. bottom: 0/975
  30525. }
  30526. },
  30527. frontNsfw: {
  30528. height: math.unit(5 + 7/12, "feet"),
  30529. weight: math.unit(220, "lb"),
  30530. name: "Front (NSFW)",
  30531. image: {
  30532. source: "./media/characters/nicki/front-nsfw.svg",
  30533. extra: 453/419,
  30534. bottom: 7/460
  30535. }
  30536. },
  30537. frontNsfwAlt: {
  30538. height: math.unit(5 + 7/12, "feet"),
  30539. weight: math.unit(220, "lb"),
  30540. name: "Front (Alt, NSFW)",
  30541. image: {
  30542. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30543. extra: 435/411,
  30544. bottom: 12/447
  30545. }
  30546. },
  30547. backNsfw: {
  30548. height: math.unit(5 + 7/12, "feet"),
  30549. weight: math.unit(220, "lb"),
  30550. name: "Back (NSFW)",
  30551. image: {
  30552. source: "./media/characters/nicki/back-nsfw.svg",
  30553. extra: 440/413,
  30554. bottom: 19/459
  30555. }
  30556. },
  30557. head: {
  30558. height: math.unit(2.1, "feet"),
  30559. name: "Head",
  30560. image: {
  30561. source: "./media/characters/nicki/head.svg"
  30562. }
  30563. },
  30564. paw: {
  30565. height: math.unit(1.88, "feet"),
  30566. name: "Paw",
  30567. image: {
  30568. source: "./media/characters/nicki/paw.svg"
  30569. }
  30570. },
  30571. },
  30572. [
  30573. {
  30574. name: "Normal",
  30575. height: math.unit(5 + 7/12, "feet"),
  30576. default: true
  30577. },
  30578. ]
  30579. ))
  30580. characterMakers.push(() => makeCharacter(
  30581. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30582. {
  30583. front: {
  30584. height: math.unit(7 + 10/12, "feet"),
  30585. weight: math.unit(3.5, "tons"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/lee/front.svg",
  30589. extra: 1773/1615,
  30590. bottom: 86/1859
  30591. }
  30592. },
  30593. hand: {
  30594. height: math.unit(1.78, "feet"),
  30595. name: "Hand",
  30596. image: {
  30597. source: "./media/characters/lee/hand.svg"
  30598. }
  30599. },
  30600. maw: {
  30601. height: math.unit(1.18, "feet"),
  30602. name: "Maw",
  30603. image: {
  30604. source: "./media/characters/lee/maw.svg"
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(7 + 10/12, "feet"),
  30612. default: true
  30613. },
  30614. ]
  30615. ))
  30616. characterMakers.push(() => makeCharacter(
  30617. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30618. {
  30619. front: {
  30620. height: math.unit(9, "feet"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/guti/front.svg",
  30624. extra: 4551/4355,
  30625. bottom: 123/4674
  30626. }
  30627. },
  30628. tongue: {
  30629. height: math.unit(1, "feet"),
  30630. name: "Tongue",
  30631. image: {
  30632. source: "./media/characters/guti/tongue.svg"
  30633. }
  30634. },
  30635. paw: {
  30636. height: math.unit(1.18, "feet"),
  30637. name: "Paw",
  30638. image: {
  30639. source: "./media/characters/guti/paw.svg"
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Normal",
  30646. height: math.unit(9, "feet"),
  30647. default: true
  30648. },
  30649. ]
  30650. ))
  30651. characterMakers.push(() => makeCharacter(
  30652. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30653. {
  30654. side: {
  30655. height: math.unit(5, "meters"),
  30656. name: "Side",
  30657. image: {
  30658. source: "./media/characters/vesper/side.svg",
  30659. extra: 1605/1518,
  30660. bottom: 0/1605
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Small",
  30667. height: math.unit(5, "meters")
  30668. },
  30669. {
  30670. name: "Sage",
  30671. height: math.unit(100, "meters"),
  30672. default: true
  30673. },
  30674. {
  30675. name: "Fun Size",
  30676. height: math.unit(600, "meters")
  30677. },
  30678. {
  30679. name: "Goddess",
  30680. height: math.unit(20000, "km")
  30681. },
  30682. {
  30683. name: "Maximum",
  30684. height: math.unit(5, "galaxies")
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30690. {
  30691. front: {
  30692. height: math.unit(6 + 3/12, "feet"),
  30693. weight: math.unit(190, "lb"),
  30694. name: "Front",
  30695. image: {
  30696. source: "./media/characters/gawain/front.svg",
  30697. extra: 2222/2139,
  30698. bottom: 90/2312
  30699. }
  30700. },
  30701. back: {
  30702. height: math.unit(6 + 3/12, "feet"),
  30703. weight: math.unit(190, "lb"),
  30704. name: "Back",
  30705. image: {
  30706. source: "./media/characters/gawain/back.svg",
  30707. extra: 2199/2111,
  30708. bottom: 73/2272
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(6 + 3/12, "feet"),
  30716. default: true
  30717. },
  30718. ]
  30719. ))
  30720. characterMakers.push(() => makeCharacter(
  30721. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30722. {
  30723. side: {
  30724. height: math.unit(3.5, "meters"),
  30725. weight: math.unit(16000, "lb"),
  30726. name: "Side",
  30727. image: {
  30728. source: "./media/characters/dascalti/side.svg",
  30729. extra: 392/273,
  30730. bottom: 47/439
  30731. }
  30732. },
  30733. breath: {
  30734. height: math.unit(7.4, "feet"),
  30735. name: "Breath",
  30736. image: {
  30737. source: "./media/characters/dascalti/breath.svg"
  30738. }
  30739. },
  30740. fed: {
  30741. height: math.unit(3.6, "meters"),
  30742. weight: math.unit(16000, "lb"),
  30743. name: "Fed",
  30744. image: {
  30745. source: "./media/characters/dascalti/fed.svg",
  30746. extra: 1419/820,
  30747. bottom: 95/1514
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(3.5, "meters"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(3 + 5/12, "feet"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/mauve/front.svg",
  30767. extra: 1126/1033,
  30768. bottom: 65/1191
  30769. }
  30770. },
  30771. side: {
  30772. height: math.unit(3 + 5/12, "feet"),
  30773. name: "Side",
  30774. image: {
  30775. source: "./media/characters/mauve/side.svg",
  30776. extra: 1089/1001,
  30777. bottom: 29/1118
  30778. }
  30779. },
  30780. back: {
  30781. height: math.unit(3 + 5/12, "feet"),
  30782. name: "Back",
  30783. image: {
  30784. source: "./media/characters/mauve/back.svg",
  30785. extra: 1173/1053,
  30786. bottom: 109/1282
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Normal",
  30793. height: math.unit(3 + 5/12, "feet"),
  30794. default: true
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30800. {
  30801. front: {
  30802. height: math.unit(6 + 3/12, "feet"),
  30803. weight: math.unit(430, "lb"),
  30804. name: "Front",
  30805. image: {
  30806. source: "./media/characters/carlos/front.svg",
  30807. extra: 1964/1913,
  30808. bottom: 70/2034
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(6 + 3/12, "feet"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30822. {
  30823. back: {
  30824. height: math.unit(5 + 10/12, "feet"),
  30825. weight: math.unit(200, "lb"),
  30826. name: "Back",
  30827. image: {
  30828. source: "./media/characters/jax/back.svg",
  30829. extra: 764/739,
  30830. bottom: 25/789
  30831. }
  30832. },
  30833. },
  30834. [
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(5 + 10/12, "feet"),
  30838. default: true
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30844. {
  30845. front: {
  30846. height: math.unit(8, "feet"),
  30847. weight: math.unit(250, "lb"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/eikthynir/front.svg",
  30851. extra: 1332/1166,
  30852. bottom: 82/1414
  30853. }
  30854. },
  30855. back: {
  30856. height: math.unit(8, "feet"),
  30857. weight: math.unit(250, "lb"),
  30858. name: "Back",
  30859. image: {
  30860. source: "./media/characters/eikthynir/back.svg",
  30861. extra: 1342/1190,
  30862. bottom: 19/1361
  30863. }
  30864. },
  30865. dick: {
  30866. height: math.unit(2.35, "feet"),
  30867. name: "Dick",
  30868. image: {
  30869. source: "./media/characters/eikthynir/dick.svg"
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Normal",
  30876. height: math.unit(8, "feet"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30883. {
  30884. front: {
  30885. height: math.unit(99, "meters"),
  30886. weight: math.unit(13000, "tons"),
  30887. name: "Front",
  30888. image: {
  30889. source: "./media/characters/zlmos/front.svg",
  30890. extra: 2202/1992,
  30891. bottom: 315/2517
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Macro",
  30898. height: math.unit(99, "meters"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30905. {
  30906. front: {
  30907. height: math.unit(6 + 5/12, "feet"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/purri/front.svg",
  30911. extra: 1698/1610,
  30912. bottom: 32/1730
  30913. }
  30914. },
  30915. frontAlt: {
  30916. height: math.unit(6 + 5/12, "feet"),
  30917. name: "Front (Alt)",
  30918. image: {
  30919. source: "./media/characters/purri/front-alt.svg",
  30920. extra: 450/420,
  30921. bottom: 26/476
  30922. }
  30923. },
  30924. boots: {
  30925. height: math.unit(5.5, "feet"),
  30926. name: "Boots",
  30927. image: {
  30928. source: "./media/characters/purri/boots.svg",
  30929. extra: 905/853,
  30930. bottom: 18/923
  30931. }
  30932. },
  30933. lying: {
  30934. height: math.unit(2, "feet"),
  30935. name: "Lying",
  30936. image: {
  30937. source: "./media/characters/purri/lying.svg",
  30938. extra: 940/843,
  30939. bottom: 146/1086
  30940. }
  30941. },
  30942. devious: {
  30943. height: math.unit(1.77, "feet"),
  30944. name: "Devious",
  30945. image: {
  30946. source: "./media/characters/purri/devious.svg",
  30947. extra: 1440/1155,
  30948. bottom: 147/1587
  30949. }
  30950. },
  30951. bean: {
  30952. height: math.unit(1.94, "feet"),
  30953. name: "Bean",
  30954. image: {
  30955. source: "./media/characters/purri/bean.svg"
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Micro",
  30962. height: math.unit(1, "mm")
  30963. },
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(6 + 5/12, "feet"),
  30967. default: true
  30968. },
  30969. {
  30970. name: "Macro :3c",
  30971. height: math.unit(2, "miles")
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6 + 2/12, "feet"),
  30980. weight: math.unit(250, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/moonlight/front.svg",
  30984. extra: 1044/908,
  30985. bottom: 56/1100
  30986. }
  30987. },
  30988. feral: {
  30989. height: math.unit(3 + 1/12, "feet"),
  30990. weight: math.unit(50, "kg"),
  30991. name: "Feral",
  30992. image: {
  30993. source: "./media/characters/moonlight/feral.svg",
  30994. extra: 3705/2791,
  30995. bottom: 145/3850
  30996. }
  30997. },
  30998. paw: {
  30999. height: math.unit(1, "feet"),
  31000. name: "Paw",
  31001. image: {
  31002. source: "./media/characters/moonlight/paw.svg"
  31003. }
  31004. },
  31005. paws: {
  31006. height: math.unit(0.98, "feet"),
  31007. name: "Paws",
  31008. image: {
  31009. source: "./media/characters/moonlight/paws.svg",
  31010. extra: 939/939,
  31011. bottom: 50/989
  31012. }
  31013. },
  31014. mouth: {
  31015. height: math.unit(0.48, "feet"),
  31016. name: "Mouth",
  31017. image: {
  31018. source: "./media/characters/moonlight/mouth.svg"
  31019. }
  31020. },
  31021. dick: {
  31022. height: math.unit(1.46, "feet"),
  31023. name: "Dick",
  31024. image: {
  31025. source: "./media/characters/moonlight/dick.svg"
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(6 + 2/12, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "Macro",
  31037. height: math.unit(300, "feet")
  31038. },
  31039. {
  31040. name: "Macro+",
  31041. height: math.unit(1, "mile")
  31042. },
  31043. {
  31044. name: "Mt. Moon",
  31045. height: math.unit(5, "miles")
  31046. },
  31047. {
  31048. name: "Megamacro",
  31049. height: math.unit(15, "miles")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31055. {
  31056. back: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(150, "lb"),
  31059. name: "Back",
  31060. image: {
  31061. source: "./media/characters/sylen/back.svg",
  31062. extra: 1335/1273,
  31063. bottom: 107/1442
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(5 + 5/12, "feet")
  31071. },
  31072. {
  31073. name: "Megamacro",
  31074. height: math.unit(3, "miles"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(6, "feet"),
  31084. weight: math.unit(190, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/huttser/front.svg",
  31088. extra: 1152/1058,
  31089. bottom: 23/1175
  31090. }
  31091. },
  31092. side: {
  31093. height: math.unit(6, "feet"),
  31094. weight: math.unit(190, "lb"),
  31095. name: "Side",
  31096. image: {
  31097. source: "./media/characters/huttser/side.svg",
  31098. extra: 1174/1065,
  31099. bottom: 18/1192
  31100. }
  31101. },
  31102. back: {
  31103. height: math.unit(6, "feet"),
  31104. weight: math.unit(190, "lb"),
  31105. name: "Back",
  31106. image: {
  31107. source: "./media/characters/huttser/back.svg",
  31108. extra: 1158/1056,
  31109. bottom: 12/1170
  31110. }
  31111. },
  31112. },
  31113. [
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31118. {
  31119. side: {
  31120. height: math.unit(12 + 9/12, "feet"),
  31121. weight: math.unit(15000, "lb"),
  31122. name: "Side",
  31123. image: {
  31124. source: "./media/characters/faan/side.svg",
  31125. extra: 2747/2697,
  31126. bottom: 0/2747
  31127. }
  31128. },
  31129. front: {
  31130. height: math.unit(12 + 9/12, "feet"),
  31131. weight: math.unit(15000, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/faan/front.svg",
  31135. extra: 607/571,
  31136. bottom: 24/631
  31137. }
  31138. },
  31139. head: {
  31140. height: math.unit(2.85, "feet"),
  31141. name: "Head",
  31142. image: {
  31143. source: "./media/characters/faan/head.svg"
  31144. }
  31145. },
  31146. headAlt: {
  31147. height: math.unit(3.13, "feet"),
  31148. name: "Head-alt",
  31149. image: {
  31150. source: "./media/characters/faan/head-alt.svg"
  31151. }
  31152. },
  31153. },
  31154. [
  31155. {
  31156. name: "Normal",
  31157. height: math.unit(12 + 9/12, "feet"),
  31158. default: true
  31159. },
  31160. ]
  31161. ))
  31162. characterMakers.push(() => makeCharacter(
  31163. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31164. {
  31165. front: {
  31166. height: math.unit(6, "feet"),
  31167. weight: math.unit(300, "lb"),
  31168. name: "Front",
  31169. image: {
  31170. source: "./media/characters/tanio/front.svg",
  31171. extra: 711/673,
  31172. bottom: 25/736
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(6, "feet"),
  31180. default: true
  31181. },
  31182. ]
  31183. ))
  31184. characterMakers.push(() => makeCharacter(
  31185. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31186. {
  31187. front: {
  31188. height: math.unit(3, "inches"),
  31189. name: "Front",
  31190. image: {
  31191. source: "./media/characters/noboru/front.svg",
  31192. extra: 1039/932,
  31193. bottom: 18/1057
  31194. }
  31195. },
  31196. },
  31197. [
  31198. {
  31199. name: "Micro",
  31200. height: math.unit(3, "inches"),
  31201. default: true
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31207. {
  31208. front: {
  31209. height: math.unit(1.85, "meters"),
  31210. weight: math.unit(80, "kg"),
  31211. name: "Front",
  31212. image: {
  31213. source: "./media/characters/daniel-barrett/front.svg",
  31214. extra: 355/337,
  31215. bottom: 9/364
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Pico",
  31222. height: math.unit(0.0433, "mm")
  31223. },
  31224. {
  31225. name: "Nano",
  31226. height: math.unit(1.5, "mm")
  31227. },
  31228. {
  31229. name: "Micro",
  31230. height: math.unit(5.3, "cm"),
  31231. default: true
  31232. },
  31233. {
  31234. name: "Normal",
  31235. height: math.unit(1.85, "meters")
  31236. },
  31237. {
  31238. name: "Macro",
  31239. height: math.unit(64.7, "meters")
  31240. },
  31241. {
  31242. name: "Megamacro",
  31243. height: math.unit(2.26, "km")
  31244. },
  31245. {
  31246. name: "Gigamacro",
  31247. height: math.unit(79, "km")
  31248. },
  31249. {
  31250. name: "Teramacro",
  31251. height: math.unit(2765, "km")
  31252. },
  31253. {
  31254. name: "Petamacro",
  31255. height: math.unit(96678, "km")
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31261. {
  31262. front: {
  31263. height: math.unit(30, "meters"),
  31264. weight: math.unit(400, "tons"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/zeel/front.svg",
  31268. extra: 2599/2599,
  31269. bottom: 226/2825
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Macro",
  31276. height: math.unit(30, "meters"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(6 + 7/12, "feet"),
  31286. weight: math.unit(210, "lb"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/tarn/front.svg",
  31290. extra: 3517/3220,
  31291. bottom: 91/3608
  31292. }
  31293. },
  31294. back: {
  31295. height: math.unit(6 + 7/12, "feet"),
  31296. weight: math.unit(210, "lb"),
  31297. name: "Back",
  31298. image: {
  31299. source: "./media/characters/tarn/back.svg",
  31300. extra: 3566/3241,
  31301. bottom: 34/3600
  31302. }
  31303. },
  31304. dick: {
  31305. height: math.unit(1.65, "feet"),
  31306. name: "Dick",
  31307. image: {
  31308. source: "./media/characters/tarn/dick.svg"
  31309. }
  31310. },
  31311. paw: {
  31312. height: math.unit(1.80, "feet"),
  31313. name: "Paw",
  31314. image: {
  31315. source: "./media/characters/tarn/paw.svg"
  31316. }
  31317. },
  31318. tongue: {
  31319. height: math.unit(0.97, "feet"),
  31320. name: "Tongue",
  31321. image: {
  31322. source: "./media/characters/tarn/tongue.svg"
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Micro",
  31329. height: math.unit(4, "inches")
  31330. },
  31331. {
  31332. name: "Normal",
  31333. height: math.unit(6 + 7/12, "feet"),
  31334. default: true
  31335. },
  31336. {
  31337. name: "Macro",
  31338. height: math.unit(300, "feet")
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(5 + 7/12, "feet"),
  31347. weight: math.unit(80, "kg"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31351. extra: 3023/2865,
  31352. bottom: 33/3056
  31353. }
  31354. },
  31355. back: {
  31356. height: math.unit(5 + 7/12, "feet"),
  31357. weight: math.unit(80, "kg"),
  31358. name: "Back",
  31359. image: {
  31360. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31361. extra: 3020/2886,
  31362. bottom: 30/3050
  31363. }
  31364. },
  31365. dick: {
  31366. height: math.unit(0.98, "feet"),
  31367. name: "Dick",
  31368. image: {
  31369. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31370. }
  31371. },
  31372. anatomy: {
  31373. height: math.unit(2.86, "feet"),
  31374. name: "Anatomy",
  31375. image: {
  31376. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Really Small",
  31383. height: math.unit(2, "inches")
  31384. },
  31385. {
  31386. name: "Micro",
  31387. height: math.unit(5.583, "inches")
  31388. },
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(5 + 7/12, "feet"),
  31392. default: true
  31393. },
  31394. {
  31395. name: "Macro",
  31396. height: math.unit(67, "feet")
  31397. },
  31398. {
  31399. name: "Megamacro",
  31400. height: math.unit(134, "feet")
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(9, "feet"),
  31409. weight: math.unit(120, "lb"),
  31410. name: "Front",
  31411. image: {
  31412. source: "./media/characters/sally/front.svg",
  31413. extra: 1506/1349,
  31414. bottom: 66/1572
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(9, "feet"),
  31422. default: true
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31428. {
  31429. front: {
  31430. height: math.unit(8, "feet"),
  31431. weight: math.unit(900, "lb"),
  31432. name: "Front",
  31433. image: {
  31434. source: "./media/characters/owen/front.svg",
  31435. extra: 1761/1657,
  31436. bottom: 74/1835
  31437. }
  31438. },
  31439. side: {
  31440. height: math.unit(8, "feet"),
  31441. weight: math.unit(900, "lb"),
  31442. name: "Side",
  31443. image: {
  31444. source: "./media/characters/owen/side.svg",
  31445. extra: 1797/1734,
  31446. bottom: 30/1827
  31447. }
  31448. },
  31449. back: {
  31450. height: math.unit(8, "feet"),
  31451. weight: math.unit(900, "lb"),
  31452. name: "Back",
  31453. image: {
  31454. source: "./media/characters/owen/back.svg",
  31455. extra: 1796/1706,
  31456. bottom: 59/1855
  31457. }
  31458. },
  31459. maw: {
  31460. height: math.unit(1.76, "feet"),
  31461. name: "Maw",
  31462. image: {
  31463. source: "./media/characters/owen/maw.svg"
  31464. }
  31465. },
  31466. },
  31467. [
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(8, "feet"),
  31471. default: true
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31477. {
  31478. front: {
  31479. height: math.unit(4, "feet"),
  31480. weight: math.unit(400, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/ryth/front.svg",
  31484. extra: 876/691,
  31485. bottom: 25/901
  31486. }
  31487. },
  31488. goia: {
  31489. height: math.unit(12, "feet"),
  31490. weight: math.unit(10800, "lb"),
  31491. name: "Goia",
  31492. image: {
  31493. source: "./media/characters/ryth/goia.svg",
  31494. extra: 3450/3198,
  31495. bottom: 61/3511
  31496. }
  31497. },
  31498. },
  31499. [
  31500. {
  31501. name: "Normal",
  31502. height: math.unit(4, "feet"),
  31503. default: true
  31504. },
  31505. ]
  31506. ))
  31507. characterMakers.push(() => makeCharacter(
  31508. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31509. {
  31510. front: {
  31511. height: math.unit(7, "feet"),
  31512. weight: math.unit(180, "lb"),
  31513. name: "Front",
  31514. image: {
  31515. source: "./media/characters/necrolance/front.svg",
  31516. extra: 1062/947,
  31517. bottom: 41/1103
  31518. }
  31519. },
  31520. back: {
  31521. height: math.unit(7, "feet"),
  31522. weight: math.unit(180, "lb"),
  31523. name: "Back",
  31524. image: {
  31525. source: "./media/characters/necrolance/back.svg",
  31526. extra: 1045/984,
  31527. bottom: 14/1059
  31528. }
  31529. },
  31530. wing: {
  31531. height: math.unit(2.67, "feet"),
  31532. name: "Wing",
  31533. image: {
  31534. source: "./media/characters/necrolance/wing.svg"
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(7, "feet"),
  31542. default: true
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31548. {
  31549. front: {
  31550. height: math.unit(76, "meters"),
  31551. weight: math.unit(30000, "tons"),
  31552. name: "Front",
  31553. image: {
  31554. source: "./media/characters/tyler/front.svg",
  31555. extra: 1640/1640,
  31556. bottom: 114/1754
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Macro",
  31563. height: math.unit(76, "meters"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(4 + 11/12, "feet"),
  31573. weight: math.unit(132, "lb"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/icey/front.svg",
  31577. extra: 2750/2550,
  31578. bottom: 33/2783
  31579. }
  31580. },
  31581. back: {
  31582. height: math.unit(4 + 11/12, "feet"),
  31583. weight: math.unit(132, "lb"),
  31584. name: "Back",
  31585. image: {
  31586. source: "./media/characters/icey/back.svg",
  31587. extra: 2624/2481,
  31588. bottom: 35/2659
  31589. }
  31590. },
  31591. },
  31592. [
  31593. {
  31594. name: "Normal",
  31595. height: math.unit(4 + 11/12, "feet"),
  31596. default: true
  31597. },
  31598. ]
  31599. ))
  31600. characterMakers.push(() => makeCharacter(
  31601. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31602. {
  31603. front: {
  31604. height: math.unit(100, "feet"),
  31605. weight: math.unit(0, "lb"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/smile/front.svg",
  31609. extra: 2983/2912,
  31610. bottom: 162/3145
  31611. }
  31612. },
  31613. back: {
  31614. height: math.unit(100, "feet"),
  31615. weight: math.unit(0, "lb"),
  31616. name: "Back",
  31617. image: {
  31618. source: "./media/characters/smile/back.svg",
  31619. extra: 3143/3031,
  31620. bottom: 91/3234
  31621. }
  31622. },
  31623. head: {
  31624. height: math.unit(26.3, "feet"),
  31625. weight: math.unit(0, "lb"),
  31626. name: "Head",
  31627. image: {
  31628. source: "./media/characters/smile/head.svg"
  31629. }
  31630. },
  31631. collar: {
  31632. height: math.unit(5.3, "feet"),
  31633. weight: math.unit(0, "lb"),
  31634. name: "Collar",
  31635. image: {
  31636. source: "./media/characters/smile/collar.svg"
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(100, "feet"),
  31644. default: true
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31650. {
  31651. dragon: {
  31652. height: math.unit(26, "feet"),
  31653. weight: math.unit(36, "tons"),
  31654. name: "Dragon",
  31655. image: {
  31656. source: "./media/characters/arimphae/dragon.svg",
  31657. extra: 1574/983,
  31658. bottom: 357/1931
  31659. }
  31660. },
  31661. drake: {
  31662. height: math.unit(9, "feet"),
  31663. weight: math.unit(1.5, "tons"),
  31664. name: "Drake",
  31665. image: {
  31666. source: "./media/characters/arimphae/drake.svg",
  31667. extra: 1120/925,
  31668. bottom: 435/1555
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Small",
  31675. height: math.unit(26*5/9, "feet")
  31676. },
  31677. {
  31678. name: "Normal",
  31679. height: math.unit(26, "feet"),
  31680. default: true
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31686. {
  31687. front: {
  31688. height: math.unit(8 + 9/12, "feet"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/xander/front.svg",
  31692. extra: 848/673,
  31693. bottom: 62/910
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Normal",
  31700. height: math.unit(8 + 9/12, "feet"),
  31701. default: true
  31702. },
  31703. {
  31704. name: "Gaze Grabber",
  31705. height: math.unit(13 + 8/12, "feet")
  31706. },
  31707. {
  31708. name: "Jaw Dropper",
  31709. height: math.unit(27, "feet")
  31710. },
  31711. {
  31712. name: "Show Stopper",
  31713. height: math.unit(136, "feet")
  31714. },
  31715. {
  31716. name: "Superstar",
  31717. height: math.unit(1.9e6, "miles")
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31723. {
  31724. side: {
  31725. height: math.unit(2100, "feet"),
  31726. name: "Side",
  31727. image: {
  31728. source: "./media/characters/osiris/side.svg",
  31729. extra: 1105/939,
  31730. bottom: 167/1272
  31731. }
  31732. },
  31733. },
  31734. [
  31735. {
  31736. name: "Macro",
  31737. height: math.unit(2100, "feet"),
  31738. default: true
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(6 + 8/12, "feet"),
  31747. weight: math.unit(225, "lb"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/rhys-londe/front.svg",
  31751. extra: 2258/2141,
  31752. bottom: 188/2446
  31753. }
  31754. },
  31755. back: {
  31756. height: math.unit(6 + 8/12, "feet"),
  31757. weight: math.unit(225, "lb"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/rhys-londe/back.svg",
  31761. extra: 2237/2137,
  31762. bottom: 63/2300
  31763. }
  31764. },
  31765. frontNsfw: {
  31766. height: math.unit(6 + 8/12, "feet"),
  31767. weight: math.unit(225, "lb"),
  31768. name: "Front (NSFW)",
  31769. image: {
  31770. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31771. extra: 2258/2141,
  31772. bottom: 188/2446
  31773. }
  31774. },
  31775. backNsfw: {
  31776. height: math.unit(6 + 8/12, "feet"),
  31777. weight: math.unit(225, "lb"),
  31778. name: "Back (NSFW)",
  31779. image: {
  31780. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31781. extra: 2237/2137,
  31782. bottom: 63/2300
  31783. }
  31784. },
  31785. dick: {
  31786. height: math.unit(30, "inches"),
  31787. name: "Dick",
  31788. image: {
  31789. source: "./media/characters/rhys-londe/dick.svg"
  31790. }
  31791. },
  31792. maw: {
  31793. height: math.unit(1.6, "feet"),
  31794. name: "Maw",
  31795. image: {
  31796. source: "./media/characters/rhys-londe/maw.svg"
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(6 + 8/12, "feet"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(3 + 10/12, "feet"),
  31813. weight: math.unit(90, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/taivas-ensim/front.svg",
  31817. extra: 1327/1216,
  31818. bottom: 96/1423
  31819. }
  31820. },
  31821. back: {
  31822. height: math.unit(3 + 10/12, "feet"),
  31823. weight: math.unit(90, "lb"),
  31824. name: "Back",
  31825. image: {
  31826. source: "./media/characters/taivas-ensim/back.svg",
  31827. extra: 1355/1247,
  31828. bottom: 11/1366
  31829. }
  31830. },
  31831. frontNsfw: {
  31832. height: math.unit(3 + 10/12, "feet"),
  31833. weight: math.unit(90, "lb"),
  31834. name: "Front (NSFW)",
  31835. image: {
  31836. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31837. extra: 1327/1216,
  31838. bottom: 96/1423
  31839. }
  31840. },
  31841. backNsfw: {
  31842. height: math.unit(3 + 10/12, "feet"),
  31843. weight: math.unit(90, "lb"),
  31844. name: "Back (NSFW)",
  31845. image: {
  31846. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31847. extra: 1355/1247,
  31848. bottom: 11/1366
  31849. }
  31850. },
  31851. },
  31852. [
  31853. {
  31854. name: "Normal",
  31855. height: math.unit(3 + 10/12, "feet"),
  31856. default: true
  31857. },
  31858. ]
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31862. {
  31863. front: {
  31864. height: math.unit(9 + 6/12, "feet"),
  31865. weight: math.unit(940, "lb"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/byliss/front.svg",
  31869. extra: 1327/1290,
  31870. bottom: 82/1409
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(9 + 6/12, "feet"),
  31875. weight: math.unit(940, "lb"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/byliss/back.svg",
  31879. extra: 1376/1349,
  31880. bottom: 9/1385
  31881. }
  31882. },
  31883. frontNsfw: {
  31884. height: math.unit(9 + 6/12, "feet"),
  31885. weight: math.unit(940, "lb"),
  31886. name: "Front (NSFW)",
  31887. image: {
  31888. source: "./media/characters/byliss/front-nsfw.svg",
  31889. extra: 1327/1290,
  31890. bottom: 82/1409
  31891. }
  31892. },
  31893. backNsfw: {
  31894. height: math.unit(9 + 6/12, "feet"),
  31895. weight: math.unit(940, "lb"),
  31896. name: "Back (NSFW)",
  31897. image: {
  31898. source: "./media/characters/byliss/back-nsfw.svg",
  31899. extra: 1376/1349,
  31900. bottom: 9/1385
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(9 + 6/12, "feet"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31914. {
  31915. front: {
  31916. height: math.unit(5 + 2/12, "feet"),
  31917. weight: math.unit(200, "lb"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/noraly/front.svg",
  31921. extra: 4985/4773,
  31922. bottom: 150/5135
  31923. }
  31924. },
  31925. full: {
  31926. height: math.unit(5 + 2/12, "feet"),
  31927. weight: math.unit(164, "lb"),
  31928. name: "Full",
  31929. image: {
  31930. source: "./media/characters/noraly/full.svg",
  31931. extra: 1114/1059,
  31932. bottom: 35/1149
  31933. }
  31934. },
  31935. fuller: {
  31936. height: math.unit(5 + 2/12, "feet"),
  31937. weight: math.unit(230, "lb"),
  31938. name: "Fuller",
  31939. image: {
  31940. source: "./media/characters/noraly/fuller.svg",
  31941. extra: 1114/1059,
  31942. bottom: 35/1149
  31943. }
  31944. },
  31945. fullest: {
  31946. height: math.unit(5 + 2/12, "feet"),
  31947. weight: math.unit(300, "lb"),
  31948. name: "Fullest",
  31949. image: {
  31950. source: "./media/characters/noraly/fullest.svg",
  31951. extra: 1114/1059,
  31952. bottom: 35/1149
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(5 + 2/12, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31966. {
  31967. front: {
  31968. height: math.unit(5 + 2/12, "feet"),
  31969. weight: math.unit(210, "lb"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/pera/front.svg",
  31973. extra: 1560/1531,
  31974. bottom: 165/1725
  31975. }
  31976. },
  31977. back: {
  31978. height: math.unit(5 + 2/12, "feet"),
  31979. weight: math.unit(210, "lb"),
  31980. name: "Back",
  31981. image: {
  31982. source: "./media/characters/pera/back.svg",
  31983. extra: 1523/1493,
  31984. bottom: 152/1675
  31985. }
  31986. },
  31987. dick: {
  31988. height: math.unit(2.4, "feet"),
  31989. name: "Dick",
  31990. image: {
  31991. source: "./media/characters/pera/dick.svg"
  31992. }
  31993. },
  31994. },
  31995. [
  31996. {
  31997. name: "Normal",
  31998. height: math.unit(5 + 2/12, "feet"),
  31999. default: true
  32000. },
  32001. ]
  32002. ))
  32003. characterMakers.push(() => makeCharacter(
  32004. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32005. {
  32006. front: {
  32007. height: math.unit(12, "feet"),
  32008. weight: math.unit(3200, "lb"),
  32009. name: "Front",
  32010. image: {
  32011. source: "./media/characters/julian/front.svg",
  32012. extra: 2962/2701,
  32013. bottom: 184/3146
  32014. }
  32015. },
  32016. maw: {
  32017. height: math.unit(5.35, "feet"),
  32018. name: "Maw",
  32019. image: {
  32020. source: "./media/characters/julian/maw.svg"
  32021. }
  32022. },
  32023. paw: {
  32024. height: math.unit(3.07, "feet"),
  32025. name: "Paw",
  32026. image: {
  32027. source: "./media/characters/julian/paw.svg"
  32028. }
  32029. },
  32030. },
  32031. [
  32032. {
  32033. name: "Default",
  32034. height: math.unit(12, "feet"),
  32035. default: true
  32036. },
  32037. {
  32038. name: "Big",
  32039. height: math.unit(50, "feet")
  32040. },
  32041. {
  32042. name: "Really Big",
  32043. height: math.unit(1, "mile")
  32044. },
  32045. {
  32046. name: "Extremely Big",
  32047. height: math.unit(100, "miles")
  32048. },
  32049. {
  32050. name: "Planet Hugger",
  32051. height: math.unit(200, "megameters")
  32052. },
  32053. {
  32054. name: "Unreasonably Big",
  32055. height: math.unit(1e300, "meters")
  32056. },
  32057. ]
  32058. ))
  32059. characterMakers.push(() => makeCharacter(
  32060. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32061. {
  32062. solgooleo: {
  32063. height: math.unit(4, "meters"),
  32064. weight: math.unit(6000*1.5, "kg"),
  32065. volume: math.unit(6000, "liters"),
  32066. name: "Solgooleo",
  32067. image: {
  32068. source: "./media/characters/pi/solgooleo.svg",
  32069. extra: 388/331,
  32070. bottom: 29/417
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(4, "meters"),
  32078. default: true
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32084. {
  32085. front: {
  32086. height: math.unit(8 + 2/12, "feet"),
  32087. weight: math.unit(4, "tons"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/shaun/front.svg",
  32091. extra: 1550/1505,
  32092. bottom: 353/1903
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Lorg",
  32099. height: math.unit(8 + 2/12, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32106. {
  32107. front: {
  32108. height: math.unit(7, "feet"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/sini/front.svg",
  32112. extra: 726/678,
  32113. bottom: 35/761
  32114. }
  32115. },
  32116. back: {
  32117. height: math.unit(7, "feet"),
  32118. name: "Back",
  32119. image: {
  32120. source: "./media/characters/sini/back.svg",
  32121. extra: 743/701,
  32122. bottom: 12/755
  32123. }
  32124. },
  32125. mawAnthro: {
  32126. height: math.unit(2.14, "feet"),
  32127. name: "Maw (Anthro)",
  32128. image: {
  32129. source: "./media/characters/sini/maw-anthro.svg"
  32130. }
  32131. },
  32132. dick: {
  32133. height: math.unit(1.45, "feet"),
  32134. name: "Dick (Anthro)",
  32135. image: {
  32136. source: "./media/characters/sini/dick-anthro.svg"
  32137. }
  32138. },
  32139. feral: {
  32140. height: math.unit(13, "feet"),
  32141. name: "Feral",
  32142. image: {
  32143. source: "./media/characters/sini/feral.svg",
  32144. extra: 814/605,
  32145. bottom: 11/825
  32146. }
  32147. },
  32148. mawFeral: {
  32149. height: math.unit(4.6, "feet"),
  32150. name: "Maw-feral",
  32151. image: {
  32152. source: "./media/characters/sini/maw-feral.svg"
  32153. }
  32154. },
  32155. footFeral: {
  32156. height: math.unit(4.2, "feet"),
  32157. name: "Foot-feral",
  32158. image: {
  32159. source: "./media/characters/sini/foot-feral.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(7, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32173. {
  32174. side: {
  32175. height: math.unit(13, "meters"),
  32176. weight: math.unit(9072, "kg"),
  32177. name: "Side",
  32178. image: {
  32179. source: "./media/characters/raylldo/side.svg",
  32180. extra: 403/344,
  32181. bottom: 42/445
  32182. }
  32183. },
  32184. leaping: {
  32185. height: math.unit(12.3, "meters"),
  32186. weight: math.unit(9072, "kg"),
  32187. name: "Leaping",
  32188. image: {
  32189. source: "./media/characters/raylldo/leaping.svg",
  32190. extra: 470/249,
  32191. bottom: 13/483
  32192. }
  32193. },
  32194. flying: {
  32195. height: math.unit(18, "meters"),
  32196. weight: math.unit(9072, "kg"),
  32197. name: "Flying",
  32198. image: {
  32199. source: "./media/characters/raylldo/flying.svg"
  32200. }
  32201. },
  32202. head: {
  32203. height: math.unit(5.85, "meters"),
  32204. name: "Head",
  32205. image: {
  32206. source: "./media/characters/raylldo/head.svg"
  32207. }
  32208. },
  32209. maw: {
  32210. height: math.unit(5.32, "meters"),
  32211. name: "Maw",
  32212. image: {
  32213. source: "./media/characters/raylldo/maw.svg"
  32214. }
  32215. },
  32216. eye: {
  32217. height: math.unit(0.54, "meters"),
  32218. name: "Eye",
  32219. image: {
  32220. source: "./media/characters/raylldo/eye.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(13, "meters"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32234. {
  32235. anthroFront: {
  32236. height: math.unit(9, "feet"),
  32237. weight: math.unit(600, "lb"),
  32238. name: "Anthro (Front)",
  32239. image: {
  32240. source: "./media/characters/glint/anthro-front.svg",
  32241. extra: 1097/1018,
  32242. bottom: 28/1125
  32243. }
  32244. },
  32245. anthroBack: {
  32246. height: math.unit(9, "feet"),
  32247. weight: math.unit(600, "lb"),
  32248. name: "Anthro (Back)",
  32249. image: {
  32250. source: "./media/characters/glint/anthro-back.svg",
  32251. extra: 1154/997,
  32252. bottom: 36/1190
  32253. }
  32254. },
  32255. feral: {
  32256. height: math.unit(11, "feet"),
  32257. weight: math.unit(50000, "lb"),
  32258. name: "Feral",
  32259. image: {
  32260. source: "./media/characters/glint/feral.svg",
  32261. extra: 3035/1585,
  32262. bottom: 1169/4204
  32263. }
  32264. },
  32265. dickAnthro: {
  32266. height: math.unit(0.7, "meters"),
  32267. name: "Dick (Anthro)",
  32268. image: {
  32269. source: "./media/characters/glint/dick-anthro.svg"
  32270. }
  32271. },
  32272. dickFeral: {
  32273. height: math.unit(2.65, "meters"),
  32274. name: "Dick (Feral)",
  32275. image: {
  32276. source: "./media/characters/glint/dick-feral.svg"
  32277. }
  32278. },
  32279. slitHidden: {
  32280. height: math.unit(5.85, "meters"),
  32281. name: "Slit (Hidden)",
  32282. image: {
  32283. source: "./media/characters/glint/slit-hidden.svg"
  32284. }
  32285. },
  32286. slitErect: {
  32287. height: math.unit(5.85, "meters"),
  32288. name: "Slit (Erect)",
  32289. image: {
  32290. source: "./media/characters/glint/slit-erect.svg"
  32291. }
  32292. },
  32293. mawAnthro: {
  32294. height: math.unit(0.63, "meters"),
  32295. name: "Maw (Anthro)",
  32296. image: {
  32297. source: "./media/characters/glint/maw.svg"
  32298. }
  32299. },
  32300. mawFeral: {
  32301. height: math.unit(2.89, "meters"),
  32302. name: "Maw (Feral)",
  32303. image: {
  32304. source: "./media/characters/glint/maw.svg"
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(9, "feet"),
  32312. default: true
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32318. {
  32319. side: {
  32320. height: math.unit(15, "feet"),
  32321. weight: math.unit(5000, "kg"),
  32322. name: "Side",
  32323. image: {
  32324. source: "./media/characters/kairne/side.svg",
  32325. extra: 979/811,
  32326. bottom: 13/992
  32327. }
  32328. },
  32329. front: {
  32330. height: math.unit(15, "feet"),
  32331. weight: math.unit(5000, "kg"),
  32332. name: "Front",
  32333. image: {
  32334. source: "./media/characters/kairne/front.svg",
  32335. extra: 908/814,
  32336. bottom: 26/934
  32337. }
  32338. },
  32339. sideNsfw: {
  32340. height: math.unit(15, "feet"),
  32341. weight: math.unit(5000, "kg"),
  32342. name: "Side (NSFW)",
  32343. image: {
  32344. source: "./media/characters/kairne/side-nsfw.svg",
  32345. extra: 979/811,
  32346. bottom: 13/992
  32347. }
  32348. },
  32349. frontNsfw: {
  32350. height: math.unit(15, "feet"),
  32351. weight: math.unit(5000, "kg"),
  32352. name: "Front (NSFW)",
  32353. image: {
  32354. source: "./media/characters/kairne/front-nsfw.svg",
  32355. extra: 908/814,
  32356. bottom: 26/934
  32357. }
  32358. },
  32359. dickCaged: {
  32360. height: math.unit(0.65, "meters"),
  32361. name: "Dick-caged",
  32362. image: {
  32363. source: "./media/characters/kairne/dick-caged.svg"
  32364. }
  32365. },
  32366. dick: {
  32367. height: math.unit(0.79, "meters"),
  32368. name: "Dick",
  32369. image: {
  32370. source: "./media/characters/kairne/dick.svg"
  32371. }
  32372. },
  32373. genitals: {
  32374. height: math.unit(1.29, "meters"),
  32375. name: "Genitals",
  32376. image: {
  32377. source: "./media/characters/kairne/genitals.svg"
  32378. }
  32379. },
  32380. maw: {
  32381. height: math.unit(1.73, "meters"),
  32382. name: "Maw",
  32383. image: {
  32384. source: "./media/characters/kairne/maw.svg"
  32385. }
  32386. },
  32387. },
  32388. [
  32389. {
  32390. name: "Normal",
  32391. height: math.unit(15, "feet"),
  32392. default: true
  32393. },
  32394. ]
  32395. ))
  32396. characterMakers.push(() => makeCharacter(
  32397. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32398. {
  32399. front: {
  32400. height: math.unit(5 + 8/12, "feet"),
  32401. weight: math.unit(139, "lb"),
  32402. name: "Front",
  32403. image: {
  32404. source: "./media/characters/biscuit-jackal/front.svg",
  32405. extra: 2106/1961,
  32406. bottom: 58/2164
  32407. }
  32408. },
  32409. back: {
  32410. height: math.unit(5 + 8/12, "feet"),
  32411. weight: math.unit(139, "lb"),
  32412. name: "Back",
  32413. image: {
  32414. source: "./media/characters/biscuit-jackal/back.svg",
  32415. extra: 2132/1976,
  32416. bottom: 57/2189
  32417. }
  32418. },
  32419. werejackal: {
  32420. height: math.unit(6 + 3/12, "feet"),
  32421. weight: math.unit(188, "lb"),
  32422. name: "Werejackal",
  32423. image: {
  32424. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32425. extra: 2373/2178,
  32426. bottom: 53/2426
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(5 + 8/12, "feet"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32440. {
  32441. front: {
  32442. height: math.unit(140, "cm"),
  32443. weight: math.unit(45, "kg"),
  32444. name: "Front",
  32445. image: {
  32446. source: "./media/characters/tayra-white/front.svg",
  32447. extra: 2229/2192,
  32448. bottom: 75/2304
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Normal",
  32455. height: math.unit(140, "cm"),
  32456. default: true
  32457. },
  32458. ]
  32459. ))
  32460. characterMakers.push(() => makeCharacter(
  32461. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32462. {
  32463. front: {
  32464. height: math.unit(4 + 5/12, "feet"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/scoop/front.svg",
  32468. extra: 1257/1136,
  32469. bottom: 69/1326
  32470. }
  32471. },
  32472. back: {
  32473. height: math.unit(4 + 5/12, "feet"),
  32474. name: "Back",
  32475. image: {
  32476. source: "./media/characters/scoop/back.svg",
  32477. extra: 1321/1152,
  32478. bottom: 32/1353
  32479. }
  32480. },
  32481. maw: {
  32482. height: math.unit(0.68, "feet"),
  32483. name: "Maw",
  32484. image: {
  32485. source: "./media/characters/scoop/maw.svg"
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Really Small",
  32492. height: math.unit(1, "mm")
  32493. },
  32494. {
  32495. name: "Micro",
  32496. height: math.unit(1, "inch")
  32497. },
  32498. {
  32499. name: "Normal",
  32500. height: math.unit(4 + 5/12, "feet"),
  32501. default: true
  32502. },
  32503. {
  32504. name: "Macro",
  32505. height: math.unit(200, "feet")
  32506. },
  32507. {
  32508. name: "Megamacro",
  32509. height: math.unit(3240, "feet")
  32510. },
  32511. {
  32512. name: "Teramacro",
  32513. height: math.unit(2500, "miles")
  32514. },
  32515. ]
  32516. ))
  32517. characterMakers.push(() => makeCharacter(
  32518. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32519. {
  32520. front: {
  32521. height: math.unit(15 + 7/12, "feet"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/saphinara/front.svg",
  32525. extra: 604/546,
  32526. bottom: 19/623
  32527. }
  32528. },
  32529. side: {
  32530. height: math.unit(15 + 7/12, "feet"),
  32531. name: "Side",
  32532. image: {
  32533. source: "./media/characters/saphinara/side.svg",
  32534. extra: 605/547,
  32535. bottom: 6/611
  32536. }
  32537. },
  32538. back: {
  32539. height: math.unit(15 + 7/12, "feet"),
  32540. name: "Back",
  32541. image: {
  32542. source: "./media/characters/saphinara/back.svg",
  32543. extra: 591/531,
  32544. bottom: 13/604
  32545. }
  32546. },
  32547. frontTail: {
  32548. height: math.unit(15 + 7/12, "feet"),
  32549. name: "Front (Full Tail)",
  32550. image: {
  32551. source: "./media/characters/saphinara/front-tail.svg",
  32552. extra: 748/547,
  32553. bottom: 66/814
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(15 + 7/12, "feet"),
  32561. default: true
  32562. },
  32563. {
  32564. name: "Angry",
  32565. height: math.unit(30 + 6/12, "feet")
  32566. },
  32567. {
  32568. name: "Enraged",
  32569. height: math.unit(102 + 1/12, "feet")
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32575. {
  32576. front: {
  32577. height: math.unit(6 + 8/12, "feet"),
  32578. weight: math.unit(300, "lb"),
  32579. name: "Front",
  32580. image: {
  32581. source: "./media/characters/jrain/front.svg",
  32582. extra: 3039/2865,
  32583. bottom: 399/3438
  32584. }
  32585. },
  32586. back: {
  32587. height: math.unit(6 + 8/12, "feet"),
  32588. weight: math.unit(300, "lb"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/jrain/back.svg",
  32592. extra: 3089/2938,
  32593. bottom: 172/3261
  32594. }
  32595. },
  32596. head: {
  32597. height: math.unit(2.14, "feet"),
  32598. name: "Head",
  32599. image: {
  32600. source: "./media/characters/jrain/head.svg"
  32601. }
  32602. },
  32603. maw: {
  32604. height: math.unit(1.77, "feet"),
  32605. name: "Maw",
  32606. image: {
  32607. source: "./media/characters/jrain/maw.svg"
  32608. }
  32609. },
  32610. leftHand: {
  32611. height: math.unit(1.1, "feet"),
  32612. name: "Left Hand",
  32613. image: {
  32614. source: "./media/characters/jrain/left-hand.svg"
  32615. }
  32616. },
  32617. rightHand: {
  32618. height: math.unit(1.1, "feet"),
  32619. name: "Right Hand",
  32620. image: {
  32621. source: "./media/characters/jrain/right-hand.svg"
  32622. }
  32623. },
  32624. eye: {
  32625. height: math.unit(0.35, "feet"),
  32626. name: "Eye",
  32627. image: {
  32628. source: "./media/characters/jrain/eye.svg"
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(6 + 8/12, "feet"),
  32636. default: true
  32637. },
  32638. {
  32639. name: "Casually Large",
  32640. height: math.unit(25, "feet")
  32641. },
  32642. {
  32643. name: "Giant",
  32644. height: math.unit(100, "feet")
  32645. },
  32646. {
  32647. name: "Kaiju",
  32648. height: math.unit(300, "feet")
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32654. {
  32655. dragon: {
  32656. height: math.unit(5, "meters"),
  32657. name: "Dragon",
  32658. image: {
  32659. source: "./media/characters/sabrina/dragon.svg",
  32660. extra: 3670 / 2365,
  32661. bottom: 333 / 4003
  32662. }
  32663. },
  32664. gryphon: {
  32665. height: math.unit(3, "meters"),
  32666. name: "Gryphon",
  32667. image: {
  32668. source: "./media/characters/sabrina/gryphon.svg",
  32669. extra: 1576 / 945,
  32670. bottom: 71 / 1647
  32671. }
  32672. },
  32673. snake: {
  32674. height: math.unit(12, "meters"),
  32675. name: "Snake",
  32676. image: {
  32677. source: "./media/characters/sabrina/snake.svg",
  32678. extra: 1758 / 1320,
  32679. bottom: 186 / 1944
  32680. }
  32681. },
  32682. collar: {
  32683. height: math.unit(1.86, "meters"),
  32684. name: "Collar",
  32685. image: {
  32686. source: "./media/characters/sabrina/collar.svg"
  32687. }
  32688. },
  32689. eye: {
  32690. height: math.unit(0.53, "meters"),
  32691. name: "Eye",
  32692. image: {
  32693. source: "./media/characters/sabrina/eye.svg"
  32694. }
  32695. },
  32696. foot: {
  32697. height: math.unit(1.86, "meters"),
  32698. name: "Foot",
  32699. image: {
  32700. source: "./media/characters/sabrina/foot.svg"
  32701. }
  32702. },
  32703. hand: {
  32704. height: math.unit(1.32, "meters"),
  32705. name: "Hand",
  32706. image: {
  32707. source: "./media/characters/sabrina/hand.svg"
  32708. }
  32709. },
  32710. head: {
  32711. height: math.unit(2.44, "meters"),
  32712. name: "Head",
  32713. image: {
  32714. source: "./media/characters/sabrina/head.svg"
  32715. }
  32716. },
  32717. headAngry: {
  32718. height: math.unit(2.44, "meters"),
  32719. name: "Head (Angry))",
  32720. image: {
  32721. source: "./media/characters/sabrina/head-angry.svg"
  32722. }
  32723. },
  32724. maw: {
  32725. height: math.unit(1.65, "meters"),
  32726. name: "Maw",
  32727. image: {
  32728. source: "./media/characters/sabrina/maw.svg"
  32729. }
  32730. },
  32731. spikes: {
  32732. height: math.unit(1.69, "meters"),
  32733. name: "Spikes",
  32734. image: {
  32735. source: "./media/characters/sabrina/spikes.svg"
  32736. }
  32737. },
  32738. stomach: {
  32739. height: math.unit(1.15, "meters"),
  32740. name: "Stomach",
  32741. image: {
  32742. source: "./media/characters/sabrina/stomach.svg"
  32743. }
  32744. },
  32745. tongue: {
  32746. height: math.unit(1.27, "meters"),
  32747. name: "Tongue",
  32748. image: {
  32749. source: "./media/characters/sabrina/tongue.svg"
  32750. }
  32751. },
  32752. wingDorsal: {
  32753. height: math.unit(4.85, "meters"),
  32754. name: "Wing (Dorsal)",
  32755. image: {
  32756. source: "./media/characters/sabrina/wing-dorsal.svg"
  32757. }
  32758. },
  32759. wingVentral: {
  32760. height: math.unit(4.85, "meters"),
  32761. name: "Wing (Ventral)",
  32762. image: {
  32763. source: "./media/characters/sabrina/wing-ventral.svg"
  32764. }
  32765. },
  32766. },
  32767. [
  32768. {
  32769. name: "Normal",
  32770. height: math.unit(5, "meters"),
  32771. default: true
  32772. },
  32773. ]
  32774. ))
  32775. characterMakers.push(() => makeCharacter(
  32776. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32777. {
  32778. frontMaid: {
  32779. height: math.unit(5 + 5/12, "feet"),
  32780. weight: math.unit(130, "lb"),
  32781. name: "Front (Maid)",
  32782. image: {
  32783. source: "./media/characters/midnight-tales/front-maid.svg",
  32784. extra: 489/454,
  32785. bottom: 61/550
  32786. }
  32787. },
  32788. frontFormal: {
  32789. height: math.unit(5 + 5/12, "feet"),
  32790. weight: math.unit(130, "lb"),
  32791. name: "Front (Formal)",
  32792. image: {
  32793. source: "./media/characters/midnight-tales/front-formal.svg",
  32794. extra: 489/454,
  32795. bottom: 61/550
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(5 + 5/12, "feet"),
  32800. weight: math.unit(130, "lb"),
  32801. name: "Back",
  32802. image: {
  32803. source: "./media/characters/midnight-tales/back.svg",
  32804. extra: 498/456,
  32805. bottom: 33/531
  32806. }
  32807. },
  32808. frontBeast: {
  32809. height: math.unit(40, "feet"),
  32810. weight: math.unit(64000, "lb"),
  32811. name: "Front (Beast)",
  32812. image: {
  32813. source: "./media/characters/midnight-tales/front-beast.svg",
  32814. extra: 927/860,
  32815. bottom: 53/980
  32816. }
  32817. },
  32818. backBeast: {
  32819. height: math.unit(40, "feet"),
  32820. weight: math.unit(64000, "lb"),
  32821. name: "Back (Beast)",
  32822. image: {
  32823. source: "./media/characters/midnight-tales/back-beast.svg",
  32824. extra: 929/855,
  32825. bottom: 16/945
  32826. }
  32827. },
  32828. footBeast: {
  32829. height: math.unit(6.7, "feet"),
  32830. name: "Foot (Beast)",
  32831. image: {
  32832. source: "./media/characters/midnight-tales/foot-beast.svg"
  32833. }
  32834. },
  32835. headBeast: {
  32836. height: math.unit(8, "feet"),
  32837. name: "Head (Beast)",
  32838. image: {
  32839. source: "./media/characters/midnight-tales/head-beast.svg"
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(5 + 5 / 12, "feet"),
  32847. default: true
  32848. },
  32849. {
  32850. name: "Macro",
  32851. height: math.unit(25, "feet")
  32852. },
  32853. ]
  32854. ))
  32855. characterMakers.push(() => makeCharacter(
  32856. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32857. {
  32858. front: {
  32859. height: math.unit(5 + 10/12, "feet"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/argon/front.svg",
  32863. extra: 2009/1935,
  32864. bottom: 118/2127
  32865. }
  32866. },
  32867. back: {
  32868. height: math.unit(5 + 10/12, "feet"),
  32869. name: "Back",
  32870. image: {
  32871. source: "./media/characters/argon/back.svg",
  32872. extra: 2047/1992,
  32873. bottom: 20/2067
  32874. }
  32875. },
  32876. frontDressed: {
  32877. height: math.unit(5 + 10/12, "feet"),
  32878. name: "Front (Dressed)",
  32879. image: {
  32880. source: "./media/characters/argon/front-dressed.svg",
  32881. extra: 2009/1935,
  32882. bottom: 118/2127
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(5 + 10/12, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(8 + 6/12, "feet"),
  32899. weight: math.unit(1150, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/kichi/front.svg",
  32903. extra: 1267/1164,
  32904. bottom: 61/1328
  32905. }
  32906. },
  32907. back: {
  32908. height: math.unit(8 + 6/12, "feet"),
  32909. weight: math.unit(1150, "lb"),
  32910. name: "Back",
  32911. image: {
  32912. source: "./media/characters/kichi/back.svg",
  32913. extra: 1273/1166,
  32914. bottom: 33/1306
  32915. }
  32916. },
  32917. },
  32918. [
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(8 + 6/12, "feet"),
  32922. default: true
  32923. },
  32924. ]
  32925. ))
  32926. characterMakers.push(() => makeCharacter(
  32927. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32928. {
  32929. front: {
  32930. height: math.unit(6, "feet"),
  32931. weight: math.unit(210, "lb"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/manetel-greyscale/front.svg",
  32935. extra: 350/312,
  32936. bottom: 8/358
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Micro",
  32943. height: math.unit(2, "inches")
  32944. },
  32945. {
  32946. name: "Normal",
  32947. height: math.unit(6, "feet"),
  32948. default: true
  32949. },
  32950. {
  32951. name: "Minimacro",
  32952. height: math.unit(17, "feet")
  32953. },
  32954. {
  32955. name: "Macro",
  32956. height: math.unit(117, "feet")
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32962. {
  32963. side: {
  32964. height: math.unit(5 + 1/12, "feet"),
  32965. weight: math.unit(418, "lb"),
  32966. name: "Side",
  32967. image: {
  32968. source: "./media/characters/softpurr/side.svg",
  32969. extra: 1993/1945,
  32970. bottom: 134/2127
  32971. }
  32972. },
  32973. front: {
  32974. height: math.unit(5 + 1/12, "feet"),
  32975. weight: math.unit(418, "lb"),
  32976. name: "Front",
  32977. image: {
  32978. source: "./media/characters/softpurr/front.svg",
  32979. extra: 1950/1856,
  32980. bottom: 174/2124
  32981. }
  32982. },
  32983. paw: {
  32984. height: math.unit(1, "feet"),
  32985. name: "Paw",
  32986. image: {
  32987. source: "./media/characters/softpurr/paw.svg"
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Normal",
  32994. height: math.unit(5 + 1/12, "feet"),
  32995. default: true
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33001. {
  33002. front: {
  33003. height: math.unit(260, "meters"),
  33004. name: "Front",
  33005. image: {
  33006. source: "./media/characters/anahita/front.svg",
  33007. extra: 665/635,
  33008. bottom: 89/754
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Macro",
  33015. height: math.unit(260, "meters"),
  33016. default: true
  33017. },
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33022. {
  33023. front: {
  33024. height: math.unit(4 + 10/12, "feet"),
  33025. weight: math.unit(160, "lb"),
  33026. name: "Front",
  33027. image: {
  33028. source: "./media/characters/chip-mouse/front.svg",
  33029. extra: 3528/3408,
  33030. bottom: 0/3528
  33031. }
  33032. },
  33033. frontNsfw: {
  33034. height: math.unit(4 + 10/12, "feet"),
  33035. weight: math.unit(160, "lb"),
  33036. name: "Front (NSFW)",
  33037. image: {
  33038. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33039. extra: 3528/3408,
  33040. bottom: 0/3528
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(4 + 10/12, "feet"),
  33048. default: true
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33054. {
  33055. side: {
  33056. height: math.unit(10, "feet"),
  33057. weight: math.unit(14000, "lb"),
  33058. name: "Side",
  33059. image: {
  33060. source: "./media/characters/kremm/side.svg",
  33061. extra: 1390/1053,
  33062. bottom: 90/1480
  33063. }
  33064. },
  33065. gut: {
  33066. height: math.unit(5.8, "feet"),
  33067. name: "Gut",
  33068. image: {
  33069. source: "./media/characters/kremm/gut.svg"
  33070. }
  33071. },
  33072. ass: {
  33073. height: math.unit(6.1, "feet"),
  33074. name: "Ass",
  33075. image: {
  33076. source: "./media/characters/kremm/ass.svg"
  33077. }
  33078. },
  33079. jaws: {
  33080. height: math.unit(2.2, "feet"),
  33081. name: "Jaws",
  33082. image: {
  33083. source: "./media/characters/kremm/jaws.svg"
  33084. }
  33085. },
  33086. dick: {
  33087. height: math.unit(4.26, "feet"),
  33088. name: "Dick",
  33089. image: {
  33090. source: "./media/characters/kremm/dick.svg"
  33091. }
  33092. },
  33093. },
  33094. [
  33095. {
  33096. name: "Normal",
  33097. height: math.unit(10, "feet"),
  33098. default: true
  33099. },
  33100. ]
  33101. ))
  33102. characterMakers.push(() => makeCharacter(
  33103. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33104. {
  33105. front: {
  33106. height: math.unit(30, "stories"),
  33107. name: "Front",
  33108. image: {
  33109. source: "./media/characters/kai/front.svg",
  33110. extra: 1892/1718,
  33111. bottom: 162/2054
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Macro",
  33118. height: math.unit(30, "stories"),
  33119. default: true
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33125. {
  33126. front: {
  33127. height: math.unit(6 + 4/12, "feet"),
  33128. weight: math.unit(145, "lb"),
  33129. name: "Front",
  33130. image: {
  33131. source: "./media/characters/sykes/front.svg",
  33132. extra: 1321 / 1187,
  33133. bottom: 66 / 1387
  33134. }
  33135. },
  33136. back: {
  33137. height: math.unit(6 + 4/12, "feet"),
  33138. weight: math.unit(145, "lb"),
  33139. name: "Back",
  33140. image: {
  33141. source: "./media/characters/sykes/back.svg",
  33142. extra: 1326/1181,
  33143. bottom: 31/1357
  33144. }
  33145. },
  33146. handBack: {
  33147. height: math.unit(0.9, "feet"),
  33148. name: "Hand (Back)",
  33149. image: {
  33150. source: "./media/characters/sykes/hand-back.svg"
  33151. }
  33152. },
  33153. handFront: {
  33154. height: math.unit(0.839, "feet"),
  33155. name: "Hand (Front)",
  33156. image: {
  33157. source: "./media/characters/sykes/hand-front.svg"
  33158. }
  33159. },
  33160. leftFoot: {
  33161. height: math.unit(1.2, "feet"),
  33162. name: "Foot (Left)",
  33163. image: {
  33164. source: "./media/characters/sykes/foot-left.svg"
  33165. }
  33166. },
  33167. rightFoot: {
  33168. height: math.unit(1.2, "feet"),
  33169. name: "Foot (Right)",
  33170. image: {
  33171. source: "./media/characters/sykes/foot-right.svg"
  33172. }
  33173. },
  33174. maw: {
  33175. height: math.unit(1.93, "feet"),
  33176. name: "Maw",
  33177. image: {
  33178. source: "./media/characters/sykes/maw.svg"
  33179. }
  33180. },
  33181. teeth: {
  33182. height: math.unit(0.51, "feet"),
  33183. name: "Teeth",
  33184. image: {
  33185. source: "./media/characters/sykes/teeth.svg"
  33186. }
  33187. },
  33188. tongue: {
  33189. height: math.unit(2.13, "feet"),
  33190. name: "Tongue",
  33191. image: {
  33192. source: "./media/characters/sykes/tongue.svg"
  33193. }
  33194. },
  33195. uvula: {
  33196. height: math.unit(0.16, "feet"),
  33197. name: "Uvula",
  33198. image: {
  33199. source: "./media/characters/sykes/uvula.svg"
  33200. }
  33201. },
  33202. collar: {
  33203. height: math.unit(0.287, "feet"),
  33204. name: "Collar",
  33205. image: {
  33206. source: "./media/characters/sykes/collar.svg"
  33207. }
  33208. },
  33209. },
  33210. [
  33211. {
  33212. name: "Shrunken",
  33213. height: math.unit(5, "inches")
  33214. },
  33215. {
  33216. name: "Normal",
  33217. height: math.unit(6 + 4 / 12, "feet"),
  33218. default: true
  33219. },
  33220. {
  33221. name: "Big",
  33222. height: math.unit(15, "feet")
  33223. },
  33224. ]
  33225. ))
  33226. characterMakers.push(() => makeCharacter(
  33227. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33228. {
  33229. front: {
  33230. height: math.unit(5 + 8/12, "feet"),
  33231. weight: math.unit(190, "lb"),
  33232. name: "Front",
  33233. image: {
  33234. source: "./media/characters/oven-otter/front.svg",
  33235. extra: 1809/1740,
  33236. bottom: 181/1990
  33237. }
  33238. },
  33239. back: {
  33240. height: math.unit(5 + 8/12, "feet"),
  33241. weight: math.unit(190, "lb"),
  33242. name: "Back",
  33243. image: {
  33244. source: "./media/characters/oven-otter/back.svg",
  33245. extra: 1709/1635,
  33246. bottom: 118/1827
  33247. }
  33248. },
  33249. hand: {
  33250. height: math.unit(1.07, "feet"),
  33251. name: "Hand",
  33252. image: {
  33253. source: "./media/characters/oven-otter/hand.svg"
  33254. }
  33255. },
  33256. beans: {
  33257. height: math.unit(1.74, "feet"),
  33258. name: "Beans",
  33259. image: {
  33260. source: "./media/characters/oven-otter/beans.svg"
  33261. }
  33262. },
  33263. },
  33264. [
  33265. {
  33266. name: "Micro",
  33267. height: math.unit(0.5, "inches")
  33268. },
  33269. {
  33270. name: "Normal",
  33271. height: math.unit(5 + 8/12, "feet"),
  33272. default: true
  33273. },
  33274. {
  33275. name: "Macro",
  33276. height: math.unit(250, "feet")
  33277. },
  33278. {
  33279. name: "Really High",
  33280. height: math.unit(420, "feet")
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33286. {
  33287. front: {
  33288. height: math.unit(5, "meters"),
  33289. weight: math.unit(292000000000000, "kg"),
  33290. name: "Front",
  33291. image: {
  33292. source: "./media/characters/devourer/front.svg",
  33293. extra: 1800/1733,
  33294. bottom: 211/2011
  33295. }
  33296. },
  33297. maw: {
  33298. height: math.unit(1.1, "meter"),
  33299. name: "Maw",
  33300. image: {
  33301. source: "./media/characters/devourer/maw.svg"
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Small",
  33308. height: math.unit(3, "meters")
  33309. },
  33310. {
  33311. name: "Large",
  33312. height: math.unit(5, "meters"),
  33313. default: true
  33314. },
  33315. ]
  33316. ))
  33317. characterMakers.push(() => makeCharacter(
  33318. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33319. {
  33320. front: {
  33321. height: math.unit(6, "feet"),
  33322. weight: math.unit(400, "lb"),
  33323. name: "Front",
  33324. image: {
  33325. source: "./media/characters/ellarby/front.svg",
  33326. extra: 1909/1763,
  33327. bottom: 80/1989
  33328. }
  33329. },
  33330. back: {
  33331. height: math.unit(6, "feet"),
  33332. weight: math.unit(400, "lb"),
  33333. name: "Back",
  33334. image: {
  33335. source: "./media/characters/ellarby/back.svg",
  33336. extra: 1914/1784,
  33337. bottom: 172/2086
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Mischief",
  33344. height: math.unit(18, "inches")
  33345. },
  33346. {
  33347. name: "Trouble",
  33348. height: math.unit(12, "feet")
  33349. },
  33350. {
  33351. name: "Havoc",
  33352. height: math.unit(200, "feet"),
  33353. default: true
  33354. },
  33355. {
  33356. name: "Pandemonium",
  33357. height: math.unit(1, "mile")
  33358. },
  33359. {
  33360. name: "Catastrophe",
  33361. height: math.unit(100, "miles")
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33367. {
  33368. front: {
  33369. height: math.unit(4.7, "meters"),
  33370. weight: math.unit(6500, "kg"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/vex/front.svg",
  33374. extra: 1288/1140,
  33375. bottom: 100/1388
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Normal",
  33382. height: math.unit(4.7, "meters"),
  33383. default: true
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33389. {
  33390. normal: {
  33391. height: math.unit(6, "feet"),
  33392. weight: math.unit(350, "lb"),
  33393. name: "Normal",
  33394. image: {
  33395. source: "./media/characters/teshy/normal.svg",
  33396. extra: 1795/1735,
  33397. bottom: 16/1811
  33398. }
  33399. },
  33400. monsterFront: {
  33401. height: math.unit(12, "feet"),
  33402. weight: math.unit(4700, "lb"),
  33403. name: "Monster (Front)",
  33404. image: {
  33405. source: "./media/characters/teshy/monster-front.svg",
  33406. extra: 2042/2034,
  33407. bottom: 128/2170
  33408. }
  33409. },
  33410. monsterSide: {
  33411. height: math.unit(12, "feet"),
  33412. weight: math.unit(4700, "lb"),
  33413. name: "Monster (Side)",
  33414. image: {
  33415. source: "./media/characters/teshy/monster-side.svg",
  33416. extra: 2067/2056,
  33417. bottom: 70/2137
  33418. }
  33419. },
  33420. monsterBack: {
  33421. height: math.unit(12, "feet"),
  33422. weight: math.unit(4700, "lb"),
  33423. name: "Monster (Back)",
  33424. image: {
  33425. source: "./media/characters/teshy/monster-back.svg",
  33426. extra: 1921/1914,
  33427. bottom: 171/2092
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Normal",
  33434. height: math.unit(6, "feet"),
  33435. default: true
  33436. },
  33437. ]
  33438. ))
  33439. characterMakers.push(() => makeCharacter(
  33440. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33441. {
  33442. front: {
  33443. height: math.unit(6, "feet"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/ramey/front.svg",
  33447. extra: 790/787,
  33448. bottom: 27/817
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(6, "feet"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(5 + 5/12, "feet"),
  33465. weight: math.unit(120, "lb"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/phirae/front.svg",
  33469. extra: 2491/2436,
  33470. bottom: 38/2529
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(5 + 5/12, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(6, "feet"),
  33487. weight: math.unit(150, "lb"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/stagglas/front.svg",
  33491. extra: 962/882,
  33492. bottom: 53/1015
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(5 + 3/12, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(5 + 4/12, "feet"),
  33509. weight: math.unit(145, "lb"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/starra/front.svg",
  33513. extra: 1790/1691,
  33514. bottom: 91/1881
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(5 + 4/12, "feet"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(2.2, "meters"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33534. extra: 1194/1005,
  33535. bottom: 25/1219
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(2.2, "meters"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33549. {
  33550. side: {
  33551. height: math.unit(8 + 2/12, "feet"),
  33552. weight: math.unit(1240, "lb"),
  33553. name: "Side",
  33554. image: {
  33555. source: "./media/characters/mika-valentine/side.svg",
  33556. extra: 2670/2501,
  33557. bottom: 250/2920
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(8 + 2/12, "feet"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(7 + 2/12, "feet"),
  33574. name: "Front",
  33575. image: {
  33576. source: "./media/characters/xoltol/front.svg",
  33577. extra: 2212/2124,
  33578. bottom: 84/2296
  33579. }
  33580. },
  33581. side: {
  33582. height: math.unit(7 + 2/12, "feet"),
  33583. name: "Side",
  33584. image: {
  33585. source: "./media/characters/xoltol/side.svg",
  33586. extra: 2273/2197,
  33587. bottom: 26/2299
  33588. }
  33589. },
  33590. hand: {
  33591. height: math.unit(2.5, "feet"),
  33592. name: "Hand",
  33593. image: {
  33594. source: "./media/characters/xoltol/hand.svg"
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Small-ish",
  33601. height: math.unit(5 + 11/12, "feet")
  33602. },
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(7 + 2/12, "feet")
  33606. },
  33607. {
  33608. name: "\"Macro\"",
  33609. height: math.unit(14 + 9/12, "feet"),
  33610. default: true
  33611. },
  33612. {
  33613. name: "Alternate Height",
  33614. height: math.unit(20, "feet")
  33615. },
  33616. {
  33617. name: "Actually Macro",
  33618. height: math.unit(100, "feet")
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33624. {
  33625. front: {
  33626. height: math.unit(5 + 2/12, "feet"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/kotetsu-redwood/front.svg",
  33630. extra: 1053/942,
  33631. bottom: 60/1113
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(5 + 2/12, "feet"),
  33639. default: true
  33640. },
  33641. ]
  33642. ))
  33643. characterMakers.push(() => makeCharacter(
  33644. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33645. {
  33646. front: {
  33647. height: math.unit(2.4, "meters"),
  33648. weight: math.unit(125, "kg"),
  33649. name: "Front",
  33650. image: {
  33651. source: "./media/characters/lilith/front.svg",
  33652. extra: 1590/1513,
  33653. bottom: 203/1793
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Humanoid",
  33660. height: math.unit(2.4, "meters")
  33661. },
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(6, "meters"),
  33665. default: true
  33666. },
  33667. {
  33668. name: "Largest",
  33669. height: math.unit(55, "meters")
  33670. },
  33671. ]
  33672. ))
  33673. characterMakers.push(() => makeCharacter(
  33674. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33675. {
  33676. front: {
  33677. height: math.unit(8 + 4/12, "feet"),
  33678. weight: math.unit(535, "lb"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/beh'kah-bolger/front.svg",
  33682. extra: 1660/1603,
  33683. bottom: 37/1697
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Normal",
  33690. height: math.unit(8 + 4/12, "feet"),
  33691. default: true
  33692. },
  33693. {
  33694. name: "Kaiju",
  33695. height: math.unit(250, "feet")
  33696. },
  33697. {
  33698. name: "Still Growing",
  33699. height: math.unit(10, "miles")
  33700. },
  33701. {
  33702. name: "Continental",
  33703. height: math.unit(5000, "miles")
  33704. },
  33705. {
  33706. name: "Final Form",
  33707. height: math.unit(2500000, "miles")
  33708. },
  33709. ]
  33710. ))
  33711. characterMakers.push(() => makeCharacter(
  33712. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33713. {
  33714. front: {
  33715. height: math.unit(7 + 2/12, "feet"),
  33716. weight: math.unit(230, "kg"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/tatyana-milewska/front.svg",
  33720. extra: 1199/1150,
  33721. bottom: 86/1285
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Normal",
  33728. height: math.unit(7 + 2/12, "feet"),
  33729. default: true
  33730. },
  33731. {
  33732. name: "Big",
  33733. height: math.unit(12, "feet")
  33734. },
  33735. {
  33736. name: "Minimacro",
  33737. height: math.unit(20, "feet")
  33738. },
  33739. {
  33740. name: "Macro",
  33741. height: math.unit(120, "feet")
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33747. {
  33748. front: {
  33749. height: math.unit(7 + 8/12, "feet"),
  33750. weight: math.unit(152, "kg"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/helen-arri/front.svg",
  33754. extra: 440/423,
  33755. bottom: 14/454
  33756. }
  33757. },
  33758. back: {
  33759. height: math.unit(7 + 8/12, "feet"),
  33760. weight: math.unit(152, "kg"),
  33761. name: "Back",
  33762. image: {
  33763. source: "./media/characters/helen-arri/back.svg",
  33764. extra: 443/426,
  33765. bottom: 8/451
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(7 + 8/12, "feet"),
  33773. default: true
  33774. },
  33775. {
  33776. name: "Big",
  33777. height: math.unit(14, "feet")
  33778. },
  33779. {
  33780. name: "Minimacro",
  33781. height: math.unit(24, "feet")
  33782. },
  33783. {
  33784. name: "Macro",
  33785. height: math.unit(140, "feet")
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(6, "meters"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/ehanu-rehu/front.svg",
  33797. extra: 1800/1800,
  33798. bottom: 59/1859
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(6, "meters"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(7 + 3/12, "feet"),
  33815. name: "Front",
  33816. image: {
  33817. source: "./media/characters/renholder/front.svg",
  33818. extra: 3096/2960,
  33819. bottom: 250/3346
  33820. }
  33821. },
  33822. },
  33823. [
  33824. {
  33825. name: "Normal Bat",
  33826. height: math.unit(7 + 3/12, "feet"),
  33827. default: true
  33828. },
  33829. {
  33830. name: "Slightly Tall Bat",
  33831. height: math.unit(100, "feet")
  33832. },
  33833. {
  33834. name: "Big Bat",
  33835. height: math.unit(1000, "feet")
  33836. },
  33837. {
  33838. name: "City-Sized Bat",
  33839. height: math.unit(200000, "feet")
  33840. },
  33841. {
  33842. name: "Bigger Bat",
  33843. height: math.unit(10000, "miles")
  33844. },
  33845. {
  33846. name: "Solar Sized Bat",
  33847. height: math.unit(100, "AU")
  33848. },
  33849. {
  33850. name: "Galactic Bat",
  33851. height: math.unit(200000, "lightyears")
  33852. },
  33853. {
  33854. name: "Universally Known Bat",
  33855. height: math.unit(1, "universe")
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33861. {
  33862. front: {
  33863. height: math.unit(6 + 11/12, "feet"),
  33864. weight: math.unit(250, "lb"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/cookiecat/front.svg",
  33868. extra: 893/827,
  33869. bottom: 14/907
  33870. }
  33871. },
  33872. },
  33873. [
  33874. {
  33875. name: "Micro",
  33876. height: math.unit(3, "inches")
  33877. },
  33878. {
  33879. name: "Normal",
  33880. height: math.unit(6 + 11/12, "feet"),
  33881. default: true
  33882. },
  33883. {
  33884. name: "Macro",
  33885. height: math.unit(100, "feet")
  33886. },
  33887. {
  33888. name: "Macro+",
  33889. height: math.unit(404, "feet")
  33890. },
  33891. {
  33892. name: "Megamacro",
  33893. height: math.unit(165, "miles")
  33894. },
  33895. {
  33896. name: "Planetary",
  33897. height: math.unit(4600, "miles")
  33898. },
  33899. ]
  33900. ))
  33901. characterMakers.push(() => makeCharacter(
  33902. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33903. {
  33904. front: {
  33905. height: math.unit(10 + 3/12, "feet"),
  33906. weight: math.unit(1500, "lb"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/tux-kusanagi/front.svg",
  33910. extra: 944/840,
  33911. bottom: 39/983
  33912. }
  33913. },
  33914. back: {
  33915. height: math.unit(10 + 3/12, "feet"),
  33916. weight: math.unit(1500, "lb"),
  33917. name: "Back",
  33918. image: {
  33919. source: "./media/characters/tux-kusanagi/back.svg",
  33920. extra: 941/842,
  33921. bottom: 28/969
  33922. }
  33923. },
  33924. rump: {
  33925. height: math.unit(5.25, "feet"),
  33926. name: "Rump",
  33927. image: {
  33928. source: "./media/characters/tux-kusanagi/rump.svg"
  33929. }
  33930. },
  33931. beak: {
  33932. height: math.unit(1.54, "feet"),
  33933. name: "Beak",
  33934. image: {
  33935. source: "./media/characters/tux-kusanagi/beak.svg"
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(10 + 3/12, "feet"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(58, "feet"),
  33952. weight: math.unit(200, "tons"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/uzarmazari/front.svg",
  33956. extra: 1575/1455,
  33957. bottom: 152/1727
  33958. }
  33959. },
  33960. back: {
  33961. height: math.unit(58, "feet"),
  33962. weight: math.unit(200, "tons"),
  33963. name: "Back",
  33964. image: {
  33965. source: "./media/characters/uzarmazari/back.svg",
  33966. extra: 1585/1510,
  33967. bottom: 157/1742
  33968. }
  33969. },
  33970. head: {
  33971. height: math.unit(26, "feet"),
  33972. name: "Head",
  33973. image: {
  33974. source: "./media/characters/uzarmazari/head.svg"
  33975. }
  33976. },
  33977. },
  33978. [
  33979. {
  33980. name: "Normal",
  33981. height: math.unit(58, "feet"),
  33982. default: true
  33983. },
  33984. ]
  33985. ))
  33986. characterMakers.push(() => makeCharacter(
  33987. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33988. {
  33989. side: {
  33990. height: math.unit(15, "feet"),
  33991. name: "Side",
  33992. image: {
  33993. source: "./media/characters/akitu/side.svg",
  33994. extra: 1421/1321,
  33995. bottom: 157/1578
  33996. }
  33997. },
  33998. front: {
  33999. height: math.unit(15, "feet"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/akitu/front.svg",
  34003. extra: 1435/1326,
  34004. bottom: 232/1667
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(15, "feet"),
  34012. default: true
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34018. {
  34019. front: {
  34020. height: math.unit(10 + 8/12, "feet"),
  34021. name: "Front",
  34022. image: {
  34023. source: "./media/characters/azalie-croixland/front.svg",
  34024. extra: 1972/1856,
  34025. bottom: 31/2003
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Original Height",
  34032. height: math.unit(5 + 4/12, "feet")
  34033. },
  34034. {
  34035. name: "Normal Height",
  34036. height: math.unit(10 + 8/12, "feet"),
  34037. default: true
  34038. },
  34039. ]
  34040. ))
  34041. characterMakers.push(() => makeCharacter(
  34042. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34043. {
  34044. side: {
  34045. height: math.unit(7 + 1/12, "feet"),
  34046. weight: math.unit(245, "lb"),
  34047. name: "Side",
  34048. image: {
  34049. source: "./media/characters/kavus-kazian/side.svg",
  34050. extra: 349/342,
  34051. bottom: 15/364
  34052. }
  34053. },
  34054. },
  34055. [
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(7 + 1/12, "feet"),
  34059. default: true
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34065. {
  34066. normal: {
  34067. height: math.unit(5 + 11/12, "feet"),
  34068. name: "Normal",
  34069. image: {
  34070. source: "./media/characters/moonlight-rose/normal.svg",
  34071. extra: 1979/1835,
  34072. bottom: 14/1993
  34073. }
  34074. },
  34075. demon: {
  34076. height: math.unit(5, "km"),
  34077. name: "Demon",
  34078. image: {
  34079. source: "./media/characters/moonlight-rose/demon.svg",
  34080. extra: 986/916,
  34081. bottom: 28/1014
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "\"Natural\" height",
  34088. height: math.unit(5 + 11/12, "feet")
  34089. },
  34090. {
  34091. name: "Comfortable Size",
  34092. height: math.unit(40, "meters")
  34093. },
  34094. {
  34095. name: "Common Size",
  34096. height: math.unit(50, "km"),
  34097. default: true
  34098. },
  34099. {
  34100. name: "Demonic",
  34101. height: math.unit(1.24415e+21, "meters")
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(16, "feet"),
  34110. weight: math.unit(610, "kg"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/huckle/front.svg",
  34114. extra: 1731/1625,
  34115. bottom: 33/1764
  34116. }
  34117. },
  34118. back: {
  34119. height: math.unit(16, "feet"),
  34120. weight: math.unit(610, "kg"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/huckle/back.svg",
  34124. extra: 1738/1651,
  34125. bottom: 37/1775
  34126. }
  34127. },
  34128. laughing: {
  34129. height: math.unit(3.75, "feet"),
  34130. name: "Laughing",
  34131. image: {
  34132. source: "./media/characters/huckle/laughing.svg"
  34133. }
  34134. },
  34135. angry: {
  34136. height: math.unit(4.15, "feet"),
  34137. name: "Angry",
  34138. image: {
  34139. source: "./media/characters/huckle/angry.svg"
  34140. }
  34141. },
  34142. },
  34143. [
  34144. {
  34145. name: "Normal",
  34146. height: math.unit(16, "feet"),
  34147. default: true
  34148. },
  34149. {
  34150. name: "Mini Macro",
  34151. height: math.unit(463, "feet")
  34152. },
  34153. {
  34154. name: "Macro",
  34155. height: math.unit(1680, "meters")
  34156. },
  34157. {
  34158. name: "Mega Macro",
  34159. height: math.unit(175, "km")
  34160. },
  34161. {
  34162. name: "Terra Macro",
  34163. height: math.unit(32, "gigameters")
  34164. },
  34165. {
  34166. name: "Multiverse+",
  34167. height: math.unit(2.56e23, "yottameters")
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(6 + 9/12, "feet"),
  34176. weight: math.unit(280, "lb"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/candy/front.svg",
  34180. extra: 234/217,
  34181. bottom: 11/245
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Really Small",
  34188. height: math.unit(0.1, "nm")
  34189. },
  34190. {
  34191. name: "Micro",
  34192. height: math.unit(2, "inches")
  34193. },
  34194. {
  34195. name: "Normal",
  34196. height: math.unit(6 + 9/12, "feet"),
  34197. default: true
  34198. },
  34199. {
  34200. name: "Small Macro",
  34201. height: math.unit(69, "feet")
  34202. },
  34203. {
  34204. name: "Macro",
  34205. height: math.unit(160, "feet")
  34206. },
  34207. {
  34208. name: "Megamacro",
  34209. height: math.unit(22000, "miles")
  34210. },
  34211. {
  34212. name: "Gigamacro",
  34213. height: math.unit(50000, "miles")
  34214. },
  34215. ]
  34216. ))
  34217. characterMakers.push(() => makeCharacter(
  34218. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34219. {
  34220. front: {
  34221. height: math.unit(4, "feet"),
  34222. weight: math.unit(90, "lb"),
  34223. name: "Front",
  34224. image: {
  34225. source: "./media/characters/joey-mcdonald/front.svg",
  34226. extra: 1059/852,
  34227. bottom: 33/1092
  34228. }
  34229. },
  34230. back: {
  34231. height: math.unit(4, "feet"),
  34232. weight: math.unit(90, "lb"),
  34233. name: "Back",
  34234. image: {
  34235. source: "./media/characters/joey-mcdonald/back.svg",
  34236. extra: 1077/879,
  34237. bottom: 5/1082
  34238. }
  34239. },
  34240. },
  34241. [
  34242. {
  34243. name: "Normal",
  34244. height: math.unit(4, "feet"),
  34245. default: true
  34246. },
  34247. ]
  34248. ))
  34249. characterMakers.push(() => makeCharacter(
  34250. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34251. {
  34252. front: {
  34253. height: math.unit(12 + 6/12, "feet"),
  34254. name: "Front",
  34255. image: {
  34256. source: "./media/characters/kass-lockheed/front.svg",
  34257. extra: 354/343,
  34258. bottom: 9/363
  34259. }
  34260. },
  34261. back: {
  34262. height: math.unit(12 + 6/12, "feet"),
  34263. name: "Back",
  34264. image: {
  34265. source: "./media/characters/kass-lockheed/back.svg",
  34266. extra: 364/352,
  34267. bottom: 3/367
  34268. }
  34269. },
  34270. dick: {
  34271. height: math.unit(3.12, "feet"),
  34272. name: "Dick",
  34273. image: {
  34274. source: "./media/characters/kass-lockheed/dick.svg"
  34275. }
  34276. },
  34277. head: {
  34278. height: math.unit(2.6, "feet"),
  34279. name: "Head",
  34280. image: {
  34281. source: "./media/characters/kass-lockheed/head.svg"
  34282. }
  34283. },
  34284. bleh: {
  34285. height: math.unit(2.85, "feet"),
  34286. name: "Bleh",
  34287. image: {
  34288. source: "./media/characters/kass-lockheed/bleh.svg"
  34289. }
  34290. },
  34291. smug: {
  34292. height: math.unit(2.85, "feet"),
  34293. name: "Smug",
  34294. image: {
  34295. source: "./media/characters/kass-lockheed/smug.svg"
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(12 + 6/12, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34309. {
  34310. front: {
  34311. height: math.unit(6 + 2/12, "feet"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/taylor/front.svg",
  34315. extra: 639/495,
  34316. bottom: 12/651
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(6 + 2/12, "feet"),
  34324. default: true
  34325. },
  34326. {
  34327. name: "Big",
  34328. height: math.unit(15, "feet")
  34329. },
  34330. {
  34331. name: "Lorg",
  34332. height: math.unit(80, "feet")
  34333. },
  34334. {
  34335. name: "Too Lorg",
  34336. height: math.unit(120, "feet")
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(15, "feet"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/kaizer/front.svg",
  34348. extra: 1612/1436,
  34349. bottom: 43/1655
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(15, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(2, "feet"),
  34366. weight: math.unit(30, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/sandy/front.svg",
  34370. extra: 1439/1307,
  34371. bottom: 194/1633
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(2, "feet"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(3, "feet"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/mellvi/front.svg",
  34391. extra: 1831/1630,
  34392. bottom: 58/1889
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(3, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(5 + 11/12, "feet"),
  34409. weight: math.unit(200, "lb"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/shirou/front.svg",
  34413. extra: 2491/2383,
  34414. bottom: 189/2680
  34415. }
  34416. },
  34417. back: {
  34418. height: math.unit(5 + 11/12, "feet"),
  34419. weight: math.unit(200, "lb"),
  34420. name: "Back",
  34421. image: {
  34422. source: "./media/characters/shirou/back.svg",
  34423. extra: 2554/2450,
  34424. bottom: 76/2630
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Normal",
  34431. height: math.unit(5 + 11/12, "feet"),
  34432. default: true
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34438. {
  34439. front: {
  34440. height: math.unit(6 + 3/12, "feet"),
  34441. weight: math.unit(177, "lb"),
  34442. name: "Front",
  34443. image: {
  34444. source: "./media/characters/noryu/front.svg",
  34445. extra: 973/885,
  34446. bottom: 10/983
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(6 + 3/12, "feet"),
  34454. default: true
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(5 + 6/12, "feet"),
  34463. weight: math.unit(170, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/mevolas-rubenido/front.svg",
  34467. extra: 2109/1901,
  34468. bottom: 96/2205
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(5 + 6/12, "feet"),
  34476. default: true
  34477. },
  34478. ]
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34482. {
  34483. front: {
  34484. height: math.unit(100, "feet"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/dee/front.svg",
  34488. extra: 2153/2036,
  34489. bottom: 59/2212
  34490. }
  34491. },
  34492. back: {
  34493. height: math.unit(100, "feet"),
  34494. name: "Back",
  34495. image: {
  34496. source: "./media/characters/dee/back.svg",
  34497. extra: 2183/2058,
  34498. bottom: 75/2258
  34499. }
  34500. },
  34501. foot: {
  34502. height: math.unit(19.43, "feet"),
  34503. name: "Foot",
  34504. image: {
  34505. source: "./media/characters/dee/foot.svg"
  34506. }
  34507. },
  34508. hoof: {
  34509. height: math.unit(20.6, "feet"),
  34510. name: "Hoof",
  34511. image: {
  34512. source: "./media/characters/dee/hoof.svg"
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Macro",
  34519. height: math.unit(100, "feet"),
  34520. default: true
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(5 + 6/12, "feet"),
  34529. name: "Front",
  34530. image: {
  34531. source: "./media/characters/teh/front.svg",
  34532. extra: 1002/847,
  34533. bottom: 62/1064
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(5 + 6/12, "feet"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34547. {
  34548. side: {
  34549. height: math.unit(6 + 1/12, "feet"),
  34550. weight: math.unit(204, "lb"),
  34551. name: "Side",
  34552. image: {
  34553. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34554. extra: 974/775,
  34555. bottom: 169/1143
  34556. }
  34557. },
  34558. sitting: {
  34559. height: math.unit(6 + 2/12, "feet"),
  34560. weight: math.unit(204, "lb"),
  34561. name: "Sitting",
  34562. image: {
  34563. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34564. extra: 1175/964,
  34565. bottom: 378/1553
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Normal",
  34572. height: math.unit(6 + 1/12, "feet"),
  34573. default: true
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(6, "inches"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/tululi/front.svg",
  34585. extra: 1997/1876,
  34586. bottom: 20/2017
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(6, "inches"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(4 + 1/12, "feet"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/star/front.svg",
  34606. extra: 1493/1189,
  34607. bottom: 48/1541
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(4 + 1/12, "feet"),
  34615. default: true
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34621. {
  34622. front: {
  34623. height: math.unit(6 + 3/12, "feet"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/comet/front.svg",
  34627. extra: 1681/1462,
  34628. bottom: 26/1707
  34629. }
  34630. },
  34631. },
  34632. [
  34633. {
  34634. name: "Normal",
  34635. height: math.unit(6 + 3/12, "feet"),
  34636. default: true
  34637. },
  34638. ]
  34639. ))
  34640. characterMakers.push(() => makeCharacter(
  34641. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34642. {
  34643. front: {
  34644. height: math.unit(950, "feet"),
  34645. name: "Front",
  34646. image: {
  34647. source: "./media/characters/vortex/front.svg",
  34648. extra: 1497/1434,
  34649. bottom: 56/1553
  34650. }
  34651. },
  34652. maw: {
  34653. height: math.unit(285, "feet"),
  34654. name: "Maw",
  34655. image: {
  34656. source: "./media/characters/vortex/maw.svg"
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Macro",
  34663. height: math.unit(950, "feet"),
  34664. default: true
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34670. {
  34671. front: {
  34672. height: math.unit(600, "feet"),
  34673. weight: math.unit(0.02, "grams"),
  34674. name: "Front",
  34675. image: {
  34676. source: "./media/characters/doodle/front.svg",
  34677. extra: 1578/1413,
  34678. bottom: 37/1615
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Macro",
  34685. height: math.unit(600, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34692. {
  34693. front: {
  34694. height: math.unit(6 + 6/12, "feet"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/jai/front.svg",
  34698. extra: 1645/1534,
  34699. bottom: 115/1760
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(6 + 6/12, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(6 + 8/12, "feet"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/pixel/front.svg",
  34719. extra: 1900/1735,
  34720. bottom: 63/1963
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(6 + 8/12, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(4 + 11/12, "feet"),
  34737. weight: math.unit(111, "lb"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/rhett/front.svg",
  34741. extra: 1682/1586,
  34742. bottom: 92/1774
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Mini",
  34749. height: math.unit(1 + 1/12, "feet")
  34750. },
  34751. {
  34752. name: "Normal",
  34753. height: math.unit(4 + 11/12, "feet"),
  34754. default: true
  34755. },
  34756. ]
  34757. ))
  34758. characterMakers.push(() => makeCharacter(
  34759. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34760. {
  34761. front: {
  34762. height: math.unit(3 + 3/12, "feet"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/penny/front.svg",
  34766. extra: 1406/1311,
  34767. bottom: 26/1432
  34768. }
  34769. },
  34770. },
  34771. [
  34772. {
  34773. name: "Normal",
  34774. height: math.unit(3 + 3/12, "feet"),
  34775. default: true
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34781. {
  34782. front: {
  34783. height: math.unit(4 + 11/12, "feet"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/monty/front.svg",
  34787. extra: 1479/1209,
  34788. bottom: 0/1479
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Normal",
  34795. height: math.unit(4 + 11/12, "feet"),
  34796. default: true
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34802. {
  34803. front: {
  34804. height: math.unit(8 + 4/12, "feet"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/sterling/front.svg",
  34808. extra: 1420/1236,
  34809. bottom: 27/1447
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Normal",
  34816. height: math.unit(8 + 4/12, "feet"),
  34817. default: true
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(15, "feet"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/marble/front.svg",
  34829. extra: 973/937,
  34830. bottom: 32/1005
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Normal",
  34837. height: math.unit(15, "feet"),
  34838. default: true
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34844. {
  34845. front: {
  34846. height: math.unit(3, "inches"),
  34847. name: "Front",
  34848. image: {
  34849. source: "./media/characters/powder/front.svg",
  34850. extra: 1504/1334,
  34851. bottom: 518/2022
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(3, "inches"),
  34859. default: true
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34865. {
  34866. front: {
  34867. height: math.unit(4 + 5/12, "feet"),
  34868. name: "Front",
  34869. image: {
  34870. source: "./media/characters/joey-raccoon/front.svg",
  34871. extra: 1273/1197,
  34872. bottom: 0/1273
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(4 + 5/12, "feet"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(8 + 4/12, "feet"),
  34889. name: "Front",
  34890. image: {
  34891. source: "./media/characters/vick/front.svg",
  34892. extra: 2187/2118,
  34893. bottom: 47/2234
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(8 + 4/12, "feet"),
  34901. default: true
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34907. {
  34908. front: {
  34909. height: math.unit(5 + 5/12, "feet"),
  34910. name: "Front",
  34911. image: {
  34912. source: "./media/characters/mitsy/front.svg",
  34913. extra: 1842/1695,
  34914. bottom: 0/1842
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(5 + 5/12, "feet"),
  34922. default: true
  34923. },
  34924. ]
  34925. ))
  34926. characterMakers.push(() => makeCharacter(
  34927. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34928. {
  34929. front: {
  34930. height: math.unit(6 + 3/12, "feet"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/silvy/front.svg",
  34934. extra: 1995/1836,
  34935. bottom: 225/2220
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(6 + 3/12, "feet"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(3 + 8/12, "feet"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/rodney/front.svg",
  34955. extra: 1956/1747,
  34956. bottom: 31/1987
  34957. }
  34958. },
  34959. frontDressed: {
  34960. height: math.unit(2.9, "feet"),
  34961. name: "Front (Dressed)",
  34962. image: {
  34963. source: "./media/characters/rodney/front-dressed.svg",
  34964. extra: 1382/1241,
  34965. bottom: 385/1767
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(3 + 8/12, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(5 + 9/12, "feet"),
  34982. weight: math.unit(194, "lbs"),
  34983. name: "Front",
  34984. image: {
  34985. source: "./media/characters/zakail-sudekai/front.svg",
  34986. extra: 2696/2533,
  34987. bottom: 248/2944
  34988. }
  34989. },
  34990. maw: {
  34991. height: math.unit(1.35, "feet"),
  34992. name: "Maw",
  34993. image: {
  34994. source: "./media/characters/zakail-sudekai/maw.svg"
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(5 + 9/12, "feet"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35008. {
  35009. front: {
  35010. height: math.unit(8 + 4/12, "feet"),
  35011. weight: math.unit(1200, "lb"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/eleanor/front.svg",
  35015. extra: 1226/1192,
  35016. bottom: 52/1278
  35017. }
  35018. },
  35019. back: {
  35020. height: math.unit(8 + 4/12, "feet"),
  35021. weight: math.unit(1200, "lb"),
  35022. name: "Back",
  35023. image: {
  35024. source: "./media/characters/eleanor/back.svg",
  35025. extra: 1242/1184,
  35026. bottom: 60/1302
  35027. }
  35028. },
  35029. head: {
  35030. height: math.unit(2.62, "feet"),
  35031. name: "Head",
  35032. image: {
  35033. source: "./media/characters/eleanor/head.svg"
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(8 + 4/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(8 + 4/12, "feet"),
  35050. weight: math.unit(750, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/tanya/front.svg",
  35054. extra: 1749/1615,
  35055. bottom: 33/1782
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(8 + 4/12, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(5, "feet"),
  35072. weight: math.unit(225, "lb"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/cindy/front.svg",
  35076. extra: 1320/1250,
  35077. bottom: 42/1362
  35078. }
  35079. },
  35080. frontDressed: {
  35081. height: math.unit(5, "feet"),
  35082. weight: math.unit(225, "lb"),
  35083. name: "Front (Dressed)",
  35084. image: {
  35085. source: "./media/characters/cindy/front-dressed.svg",
  35086. extra: 1320/1250,
  35087. bottom: 42/1362
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(5, "feet"),
  35092. weight: math.unit(225, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/cindy/back.svg",
  35096. extra: 1384/1346,
  35097. bottom: 14/1398
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(5, "feet"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(6 + 9/12, "feet"),
  35114. weight: math.unit(440, "lb"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/wilbur-owen/front.svg",
  35118. extra: 1575/1448,
  35119. bottom: 72/1647
  35120. }
  35121. },
  35122. back: {
  35123. height: math.unit(6 + 9/12, "feet"),
  35124. weight: math.unit(440, "lb"),
  35125. name: "Back",
  35126. image: {
  35127. source: "./media/characters/wilbur-owen/back.svg",
  35128. extra: 1578/1445,
  35129. bottom: 36/1614
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(6 + 9/12, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(6 + 5/12, "feet"),
  35146. weight: math.unit(650, "lb"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/keegan/front.svg",
  35150. extra: 2387/2198,
  35151. bottom: 33/2420
  35152. }
  35153. },
  35154. side: {
  35155. height: math.unit(6 + 5/12, "feet"),
  35156. weight: math.unit(650, "lb"),
  35157. name: "Side",
  35158. image: {
  35159. source: "./media/characters/keegan/side.svg",
  35160. extra: 2390/2202,
  35161. bottom: 47/2437
  35162. }
  35163. },
  35164. back: {
  35165. height: math.unit(6 + 5/12, "feet"),
  35166. weight: math.unit(650, "lb"),
  35167. name: "Back",
  35168. image: {
  35169. source: "./media/characters/keegan/back.svg",
  35170. extra: 2418/2268,
  35171. bottom: 15/2433
  35172. }
  35173. },
  35174. frontSfw: {
  35175. height: math.unit(6 + 5/12, "feet"),
  35176. weight: math.unit(650, "lb"),
  35177. name: "Front (SFW)",
  35178. image: {
  35179. source: "./media/characters/keegan/front-sfw.svg",
  35180. extra: 2387/2198,
  35181. bottom: 33/2420
  35182. }
  35183. },
  35184. beans: {
  35185. height: math.unit(1.85, "feet"),
  35186. name: "Beans",
  35187. image: {
  35188. source: "./media/characters/keegan/beans.svg"
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Normal",
  35195. height: math.unit(6 + 5/12, "feet"),
  35196. default: true
  35197. },
  35198. ]
  35199. ))
  35200. characterMakers.push(() => makeCharacter(
  35201. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35202. {
  35203. front: {
  35204. height: math.unit(9, "feet"),
  35205. name: "Front",
  35206. image: {
  35207. source: "./media/characters/colton/front.svg",
  35208. extra: 1589/1326,
  35209. bottom: 139/1728
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(9, "feet"),
  35217. default: true
  35218. },
  35219. ]
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35223. {
  35224. front: {
  35225. height: math.unit(2 + 9/12, "feet"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/bora/front.svg",
  35229. extra: 1265/1250,
  35230. bottom: 24/1289
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(2 + 9/12, "feet"),
  35238. default: true
  35239. },
  35240. ]
  35241. ))
  35242. characterMakers.push(() => makeCharacter(
  35243. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35244. {
  35245. front: {
  35246. height: math.unit(8, "feet"),
  35247. name: "Front",
  35248. image: {
  35249. source: "./media/characters/myu-myu/front.svg",
  35250. extra: 1949/1857,
  35251. bottom: 90/2039
  35252. }
  35253. },
  35254. },
  35255. [
  35256. {
  35257. name: "Normal",
  35258. height: math.unit(8, "feet"),
  35259. default: true
  35260. },
  35261. {
  35262. name: "Big",
  35263. height: math.unit(15, "feet")
  35264. },
  35265. {
  35266. name: "BIG",
  35267. height: math.unit(25, "feet")
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35273. {
  35274. side: {
  35275. height: math.unit(7 + 5/12, "feet"),
  35276. weight: math.unit(2800, "lb"),
  35277. name: "Side",
  35278. image: {
  35279. source: "./media/characters/haloren/side.svg",
  35280. extra: 1793/409,
  35281. bottom: 59/1852
  35282. }
  35283. },
  35284. frontPaw: {
  35285. height: math.unit(2.36, "feet"),
  35286. name: "Front paw",
  35287. image: {
  35288. source: "./media/characters/haloren/front-paw.svg"
  35289. }
  35290. },
  35291. hindPaw: {
  35292. height: math.unit(3.18, "feet"),
  35293. name: "Hind paw",
  35294. image: {
  35295. source: "./media/characters/haloren/hind-paw.svg"
  35296. }
  35297. },
  35298. maw: {
  35299. height: math.unit(5.05, "feet"),
  35300. name: "Maw",
  35301. image: {
  35302. source: "./media/characters/haloren/maw.svg"
  35303. }
  35304. },
  35305. dick: {
  35306. height: math.unit(2.90, "feet"),
  35307. name: "Dick",
  35308. image: {
  35309. source: "./media/characters/haloren/dick.svg"
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(7 + 5/12, "feet"),
  35317. default: true
  35318. },
  35319. {
  35320. name: "Enhanced",
  35321. height: math.unit(14 + 3/12, "feet")
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(171, "cm"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/kimmy/front.svg",
  35333. extra: 1491/1435,
  35334. bottom: 53/1544
  35335. }
  35336. },
  35337. },
  35338. [
  35339. {
  35340. name: "Small",
  35341. height: math.unit(9, "cm")
  35342. },
  35343. {
  35344. name: "Normal",
  35345. height: math.unit(171, "cm"),
  35346. default: true
  35347. },
  35348. ]
  35349. ))
  35350. characterMakers.push(() => makeCharacter(
  35351. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35352. {
  35353. front: {
  35354. height: math.unit(8, "feet"),
  35355. weight: math.unit(300, "lb"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/galeboomer/front.svg",
  35359. extra: 4651/4415,
  35360. bottom: 162/4813
  35361. }
  35362. },
  35363. back: {
  35364. height: math.unit(8, "feet"),
  35365. weight: math.unit(300, "lb"),
  35366. name: "Back",
  35367. image: {
  35368. source: "./media/characters/galeboomer/back.svg",
  35369. extra: 4544/4314,
  35370. bottom: 16/4560
  35371. }
  35372. },
  35373. frontAlt: {
  35374. height: math.unit(8, "feet"),
  35375. weight: math.unit(300, "lb"),
  35376. name: "Front (Alt)",
  35377. image: {
  35378. source: "./media/characters/galeboomer/front-alt.svg",
  35379. extra: 4458/4228,
  35380. bottom: 68/4526
  35381. }
  35382. },
  35383. maw: {
  35384. height: math.unit(1.2, "feet"),
  35385. name: "Maw",
  35386. image: {
  35387. source: "./media/characters/galeboomer/maw.svg"
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(8, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(5 + 9/12, "feet"),
  35404. weight: math.unit(120, "lb"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/chyr/front.svg",
  35408. extra: 1323/1254,
  35409. bottom: 63/1386
  35410. }
  35411. },
  35412. back: {
  35413. height: math.unit(5 + 9/12, "feet"),
  35414. weight: math.unit(120, "lb"),
  35415. name: "Back",
  35416. image: {
  35417. source: "./media/characters/chyr/back.svg",
  35418. extra: 1323/1252,
  35419. bottom: 48/1371
  35420. }
  35421. },
  35422. },
  35423. [
  35424. {
  35425. name: "Normal",
  35426. height: math.unit(5 + 9/12, "feet"),
  35427. default: true
  35428. },
  35429. ]
  35430. ))
  35431. characterMakers.push(() => makeCharacter(
  35432. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35433. {
  35434. front: {
  35435. height: math.unit(7, "feet"),
  35436. weight: math.unit(310, "lb"),
  35437. name: "Front",
  35438. image: {
  35439. source: "./media/characters/solarus/front.svg",
  35440. extra: 2415/2021,
  35441. bottom: 103/2518
  35442. }
  35443. },
  35444. back: {
  35445. height: math.unit(7, "feet"),
  35446. weight: math.unit(310, "lb"),
  35447. name: "Back",
  35448. image: {
  35449. source: "./media/characters/solarus/back.svg",
  35450. extra: 2463/2089,
  35451. bottom: 79/2542
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(7, "feet"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(16, "feet"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35471. extra: 1844/1780,
  35472. bottom: 58/1902
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(16, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(11 + 6/12, "feet"),
  35489. weight: math.unit(1366, "lb"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/lexor/front.svg",
  35493. extra: 1560/1481,
  35494. bottom: 211/1771
  35495. }
  35496. },
  35497. back: {
  35498. height: math.unit(11 + 6/12, "feet"),
  35499. weight: math.unit(1366, "lb"),
  35500. name: "Back",
  35501. image: {
  35502. source: "./media/characters/lexor/back.svg",
  35503. extra: 1614/1533,
  35504. bottom: 76/1690
  35505. }
  35506. },
  35507. maw: {
  35508. height: math.unit(3, "feet"),
  35509. name: "Maw",
  35510. image: {
  35511. source: "./media/characters/lexor/maw.svg"
  35512. }
  35513. },
  35514. dick: {
  35515. height: math.unit(2.59, "feet"),
  35516. name: "Dick",
  35517. image: {
  35518. source: "./media/characters/lexor/dick.svg"
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(11 + 6/12, "feet"),
  35526. default: true
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(5 + 8/12, "feet"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/magnum/front.svg",
  35538. extra: 942/855,
  35539. bottom: 26/968
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(5 + 8/12, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35553. {
  35554. front: {
  35555. height: math.unit(18 + 4/12, "feet"),
  35556. weight: math.unit(1500, "kg"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/solas-sharpsman/front.svg",
  35560. extra: 1698/1589,
  35561. bottom: 0/1698
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(18 + 4/12, "feet"),
  35569. default: true
  35570. },
  35571. ]
  35572. ))
  35573. //characters
  35574. function makeCharacters() {
  35575. const results = [];
  35576. characterMakers.forEach(character => {
  35577. results.push(character());
  35578. });
  35579. return results;
  35580. }